pauri32 commited on
Commit
b0fe608
1 Parent(s): 71c4861

Update app/main.py

Browse files
Files changed (1) hide show
  1. app/main.py +1 -1
app/main.py CHANGED
@@ -10,7 +10,7 @@ class InputText(BaseModel):
10
  text: str
11
 
12
  # "bigscience/bloomz-1b1"
13
- model_tag = "facebook/opt-125m"
14
  model = LLM(model_name = model_tag,
15
  device = "cuda" if torch.cuda.is_available() else "cpu")
16
 
 
10
  text: str
11
 
12
  # "bigscience/bloomz-1b1"
13
+ model_tag = "bigscience/bloomz-1b1"
14
  model = LLM(model_name = model_tag,
15
  device = "cuda" if torch.cuda.is_available() else "cpu")
16