Spaces:
Sleeping
Sleeping
Aryasomayajula, Sai Anirudh [External]
commited on
Commit
·
ae4446b
1
Parent(s):
7dd9336
changes to naming scheme of the generated log
Browse files- gedi/generator.py +2 -1
gedi/generator.py
CHANGED
@@ -200,7 +200,8 @@ class GenerateEventLogs():
|
|
200 |
identifier = [x for x in task[1] if isinstance(x, str)][0]
|
201 |
except IndexError:
|
202 |
identifier = task[0]+1
|
203 |
-
task = task[1].loc[lambda x, identifier=identifier: x!=identifier]
|
|
|
204 |
self.objectives = task.dropna().to_dict()
|
205 |
random.seed(RANDOM_SEED)
|
206 |
self.configs = self.optimize()
|
|
|
200 |
identifier = [x for x in task[1] if isinstance(x, str)][0]
|
201 |
except IndexError:
|
202 |
identifier = task[0]+1
|
203 |
+
# task = task[1].loc[lambda x, identifier=identifier: x!=identifier]
|
204 |
+
task = task[1]
|
205 |
self.objectives = task.dropna().to_dict()
|
206 |
random.seed(RANDOM_SEED)
|
207 |
self.configs = self.optimize()
|