jatingocodeo commited on
Commit
cd9eb25
·
verified ·
1 Parent(s): 90055ac

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -57,12 +57,13 @@ class SmolLM2ForCausalLM(PreTrainedModel):
57
  super().__init__(config)
58
  self.config = config
59
 
60
- # Load the model weights directly from the checkpoint
61
  self.model = AutoModelForCausalLM.from_pretrained(
62
- "meta-llama/Llama-2-7b-hf",
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):