Spaces:
Running
Running
Update README
Browse files
README.md
CHANGED
@@ -36,34 +36,43 @@ To keep things minimal, we mainly focus on top-tier conferences in AI.
|
|
36 |
|
37 |
To add or update a deadline:
|
38 |
- Fork the repository
|
39 |
-
-
|
40 |
-
- Make sure it has the `title`, `year`, `id`, `link`, `
|
41 |
+ See available timezone strings [here](https://momentjs.com/timezone/).
|
42 |
-
- Optionally add a `venue`, `note` and `
|
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 |
- Send a pull request to update the appropriate conference file in [src/data/conferences/](src/data/conferences/).
|
68 |
|
69 |
## How to run locally
|
|
|
36 |
|
37 |
To add or update a deadline:
|
38 |
- Fork the repository
|
39 |
+
- Add a new block to the appropriate conference file in [src/data/conferences/](src/data/conferences/). Do not update an existing block of a previous time the conference took place but rather add a new block at the bottom of the file
|
40 |
+
- Make sure it has the `title`, `year`, `id`, `link`, `deadlines`, `timezone`, `date`, `city`, `country`, `tags` attributes
|
41 |
+ See available timezone strings [here](https://momentjs.com/timezone/).
|
42 |
+
- Optionally add a `venue`, `note` and `hindex` (this refers to the h5-index from [here](https://scholar.google.com/citations?view_op=top_venues&vq=eng)) which indicates the importance of a conference
|
43 |
+
|
44 |
+
You can add any custom number of deadlines, with any custom string for the `type` and `label`. The app will simply use the first upcoming deadline to showcase a deadline counter, and display all upcoming deadlines in the conference details card.
|
45 |
+
|
46 |
+
Example:
|
47 |
+
```yaml
|
48 |
+
- title: BestConf
|
49 |
+
year: 2022
|
50 |
+
id: bestconf22 # title as lower case + last two digits of year
|
51 |
+
full_name: Best Conference for Anything # full conference name
|
52 |
+
link: link-to-website.com
|
53 |
+
deadlines:
|
54 |
+
- type: abstract
|
55 |
+
label: Abstract deadline
|
56 |
+
date: '2025-10-09 13:59:59'
|
57 |
+
timezone: GMT+02
|
58 |
+
- type: submission
|
59 |
+
label: Paper submission deadline
|
60 |
+
date: '2025-10-09 13:59:59'
|
61 |
+
timezone: GMT+02
|
62 |
+
timezone: Asia/Seoul
|
63 |
+
city: Incheon
|
64 |
+
country: South Korea
|
65 |
+
venue: Incheon Conference Centre, South Korea
|
66 |
+
date: September, 18-22, 2022
|
67 |
+
start: YYYY-MM-DD
|
68 |
+
end: YYYY-MM-DD
|
69 |
+
paperslink: link-to-full-paper-list.com
|
70 |
+
pwclink: link-to-papers-with-code.com
|
71 |
+
hindex: 100.0
|
72 |
+
tags:
|
73 |
+
- machine learning
|
74 |
+
note: Important
|
75 |
+
```
|
76 |
- Send a pull request to update the appropriate conference file in [src/data/conferences/](src/data/conferences/).
|
77 |
|
78 |
## How to run locally
|