oracat commited on
Commit
2ecd2f9
Β·
1 Parent(s): f87eabb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +67 -3
app.py CHANGED
@@ -23,11 +23,75 @@ def process(text):
23
 
24
  tokenizer, model = prepare_model()
25
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  st.markdown("### Hello, paper classifier!")
27
 
28
- title = st.text_input("Enter the title...")
29
- abstract = st.text_area("... and maybe the abstract of the paper you want to classify")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
 
31
  text = "\n".join([title, abstract])
32
 
33
- st.markdown(f"{process(text)}")
 
 
 
 
 
23
 
24
  tokenizer, model = prepare_model()
25
 
26
+
27
+ # State managements
28
+ #
29
+ # The state in the app is the title and the abstract.
30
+ # State management is used here in order to pre-fill
31
+ # input fields with values for demos.
32
+
33
+ if 'title' not in st.session_state:
34
+ st.session_state['title'] = ""
35
+
36
+ if 'abstract' not in st.session_state:
37
+ st.session_state['abstract'] = ""
38
+
39
+ if 'output' not in st.session_state:
40
+ st.session_state['output'] = ""
41
+
42
+
43
+ # Simple streamlit interface
44
+
45
  st.markdown("### Hello, paper classifier!")
46
 
47
+
48
+ ## Demo buttons and their callbacks
49
+
50
+ def demo_cl_callback():
51
+ """
52
+ Use https://ai.facebook.com/blog/large-language-model-llama-meta-ai/ for demo
53
+ """
54
+ paper_title = "Introducing LLaMA: A foundational, 65-billion-parameter large language model"
55
+ paper_abstract = "Over the last year, large language models β€” natural language processing (NLP) systems with billions of parameters β€” have shown new capabilities to generate creative text, solve mathematical theorems, predict protein structures, answer reading comprehension questions, and more. They are one of the clearest cases of the substantial potential benefits AI can offer at scale to billions of people. Smaller models trained on more tokens β€” which are pieces of words β€” are easier to retrain and fine-tune for specific potential product use cases. We trained LLaMA 65B and LLaMA 33B on 1.4 trillion tokens. Our smallest model, LLaMA 7B, is trained on one trillion tokens. Like other large language models, LLaMA works by taking a sequence of words as an input and predicts a next word to recursively generate text. To train our model, we chose text from the 20 languages with the most speakers, focusing on those with Latin and Cyrillic alphabets."
56
+ st.session_state["title"] = paper_title
57
+ st.session_state["abstract"] = paper_abstract
58
+
59
+ def demo_cv_callback():
60
+ """
61
+ Use https://arxiv.org/abs/2010.11929 for demo
62
+ """
63
+ paper_title = "An Image is Worth 16x16 Words: Transformers for Image Recognition at Scale"
64
+ paper_abstract = "While the Transformer architecture has become the de-facto standard for natural language processing tasks, its applications to computer vision remain limited. In vision, attention is either applied in conjunction with convolutional networks, or used to replace certain components of convolutional networks while keeping their overall structure in place. We show that this reliance on CNNs is not necessary and a pure transformer applied directly to sequences of image patches can perform very well on image classification tasks. When pre-trained on large amounts of data and transferred to multiple mid-sized or small image recognition benchmarks (ImageNet, CIFAR-100, VTAB, etc.), Vision Transformer (ViT) attains excellent results compared to state-of-the-art convolutional networks while requiring substantially fewer computational resources to train."
65
+ st.session_state["title"] = paper_title
66
+ st.session_state["abstract"] = paper_abstract
67
+
68
+ def clear_callback():
69
+ """
70
+ Clear input fields
71
+ """
72
+ st.session_state["title"] = ""
73
+ st.session_state["abstract"] = ""
74
+ st.session_state["output"] = ""
75
+
76
+ col1, col2, col3 = st.columns([1, 1, 1])
77
+ with col1:
78
+ st.button("Demo: LLaMA paper", on_click=demo_cl_callback)
79
+ with col2:
80
+ st.button("Demo: ViT paper", on_click=demo_cv_callback)
81
+ with col3:
82
+ st.button("Clear fields", on_click=clear_callback)
83
+
84
+ ## Input fields
85
+
86
+ placeholder = st.empty()
87
+
88
+ title = st.text_input("Enter the title:", key="title")
89
+ abstract = st.text_area("... and maybe the abstract of the paper you want to classify:", key="abstract")
90
 
91
  text = "\n".join([title, abstract])
92
 
93
+ ## Output
94
+
95
+ if len(text.strip()) > 0:
96
+ st.markdown(f"<h4>Predicted class: {process(text)}</h4>", unsafe_allow_html=True)
97
+