LukeFP commited on
Commit
90caab9
·
1 Parent(s): 35f6f5a

changing examples

Browse files
Files changed (1) hide show
  1. app.py +27 -14
app.py CHANGED
@@ -193,25 +193,38 @@ def predict(title: str, abstract: str, threshold: float, top_k: int):
193
 
194
  EXAMPLES = [
195
  [
196
- "Observation of Gravitational Waves from a Binary Black Hole Merger",
197
- "On September 14, 2015 at 09:50:45 UTC the two detectors of the Laser "
198
- "Interferometer Gravitational-Wave Observatory simultaneously observed a "
199
- "transient gravitational-wave signal. The signal sweeps upwards in frequency "
200
- "from 35 to 250 Hz with a peak gravitational-wave strain of 1.0×10⁻²¹.",
 
 
 
 
 
 
 
 
 
201
  ],
202
  [
203
  "Topological Insulators and Superconductors",
204
- "Topological insulators are electronic materials that have a bulk band gap "
205
- "like an ordinary insulator but have protected conducting states on their "
206
- "edge or surface. We review the theoretical foundation for topological "
207
- "insulators and superconductors and describe recent experiments.",
208
  ],
209
  [
210
- "Deep Learning for Particle Physics",
211
- "We review the application of modern machine learning techniques to the "
212
- "analysis of data from high-energy particle physics experiments. Neural "
213
- "networks are used for jet tagging, event classification, anomaly detection, "
214
- "and fast simulation of detector response.",
 
 
 
 
215
  ],
216
  ]
217
 
 
193
 
194
  EXAMPLES = [
195
  [
196
+ "Quantum Computing: Vision and Challenges",
197
+ (
198
+ "The recent development of quantum computing, which uses entanglement, superposition, and other quantum fundamental concepts, "
199
+ "can provide substantial processing advantages over traditional computing. These quantum features help solve many complex "
200
+ "problems that cannot be solved otherwise with conventional computing methods. These problems include modeling quantum mechanics, "
201
+ "logistics, chemical-based advances, drug design, statistical science, sustainable energy, banking, reliable communication, and "
202
+ "quantum chemical engineering. The last few years have witnessed remarkable progress in quantum software and algorithm creation "
203
+ "and quantum hardware research, which has significantly advanced the prospect of realizing quantum computers. It would be helpful "
204
+ "to have comprehensive literature research on this area to grasp the current status and find outstanding problems that require "
205
+ "considerable attention from the research community working in the quantum computing industry. To better understand quantum computing, "
206
+ "this paper examines the foundations and vision based on current research in this area. We discuss cutting-edge developments in quantum "
207
+ "computer hardware advancement and subsequent advances in quantum cryptography, quantum software, and high-scalability quantum computers. "
208
+ "Many potential challenges and exciting new trends for quantum technology research and development are highlighted in this paper for a broader debate."
209
+ ),
210
  ],
211
  [
212
  "Topological Insulators and Superconductors",
213
+ (
214
+ "Topological insulators are electronic materials that have a bulk band gap like an ordinary insulator but have protected conducting states "
215
+ "on their edge or surface. We review the theoretical foundation for topological insulators and superconductors and describe recent experiments."
216
+ ),
217
  ],
218
  [
219
+ "Floquet Topological Insulator in Semiconductor Quantum Wells",
220
+ (
221
+ "Topological phase transitions between a conventional insulator and a state of matter with topological properties have been proposed and observed "
222
+ "in mercury telluride - cadmium telluride quantum wells. We show that a topological state can be induced in such a device, initially in the trivial "
223
+ "phase, by irradiation with microwave frequencies, without closing the gap and crossing the phase transition. We show that the quasi-energy spectrum "
224
+ "exhibits a single pair of helical edge states. The velocity of the edge states can be tuned by adjusting the intensity of the microwave radiation. "
225
+ "We discuss the necessary experimental parameters for our proposal. This proposal provides an example and a proof of principle of a new non-equilibrium "
226
+ "topological state, Floquet topological insulator, introduced in this paper."
227
+ ),
228
  ],
229
  ]
230