Spaces:
Running on Zero
Running on Zero
Update app.py
Browse files
app.py
CHANGED
|
@@ -5,7 +5,7 @@ from transformers import pipeline
|
|
| 5 |
|
| 6 |
# Initialize your small CoT / Reasoning model
|
| 7 |
# (Using a pipeline; will be moved to GPU inside the decorated function)
|
| 8 |
-
MODEL_ID = "
|
| 9 |
generator = pipeline("text-generation", model=MODEL_ID, torch_dtype=torch.bfloat16)
|
| 10 |
|
| 11 |
@spaces.GPU(duration=60) # Requests ZeroGPU allocation for the duration of the tree search
|
|
|
|
| 5 |
|
| 6 |
# Initialize your small CoT / Reasoning model
|
| 7 |
# (Using a pipeline; will be moved to GPU inside the decorated function)
|
| 8 |
+
MODEL_ID = "LiquidAI/LFM2.5-1.2B-Thinking"
|
| 9 |
generator = pipeline("text-generation", model=MODEL_ID, torch_dtype=torch.bfloat16)
|
| 10 |
|
| 11 |
@spaces.GPU(duration=60) # Requests ZeroGPU allocation for the duration of the tree search
|