Spaces:
Running
Running
Add tutorial
Browse files
app.py
CHANGED
@@ -8,10 +8,47 @@ from paper_list import PaperList
|
|
8 |
|
9 |
DESCRIPTION = "# ICCV 2023 Papers"
|
10 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
paper_list = PaperList()
|
12 |
|
13 |
with gr.Blocks(css="style.css") as demo:
|
14 |
gr.Markdown(DESCRIPTION)
|
|
|
|
|
15 |
|
16 |
search_box = gr.Textbox(
|
17 |
label="Search Title", placeholder="You can search for titles with regular expressions. e.g. (?<!sur)face"
|
|
|
8 |
|
9 |
DESCRIPTION = "# ICCV 2023 Papers"
|
10 |
|
11 |
+
TUTORIAL = """\
|
12 |
+
#### Hugging Face ICCV 2023 event
|
13 |
+
|
14 |
+
Join the org using this [link](https://huggingface.co/organizations/ICCV2023/share/BXikCrBMdmnKzsFjVSulFrCsQAujoYGiNG).
|
15 |
+
|
16 |
+
ICCV 2023 organization is accepting paper claims from authors attending ICCV 2023.
|
17 |
+
|
18 |
+
This organization invites participants to claim their ICCV 2023 papers, upload models and datasets, and to
|
19 |
+
build their Gradio demos for conference papers on Hugging Face.
|
20 |
+
|
21 |
+
#### Hugging Face Paper Pages ICCV 2023
|
22 |
+
|
23 |
+
- ICCV 2023 Paper Pages will allow authors to claim their papers on Hugging Face. Claiming papers on
|
24 |
+
ICCV 2023 organization will allow people to find artifacts related to a paper such as models, datasets
|
25 |
+
and Gradio demos (in form of Spaces). This also enables the community to discuss about the paper.
|
26 |
+
|
27 |
+
#### Tutorial for claiming the ICCV 2023 papers
|
28 |
+
|
29 |
+
Visit the [demo](https://huggingface.co/spaces/ICML2023/ICML2023_papers) and find your paper, to claim your paper
|
30 |
+
see the guide [here](https://huggingface.co/docs/hub/paper-pages#claiming-authorship-to-a-paper) and to get started
|
31 |
+
with adding models [here](https://huggingface.co/docs/hub/models-uploading).
|
32 |
+
|
33 |
+
If your paper is not yet indexed on Hugging Face, you can index it by following this
|
34 |
+
[guide](https://huggingface.co/docs/hub/paper-pages#can-i-have-a-paper-page-even-if-i-have-no-modeldatasetspace)
|
35 |
+
and open a [PR](https://huggingface.co/spaces/ICCV2023/ICCV2023-papers/discussions) to add your paper to the
|
36 |
+
Hugging Face demo.
|
37 |
+
|
38 |
+
The Hub will automatically match paper to users based on their email.
|
39 |
+
|
40 |
+
If your paper is not linked to your account, you can click in your name in the corresponding Paper page and
|
41 |
+
click “claim authorship”. This will automatically re-direct to your paper settings where you can confirm the request.
|
42 |
+
The admin team will validate your request soon. Once confirmed, the Paper page will show as verified.
|
43 |
+
"""
|
44 |
+
|
45 |
+
|
46 |
paper_list = PaperList()
|
47 |
|
48 |
with gr.Blocks(css="style.css") as demo:
|
49 |
gr.Markdown(DESCRIPTION)
|
50 |
+
with gr.Accordion(label="Tutorial", open=False):
|
51 |
+
gr.Markdown(TUTORIAL)
|
52 |
|
53 |
search_box = gr.Textbox(
|
54 |
label="Search Title", placeholder="You can search for titles with regular expressions. e.g. (?<!sur)face"
|