Browse Source

small bug fix

Christoph Kaeding 8 years ago
parent
commit
7ca79926a2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      evaluation/PrecomputeExperimentalSetup.py

+ 1 - 1
evaluation/PrecomputeExperimentalSetup.py

@@ -32,7 +32,7 @@ numInitSamplesPerCls = helperFunctions.getConfig(sys.argv[1], 'experiment', 'num
 numTestSamplesPerCls = helperFunctions.getConfig(sys.argv[1], 'experiment', 'numTestSamplesPerCls', None, 'int', True)
 
 forbiddenCls = helperFunctions.getConfig(sys.argv[1], 'data', 'forbiddenCls', [], 'intList', True)
-indicesFileName = helperFunctions.getConfig(configFile, 'data', 'indicesFileName', None, 'str', True)
+indicesFileName = helperFunctions.getConfig(sys.argv[1], 'data', 'indicesFileName', None, 'str', True)
 
 print ''
 print 'host:', socket.gethostname()