Spaces:
Runtime error
Runtime error
Commit
·
28b6090
1
Parent(s):
9ffef81
Fix bugs on wrappers and add quantization requirement
Browse files- backend-cli.py +2 -0
- requirements.txt +2 -1
backend-cli.py
CHANGED
|
@@ -217,6 +217,8 @@ def process_evaluation(task: Task, eval_request: EvalRequest, limit: Optional[in
|
|
| 217 |
repo_id=RESULTS_REPO,
|
| 218 |
repo_type="dataset",
|
| 219 |
)
|
|
|
|
|
|
|
| 220 |
return results
|
| 221 |
|
| 222 |
|
|
|
|
| 217 |
repo_id=RESULTS_REPO,
|
| 218 |
repo_type="dataset",
|
| 219 |
)
|
| 220 |
+
|
| 221 |
+
RegexFilter.apply = original_apply
|
| 222 |
return results
|
| 223 |
|
| 224 |
|
requirements.txt
CHANGED
|
@@ -30,4 +30,5 @@ evaluate
|
|
| 30 |
spacy==3.7.4
|
| 31 |
selfcheckgpt
|
| 32 |
immutabledict
|
| 33 |
-
gputil
|
|
|
|
|
|
| 30 |
spacy==3.7.4
|
| 31 |
selfcheckgpt
|
| 32 |
immutabledict
|
| 33 |
+
gputil
|
| 34 |
+
bitsandbytes
|