Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -1,16 +1,12 @@
|
|
1 |
-
from transformers import
|
2 |
-
from PIL import Image
|
3 |
-
import requests
|
4 |
|
5 |
-
|
6 |
-
|
7 |
|
8 |
-
|
9 |
-
model = ViTForImageClassification.from_pretrained('google/vit-base-patch16-224')
|
10 |
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
print("Predicted class:", model.config.id2label[predicted_class_idx])
|
|
|
1 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
|
|
|
|
2 |
|
3 |
+
model_id = "mistralai/Mixtral-8x7B-Instruct-v0.1"
|
4 |
+
tokenizer = AutoTokenizer.from_pretrained(model_id)
|
5 |
|
6 |
+
model = AutoModelForCausalLM.from_pretrained(model_id)
|
|
|
7 |
|
8 |
+
text = "Hello my name is"
|
9 |
+
inputs = tokenizer(text, return_tensors="pt")
|
10 |
+
|
11 |
+
outputs = model.generate(**inputs, max_new_tokens=20)
|
12 |
+
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
|
|