Update app.py
Browse files
app.py
CHANGED
@@ -1,4 +1,7 @@
|
|
1 |
from transformers import pipeline
|
|
|
|
|
|
|
2 |
|
3 |
classifier = pipeline("zero-shot-classification")
|
4 |
classifier(
|
|
|
1 |
from transformers import pipeline
|
2 |
+
import gradio as gr #this is in place of the streamlit of the HF video
|
3 |
+
import torch #this is just like the HF video
|
4 |
+
|
5 |
|
6 |
classifier = pipeline("zero-shot-classification")
|
7 |
classifier(
|