pokeberrypie commited on
Commit
648aefb
1 Parent(s): ee4daf3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -5,7 +5,7 @@ from transformers import AutoModelForCausalLM, AutoTokenizer
5
 
6
  def main():
7
  # Load the model and tokenizer
8
- model_name = "bigscience/falcon-180b" # Replace with the correct model name if different
9
  tokenizer = AutoTokenizer.from_pretrained(model_name)
10
  model = AutoModelForCausalLM.from_pretrained(model_name)
11
 
 
5
 
6
  def main():
7
  # Load the model and tokenizer
8
+ model_name = "/tiiuae/falcon-180B" # Replace with the correct model name if different
9
  tokenizer = AutoTokenizer.from_pretrained(model_name)
10
  model = AutoModelForCausalLM.from_pretrained(model_name)
11