Spaces:
Sleeping
Sleeping
changing examples
Browse files
app.py
CHANGED
|
@@ -193,25 +193,38 @@ def predict(title: str, abstract: str, threshold: float, top_k: int):
|
|
| 193 |
|
| 194 |
EXAMPLES = [
|
| 195 |
[
|
| 196 |
-
"
|
| 197 |
-
|
| 198 |
-
|
| 199 |
-
|
| 200 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 201 |
],
|
| 202 |
[
|
| 203 |
"Topological Insulators and Superconductors",
|
| 204 |
-
|
| 205 |
-
|
| 206 |
-
|
| 207 |
-
|
| 208 |
],
|
| 209 |
[
|
| 210 |
-
"
|
| 211 |
-
|
| 212 |
-
|
| 213 |
-
|
| 214 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
|