bapfalraz commited on
Commit
f0412c7
·
verified ·
1 Parent(s): 37f0bc6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -3,7 +3,7 @@ from transformers import pipeline
3
  import torch
4
 
5
 
6
- pipe = pipeline("text-generation", model="google/gemma-3-1b-pt", device="cuda", torch_dtype=torch.bfloat16)
7
 
8
  txt = st.text_area("Test this")
9
 
 
3
  import torch
4
 
5
 
6
+ pipe = pipeline("text-generation", model="google/gemma-3-1b-pt", device="cuda", torch_dtype=torch.bfloat16, use_auth_token=True)
7
 
8
  txt = st.text_area("Test this")
9