FlameF0X commited on
Commit
ae57764
·
verified ·
1 Parent(s): 8b2b306

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -6,7 +6,7 @@ import torch
6
  app = FastAPI()
7
 
8
  # Load model and tokenizer once at startup
9
- model_name = "FlameF0X/Muffin-2.9b-1C25" # change this to your own model
10
  tokenizer = AutoTokenizer.from_pretrained(model_name)
11
  model = AutoModelForCausalLM.from_pretrained(model_name)
12
 
 
6
  app = FastAPI()
7
 
8
  # Load model and tokenizer once at startup
9
+ model_name = "distilbert/distilgpt2" # change this to your own model
10
  tokenizer = AutoTokenizer.from_pretrained(model_name)
11
  model = AutoModelForCausalLM.from_pretrained(model_name)
12