Skip to content

Commit

Permalink
typo corrected
Browse files Browse the repository at this point in the history
  • Loading branch information
王悦凝 authored and 王悦凝 committed Apr 4, 2019
1 parent 1e0bd58 commit e02b00d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions neuralizer/tests/test_data_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ def test_read_file():
def test_data_info():
data = {"filename":"test.tsv","X_var":["A","B"],"Y_var":"y"}
X,Y,input_dim,output_dim = dp.data_info(data)
assert(input_dim == 2),"Dimension of input layer is not correct"
assert(output_dim == 1), "Dimension of output layer is not correct"
assert input_dim == 2,"Dimension of input layer is not correct"
assert output_dim == 1 , "Dimension of output layer is not correct"

0 comments on commit e02b00d

Please sign in to comment.