Spaces:
Running
Running
Disable flash attention
Browse files
app.py
CHANGED
@@ -5,7 +5,7 @@ from flow_judge import Hf, FlowJudge, EvalInput
|
|
5 |
from flow_judge.metrics import CustomMetric, RubricItem
|
6 |
|
7 |
try:
|
8 |
-
model = Hf()
|
9 |
except Exception as e:
|
10 |
raise RuntimeError(f"Failed to initialize Hf Model: {e}")
|
11 |
|
|
|
5 |
from flow_judge.metrics import CustomMetric, RubricItem
|
6 |
|
7 |
try:
|
8 |
+
model = Hf(flash_attn=False)
|
9 |
except Exception as e:
|
10 |
raise RuntimeError(f"Failed to initialize Hf Model: {e}")
|
11 |
|