Skip to content
Snippets Groups Projects
Commit c05a888f authored by Maxime Petit's avatar Maxime Petit
Browse files

Missing argument

parent ce6c4d3d
No related branches found
No related tags found
No related merge requests found
......@@ -22,7 +22,7 @@ def createNetwork(name, dicts, outputSizes, incremental) :
elif name == "separated" :
return SeparatedNet(dicts, outputSizes, incremental)
elif name == "tagger" :
return BaseNet(dicts, outputSizes, incremental, featureFunctionNostack, historyNb, suffixSize, prefixSize, columns)
return BaseNet(dicts, outputSizes, incremental, featureFunctionNostack, historyNb, suffixSize, prefixSize, columns, hiddenSize)
raise Exception("Unknown network name '%s'"%name)
################################################################################
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment