Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Update
Browse files
app.py
CHANGED
@@ -7,6 +7,23 @@ from papers import PaperList
|
|
7 |
|
8 |
DESCRIPTION = "# ICLR 2024 Papers"
|
9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
|
11 |
paper_list = PaperList()
|
12 |
|
@@ -51,6 +68,8 @@ def update_df(
|
|
51 |
|
52 |
with gr.Blocks(css="style.css") as demo:
|
53 |
gr.Markdown(DESCRIPTION)
|
|
|
|
|
54 |
with gr.Group():
|
55 |
search_title = gr.Textbox(label="Search title")
|
56 |
with gr.Row():
|
|
|
7 |
|
8 |
DESCRIPTION = "# ICLR 2024 Papers"
|
9 |
|
10 |
+
TUTORIAL = """\
|
11 |
+
#### Tutorial for claiming the ICLR 2024 papers
|
12 |
+
|
13 |
+
1. Find your paper in the table below.
|
14 |
+
2. Click on the Paper page link in the table.
|
15 |
+
3. Click on your name in the corresponding Paper page.
|
16 |
+
4. Click “claim authorship”.
|
17 |
+
- This will redirect you to the Papers section of your Settings.
|
18 |
+
5. Confirm the request in the re-directed page.
|
19 |
+
|
20 |
+
The admin team will validate your request soon. Once confirmed, the Paper page will show as verified.
|
21 |
+
|
22 |
+
If you need further assistance, see the guide [here](https://huggingface.co/docs/hub/paper-pages#claiming-authorship-to-a-paper).
|
23 |
+
|
24 |
+
If your paper is not yet indexed on Hugging Face, you can index it by following this [guide](https://huggingface.co/docs/hub/paper-pages#can-i-have-a-paper-page-even-if-i-have-no-modeldatasetspace) and open a [PR](https://huggingface.co/datasets/ICLR2024/ICLR2024-papers/discussions) to add your Paper page to this Space.
|
25 |
+
"""
|
26 |
+
|
27 |
|
28 |
paper_list = PaperList()
|
29 |
|
|
|
68 |
|
69 |
with gr.Blocks(css="style.css") as demo:
|
70 |
gr.Markdown(DESCRIPTION)
|
71 |
+
with gr.Accordion(label="Tutorial", open=True):
|
72 |
+
gr.Markdown(TUTORIAL)
|
73 |
with gr.Group():
|
74 |
search_title = gr.Textbox(label="Search title")
|
75 |
with gr.Row():
|