fschwartzer commited on
Commit
40fe707
1 Parent(s): 827d04a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -3,6 +3,8 @@ import pandas as pd
3
  import torch
4
  from transformers import AutoTokenizer, AutoModelForCausalLM
5
 
 
 
6
  # Load the tokenizer
7
  model_name = "your-llama-model" # Replace with the LLaMA model name
8
  tokenizer = AutoTokenizer.from_pretrained(model_name)
 
3
  import torch
4
  from transformers import AutoTokenizer, AutoModelForCausalLM
5
 
6
+ token='HF_TOKEN'
7
+
8
  # Load the tokenizer
9
  model_name = "your-llama-model" # Replace with the LLaMA model name
10
  tokenizer = AutoTokenizer.from_pretrained(model_name)