Spaces:
Runtime error
Runtime error
re0commented evaluations
Browse files
app.py
CHANGED
|
@@ -84,8 +84,8 @@ def worker_thread():
|
|
| 84 |
global modelQueue, server
|
| 85 |
while True:
|
| 86 |
for submission in modelQueue:
|
| 87 |
-
evaluate(submission[0],submission[1].split(" ")[0])
|
| 88 |
-
modelQueue.pop(modelQueue.index(submission))
|
| 89 |
|
| 90 |
# Uncomment those lines in order to begin testing, I test these models outside of this space and later commit the results back.
|
| 91 |
# I highly encourage you to try to reproduce the results I get using your own implementation.
|
|
|
|
| 84 |
global modelQueue, server
|
| 85 |
while True:
|
| 86 |
for submission in modelQueue:
|
| 87 |
+
#evaluate(submission[0],submission[1].split(" ")[0])
|
| 88 |
+
#modelQueue.pop(modelQueue.index(submission))
|
| 89 |
|
| 90 |
# Uncomment those lines in order to begin testing, I test these models outside of this space and later commit the results back.
|
| 91 |
# I highly encourage you to try to reproduce the results I get using your own implementation.
|