oracat commited on
Commit
c51be4c
Β·
1 Parent(s): 69508a2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -14
app.py CHANGED
@@ -50,26 +50,22 @@ st.markdown("### Hello, paper classifier!")
50
  ## Demo buttons and their callbacks
51
 
52
 
53
- def demo_cl_callback():
54
  """
55
- Use https://ai.facebook.com/blog/large-language-model-llama-meta-ai/ for demo
56
  """
57
- paper_title = (
58
- "Introducing LLaMA: A foundational, 65-billion-parameter large language model"
59
- )
60
- 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."
61
  st.session_state["title"] = paper_title
62
  st.session_state["abstract"] = paper_abstract
63
 
64
 
65
- def demo_cv_callback():
66
  """
67
- Use https://arxiv.org/abs/2010.11929 for demo
68
  """
69
- paper_title = (
70
- "An Image is Worth 16x16 Words: Transformers for Image Recognition at Scale"
71
- )
72
- 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."
73
  st.session_state["title"] = paper_title
74
  st.session_state["abstract"] = paper_abstract
75
 
@@ -85,9 +81,9 @@ def clear_callback():
85
 
86
  col1, col2, col3 = st.columns([1, 1, 1])
87
  with col1:
88
- st.button("Demo: LLaMA paper", on_click=demo_cl_callback)
89
  with col2:
90
- st.button("Demo: ViT paper", on_click=demo_cv_callback)
91
  with col3:
92
  st.button("Clear fields", on_click=clear_callback)
93
 
 
50
  ## Demo buttons and their callbacks
51
 
52
 
53
+ def demo_immunology_callback():
54
  """
55
+ Use https://www.biorxiv.org/content/10.1101/2022.12.01.518788v1 for demo
56
  """
57
+ paper_title = "Using TCR and BCR sequencing to unravel the role of T and B cells in abdominal aortic aneurysm"
58
+ paper_abstract = "Recent evidence suggests that AAA displays characteristics of an autoimmune disease and it gained increasing prominence that specific antigen-driven T cells in the aortic tissue may contribute to the initial immune response. We found no clonal expansion of TCRs or BCRs in elastase-induced AAA in mice."
 
 
59
  st.session_state["title"] = paper_title
60
  st.session_state["abstract"] = paper_abstract
61
 
62
 
63
+ def demo_virology_callback():
64
  """
65
+ Use https://doi.org/10.1016/j.cell.2020.08.001 for demo
66
  """
67
+ paper_title = "Severe COVID-19 Is Marked by a Dysregulated Myeloid Cell Compartment"
68
+ paper_abstract = "Coronavirus disease 2019 (COVID-19) is a mild to moderate respiratory tract infection, however, a subset of patients progress to severe disease and respiratory failure. The mechanism of protective immunity in mild forms and the pathogenesis of severe COVID-19 associated with increased neutrophil counts and dysregulated immune responses remain unclear. In a dual-center, two-cohort study, we combined single-cell RNA-sequencing and single-cell proteomics of whole-blood and peripheral-blood mononuclear cells to determine changes in immune cell composition and activation in mild versus severe COVID-19 (242 samples from 109 individuals) over time. HLA-DRhiCD11chi inflammatory monocytes with an interferon-stimulated gene signature were elevated in mild COVID-19. Severe COVID-19 was marked by occurrence of neutrophil precursors, as evidence of emergency myelopoiesis, dysfunctional mature neutrophils, and HLA-DRlo monocytes. Our study provides detailed insights into the systemic immune response to SARS-CoV-2 infection and reveals profound alterations in the myeloid cell compartment associated with severe COVID-19."
 
 
69
  st.session_state["title"] = paper_title
70
  st.session_state["abstract"] = paper_abstract
71
 
 
81
 
82
  col1, col2, col3 = st.columns([1, 1, 1])
83
  with col1:
84
+ st.button("Demo: immunology", on_click=demo_immunology_callback)
85
  with col2:
86
+ st.button("Demo: virology", on_click=demo_virology_callback)
87
  with col3:
88
  st.button("Clear fields", on_click=clear_callback)
89