Spaces:
Runtime error
Runtime error
File size: 12,697 Bytes
6f966a5 9feec6e 6f966a5 478b8c5 6f966a5 a037be6 6f966a5 2e552d3 85348f7 6ca7d2e 478b8c5 d30fcf8 478b8c5 6f966a5 85348f7 6f966a5 478b8c5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 |
import gradio as gr
from download_new_papers import get_papers
import utils
from relevancy import generate_relevance_score, process_subject_fields
from sendgrid.helpers.mail import Mail, Email, To, Content
import sendgrid
import os
import openai
topics = {
"Physics": "",
"Mathematics": "math",
"Computer Science": "cs",
"Quantitative Biology": "q-bio",
"Quantitative Finance": "q-fin",
"Statistics": "stat",
"Electrical Engineering and Systems Science": "eess",
"Economics": "econ"
}
physics_topics = {
"Astrophysics": "astro-ph",
"Condensed Matter": "cond-mat",
"General Relativity and Quantum Cosmology": "gr-qc",
"High Energy Physics - Experiment": "hep-ex",
"High Energy Physics - Lattice": "hep-lat",
"High Energy Physics - Phenomenology": "hep-ph",
"High Energy Physics - Theory": "hep-th",
"Mathematical Physics": "math-ph",
"Nonlinear Sciences": "nlin",
"Nuclear Experiment": "nucl-ex",
"Nuclear Theory": "nucl-th",
"Physics": "physics",
"Quantum Physics": "quant-ph"
}
categories_map = {
"Astrophysics": ["Astrophysics of Galaxies", "Cosmology and Nongalactic Astrophysics", "Earth and Planetary Astrophysics", "High Energy Astrophysical Phenomena", "Instrumentation and Methods for Astrophysics", "Solar and Stellar Astrophysics"],
"Condensed Matter": ["Disordered Systems and Neural Networks", "Materials Science", "Mesoscale and Nanoscale Physics", "Other Condensed Matter", "Quantum Gases", "Soft Condensed Matter", "Statistical Mechanics", "Strongly Correlated Electrons", "Superconductivity"],
"General Relativity and Quantum Cosmology": ["None"],
"High Energy Physics - Experiment": ["None"],
"High Energy Physics - Lattice": ["None"],
"High Energy Physics - Phenomenology": ["None"],
"High Energy Physics - Theory": ["None"],
"Mathematical Physics": ["None"],
"Nonlinear Sciences": ["Adaptation and Self-Organizing Systems", "Cellular Automata and Lattice Gases", "Chaotic Dynamics", "Exactly Solvable and Integrable Systems", "Pattern Formation and Solitons"],
"Nuclear Experiment": ["None"],
"Nuclear Theory": ["None"],
"Physics": ["Accelerator Physics", "Applied Physics", "Atmospheric and Oceanic Physics", "Atomic and Molecular Clusters", "Atomic Physics", "Biological Physics", "Chemical Physics", "Classical Physics", "Computational Physics", "Data Analysis, Statistics and Probability", "Fluid Dynamics", "General Physics", "Geophysics", "History and Philosophy of Physics", "Instrumentation and Detectors", "Medical Physics", "Optics", "Physics and Society", "Physics Education", "Plasma Physics", "Popular Physics", "Space Physics"],
"Quantum Physics": ["None"],
"Mathematics": ["Algebraic Geometry", "Algebraic Topology", "Analysis of PDEs", "Category Theory", "Classical Analysis and ODEs", "Combinatorics", "Commutative Algebra", "Complex Variables", "Differential Geometry", "Dynamical Systems", "Functional Analysis", "General Mathematics", "General Topology", "Geometric Topology", "Group Theory", "History and Overview", "Information Theory", "K-Theory and Homology", "Logic", "Mathematical Physics", "Metric Geometry", "Number Theory", "Numerical Analysis", "Operator Algebras", "Optimization and Control", "Probability", "Quantum Algebra", "Representation Theory", "Rings and Algebras", "Spectral Theory", "Statistics Theory", "Symplectic Geometry"],
"Computer Science": ["Artificial Intelligence", "Computation and Language", "Computational Complexity", "Computational Engineering, Finance, and Science", "Computational Geometry", "Computer Science and Game Theory", "Computer Vision and Pattern Recognition", "Computers and Society", "Cryptography and Security", "Data Structures and Algorithms", "Databases", "Digital Libraries", "Discrete Mathematics", "Distributed, Parallel, and Cluster Computing", "Emerging Technologies", "Formal Languages and Automata Theory", "General Literature", "Graphics", "Hardware Architecture", "Human-Computer Interaction", "Information Retrieval", "Information Theory", "Logic in Computer Science", "Machine Learning", "Mathematical Software", "Multiagent Systems", "Multimedia", "Networking and Internet Architecture", "Neural and Evolutionary Computing", "Numerical Analysis", "Operating Systems", "Other Computer Science", "Performance", "Programming Languages", "Robotics", "Social and Information Networks", "Software Engineering", "Sound", "Symbolic Computation", "Systems and Control"],
"Quantitative Biology": ["Biomolecules", "Cell Behavior", "Genomics", "Molecular Networks", "Neurons and Cognition", "Other Quantitative Biology", "Populations and Evolution", "Quantitative Methods", "Subcellular Processes", "Tissues and Organs"],
"Quantitative Finance": ["Computational Finance", "Economics", "General Finance", "Mathematical Finance", "Portfolio Management", "Pricing of Securities", "Risk Management", "Statistical Finance", "Trading and Market Microstructure"],
"Statistics": ["Applications", "Computation", "Machine Learning", "Methodology", "Other Statistics", "Statistics Theory"],
"Electrical Engineering and Systems Science": ["Audio and Speech Processing", "Image and Video Processing", "Signal Processing", "Systems and Control"],
"Economics": ["Econometrics", "General Economics", "Theoretical Economics"]
}
def sample(email, topic, physics_topic, categories, interest):
if not topic:
raise gr.Error("You must choose a topic.")
if topic == "Physics":
if isinstance(physics_topic, list):
raise gr.Error("You must choose a physics topic.")
topic = physics_topic
abbr = physics_topics[topic]
else:
abbr = topics[topic]
if categories:
papers = get_papers(abbr)
papers = [
t for t in papers
if bool(set(process_subject_fields(t['subjects'])) & set(categories))][:4]
else:
papers = get_papers(abbr, limit=4)
if interest:
if not openai.api_key: raise gr.Error("Set your OpenAI api key on the left first")
relevancy, _ = generate_relevance_score(
papers,
query={"interest": interest},
threshold_score=0,
num_paper_in_prompt=4)
return "\n\n".join([paper["summarized_text"] for paper in relevancy])
else:
return "\n\n".join(f"Title: {paper['title']}\nAuthors: {paper['authors']}" for paper in papers)
def change_subsubject(subject, physics_subject):
if subject != "Physics":
return gr.Dropdown.update(choices=categories_map[subject], value=[], visible=True)
else:
if physics_subject and not isinstance(physics_subject, list):
return gr.Dropdown.update(choices=categories_map[physics_subject], value=[], visible=True)
else:
return gr.Dropdown.update(choices=[], value=[], visible=False)
def change_physics(subject):
if subject != "Physics":
return gr.Dropdown.update(visible=False, value=[])
else:
return gr.Dropdown.update(physics_topics, visible=True)
def test(email, topic, physics_topic, categories, interest, key):
if not email: raise gr.Error("Set your email")
if not key: raise gr.Error("Set your SendGrid key")
if topic == "Physics":
if isinstance(physics_topic, list):
raise gr.Error("You must choose a physics topic.")
topic = physics_topic
abbr = physics_topics[topic]
else:
abbr = topics[topic]
if categories:
papers = get_papers(abbr)
papers = [
t for t in papers
if bool(set(process_subject_fields(t['subjects'])) & set(categories))][:4]
else:
papers = get_papers(abbr, limit=4)
if interest:
if not openai.api_key: raise gr.Error("Set your OpenAI api key on the left first")
relevancy, hallucination = generate_relevance_score(
papers,
query={"interest": interest},
threshold_score=7,
num_paper_in_prompt=8)
body = "<br><br>".join([f'Title: <a href="{paper["main_page"]}">{paper["title"]}</a><br>Authors: {paper["authors"]}<br>Score: {paper["Relevancy score"]}<br>Reason: {paper["Reasons for match"]}' for paper in relevancy])
if hallucination:
body = "Warning: the model hallucinated some papers. We have tried to remove them, but the scores may not be accurate.<br><br>" + body
else:
body = "<br><br>".join([f'Title: <a href="{paper["main_page"]}">{paper["title"]}</a><br>Authors: {paper["authors"]}' for paper in papers])
sg = sendgrid.SendGridAPIClient(api_key=key)
from_email = Email(email)
to_email = To(email)
subject = "arXiv digest"
content = Content("text/html", body)
mail = Mail(from_email, to_email, subject, content)
mail_json = mail.get()
# Send an HTTP POST request to /mail/send
response = sg.client.mail.send.post(request_body=mail_json)
if response.status_code >= 200 and response.status_code <= 300:
return "Success!"
else:
return "Failure: ({response.status_code})"
def register_openai_token(token):
openai.api_key = token
with gr.Blocks() as demo:
with gr.Row():
with gr.Column(scale=1):
token = gr.Textbox(label="OpenAI API Key", type="password")
subject = gr.Radio(
list(topics.keys()), label="Topic"
)
physics_subject = gr.Dropdown(physics_topics, value=[], multiselect=False, label="Physics category", visible=False, info="")
subsubject = gr.Dropdown(
[], value=[], multiselect=True, label="Subtopic", info="Optional. Leaving it empty will use all subtopics.", visible=False)
subject.change(fn=change_physics, inputs=[subject], outputs=physics_subject)
subject.change(fn=change_subsubject, inputs=[subject, physics_subject], outputs=subsubject)
physics_subject.change(fn=change_subsubject, inputs=[subject, physics_subject], outputs=subsubject)
interest = gr.Textbox(label="A natural language description of what you are interested in. We will generate relevancy scores (1-10) and explanations for the papers in the selected topics according to this statement.", info="Press shift-enter or click the button below to update.", lines=7)
sample_btn = gr.Button("Generate Digest")
sample_output = gr.Textbox(label="Sample relevancy results for your configuration.", info="For runtime purposes, this is only done on a small subset of recent papers in the topic you have selected. Papers will not be filtered by relevancy, only sorted on a scale of 1-10. Selecting more relevant subtopics will help return more relevant results.")
with gr.Column(scale=0.40):
with gr.Box():
title = gr.Markdown(
"""
# Email Setup, Optional
Send an email to the below address using the configuration on the left. Requires a sendgrid token. These values are not needed to use the left side of the page.
Additionally, this email will use the entire list of papers for a topic, rather than a small subset. Generating the email can take on the order of 10 minutes for large topics.
To create a scheduled job for this, see our [Github Repository](https://github.com/AutoLLM/ArxivDigest)
""",
interactive=False, show_label=False)
email = gr.Textbox(label="Email address", type="email", placeholder="")
sendgrid_token = gr.Textbox(label="SendGrid API Key", type="password")
with gr.Row():
test_btn = gr.Button("Send email")
output = gr.Textbox(show_label=False, placeholder="email status")
test_btn.click(fn=test, inputs=[email, subject, physics_subject, subsubject, interest, sendgrid_token], outputs=output)
token.change(fn=register_openai_token, inputs=[token])
sample_btn.click(fn=sample, inputs=[email, subject, physics_subject, subsubject, interest], outputs=sample_output)
subject.change(fn=sample, inputs=[email, subject, physics_subject, subsubject, interest], outputs=sample_output)
physics_subject.change(fn=sample, inputs=[email, subject, physics_subject, subsubject, interest], outputs=sample_output)
subsubject.change(fn=sample, inputs=[email, subject, physics_subject, subsubject, interest], outputs=sample_output)
interest.submit(fn=sample, inputs=[email, subject, physics_subject, subsubject, interest], outputs=sample_output)
demo.launch(show_api=False)
|