Spaces:
Running
Running
removed files
Browse files- pages/1_Sentiment_Analysis.py +0 -54
- pages/2_Zero-shot_Classification.py +0 -4
- pages/3_Text_Generation.py +0 -4
- pages/4_Mask_filling.py +0 -4
- pages/5_Named_Entity_Recognition.py +0 -4
- pages/6_Question_Answering.py +0 -4
- pages/7_Summarization.py +0 -4
- pages/8_ Translation.py +0 -4
pages/1_Sentiment_Analysis.py
DELETED
@@ -1,54 +0,0 @@
|
|
1 |
-
import streamlit as st
|
2 |
-
import time
|
3 |
-
from transformers import pipeline
|
4 |
-
|
5 |
-
st.title('Sentiment Analysis')
|
6 |
-
|
7 |
-
st.subheader("Example: Single statement analysis")
|
8 |
-
with st.spinner('Wait for it...'):
|
9 |
-
time.sleep(5)
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
classifier = pipeline("sentiment-analysis")
|
14 |
-
results = classifier("Transformers library is very helpful.")
|
15 |
-
|
16 |
-
code = '''
|
17 |
-
from transformers import pipeline
|
18 |
-
|
19 |
-
classifier = pipeline("sentiment-analysis")
|
20 |
-
results = classifier("Transformers library is very helpful.")
|
21 |
-
'''
|
22 |
-
st.code(code, language='python')
|
23 |
-
|
24 |
-
st.write("Output:")
|
25 |
-
st.success(results)
|
26 |
-
|
27 |
-
st.divider()
|
28 |
-
|
29 |
-
st.subheader("Example: Multiple statements analysis")
|
30 |
-
with st.spinner('Wait for it...'):
|
31 |
-
time.sleep(5)
|
32 |
-
|
33 |
-
code = '''
|
34 |
-
from transformers import pipeline
|
35 |
-
|
36 |
-
classifier = pipeline("sentiment-analysis")
|
37 |
-
results = classifier([
|
38 |
-
"This is quick tutorial site.",
|
39 |
-
"I learnt new topics today.",
|
40 |
-
"I do not like lengthy tutorials."
|
41 |
-
])
|
42 |
-
'''
|
43 |
-
st.code(code, language='python')
|
44 |
-
|
45 |
-
results = classifier([
|
46 |
-
"This is quick tutorial site.",
|
47 |
-
"I learnt new topics today.",
|
48 |
-
"I do not like lengthy tutorials."
|
49 |
-
])
|
50 |
-
|
51 |
-
st.write("Output:")
|
52 |
-
st.success(results)
|
53 |
-
|
54 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
pages/2_Zero-shot_Classification.py
DELETED
@@ -1,4 +0,0 @@
|
|
1 |
-
import streamlit as st
|
2 |
-
|
3 |
-
st.title('Zero-shot classification')
|
4 |
-
|
|
|
|
|
|
|
|
|
|
pages/3_Text_Generation.py
DELETED
@@ -1,4 +0,0 @@
|
|
1 |
-
import streamlit as st
|
2 |
-
|
3 |
-
st.title('Text Generation')
|
4 |
-
|
|
|
|
|
|
|
|
|
|
pages/4_Mask_filling.py
DELETED
@@ -1,4 +0,0 @@
|
|
1 |
-
import streamlit as st
|
2 |
-
|
3 |
-
st.title('Mask Filling')
|
4 |
-
|
|
|
|
|
|
|
|
|
|
pages/5_Named_Entity_Recognition.py
DELETED
@@ -1,4 +0,0 @@
|
|
1 |
-
import streamlit as st
|
2 |
-
|
3 |
-
st.title('Named Entity Recognition')
|
4 |
-
|
|
|
|
|
|
|
|
|
|
pages/6_Question_Answering.py
DELETED
@@ -1,4 +0,0 @@
|
|
1 |
-
import streamlit as st
|
2 |
-
|
3 |
-
st.title('Question Answering')
|
4 |
-
|
|
|
|
|
|
|
|
|
|
pages/7_Summarization.py
DELETED
@@ -1,4 +0,0 @@
|
|
1 |
-
import streamlit as st
|
2 |
-
|
3 |
-
st.title('Summarization')
|
4 |
-
|
|
|
|
|
|
|
|
|
|
pages/8_ Translation.py
DELETED
@@ -1,4 +0,0 @@
|
|
1 |
-
import streamlit as st
|
2 |
-
|
3 |
-
st.title('Translation')
|
4 |
-
|
|
|
|
|
|
|
|
|
|