Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -57,12 +57,13 @@ class SmolLM2ForCausalLM(PreTrainedModel):
|
|
57 |
super().__init__(config)
|
58 |
self.config = config
|
59 |
|
60 |
-
#
|
61 |
self.model = AutoModelForCausalLM.from_pretrained(
|
62 |
-
"
|
63 |
config=config,
|
64 |
torch_dtype=torch.float16,
|
65 |
-
low_cpu_mem_usage=True
|
|
|
66 |
)
|
67 |
|
68 |
def forward(self, input_ids=None, attention_mask=None, labels=None, **kwargs):
|
|
|
57 |
super().__init__(config)
|
58 |
self.config = config
|
59 |
|
60 |
+
# Initialize model weights from your checkpoint
|
61 |
self.model = AutoModelForCausalLM.from_pretrained(
|
62 |
+
"jatingocodeo/SmolLM2",
|
63 |
config=config,
|
64 |
torch_dtype=torch.float16,
|
65 |
+
low_cpu_mem_usage=True,
|
66 |
+
trust_remote_code=True
|
67 |
)
|
68 |
|
69 |
def forward(self, input_ids=None, attention_mask=None, labels=None, **kwargs):
|