nielsr HF Staff commited on
Commit
f3cc2d7
·
1 Parent(s): d657c18

Refactor conference data

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .github/scripts/update_conferences_new.py +324 -0
  2. CLAUDE.md +2 -2
  3. README.md +3 -3
  4. src/components/FilterBar.tsx +1 -1
  5. src/data/conferences.yml +0 -1260
  6. src/data/conferences/aaai.yml +41 -0
  7. src/data/conferences/aamas.yml +37 -0
  8. src/data/conferences/acl.yml +16 -0
  9. src/data/conferences/acm_mm.yml +22 -0
  10. src/data/conferences/aistats.yml +41 -0
  11. src/data/conferences/alt.yml +14 -0
  12. src/data/conferences/cec.yml +13 -0
  13. src/data/conferences/chi.yml +36 -0
  14. src/data/conferences/cikm.yml +20 -0
  15. src/data/conferences/coling.yml +18 -0
  16. src/data/conferences/collas.yml +17 -0
  17. src/data/conferences/colm.yml +15 -0
  18. src/data/conferences/colt.yml +13 -0
  19. src/data/conferences/conll.yml +16 -0
  20. src/data/conferences/corl.yml +17 -0
  21. src/data/conferences/cpal.yml +13 -0
  22. src/data/conferences/cvpr.yml +22 -0
  23. src/data/conferences/ecai.yml +19 -0
  24. src/data/conferences/eccv.yml +12 -0
  25. src/data/conferences/ecir.yml +17 -0
  26. src/data/conferences/ecml_pkdd.yml +15 -0
  27. src/data/conferences/emnlp.yml +16 -0
  28. src/data/conferences/emnlp_industry_track.yml +17 -0
  29. src/data/conferences/emnlp_system_demonstrations_track.yml +17 -0
  30. src/data/conferences/esann.yml +14 -0
  31. src/data/conferences/eurographics.yml +13 -0
  32. src/data/conferences/fg.yml +43 -0
  33. src/data/conferences/icann.yml +19 -0
  34. src/data/conferences/icassp.yml +39 -0
  35. src/data/conferences/iccv.yml +20 -0
  36. src/data/conferences/icdar.yml +14 -0
  37. src/data/conferences/icdm.yml +14 -0
  38. src/data/conferences/iclr.yml +61 -0
  39. src/data/conferences/icml.yml +17 -0
  40. src/data/conferences/icomp.yml +14 -0
  41. src/data/conferences/icra.yml +38 -0
  42. src/data/conferences/ijcai.yml +14 -0
  43. src/data/conferences/ijcnlp_and_aacl.yml +21 -0
  44. src/data/conferences/ijcnn.yml +40 -0
  45. src/data/conferences/interspeech.yml +16 -0
  46. src/data/conferences/iros.yml +13 -0
  47. src/data/conferences/iui.yml +19 -0
  48. src/data/conferences/kdd.yml +20 -0
  49. src/data/conferences/ksem.yml +13 -0
  50. src/data/conferences/lrec.yml +18 -0
.github/scripts/update_conferences_new.py ADDED
@@ -0,0 +1,324 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import yaml
2
+ import requests
3
+ import os
4
+ import re
5
+ from datetime import datetime
6
+ from typing import Dict, List, Any
7
+
8
+
9
+ def fetch_conference_files() -> List[Dict[str, Any]]:
10
+ """Fetch all conference YAML files from ccfddl repository."""
11
+
12
+ # First get the directory listing from GitHub API
13
+ api_url = "https://api.github.com/repos/ccfddl/ccf-deadlines/contents/conference/AI"
14
+ response = requests.get(api_url)
15
+ files = response.json()
16
+
17
+ conferences = []
18
+ for file in files:
19
+ if file['name'].endswith('.yml'):
20
+ yaml_content = requests.get(file['download_url']).text
21
+ conf_data = yaml.safe_load(yaml_content)
22
+ # The data is a list with a single item
23
+ if isinstance(conf_data, list) and len(conf_data) > 0:
24
+ conferences.append(conf_data[0])
25
+
26
+ return conferences
27
+
28
+
29
+ def parse_date_range(date_str: str, year: str) -> tuple[str, str]:
30
+ """Parse various date formats and return start and end dates."""
31
+ # Remove the year if it appears at the end of the string
32
+ date_str = date_str.replace(f", {year}", "")
33
+
34
+ # Handle various date formats
35
+ try:
36
+ # Split into start and end dates
37
+ if ' - ' in date_str:
38
+ start, end = date_str.split(' - ')
39
+ elif '-' in date_str:
40
+ start, end = date_str.split('-')
41
+ else:
42
+ # For single date format like "May 19, 2025"
43
+ start = end = date_str
44
+
45
+ # Clean up month abbreviations
46
+ month_map = {
47
+ 'Sept': 'September', # Handle Sept before Sep
48
+ 'Jan': 'January',
49
+ 'Feb': 'February',
50
+ 'Mar': 'March',
51
+ 'Apr': 'April',
52
+ 'Jun': 'June',
53
+ 'Jul': 'July',
54
+ 'Aug': 'August',
55
+ 'Sep': 'September',
56
+ 'Oct': 'October',
57
+ 'Nov': 'November',
58
+ 'Dec': 'December'
59
+ }
60
+
61
+ # Create a set of all month names (full and abbreviated)
62
+ all_months = set(month_map.keys()) | set(month_map.values())
63
+
64
+ # Handle cases like "April 29-May 4"
65
+ has_month = any(month in end for month in all_months)
66
+ if not has_month:
67
+ # End is just a day number, use start's month
68
+ start_parts = start.split()
69
+ if len(start_parts) >= 1:
70
+ end = f"{start_parts[0]} {end.strip()}"
71
+
72
+ # Replace month abbreviations
73
+ for abbr, full in month_map.items():
74
+ start = start.replace(abbr, full)
75
+ end = end.replace(abbr, full)
76
+
77
+ # Clean up any extra spaces
78
+ start = ' '.join(start.split())
79
+ end = ' '.join(end.split())
80
+
81
+ # Parse start date
82
+ start_date = datetime.strptime(f"{start}, {year}", "%B %d, %Y")
83
+
84
+ # Parse end date
85
+ end_date = datetime.strptime(f"{end}, {year}", "%B %d, %Y")
86
+
87
+ return start_date.strftime('%Y-%m-%d'), end_date.strftime('%Y-%m-%d')
88
+
89
+ except Exception as e:
90
+ raise ValueError(f"Could not parse date: {date_str} ({e})")
91
+
92
+
93
+ def transform_conference_data(conferences: List[Dict[str, Any]]) -> List[Dict[str, Any]]:
94
+ """Transform ccfddl format to our format."""
95
+ transformed = []
96
+ current_year = datetime.now().year
97
+
98
+ for conf in conferences:
99
+ # Get the most recent or upcoming conference instance
100
+ recent_conf = None
101
+ if 'confs' in conf:
102
+ for instance in conf['confs']:
103
+ if instance['year'] >= current_year:
104
+ recent_conf = instance
105
+ break
106
+
107
+ if not recent_conf:
108
+ continue
109
+
110
+ # Transform to our format
111
+ transformed_conf = {
112
+ 'title': conf.get('title', ''),
113
+ 'year': recent_conf['year'],
114
+ 'id': recent_conf['id'],
115
+ 'full_name': conf.get('description', ''),
116
+ 'link': recent_conf.get('link', ''),
117
+ 'deadline': recent_conf.get('timeline', [{}])[0].get('deadline', ''),
118
+ 'timezone': recent_conf.get('timezone', ''),
119
+ 'date': recent_conf.get('date', ''),
120
+ 'tags': [], # We'll need to maintain a mapping for tags
121
+ }
122
+
123
+ # Handle city and country fields instead of place
124
+ place = recent_conf.get('place', '')
125
+ if place:
126
+ # Try to parse the place into city and country if it contains a comma
127
+ if ',' in place:
128
+ city, country = place.split(',', 1)
129
+ transformed_conf['city'] = city.strip()
130
+ transformed_conf['country'] = country.strip()
131
+ else:
132
+ # If we can't parse, just set the country
133
+ transformed_conf['country'] = place.strip()
134
+
135
+ # Add optional fields
136
+ timeline = recent_conf.get('timeline', [{}])[0]
137
+ if 'abstract_deadline' in timeline:
138
+ transformed_conf['abstract_deadline'] = timeline['abstract_deadline']
139
+
140
+ # Parse date range for start/end
141
+ try:
142
+ if transformed_conf['date']:
143
+ start_date, end_date = parse_date_range(
144
+ transformed_conf['date'],
145
+ str(transformed_conf['year'])
146
+ )
147
+ transformed_conf['start'] = start_date
148
+ transformed_conf['end'] = end_date
149
+ except Exception as e:
150
+ print(f"Warning: Could not parse date for {transformed_conf['title']}: {e}")
151
+
152
+ # Add rankings as separate field
153
+ if 'rank' in conf:
154
+ rankings = []
155
+ for rank_type, rank_value in conf['rank'].items():
156
+ rankings.append(f"{rank_type.upper()}: {rank_value}")
157
+ if rankings:
158
+ transformed_conf['rankings'] = ', '.join(rankings)
159
+
160
+ transformed.append(transformed_conf)
161
+
162
+ return transformed
163
+
164
+
165
+ def load_all_current_conferences() -> Dict[str, List[Dict[str, Any]]]:
166
+ """Load all current conferences from individual files."""
167
+ conferences_dir = 'src/data/conferences'
168
+ conference_groups = {}
169
+
170
+ if not os.path.exists(conferences_dir):
171
+ return {}
172
+
173
+ for filename in os.listdir(conferences_dir):
174
+ if filename.endswith('.yml'):
175
+ filepath = os.path.join(conferences_dir, filename)
176
+ with open(filepath, 'r') as f:
177
+ conferences = yaml.safe_load(f)
178
+ if conferences:
179
+ # Extract conference title from the first entry
180
+ title = conferences[0]['title']
181
+ conference_groups[title] = conferences
182
+
183
+ return conference_groups
184
+
185
+
186
+ def create_filename_from_title(title: str) -> str:
187
+ """Create a filename-safe version of the conference title."""
188
+ filename = re.sub(r'[^a-zA-Z0-9\s&()-]', '', title.lower())
189
+ filename = re.sub(r'\s+', '_', filename)
190
+ filename = filename.replace('&', 'and')
191
+ filename = filename.strip('_')
192
+ return filename
193
+
194
+
195
+ def update_conference_loader():
196
+ """Update the conference loader file with all current conferences."""
197
+ conferences_dir = 'src/data/conferences'
198
+ loader_path = 'src/utils/conferenceLoader.ts'
199
+
200
+ # Get all conference files
201
+ conference_files = []
202
+ if os.path.exists(conferences_dir):
203
+ for filename in sorted(os.listdir(conferences_dir)):
204
+ if filename.endswith('.yml'):
205
+ conference_files.append(filename)
206
+
207
+ # Generate import statements
208
+ imports = []
209
+ variable_names = []
210
+
211
+ for filename in conference_files:
212
+ # Create variable name from filename
213
+ var_name = filename.replace('.yml', '').replace('-', '_') + 'Data'
214
+ variable_names.append(var_name)
215
+ imports.append(f"import {var_name} from '@/data/conferences/{filename}';")
216
+
217
+ # Generate the loader file content
218
+ loader_content = f"""import {{ Conference }} from '@/types/conference';
219
+
220
+ // Import all conference YAML files
221
+ {chr(10).join(imports)}
222
+
223
+ // Combine all conference data into a single array
224
+ const allConferencesData: Conference[] = [
225
+ {chr(10).join(f' ...{var_name},' for var_name in variable_names)}
226
+ ];
227
+
228
+ export default allConferencesData;"""
229
+
230
+ # Write the loader file
231
+ with open(loader_path, 'w') as f:
232
+ f.write(loader_content)
233
+
234
+ print(f"Updated conference loader with {len(conference_files)} conference files")
235
+
236
+
237
+ def main():
238
+ try:
239
+ # Load current conferences from individual files
240
+ current_conference_groups = load_all_current_conferences()
241
+
242
+ # Fetch and transform new data
243
+ new_conferences = fetch_conference_files()
244
+ if not new_conferences:
245
+ print("Warning: No conferences fetched from ccfddl")
246
+ return
247
+
248
+ transformed_conferences = transform_conference_data(new_conferences)
249
+ if not transformed_conferences:
250
+ print("Warning: No conferences transformed")
251
+ return
252
+
253
+ # Create conferences directory if it doesn't exist
254
+ conferences_dir = 'src/data/conferences'
255
+ os.makedirs(conferences_dir, exist_ok=True)
256
+
257
+ # Group new conferences by title
258
+ new_conference_groups = {}
259
+ for conf in transformed_conferences:
260
+ title = conf['title']
261
+ if title not in new_conference_groups:
262
+ new_conference_groups[title] = []
263
+ new_conference_groups[title].append(conf)
264
+
265
+ # Update each conference group
266
+ updated_count = 0
267
+ for title, new_confs in new_conference_groups.items():
268
+ filename = create_filename_from_title(title) + '.yml'
269
+ filepath = os.path.join(conferences_dir, filename)
270
+
271
+ # Get current conferences for this title
272
+ current_confs = current_conference_groups.get(title, [])
273
+ current_conf_dict = {conf['id']: conf for conf in current_confs}
274
+
275
+ # Update or add new conferences
276
+ for new_conf in new_confs:
277
+ if new_conf['id'] in current_conf_dict:
278
+ # Update existing conference while preserving fields
279
+ curr_conf = current_conf_dict[new_conf['id']]
280
+
281
+ # Preserve existing fields
282
+ preserved_fields = [
283
+ 'tags', 'venue', 'hindex', 'submission_deadline',
284
+ 'timezone_submission', 'rebuttal_period_start',
285
+ 'rebuttal_period_end', 'final_decision_date',
286
+ 'review_release_date', 'commitment_deadline',
287
+ 'start', 'end', 'note', 'city', 'country', 'deadlines'
288
+ ]
289
+ for field in preserved_fields:
290
+ if field in curr_conf:
291
+ new_conf[field] = curr_conf[field]
292
+
293
+ # Preserve existing rankings if available
294
+ if 'rankings' in curr_conf:
295
+ new_conf['rankings'] = curr_conf['rankings']
296
+
297
+ current_conf_dict[new_conf['id']] = new_conf
298
+ else:
299
+ # Add new conference
300
+ current_conf_dict[new_conf['id']] = new_conf
301
+
302
+ # Convert back to list and sort by year
303
+ all_confs = list(current_conf_dict.values())
304
+ all_confs.sort(key=lambda x: x.get('year', 9999))
305
+
306
+ # Write to individual file
307
+ with open(filepath, 'w') as f:
308
+ yaml.dump(all_confs, f, default_flow_style=False, sort_keys=False, allow_unicode=True)
309
+
310
+ updated_count += 1
311
+ print(f"Updated {filename} with {len(all_confs)} entries")
312
+
313
+ # Update the conference loader
314
+ update_conference_loader()
315
+
316
+ print(f"Successfully updated {updated_count} conference files")
317
+
318
+ except Exception as e:
319
+ print(f"Error: {e}")
320
+ raise
321
+
322
+
323
+ if __name__ == "__main__":
324
+ main()
CLAUDE.md CHANGED
@@ -32,7 +32,7 @@ npm preview
32
  - **Frontend**: React 18 + TypeScript + Vite
33
  - **UI Framework**: shadcn-ui components with Radix UI primitives
34
  - **Styling**: Tailwind CSS with custom animations
35
- - **Data Source**: Static YAML file (`src/data/conferences.yml`) updated via GitHub Actions
36
  - **State Management**: React hooks, no external state management library
37
 
38
  ### Key Directories
@@ -65,7 +65,7 @@ Conferences are defined by the `Conference` interface in `src/types/conference.t
65
  - `tsconfig.json` - TypeScript configuration
66
 
67
  ### Data Updates
68
- Conference data is automatically updated via GitHub Actions workflow (`.github/workflows/update-conferences.yml`) that fetches from ccfddl repository and creates pull requests with updates.
69
 
70
  ### Path Aliases
71
  - `@/*` maps to `src/*` for cleaner imports
 
32
  - **Frontend**: React 18 + TypeScript + Vite
33
  - **UI Framework**: shadcn-ui components with Radix UI primitives
34
  - **Styling**: Tailwind CSS with custom animations
35
+ - **Data Source**: Individual YAML files per conference (`src/data/conferences/`) updated via GitHub Actions
36
  - **State Management**: React hooks, no external state management library
37
 
38
  ### Key Directories
 
65
  - `tsconfig.json` - TypeScript configuration
66
 
67
  ### Data Updates
68
+ Conference data is automatically updated via GitHub Actions workflow (`.github/workflows/update-conferences.yml`) that fetches from ccfddl repository and creates pull requests with updates to individual conference files.
69
 
70
  ### Path Aliases
71
  - `@/*` maps to `src/*` for cleaner imports
README.md CHANGED
@@ -24,7 +24,7 @@ This project is entirely based on the awesome https://github.com/paperswithcode/
24
 
25
  New data is fetched from https://github.com/ccfddl/ccf-deadlines/tree/main/conference/AI thanks to [this comment](https://github.com/paperswithcode/ai-deadlines/issues/723#issuecomment-2603420945).
26
 
27
- A CRON job (set up as a [Github action](.github/workflows/update-conferences.yml)) automatically updates the data present at src/data/conferences.yml.
28
 
29
  **URL**: https://huggingface.co/spaces/huggingface/ai-deadlines
30
 
@@ -36,7 +36,7 @@ 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
- - Update [src/data/conferences.yml](src/data/conferences.yml)
40
  - Make sure it has the `title`, `year`, `id`, `link`, `deadline`, `timezone`, `date`, `city`, `country`, `tags` attributes
41
  + See available timezone strings [here](https://momentjs.com/timezone/).
42
  - Optionally add a `venue`, `note` and `abstract_deadline` in case this info is known
@@ -64,7 +64,7 @@ To add or update a deadline:
64
  - machine learning
65
  note: Important
66
  ```
67
- - Send a pull request to update [src/data/conferences.yml](src/data/conferences.yml).
68
 
69
  ## How to run locally
70
 
 
24
 
25
  New data is fetched from https://github.com/ccfddl/ccf-deadlines/tree/main/conference/AI thanks to [this comment](https://github.com/paperswithcode/ai-deadlines/issues/723#issuecomment-2603420945).
26
 
27
+ A CRON job (set up as a [Github action](.github/workflows/update-conferences.yml)) automatically updates the conference data in individual YAML files located in src/data/conferences/.
28
 
29
  **URL**: https://huggingface.co/spaces/huggingface/ai-deadlines
30
 
 
36
 
37
  To add or update a deadline:
38
  - Fork the repository
39
+ - Update the appropriate conference file in [src/data/conferences/](src/data/conferences/)
40
  - Make sure it has the `title`, `year`, `id`, `link`, `deadline`, `timezone`, `date`, `city`, `country`, `tags` attributes
41
  + See available timezone strings [here](https://momentjs.com/timezone/).
42
  - Optionally add a `venue`, `note` and `abstract_deadline` in case this info is known
 
64
  - machine learning
65
  note: Important
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
70
 
src/components/FilterBar.tsx CHANGED
@@ -1,5 +1,5 @@
1
  import { useMemo } from "react";
2
- import conferencesData from "@/data/conferences.yml";
3
  import { X, ChevronRight, Filter } from "lucide-react";
4
  import { getAllCountries } from "@/utils/countryExtractor";
5
  import {
 
1
  import { useMemo } from "react";
2
+ import conferencesData from "@/utils/conferenceLoader";
3
  import { X, ChevronRight, Filter } from "lucide-react";
4
  import { getAllCountries } from "@/utils/countryExtractor";
5
  import {
src/data/conferences.yml DELETED
@@ -1,1260 +0,0 @@
1
- - title: WACV
2
- year: 2026
3
- id: wacv26
4
- full_name: IEEE/CVF Winter Conference on Applications of Computer Vision
5
- link: https://wacv.thecvf.com/
6
- deadlines:
7
- - type: registration
8
- label: Round 2 New Paper Registration
9
- date: '2025-09-12 23:59:59'
10
- timezone: UTC-12
11
- - type: submission
12
- label: Round 2 Paper Submission
13
- date: '2025-09-19 23:59:59'
14
- timezone: UTC-12
15
- - type: submission
16
- label: Round 2 Supplementary Material Submission
17
- date: '2025-09-19 23:59:59'
18
- timezone: UTC-12
19
- - type: rebuttal_and_revision
20
- label: Round 1 Rebuttal and Revision Submission
21
- date: '2025-09-19 23:59:59'
22
- timezone: UTC-12
23
- - type: notification
24
- label: Round 1 Final Decisions Released to Authors
25
- date: '2025-11-06 07:59:59'
26
- timezone: UTC
27
- - type: notification
28
- label: Round 2 Reviews and Final Decisions to Authors
29
- date: '2025-11-06 07:59:59'
30
- timezone: UTC
31
- timezone: UTC-12
32
- date: March 6 - March 10, 2026
33
- city: Tucson, Arizona
34
- country: USA
35
- venue: JW Marriott Starpass in Tucson, Arizona, USA
36
- tags:
37
- - machine-learning
38
- - computer-vision
39
-
40
- - title: WWW
41
- year: 2026
42
- id: www26
43
- full_name: The Web Conference
44
- link: https://www2026.thewebconf.org/
45
- deadline: '2025-10-07 23:59:59'
46
- abstract_deadline: '2025-09-30 23:59:59'
47
- deadlines:
48
- - type: abstract
49
- label: Abstract deadline on 2025-09-30 23:59:59 UTC-12!
50
- date: '2025-10-08 13:59:59'
51
- timezone: GMT+02
52
- - type: submission
53
- label: Paper Submission
54
- date: '2025-10-07 23:59:59'
55
- timezone: UTC-12
56
- - type: rebuttal_start
57
- label: Rebuttal Period Start
58
- date: '2025-11-24 00:00:00'
59
- timezone: UTC-12
60
- - type: rebuttal_end
61
- label: Rebuttal Period End
62
- date: '2025-12-01 23:59:59'
63
- - type: notification
64
- label: Notification
65
- date: '2026-01-13 23:59:59'
66
- timezone: UTC-12
67
- - type: camera_ready
68
- label: Camera Ready
69
- date: '2026-01-15 23:59:59'
70
- timezone: UTC-12
71
- timezone: GMT+02
72
- city: Dubai
73
- country: UAE
74
- date: April, 13-17, 2026
75
- start: 2026-04-13
76
- end: 2026-04-17
77
- tags:
78
- - machine learning
79
- - recommendation
80
- - semantics and knowledge
81
- - retrieval
82
- - web mining
83
- - content analysis
84
-
85
- - title: AISTATS
86
- year: 2026
87
- id: aistats26
88
- full_name: International Conference on Artificial Intelligence and Statistics
89
- link: https://virtual.aistats.org/Conferences/2026
90
- deadlines:
91
- - type: submission
92
- label: Abstract deadline on 2025-09-25 23:59:59 UTC-12!
93
- date: '2025-10-03 13:59:59'
94
- timezone: GMT+02
95
- timezone: GMT+02
96
- date: May 2-5, 2026
97
- tags:
98
- - machine-learning
99
- city: Tangier
100
- country: Morocco
101
- start: '2026-05-02'
102
- end: '2026-05-05'
103
- rankings: 'CCF: C, CORE: A, THCPL: B'
104
- venue: TBA
105
- hindex: 101
106
- note: Abstract deadline on 2025-09-25 23:59:59 UTC-12!
107
-
108
- - title: ICASSP
109
- year: 2026
110
- id: icassp26
111
- full_name: International Conference on Acoustics, Speech and Signal Processing
112
- link: https://2026.ieeeicassp.org
113
- deadlines:
114
- - type: submission
115
- label: Paper Submission
116
- date: '2025-09-18 08:59:59'
117
- timezone: GMT+02
118
- timezone: GMT+02
119
- city: Barcelona
120
- country: Spain
121
- venue: Barcelona International Convention Center (CCIB), Barcelona, Spain
122
- date: May 4-8, 2026
123
- start: 2025-05-04
124
- end: 2025-05-08
125
- tags:
126
- - speech
127
- - signal-processing
128
-
129
- - title: Interspeech
130
- year: 2026
131
- id: interspeech2026
132
- full_name: Interspeech
133
- link: https://interspeech2026.org
134
- deadline: '2026-03-02 23:59:59'
135
- timezone: UTC-12
136
- city: Sydney
137
- country: Australia
138
- venue: International Convention Centre (ICC) Sydney
139
- date: September 27-October 1, 2026
140
- start: 2026-09-27
141
- end: 2026-10-01
142
- tags:
143
- - speech
144
- - signal-processing
145
-
146
- - title: EMNLP (System Demonstrations Track)
147
- year: 2025
148
- id: emnlp25sys
149
- full_name: The annual Conference on Empirical Methods in Natural Language Processing (System Demonstrations Track)
150
- link: https://2025.emnlp.org/
151
- deadline: '2025-07-04 23:59:59'
152
- timezone: UTC-12
153
- date: November 5-9, 2025
154
- tags:
155
- - natural-language-processing
156
- city: Suzhou
157
- country: China
158
- rankings: 'CCF: B, CORE: A*, THCPL: A'
159
- venue: Suzhou, China
160
- start: '2025-11-05'
161
- end: '2025-11-09'
162
-
163
- - title: EMNLP (Industry Track)
164
- year: 2025
165
- id: emnlp25ind
166
- full_name: The annual Conference on Empirical Methods in Natural Language Processing (Industry Track)
167
- link: https://2025.emnlp.org/
168
- deadline: '2025-07-04 23:59:59'
169
- timezone: UTC-12
170
- date: November 5 - 9, 2025
171
- tags:
172
- - natural-language-processing
173
- city: Suzhou
174
- country: China
175
- rankings: 'CCF: B, CORE: A*, THCPL: A'
176
- venue: Suzhou, China
177
- start: '2025-11-05'
178
- end: '2025-11-09'
179
-
180
- - title: IJCNLP & AACL
181
- year: 2025
182
- id: ijcnlpaacl25
183
- full_name: International Joint Conference on Natural Language Processing & Asia-Pacific Chapter of the Association for Computational Linguistics
184
- link: https://2025.aaclnet.org/
185
- deadline: '2025-07-28 23:59:59'
186
- abstract_deadline: '2025-07-28 23:59:59'
187
- timezone: UTC-12
188
- city: Mumbai
189
- country: India
190
- venue:
191
- date: December 20-24, 2025
192
- start: 2025-12-20
193
- end: 2025-12-24
194
- paperslink:
195
- pwclink:
196
- hindex:
197
- tags:
198
- - natural language processing
199
- note: Submissions through ARR.
200
-
201
- - title: ICLR
202
- year: 2026
203
- id: iclr26
204
- full_name: The Fourteenth International Conference on Learning Representations
205
- link: https://iclr.cc/Conferences/2026
206
- deadline: '2025-09-24 23:59:59'
207
- abstract_deadline: '2025-09-19 23:59:59'
208
- deadlines:
209
- - type: abstract
210
- label: Abstract Submission
211
- date: '2025-09-19 23:59:59'
212
- timezone: UTC-12
213
- - type: submission
214
- label: Paper Submission
215
- date: '2025-09-24 23:59:59'
216
- timezone: UTC-12
217
- - type: review_release
218
- label: Reviews Released
219
- date: '2026-01-20 23:59:59'
220
- timezone: UTC-12
221
- - type: notification
222
- label: Notification
223
- date: '2026-02-01 23:59:59'
224
- timezone: UTC-12
225
- timezone: UTC-12
226
- city: Rio de Janeiro
227
- country: Brazil
228
- venue: To be announced
229
- date: April 23-27, 2026
230
- start: 2026-04-23
231
- end: 2026-04-27
232
- hindex: 304
233
- tags:
234
- - data-mining
235
- - machine-learning
236
- - natural-language-processing
237
- - computer-vision
238
- - robotics
239
- - mathematics
240
- - reinforcement-learning
241
- note: Mandatory abstract deadline on Sep 19, 2025. More info <a href='https://iclr.cc/Conferences/2026/Dates#'>here</a>.
242
-
243
- - title: CIKM
244
- year: 2025
245
- id: cikm25
246
- full_name: Conference on Information and Knowledge Management
247
- note: Abstract deadline on May 16, 2025
248
- link: https://cikm2025.org/
249
- deadline: '2025-05-23 23:59:00'
250
- timezone: UTC-12
251
- city: Seoul
252
- country: South Korea
253
- venue: COEX, Seoul, South Korea
254
- date: November 11-14, 2025
255
- start: 2025-11-11
256
- end: 2025-11-14
257
- tags:
258
- - web-search
259
- - data-mining
260
- - machine-learning
261
- abstract_deadline: '2025-05-16 23:59:00'
262
- hindex: 91.0
263
-
264
- - title: ICRA
265
- year: 2025
266
- id: icra25
267
- full_name: IEEE International Conference on Robotics and Automation
268
- link: https://2025.ieee-icra.org
269
- deadline: '2024-07-15 12:00:00'
270
- timezone: UTC-4
271
- date: May 19-23, 2025
272
- tags:
273
- - machine-learning
274
- - robotics
275
- city: Atlanta
276
- country: USA
277
- start: '2026-06-01'
278
- end: '2026-06-05'
279
- rankings: 'CCF: B, CORE: A*, THCPL: A'
280
- venue: Georgia World Congress Center, Atlanta, USA
281
-
282
- - title: WACV
283
- year: 2025
284
- id: wacv25
285
- full_name: IEEE/CVF Winter Conference on Applications of Computer Vision
286
- link: https://wacv2025.thecvf.com/
287
- deadline: '2024-07-15 23:59:59'
288
- timezone: UTC-7
289
- date: February 28 - March 4, 2025
290
- tags:
291
- - machine-learning
292
- - computer-vision
293
- city: Tucson
294
- country: USA
295
- rankings: 'CCF: N, CORE: A, THCPL: N'
296
- venue: JW Marriott Starpass in Tucson, Arizona, USA
297
-
298
- - title: WSDM
299
- year: 2025
300
- id: wsdm25
301
- full_name: ACM International Conference on Web Search and Data Mining
302
- note: Abstract deadline on August 7, 2024
303
- link: https://www.wsdm-conference.org/2025/
304
- deadline: '2024-08-14 23:59:00'
305
- timezone: UTC-12
306
- city: Hannover
307
- country: Germany
308
- venue: Hannover Congress Center, Hannover, Germany
309
- date: March 10-14, 2025
310
- start: 2025-03-10
311
- end: 2025-03-14
312
- tags:
313
- - web-search
314
- - data-mining
315
- abstract_deadline: '2024-08-07 23:59:00'
316
- rankings: 'CCF: B, CORE: A*, THCPL: B'
317
-
318
- - title: AAAI
319
- year: 2025
320
- id: aaai25
321
- full_name: AAAI Conference on Artificial Intelligence
322
- link: https://aaai.org/conference/aaai/aaai-25/
323
- deadline: '2024-08-15 23:59:59'
324
- timezone: UTC-12
325
- date: February 25 - March 4, 2025
326
- tags:
327
- - data-mining
328
- - machine-learning
329
- - natural-language-processing
330
- - computer-vision
331
- city: PHILADELPHIA
332
- country: PENNSYLVANIA
333
- abstract_deadline: '2024-08-07 23:59:59'
334
- rankings: 'CCF: A, CORE: A*, THCPL: A'
335
- venue: Pennsylvania Convention Center, Philadelphia, USA
336
- hindex: 212
337
- note: Mandatory abstract deadline on Aug 07, 2024, and supplementary material deadline on Aug 19, 2024. More info <a href='https://aaai.org/conference/aaai/aaai-25/'>here</a>.
338
-
339
- - title: ICASSP
340
- year: 2025
341
- id: icassp25
342
- full_name: International Conference on Acoustics, Speech and Signal Processing
343
- link: https://2025.ieeeicassp.org/
344
- deadlines:
345
- - type: submission
346
- label: Paper Submission
347
- date: '2025-09-18 08:59:59'
348
- timezone: GMT+02
349
- timezone: UTC-12
350
- city: Hyderabad
351
- country: India
352
- venue: Hyderabad International Convention Center, Hyderabad, India
353
- date: April 6-11, 2025
354
- start: 2025-04-06
355
- end: 2025-04-11
356
- tags:
357
- - signal-processing
358
-
359
- - title: CHI
360
- year: 2025
361
- id: chi25
362
- full_name: The ACM Conference on Human Factors in Computing Systems
363
- link: https://chi2025.acm.org/
364
- deadline: '2024-09-12 23:59:59'
365
- abstract_deadline: '2024-09-05 23:59:59'
366
- timezone: UTC-12
367
- city: Yokohama
368
- country: Japan
369
- venue: Pacifico Yokohama Conference Center, Yokohama, Japan
370
- date: April 26 - May 01, 2025
371
- start: 2025-04-26
372
- end: 2025-05-01
373
- hindex: 122
374
- tags:
375
- - human-computer-interaction
376
- note: Mandatory abstract deadline on Sep 05, 2024. More info <a href='https://chi2025.acm.org/for-authors/papers/'>here</a>.
377
-
378
- - title: COLING
379
- year: 2025
380
- id: coling25
381
- full_name: INTERNATIONNAL CONFERENCE ON COMPUTATIONAL LINGUISTICS
382
- link: https://coling2025.org/
383
- deadline: '2024-09-16 23:59:59'
384
- timezone: UTC-12
385
- date: Jan 19 - Jan 24, 2025
386
- tags:
387
- - natural-language-processing
388
- city: Abu Dhabi
389
- country: UAE
390
- start: '2025-01-19'
391
- end: '2025-01-24'
392
- rankings: 'CCF: B, CORE: B, THCPL: B'
393
- venue: Abu Dhabi National Exhibition Centre (ADNEC), Abu Dhabi, UAE
394
- hindex: 73
395
- note: More info can be found <a href="https://coling2025.org/calls/main_conference_papers/#important-dates">here</a>.
396
-
397
- - title: ALT
398
- year: 2025
399
- id: alt2025
400
- full_name: International Conference on Algorithmic Learning Theory
401
- link: https://algorithmiclearningtheory.org/alt2025/
402
- deadline: '2024-10-01 09:59:59'
403
- timezone: UTC+0
404
- date: February 24-27, 2025
405
- tags:
406
- - machine-learning
407
- city: Milan
408
- country: Italy
409
- rankings: 'CCF: C, CORE: B, THCPL: B'
410
- venue: Politecnico di Milano, Milan, Italy
411
-
412
- - title: ICLR
413
- year: 2025
414
- id: iclr25
415
- full_name: International Conference on Learning Representations
416
- link: https://iclr.cc/Conferences/2025
417
- deadline: '2024-10-01 23:59:59'
418
- timezone: UTC-12
419
- date: April 24-28, 2025
420
- tags:
421
- - machine-learning
422
- - computer-vision
423
- - natural-language-processing
424
- - signal-processing
425
- country: Singapore
426
- abstract_deadline: '2024-09-27 23:59:59'
427
- rankings: 'CCF: N, CORE: A*, THCPL: A'
428
- venue: Singapore EXPO - 1 Expo Drive, Singapore
429
- hindex: 304
430
- note: Mandatory abstract deadline on September 27, 2024. More info <a href='https://iclr.cc/Conferences/2025/CallForPapers'>here</a>.
431
- city: Singapore
432
-
433
- - title: Eurographics
434
- year: 2025
435
- id: eurographics25
436
- full_name: The 46th Annual Conference of the European Association for Computer Graphics
437
- link: https://www.eg.org/wp/event/eurographics-2025/
438
- deadline: '2024-10-03 23:59:59'
439
- timezone: UTC+1
440
- city: London
441
- country: UK
442
- date: May 12 - 16, 2025
443
- tags:
444
- - computer-graphics
445
- venue: London
446
-
447
- - title: ECIR
448
- year: 2025
449
- id: ecir25
450
- full_name: European Conference on Information Retrieval
451
- link: https://ecir2025.eu/
452
- deadline: '2024-10-09 23:59:59'
453
- abstract_deadline: '2024-10-02 23:59:59'
454
- timezone: UTC-12
455
- city: Lucca
456
- country: Tuscany
457
- venue: IMT School for Advanced Studies Lucca, Lucca, Italy
458
- date: April 6 - April 10, 2025
459
- start: '2025-04-06'
460
- end: '2025-04-10'
461
- tags:
462
- - data-mining
463
- note: Abstract deadline on Oct 2, 2024. More info <a href='https://ecir2025.eu/'>here</a>.
464
-
465
- - title: AISTATS
466
- year: 2025
467
- id: aistats25
468
- full_name: International Conference on Artificial Intelligence and Statistics
469
- link: https://aistats.org/aistats2025
470
- deadline: '2024-10-10 23:59:59'
471
- timezone: UTC-12
472
- date: May 3-5, 2025
473
- tags:
474
- - machine-learning
475
- city: Mai Khao
476
- country: Thailand
477
- abstract_deadline: '2024-10-03 23:59:59'
478
- start: '2025-05-03'
479
- end: '2025-05-05'
480
- rankings: 'CCF: C, CORE: A, THCPL: B'
481
- venue: TBA
482
- hindex: 100
483
- note: Abstract deadline on October 3, 2024. More info <a href='https://aistats.org/aistats2025/call-for-papers.html'>here</a>
484
-
485
- - title: NAACL
486
- year: 2025
487
- id: naacl25
488
- full_name: The Annual Conference of the North American Chapter of the Association for Computational Linguistics
489
- link: https://2025.naacl.org/
490
- deadline: '2024-10-15 23:59:59'
491
- timezone: UTC-12
492
- date: April 29-May 4, 2025
493
- tags:
494
- - natural-language-processing
495
- city: Albuquerque
496
- country: New Mexico
497
- rankings: 'CCF: B, CORE: A, THCPL: B'
498
- hindex: 132
499
- note: All submissions must be done through ARR. More info <a href='https://2025.naacl.org/calls/papers/'>here</a>.
500
-
501
- - title: AAMAS
502
- year: 2025
503
- id: aamas25
504
- full_name: International Conference on Autonomous Agents and Multiagent Systems
505
- link: https://aamas2025.org/
506
- deadline: '2024-10-16 23:59:59'
507
- timezone: UTC-12
508
- date: May 19-23, 2025
509
- tags:
510
- - machine-learning
511
- - robotics
512
- city: Detroit
513
- country: Michigan
514
- abstract_deadline: '2024-10-09 23:59:59'
515
- start: '2025-05-19'
516
- end: '2025-05-23'
517
- rankings: 'CCF: B, CORE: A*, THCPL: B'
518
- note: Mandatory abstract deadline on Oct 09, 2024. More info <a href='https://aamas2025.org/'>here</a>.
519
-
520
- - title: CVPR
521
- year: 2025
522
- id: cvpr25
523
- full_name: IEEE/CVF Conference on Computer Vision and Pattern Recognition
524
- link: https://cvpr.thecvf.com/Conferences/2025/CallForPapers
525
- deadline: '2024-11-14 23:59:00'
526
- timezone: UTC-8
527
- date: June 10-17, 2025
528
- tags:
529
- - computer-vision
530
- city: Nashville
531
- country: Tennessee
532
- abstract_deadline: '2024-11-07 23:59:00'
533
- rankings: 'CCF: A, CORE: A*, THCPL: A'
534
- venue: Music City Center, Nashville, USA
535
- hindex: 389
536
- rebuttal_period_end: '2025-01-31 07:59:59'
537
- final_decision_date: '2025-02-26 07:59:59'
538
- review_release_date: '2025-01-23 07:59:59'
539
- note: OpenReview account creation deadline on Nov 1st, paper registration deadline on Nov 8th, supplementary materials deadline on Nov 22nd. Reviews released on Jan 23rd, rebuttal period ends Jan 31st, and final decisions on Feb 26th.
540
-
541
- - title: ESANN
542
- year: 2025
543
- id: esann25
544
- full_name: European Symposium on Artificial Neural Networks, Computational Intelligence and Machine Learning
545
- link: https://www.esann.org/
546
- deadline: '2024-11-20 00:00:00'
547
- timezone: UTC-8
548
- date: April 23 - April 25, 2025
549
- tags: []
550
- city: Bruges
551
- country: Belgium
552
- abstract_deadline: '2024-11-20 00:00:00'
553
- rankings: 'CCF: N, CORE: B, THCPL: N'
554
-
555
- - title: CPAL
556
- year: 2025
557
- id: cpal25
558
- full_name: The Conference on Parsimony and Learning
559
- link: https://cpal.cc/
560
- deadline: '2024-11-25 23:59:59'
561
- timezone: AoE
562
- date: March 24-27, 2025
563
- tags:
564
- - machine-learning
565
- city: California
566
- country: USA
567
- rankings: 'CCF: N, CORE: N, THCPL: N'
568
-
569
- - title: CEC
570
- year: 2025
571
- id: cec2025
572
- full_name: IEEE Congress on Evolutionary Computation
573
- link: https://www.cec2025.org/
574
- deadline: '2025-01-15 23:59:59'
575
- timezone: UTC-12
576
- date: June 8-12, 2025
577
- tags:
578
- - machine-learning
579
- city: Hangzhou
580
- country: China
581
- rankings: 'CCF: N, CORE: B, THCPL: N'
582
-
583
- - title: SIGGRAPH
584
- year: 2025
585
- id: siggraph25
586
- full_name: Conference on Computer Graphics and Interactive Techniques
587
- link: https://s2025.siggraph.org/
588
- deadline: '2025-01-16 23:59:59'
589
- timezone: UTC-8
590
- city: Vancouver
591
- country: Canada
592
- venue: Convention Centre, Vancouver, Canada
593
- date: August 10-14, 2025
594
- start: '2025-08-10'
595
- end: '2025-08-14'
596
- tags:
597
- - computer-graphics
598
-
599
- - title: IJCAI
600
- year: 2025
601
- id: ijcai25
602
- full_name: International Joint Conference on Artificial Intelligence
603
- link: https://2025.ijcai.org/
604
- deadline: '2025-01-23 23:59:59'
605
- timezone: UTC-12
606
- date: August 16-22, 2025
607
- tags:
608
- - machine-learning
609
- city: Montreal
610
- country: Canada
611
- abstract_deadline: '2025-01-16 23:59:59'
612
- rankings: 'CCF: A, CORE: A*, THCPL: B'
613
-
614
- - title: RSS
615
- year: 2025
616
- id: rss25
617
- full_name: Robotics Science and Systems
618
- link: https://roboticsconference.org
619
- deadline: '2025-01-24 23:59:00'
620
- timezone: AoE
621
- date: June 21-25, 2025
622
- tags:
623
- - machine-learning
624
- city: Los Angeles
625
- country: USA
626
- abstract_deadline: '2025-01-17 23:59:00'
627
- rankings: 'CCF: N, CORE: A*, THCPL: A'
628
-
629
- - title: ICML
630
- year: 2025
631
- id: icml25
632
- full_name: International Conference on Machine Learning
633
- link: https://icml.cc/Conferences/2025
634
- deadline: '2025-01-30 23:59:59'
635
- timezone: UTC-12
636
- date: July 11-19, 2025
637
- tags:
638
- - machine-learning
639
- city: Vancouver
640
- country: Canada
641
- abstract_deadline: '2025-01-23 23:59:59'
642
- rankings: 'CCF: A, CORE: A*, THCPL: A'
643
- venue: Vancouver Convention Center
644
- submission_deadline: '2025-01-31 03:59:59'
645
- timezone_submission: PST
646
-
647
- - title: IJCNN
648
- year: 2026
649
- id: ijcnn26
650
- full_name: International Joint Conference on Neural Networks
651
- link: https://attend.ieee.org/wcci-2026/
652
- deadline: '2025-09-24 23:59:59'
653
- timezone: UTC-12
654
- date: June 21-June 26, 2026
655
- tags:
656
- - machine-learning
657
- city: Maastricht
658
- country: Netherlands
659
- rankings: 'CCF: C, CORE: B, THCPL: B'
660
- venue: MECC Maastricht
661
- deadlines:
662
- - type: submission
663
- label: Paper Submission
664
- date: '2026-01-31 23:59:59'
665
- timezone: UTC-12
666
- - type: notification
667
- label: Paper acceptance notification
668
- date: '2026-03-15 23:59:59'
669
- timezone: UTC-12
670
- - type: camera_ready
671
- label: Camera-ready papers
672
- date: '2026-05-15 23:59:59'
673
- timezone: UTC-12
674
-
675
- - title: IJCNN
676
- year: 2025
677
- id: ijcnn2025
678
- full_name: International Joint Conference on Neural Networks
679
- link: https://2025.ijcnn.org/
680
- deadline: '2025-02-05 23:59:59'
681
- timezone: UTC-12
682
- date: June 30 - July 5, 2025
683
- tags:
684
- - machine-learning
685
- city: Rome
686
- country: Italy
687
- rankings: 'CCF: C, CORE: B, THCPL: B'
688
-
689
- - title: COLT
690
- year: 2025
691
- id: colt25
692
- full_name: Annual Conference on Learning Theory
693
- link: https://learningtheory.org/colt2025/
694
- deadline: '2025-02-06 16:59:59'
695
- timezone: UTC-5
696
- date: June 30 - July 4, 2025
697
- tags:
698
- - machine-learning
699
- city: Lyon
700
- country: France
701
- rankings: 'CCF: B, CORE: A*, THCPL: A'
702
-
703
- - title: SGP
704
- year: 2025
705
- id: sgp25
706
- full_name: Synopsium on Geometric Processing
707
- link: https://sgp2025.my.canva.site/
708
- deadline: '2025-02-07 23:59:59'
709
- abstract_deadline: '2025-02-04 23:59:59'
710
- final_decision_date: '2025-03-15'
711
- timezone: UTC-12
712
- city: Bilbao
713
- country: Spain
714
- date: June 30-July 4, 2025
715
- start: '2025-06-30'
716
- end: '2025-07-04'
717
- venue: Bizkaia Aretoa, Bilbao, Spain
718
- note: All important dates can be found <a href='https://sgp2025.my.canva.site/submit-page-sgp'>here</a>.
719
- tags:
720
- - computer-vision
721
- - machine-learning
722
-
723
- - title: UAI
724
- year: 2025
725
- id: uai25
726
- full_name: Conference on Uncertainty in Artificial Intelligence
727
- link: https://www.auai.org/uai2025/
728
- deadline: '2025-02-10 23:59:59'
729
- timezone: AoE
730
- date: July 21-25, 2025
731
- tags:
732
- - machine-learning
733
- city: Rio de Janeiro
734
- country: Brazil
735
- rankings: 'CCF: B, CORE: A, THCPL: B'
736
-
737
- - title: KDD
738
- year: 2025
739
- id: kdd25
740
- full_name: ACM SIGKDD Conference on Knowledge Discovery and Data Mining
741
- deadline: '2025-02-10 23:59:59'
742
- abstract_deadline: '2025-02-03 23:59:59'
743
- timezone: AoE
744
- city: Toronto
745
- country: Canada
746
- date: August 3 - August 7, 2025
747
- start: '2025-08-03'
748
- end: '2025-08-07'
749
- tags:
750
- - data-mining
751
- - machine-learning
752
- note: Abstract deadline on February 3rd, 2025. Paper submission deadline February 10th, 2025 AoE.
753
- rebuttal_period_start: '2025-04-04'
754
- rebuttal_period_end: '2025-04-18'
755
- final_decision_date: '2025-05-16'
756
-
757
- - title: ACL
758
- year: 2025
759
- id: acl25
760
- full_name: Annual Meeting of the Association for Computational Linguistics
761
- link: https://2025.aclweb.org/
762
- deadline: '2025-02-15 23:59:59'
763
- timezone: UTC-12
764
- date: July 27 - August 1, 2025
765
- tags:
766
- - natural-language-processing
767
- city: Vienna
768
- country: Austria
769
- rankings: 'CCF: A, CORE: A*, THCPL: A'
770
- final_decision_date: '2025-05-15 23:59:59'
771
- commitment_deadline: '2025-04-10 23:59:59'
772
- note: ARR commitment deadline on April 10th, 2025.
773
-
774
- - title: MathAI 2025
775
- year: 2025
776
- id: MathAI2025
777
- full_name: The International Conference dedicated to mathematics in artificial intelligence
778
- link: https://mathai.club
779
- deadline: 2025-02-20 23:59
780
- abstract_deadline: 2025-02-01 23:59
781
- timezone: Russia/Moscow
782
- city: Sochi
783
- country: Russia
784
- date: March, 24-28, 2025
785
- start: 2025-03-24
786
- end: 2025-03-28
787
- paperslink: https://openreview.net/group?id=mathai.club/MathAI/2025/Conference
788
- pwclink: https://openreview.net/group?id=mathai.club/MathAI/2025/Conference
789
- hindex: 100.0
790
- tags:
791
- - machine-learning
792
- - mathematics
793
- note: Abstract deadline on February 1, 2025. More info <a href='https://mathai.club/call-for-papers'>here</a>
794
-
795
- - title: RLC
796
- year: 2025
797
- id: rlc25
798
- full_name: Reinforcement Learning Conference
799
- link: https://rl-conference.cc/
800
- deadline: '2025-02-28 23:59:59'
801
- abstract_deadline: '2025-02-21 23:59:59'
802
- final_decision_date: '2025-05-09'
803
- timezone: UTC-12
804
- city: Edmonton
805
- country: Canada
806
- date: August 5 - August 8, 2025
807
- tags:
808
- - machine-learning
809
- - reinforcement-learning
810
- note: Mandatory abstract deadline on Feb 21, 2025.
811
-
812
- - title: IROS
813
- year: 2025
814
- id: iros25
815
- full_name: IEEE\RSJ International Conference on Intelligent Robots and Systems
816
- link: http://www.iros25.org/
817
- deadline: '2025-03-01 23:59:59'
818
- timezone: UTC-8
819
- date: October 19-25, 2025
820
- tags:
821
- - robotics
822
- city: Hangzhou
823
- country: China
824
- rankings: 'CCF: C, CORE: A, THCPL: B'
825
-
826
- - title: CoLLAs
827
- year: 2025
828
- id: collas25
829
- full_name: Conference on Lifelong Learning Agents
830
- link: https://lifelong-ml.cc
831
- deadline: '2025-03-03 23:59:59'
832
- abstract_deadline: '2025-02-26 23:59:59'
833
- timezone: UTC-12
834
- city: Philadelphia
835
- country: USA
836
- date: August 11-14, 2025
837
- start: 2025-08-11
838
- end: 2025-08-14
839
- tags:
840
- - machine-learning
841
- - lifelong-learning
842
- note: Abstract deadline on February 26, 2025. More info <a href='https://lifelong-ml.cc/Conferences/2025/call'>here</a>
843
-
844
- - title: ICDAR
845
- year: 2025
846
- id: icdar2025
847
- full_name: International Conference on Document Analysis and Recognition
848
- link: https://www.icdar2025.com/home
849
- deadline: '2025-03-07 23:59:59'
850
- timezone: UTC+0
851
- date: September 17-21, 2025
852
- tags:
853
- - computer-vision
854
- city: Wuhan
855
- country: China
856
- abstract_deadline: '2025-02-28 23:59:59'
857
- rankings: 'CCF: C, CORE: A, THCPL: B'
858
-
859
- - title: ICCV
860
- year: 2025
861
- id: iccv25
862
- full_name: IEEE International Conference on Computer Vision
863
- link: https://iccv.thecvf.com/Conferences/2025
864
- deadline: '2025-03-08 09:59:59'
865
- timezone: UTC+0
866
- date: October 19-25, 2025
867
- tags:
868
- - machine-learning
869
- - computer-vision
870
- city: Honolulu
871
- country: Hawaii
872
- abstract_deadline: '2025-03-04 09:59:59'
873
- rankings: 'CCF: A, CORE: A*, THCPL: A'
874
- rebuttal_period_start: '2025-05-10'
875
- rebuttal_period_end: '2025-05-16'
876
- final_decision_date: '2025-06-20'
877
- review_release_date: '2025-05-09'
878
- note: All info can be found <a href='https://iccv.thecvf.com/Conferences/2025/CallForPapers'>here</a>.
879
-
880
- - title: CoNLL
881
- year: 2025
882
- id: conll25
883
- full_name: The SIGNLL Conference on Computational Natural Language Learning
884
- link: https://conll.org/
885
- deadline: 2025-03-15 12:00
886
- timezone: UTC-12
887
- city: Vienna
888
- country: Austria
889
- date: July 31 - August 1, 2025
890
- start: '2025-07-31'
891
- end: '2025-08-01'
892
- tags:
893
- - natural-language-processing
894
- rankings: 'CCF: B, CORE: A, THCPL: B'
895
- venue: Vienna, Austria
896
-
897
- - title: KSEM
898
- year: 2025
899
- id: ksem25
900
- full_name: International Conference on Knowledge Science, Engineering and Management
901
- link: https://ksem2025.scimeeting.cn/
902
- deadline: '2025-03-20 23:59:59'
903
- timezone: UTC+0
904
- date: August 4-6, 2025
905
- tags:
906
- - machine-learning
907
- city: Macao
908
- country: China
909
- rankings: 'CCF: C, CORE: C, THCPL: N'
910
-
911
- - title: COLM
912
- year: 2025
913
- id: colm25
914
- full_name: Conference on Language Modeling
915
- link: https://colmweb.org/cfp.html
916
- deadline: '2025-03-27 23:59:59'
917
- timezone: AoE
918
- date: October 7-9, 2025
919
- tags:
920
- - natural-language-processing
921
- city: Montreal
922
- country: Canada
923
- abstract_deadline: '2025-03-20 23:59:59'
924
- rankings: 'CCF: N, CORE: N, THCPL: N'
925
- venue: Palais des Congrès Montreal, Canada
926
-
927
- - title: ICANN
928
- year: 2025
929
- id: icann25
930
- full_name: International Conference on Artificial Neural Networks
931
- link: https://e-nns.org/icann2025/
932
- deadline: 2025-03-29 23:59
933
- abstract_deadline: 2025-03-29 23:59
934
- timezone: UTC-12
935
- city: Kaunas
936
- country: Lithuania
937
- date: September, 9-12, 2025
938
- start: 2025-09-09
939
- end: 2025-09-12
940
- paperslink: https://link.springer.com/conference/icann
941
- hindex: 32.0
942
- tags:
943
- - machine-learning
944
- note: Deadline for full paper submission extended to 29th March 2025. More info <a href='https://e-nns.org/icann2025'>here</a>.
945
-
946
- - title: ACM MM
947
- year: 2025
948
- id: acm25
949
- full_name: ACM Multimedia
950
- link: https://acmmm2025.org/
951
- deadline: '2025-04-11 23:59:59'
952
- abstract_deadline: '2025-04-04 23:59:59'
953
- rebuttal_period_start: '2025-06-22'
954
- rebuttal_period_end: '2025-06-09'
955
- final_decision_date: '2025-07-04'
956
- timezone: UTC-12
957
- city: Dublin
958
- country: Ireland
959
- date: October 27-31, 2025
960
- start: '2025-10-27'
961
- end: '2025-10-31'
962
- venue: Dublin Royal Convention Center, Dublin, Ireland
963
- note: All important dates can be found <a href='https://acmmm2025.org/important-dates/'>here</a>.
964
- tags:
965
- - computer-vision
966
- - machine-learning
967
- - human-computer-interaction
968
-
969
- - title: CoRL
970
- year: 2025
971
- id: corl25
972
- full_name: The Conference on Robot Learning
973
- link: https://www.corl.org/
974
- deadline: '2025-04-30 23:59:59'
975
- timezone: AoE
976
- date: September 27-30, 2025
977
- tags:
978
- - machine-learning
979
- - robotics
980
- city: Seoul
981
- country: South Korea
982
- rankings: 'CCF: N, CORE: N, THCPL: N'
983
- venue: COEX Convention & Exhibition Center, Seoul, South Korea
984
- start: '2025-09-27'
985
- end: '2025-09-30'
986
-
987
- - title: ECAI
988
- year: 2025
989
- id: ecai25
990
- full_name: European Conference on Artificial Intelligence
991
- link: https://ecai2025.org/deadlines/
992
- deadline: '2025-05-06 23:59:59'
993
- timezone: UTC-12
994
- date: October 25-30, 2025
995
- tags:
996
- - machine-learning
997
- city: Bologna
998
- country: Italy
999
- abstract_deadline: '2025-04-29 23:59:59'
1000
- rankings: 'CCF: B, CORE: A, THCPL: N'
1001
- venue: Bologna Congress Center and The Engineering School (University of Bologna)
1002
- rebuttal_period_start: '2025-06-23'
1003
- rebuttal_period_end: '2025-06-25'
1004
- final_decision_date: '2025-07-10'
1005
- note: All important dates can be found <a href='https://ecai2025.org/call-for-papers/'>here</a>.
1006
-
1007
- - title: NeurIPS
1008
- year: 2025
1009
- id: neurips25
1010
- full_name: Conference on Neural Information Processing Systems
1011
- link: https://neurips.cc/
1012
- deadline: '2025-05-16 23:59:59'
1013
- timezone: UTC-8
1014
- city: San Diego
1015
- country: USA
1016
- venue: San Diego Convention Center, San Diego, USA
1017
- date: December 9-15, 2025
1018
- start: '2025-12-09'
1019
- end: '2025-12-15'
1020
- tags:
1021
- - machine-learning
1022
-
1023
- - title: EMNLP
1024
- year: 2025
1025
- id: emnlp25
1026
- full_name: The annual Conference on Empirical Methods in Natural Language Processing
1027
- link: https://2025.emnlp.org/
1028
- deadline: '2025-05-19 23:59:59'
1029
- timezone: UTC-12
1030
- date: November 5 - 9, 2025
1031
- tags:
1032
- - natural-language-processing
1033
- city: Suzhou
1034
- country: China
1035
- rankings: 'CCF: B, CORE: A*, THCPL: A'
1036
- venue: Suzhou, China
1037
- start: '2025-11-05'
1038
- end: '2025-11-09'
1039
-
1040
- - title: ICDM
1041
- year: 2025
1042
- id: icdm25
1043
- full_name: International Conference on Data Mining
1044
- link: https://www3.cs.stonybrook.edu/~icdm2025/index.html
1045
- deadline: '2025-06-06 23:59:59'
1046
- timezone: AoE
1047
- city: Washington DC
1048
- country: USA
1049
- date: November 12 - November 15, 2025
1050
- start: '2025-11-12'
1051
- end: '2025-11-15'
1052
- tags:
1053
- - data-mining
1054
-
1055
- - title: ECCV
1056
- year: 2026
1057
- id: eecv26
1058
- full_name: European Conference on Computer Vision
1059
- link: https://eccv.ecva.net/Conferences/2026
1060
- deadline: '2026-03-06 11:00:00'
1061
- timezone: UTC+0
1062
- city: Malmö
1063
- country: Sweden
1064
- date: September 8 - September 13, 2026
1065
- tags:
1066
- - computer-vision
1067
-
1068
- - title: ECML PKDD
1069
- year: 2025
1070
- id: ecmlpkdd25
1071
- full_name: European Conference on Machine Learning and Principles and Practice of Knowledge Discovery in Databases
1072
- link: https://ecmlpkdd.org/2025/
1073
- deadline: '2025-03-14 23:59:59'
1074
- timezone: AoE
1075
- city: Porto
1076
- country: Portugal
1077
- abstract_deadline: '2025-03-07 23:59:59'
1078
- date: September 15 - September 19, 2025
1079
- tags:
1080
- - machine-learning
1081
- - data-mining
1082
-
1083
- - title: ICOMP
1084
- year: 2025
1085
- id: icomp25
1086
- full_name: International Conference on Computational Optimization
1087
- link: https://icomp.cc/
1088
- deadline: 2025-08-15 23:59
1089
- abstract_deadline: 2025-08-01 23:59
1090
- timezone: UTC-12
1091
- city: Abu Dhabi
1092
- country: UAE
1093
- date: October, 2025
1094
- tags:
1095
- - machine-learning
1096
- - optimization
1097
-
1098
- - title: AAAI
1099
- year: 2026
1100
- id: aaai26
1101
- full_name: AAAI Conference on Artificial Intelligence
1102
- link: https://aaai.org/conference/aaai/aaai-26/
1103
- deadline: '2025-08-01 23:59:59'
1104
- abstract_deadline: '2025-07-25 23:59:59'
1105
- timezone: UTC-12
1106
- date: January 20 – January 27, 2026
1107
- tags:
1108
- - data-mining
1109
- - machine-learning
1110
- - natural-language-processing
1111
- - computer-vision
1112
- country: Singapore
1113
- rankings: 'CCF: A, CORE: A*, THCPL: A'
1114
- venue: Singapore EXPO, Singapore
1115
- hindex: 220
1116
- note: Mandatory abstract deadline on Jul 25, 2025, and supplementary material deadline on Aug 04, 2025. More info <a href='https://aaai.org/conference/aaai/aaai-26/'>here</a>.
1117
-
1118
- - title: CHI
1119
- year: 2026
1120
- id: chi26
1121
- full_name: The ACM Conference on Human Factors in Computing Systems
1122
- link: https://chi2026.acm.org/
1123
- deadline: '2025-09-11 23:59:59'
1124
- abstract_deadline: '2025-09-04 23:59:59'
1125
- timezone: UTC-12
1126
- city: Barcelona
1127
- country: Spain
1128
- venue: Centre de Convencions Internacional de Barcelona, Barcelona, Spain
1129
- date: April 13 - April 17, 2026
1130
- start: 2026-04-13
1131
- end: 2026-04-17
1132
- hindex: 128
1133
- tags:
1134
- - human-computer-interaction
1135
- note: Mandatory abstract deadline on Sep 04, 2025. More info <a href='https://chi2026.acm.org/authors/papers/'>here</a>.
1136
-
1137
- - title: ICRA
1138
- year: 2026
1139
- id: icra26
1140
- full_name: International Conference on Robotics and Automation
1141
- link: https://2026.ieee-icra.org/
1142
- deadlines:
1143
- - type: submission
1144
- label: Paper Submission
1145
- date: '2025-09-15 23:59:59'
1146
- timezone: GMT-08
1147
- timezone: PST
1148
- city: Vienna
1149
- country: Austria
1150
- venue: To be anounced
1151
- date: June 1 - June 5, 2026
1152
- start: 2026-06-01
1153
- end: 2026-06-05
1154
- hindex: 129
1155
- tags:
1156
- - robotics
1157
- - computer-vision
1158
-
1159
- - title: FG
1160
- year: 2026
1161
- id: fg26
1162
- full_name: International Conference on Automatic Face and Gesture Recognition
1163
- link: https://fg2026.ieee-biometrics.org/
1164
- deadlines:
1165
- - type: abstract
1166
- label: Abstract Submission (Round 1)
1167
- date: '2025-09-25 23:59:59'
1168
- timezone: UTC-12
1169
- - type: submission
1170
- label: Paper Submission (Round 1)
1171
- date: '2025-10-02 23:59:59'
1172
- timezone: UTC-12
1173
- - type: notification
1174
- label: Notifications to authors (Round 1)
1175
- date: '2025-12-11 23:59:59'
1176
- timezone: UTC-12
1177
- - type: abstract
1178
- label: Abstract Submission (Round 2)
1179
- date: '2026-01-09 23:59:59'
1180
- timezone: UTC-12
1181
- - type: submission
1182
- label: Paper Submission (Round 2)
1183
- date: '2026-01-15 23:59:59'
1184
- timezone: UTC-12
1185
- - type: notification
1186
- label: Notifications to authors (Round 2)
1187
- date: '2026-05-02 23:59:59'
1188
- timezone: UTC-12
1189
- - type: camera_ready
1190
- label: Camera-ready (for all accepted papers)
1191
- date: '2026-05-21 23:59:59'
1192
- timezone: UTC-12
1193
- timezone: GMT+02
1194
- date: May 25-29, 2026
1195
- city: Kyoto
1196
- country: Japan
1197
- start: 2026-05-25
1198
- end: 2026-05-29
1199
- tags:
1200
- - computer-vision
1201
- note: Abstract deadline on 2025-09-25 23:59:59 UTC-8! Round 1
1202
-
1203
- - title: AAMAS
1204
- year: 2026
1205
- id: aamas26
1206
- full_name: International Conference on Autonomous Agents and Multiagent Systems
1207
- link: https://aamas2026.org/
1208
- deadlines:
1209
- - type: submission
1210
- label: Abstract deadline on 2025-10-01 23:59:59 UTC-12!
1211
- date: '2025-10-09 13:59:59'
1212
- timezone: GMT+02
1213
- timezone: GMT+02
1214
- date: May 27-29, 2026
1215
- city: Paphos
1216
- country: Cyprus
1217
- start: 2026-05-27
1218
- end: 2026-05-29
1219
- tags:
1220
- - other
1221
- note: Abstract deadline on 2025-10-01 23:59:59 UTC-12!
1222
-
1223
- - title: IUI
1224
- year: 2026
1225
- id: iui26
1226
- full_name: ACM Conference on Intelligent User Interfaces
1227
- link: https://iui.acm.org/2026/
1228
- deadlines:
1229
- - type: submission
1230
- label: Abstract deadline on 2025-10-03 23:59:59 UTC-12!
1231
- date: '2025-10-11 13:59:59'
1232
- timezone: GMT+02
1233
- timezone: GMT+02
1234
- date: March 23-26, 2026
1235
- city: Paphos
1236
- country: Cyprus
1237
- start: 2026-03-23
1238
- end: 2026-03-26
1239
- tags:
1240
- - human-computer-interaction
1241
- note: Abstract deadline on 2025-10-03 23:59:59 UTC-12!
1242
-
1243
- - title: LREC
1244
- year: 2026
1245
- id: lrec26
1246
- full_name: Language Resources and Evaluation Conference
1247
- link: https://www.elra.info/lrec2026/
1248
- deadlines:
1249
- - type: submission
1250
- label: Paper Submission
1251
- date: '2025-10-18 13:59:59'
1252
- timezone: GMT+02
1253
- timezone: GMT+02
1254
- date: May 11-16, 2026
1255
- city: Palma, Mallorca
1256
- country: Spain
1257
- start: 2026-05-11
1258
- end: 2026-05-16
1259
- tags:
1260
- - natural-language-processing
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
src/data/conferences/aaai.yml ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - title: AAAI
2
+ year: 2025
3
+ id: aaai25
4
+ full_name: AAAI Conference on Artificial Intelligence
5
+ link: https://aaai.org/conference/aaai/aaai-25/
6
+ deadline: '2024-08-15 23:59:59'
7
+ timezone: UTC-12
8
+ date: February 25 - March 4, 2025
9
+ tags:
10
+ - data-mining
11
+ - machine-learning
12
+ - natural-language-processing
13
+ - computer-vision
14
+ city: PHILADELPHIA
15
+ country: PENNSYLVANIA
16
+ abstract_deadline: '2024-08-07 23:59:59'
17
+ rankings: 'CCF: A, CORE: A*, THCPL: A'
18
+ venue: Pennsylvania Convention Center, Philadelphia, USA
19
+ hindex: 212
20
+ note: Mandatory abstract deadline on Aug 07, 2024, and supplementary material deadline
21
+ on Aug 19, 2024. More info <a href='https://aaai.org/conference/aaai/aaai-25/'>here</a>.
22
+ - title: AAAI
23
+ year: 2026
24
+ id: aaai26
25
+ full_name: AAAI Conference on Artificial Intelligence
26
+ link: https://aaai.org/conference/aaai/aaai-26/
27
+ deadline: '2025-08-01 23:59:59'
28
+ abstract_deadline: '2025-07-25 23:59:59'
29
+ timezone: UTC-12
30
+ date: January 20 – January 27, 2026
31
+ tags:
32
+ - data-mining
33
+ - machine-learning
34
+ - natural-language-processing
35
+ - computer-vision
36
+ country: Singapore
37
+ rankings: 'CCF: A, CORE: A*, THCPL: A'
38
+ venue: Singapore EXPO, Singapore
39
+ hindex: 220
40
+ note: Mandatory abstract deadline on Jul 25, 2025, and supplementary material deadline
41
+ on Aug 04, 2025. More info <a href='https://aaai.org/conference/aaai/aaai-26/'>here</a>.
src/data/conferences/aamas.yml ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - title: AAMAS
2
+ year: 2025
3
+ id: aamas25
4
+ full_name: International Conference on Autonomous Agents and Multiagent Systems
5
+ link: https://aamas2025.org/
6
+ deadline: '2024-10-16 23:59:59'
7
+ timezone: UTC-12
8
+ date: May 19-23, 2025
9
+ tags:
10
+ - machine-learning
11
+ - robotics
12
+ city: Detroit
13
+ country: Michigan
14
+ abstract_deadline: '2024-10-09 23:59:59'
15
+ start: '2025-05-19'
16
+ end: '2025-05-23'
17
+ rankings: 'CCF: B, CORE: A*, THCPL: B'
18
+ note: Mandatory abstract deadline on Oct 09, 2024. More info <a href='https://aamas2025.org/'>here</a>.
19
+ - title: AAMAS
20
+ year: 2026
21
+ id: aamas26
22
+ full_name: International Conference on Autonomous Agents and Multiagent Systems
23
+ link: https://aamas2026.org/
24
+ deadlines:
25
+ - type: submission
26
+ label: Abstract deadline on 2025-10-01 23:59:59 UTC-12!
27
+ date: '2025-10-09 13:59:59'
28
+ timezone: GMT+02
29
+ timezone: GMT+02
30
+ date: May 27-29, 2026
31
+ city: Paphos
32
+ country: Cyprus
33
+ start: 2026-05-27
34
+ end: 2026-05-29
35
+ tags:
36
+ - other
37
+ note: Abstract deadline on 2025-10-01 23:59:59 UTC-12!
src/data/conferences/acl.yml ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - title: ACL
2
+ year: 2025
3
+ id: acl25
4
+ full_name: Annual Meeting of the Association for Computational Linguistics
5
+ link: https://2025.aclweb.org/
6
+ deadline: '2025-02-15 23:59:59'
7
+ timezone: UTC-12
8
+ date: July 27 - August 1, 2025
9
+ tags:
10
+ - natural-language-processing
11
+ city: Vienna
12
+ country: Austria
13
+ rankings: 'CCF: A, CORE: A*, THCPL: A'
14
+ final_decision_date: '2025-05-15 23:59:59'
15
+ commitment_deadline: '2025-04-10 23:59:59'
16
+ note: ARR commitment deadline on April 10th, 2025.
src/data/conferences/acm_mm.yml ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - title: ACM MM
2
+ year: 2025
3
+ id: acm25
4
+ full_name: ACM Multimedia
5
+ link: https://acmmm2025.org/
6
+ deadline: '2025-04-11 23:59:59'
7
+ abstract_deadline: '2025-04-04 23:59:59'
8
+ rebuttal_period_start: '2025-06-22'
9
+ rebuttal_period_end: '2025-06-09'
10
+ final_decision_date: '2025-07-04'
11
+ timezone: UTC-12
12
+ city: Dublin
13
+ country: Ireland
14
+ date: October 27-31, 2025
15
+ start: '2025-10-27'
16
+ end: '2025-10-31'
17
+ venue: Dublin Royal Convention Center, Dublin, Ireland
18
+ note: All important dates can be found <a href='https://acmmm2025.org/important-dates/'>here</a>.
19
+ tags:
20
+ - computer-vision
21
+ - machine-learning
22
+ - human-computer-interaction
src/data/conferences/aistats.yml ADDED
@@ -0,0 +1,41 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - title: AISTATS
2
+ year: 2025
3
+ id: aistats25
4
+ full_name: International Conference on Artificial Intelligence and Statistics
5
+ link: https://aistats.org/aistats2025
6
+ deadline: '2024-10-10 23:59:59'
7
+ timezone: UTC-12
8
+ date: May 3-5, 2025
9
+ tags:
10
+ - machine-learning
11
+ city: Mai Khao
12
+ country: Thailand
13
+ abstract_deadline: '2024-10-03 23:59:59'
14
+ start: '2025-05-03'
15
+ end: '2025-05-05'
16
+ rankings: 'CCF: C, CORE: A, THCPL: B'
17
+ venue: TBA
18
+ hindex: 100
19
+ note: Abstract deadline on October 3, 2024. More info <a href='https://aistats.org/aistats2025/call-for-papers.html'>here</a>
20
+ - title: AISTATS
21
+ year: 2026
22
+ id: aistats26
23
+ full_name: International Conference on Artificial Intelligence and Statistics
24
+ link: https://virtual.aistats.org/Conferences/2026
25
+ deadlines:
26
+ - type: submission
27
+ label: Abstract deadline on 2025-09-25 23:59:59 UTC-12!
28
+ date: '2025-10-03 13:59:59'
29
+ timezone: GMT+02
30
+ timezone: GMT+02
31
+ date: May 2-5, 2026
32
+ tags:
33
+ - machine-learning
34
+ city: Tangier
35
+ country: Morocco
36
+ start: '2026-05-02'
37
+ end: '2026-05-05'
38
+ rankings: 'CCF: C, CORE: A, THCPL: B'
39
+ venue: TBA
40
+ hindex: 101
41
+ note: Abstract deadline on 2025-09-25 23:59:59 UTC-12!
src/data/conferences/alt.yml ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - title: ALT
2
+ year: 2025
3
+ id: alt2025
4
+ full_name: International Conference on Algorithmic Learning Theory
5
+ link: https://algorithmiclearningtheory.org/alt2025/
6
+ deadline: '2024-10-01 09:59:59'
7
+ timezone: UTC+0
8
+ date: February 24-27, 2025
9
+ tags:
10
+ - machine-learning
11
+ city: Milan
12
+ country: Italy
13
+ rankings: 'CCF: C, CORE: B, THCPL: B'
14
+ venue: Politecnico di Milano, Milan, Italy
src/data/conferences/cec.yml ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - title: CEC
2
+ year: 2025
3
+ id: cec2025
4
+ full_name: IEEE Congress on Evolutionary Computation
5
+ link: https://www.cec2025.org/
6
+ deadline: '2025-01-15 23:59:59'
7
+ timezone: UTC-12
8
+ date: June 8-12, 2025
9
+ tags:
10
+ - machine-learning
11
+ city: Hangzhou
12
+ country: China
13
+ rankings: 'CCF: N, CORE: B, THCPL: N'
src/data/conferences/chi.yml ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - title: CHI
2
+ year: 2025
3
+ id: chi25
4
+ full_name: The ACM Conference on Human Factors in Computing Systems
5
+ link: https://chi2025.acm.org/
6
+ deadline: '2024-09-12 23:59:59'
7
+ abstract_deadline: '2024-09-05 23:59:59'
8
+ timezone: UTC-12
9
+ city: Yokohama
10
+ country: Japan
11
+ venue: Pacifico Yokohama Conference Center, Yokohama, Japan
12
+ date: April 26 - May 01, 2025
13
+ start: 2025-04-26
14
+ end: 2025-05-01
15
+ hindex: 122
16
+ tags:
17
+ - human-computer-interaction
18
+ note: Mandatory abstract deadline on Sep 05, 2024. More info <a href='https://chi2025.acm.org/for-authors/papers/'>here</a>.
19
+ - title: CHI
20
+ year: 2026
21
+ id: chi26
22
+ full_name: The ACM Conference on Human Factors in Computing Systems
23
+ link: https://chi2026.acm.org/
24
+ deadline: '2025-09-11 23:59:59'
25
+ abstract_deadline: '2025-09-04 23:59:59'
26
+ timezone: UTC-12
27
+ city: Barcelona
28
+ country: Spain
29
+ venue: Centre de Convencions Internacional de Barcelona, Barcelona, Spain
30
+ date: April 13 - April 17, 2026
31
+ start: 2026-04-13
32
+ end: 2026-04-17
33
+ hindex: 128
34
+ tags:
35
+ - human-computer-interaction
36
+ note: Mandatory abstract deadline on Sep 04, 2025. More info <a href='https://chi2026.acm.org/authors/papers/'>here</a>.
src/data/conferences/cikm.yml ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - title: CIKM
2
+ year: 2025
3
+ id: cikm25
4
+ full_name: Conference on Information and Knowledge Management
5
+ note: Abstract deadline on May 16, 2025
6
+ link: https://cikm2025.org/
7
+ deadline: '2025-05-23 23:59:00'
8
+ timezone: UTC-12
9
+ city: Seoul
10
+ country: South Korea
11
+ venue: COEX, Seoul, South Korea
12
+ date: November 11-14, 2025
13
+ start: 2025-11-11
14
+ end: 2025-11-14
15
+ tags:
16
+ - web-search
17
+ - data-mining
18
+ - machine-learning
19
+ abstract_deadline: '2025-05-16 23:59:00'
20
+ hindex: 91.0
src/data/conferences/coling.yml ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - title: COLING
2
+ year: 2025
3
+ id: coling25
4
+ full_name: INTERNATIONNAL CONFERENCE ON COMPUTATIONAL LINGUISTICS
5
+ link: https://coling2025.org/
6
+ deadline: '2024-09-16 23:59:59'
7
+ timezone: UTC-12
8
+ date: Jan 19 - Jan 24, 2025
9
+ tags:
10
+ - natural-language-processing
11
+ city: Abu Dhabi
12
+ country: UAE
13
+ start: '2025-01-19'
14
+ end: '2025-01-24'
15
+ rankings: 'CCF: B, CORE: B, THCPL: B'
16
+ venue: Abu Dhabi National Exhibition Centre (ADNEC), Abu Dhabi, UAE
17
+ hindex: 73
18
+ note: More info can be found <a href="https://coling2025.org/calls/main_conference_papers/#important-dates">here</a>.
src/data/conferences/collas.yml ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - title: CoLLAs
2
+ year: 2025
3
+ id: collas25
4
+ full_name: Conference on Lifelong Learning Agents
5
+ link: https://lifelong-ml.cc
6
+ deadline: '2025-03-03 23:59:59'
7
+ abstract_deadline: '2025-02-26 23:59:59'
8
+ timezone: UTC-12
9
+ city: Philadelphia
10
+ country: USA
11
+ date: August 11-14, 2025
12
+ start: 2025-08-11
13
+ end: 2025-08-14
14
+ tags:
15
+ - machine-learning
16
+ - lifelong-learning
17
+ note: Abstract deadline on February 26, 2025. More info <a href='https://lifelong-ml.cc/Conferences/2025/call'>here</a>
src/data/conferences/colm.yml ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - title: COLM
2
+ year: 2025
3
+ id: colm25
4
+ full_name: Conference on Language Modeling
5
+ link: https://colmweb.org/cfp.html
6
+ deadline: '2025-03-27 23:59:59'
7
+ timezone: AoE
8
+ date: October 7-9, 2025
9
+ tags:
10
+ - natural-language-processing
11
+ city: Montreal
12
+ country: Canada
13
+ abstract_deadline: '2025-03-20 23:59:59'
14
+ rankings: 'CCF: N, CORE: N, THCPL: N'
15
+ venue: Palais des Congrès Montreal, Canada
src/data/conferences/colt.yml ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - title: COLT
2
+ year: 2025
3
+ id: colt25
4
+ full_name: Annual Conference on Learning Theory
5
+ link: https://learningtheory.org/colt2025/
6
+ deadline: '2025-02-06 16:59:59'
7
+ timezone: UTC-5
8
+ date: June 30 - July 4, 2025
9
+ tags:
10
+ - machine-learning
11
+ city: Lyon
12
+ country: France
13
+ rankings: 'CCF: B, CORE: A*, THCPL: A'
src/data/conferences/conll.yml ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - title: CoNLL
2
+ year: 2025
3
+ id: conll25
4
+ full_name: The SIGNLL Conference on Computational Natural Language Learning
5
+ link: https://conll.org/
6
+ deadline: 2025-03-15 12:00
7
+ timezone: UTC-12
8
+ city: Vienna
9
+ country: Austria
10
+ date: July 31 - August 1, 2025
11
+ start: '2025-07-31'
12
+ end: '2025-08-01'
13
+ tags:
14
+ - natural-language-processing
15
+ rankings: 'CCF: B, CORE: A, THCPL: B'
16
+ venue: Vienna, Austria
src/data/conferences/corl.yml ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - title: CoRL
2
+ year: 2025
3
+ id: corl25
4
+ full_name: The Conference on Robot Learning
5
+ link: https://www.corl.org/
6
+ deadline: '2025-04-30 23:59:59'
7
+ timezone: AoE
8
+ date: September 27-30, 2025
9
+ tags:
10
+ - machine-learning
11
+ - robotics
12
+ city: Seoul
13
+ country: South Korea
14
+ rankings: 'CCF: N, CORE: N, THCPL: N'
15
+ venue: COEX Convention & Exhibition Center, Seoul, South Korea
16
+ start: '2025-09-27'
17
+ end: '2025-09-30'
src/data/conferences/cpal.yml ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - title: CPAL
2
+ year: 2025
3
+ id: cpal25
4
+ full_name: The Conference on Parsimony and Learning
5
+ link: https://cpal.cc/
6
+ deadline: '2024-11-25 23:59:59'
7
+ timezone: AoE
8
+ date: March 24-27, 2025
9
+ tags:
10
+ - machine-learning
11
+ city: California
12
+ country: USA
13
+ rankings: 'CCF: N, CORE: N, THCPL: N'
src/data/conferences/cvpr.yml ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - title: CVPR
2
+ year: 2025
3
+ id: cvpr25
4
+ full_name: IEEE/CVF Conference on Computer Vision and Pattern Recognition
5
+ link: https://cvpr.thecvf.com/Conferences/2025/CallForPapers
6
+ deadline: '2024-11-14 23:59:00'
7
+ timezone: UTC-8
8
+ date: June 10-17, 2025
9
+ tags:
10
+ - computer-vision
11
+ city: Nashville
12
+ country: Tennessee
13
+ abstract_deadline: '2024-11-07 23:59:00'
14
+ rankings: 'CCF: A, CORE: A*, THCPL: A'
15
+ venue: Music City Center, Nashville, USA
16
+ hindex: 389
17
+ rebuttal_period_end: '2025-01-31 07:59:59'
18
+ final_decision_date: '2025-02-26 07:59:59'
19
+ review_release_date: '2025-01-23 07:59:59'
20
+ note: OpenReview account creation deadline on Nov 1st, paper registration deadline
21
+ on Nov 8th, supplementary materials deadline on Nov 22nd. Reviews released on
22
+ Jan 23rd, rebuttal period ends Jan 31st, and final decisions on Feb 26th.
src/data/conferences/ecai.yml ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - title: ECAI
2
+ year: 2025
3
+ id: ecai25
4
+ full_name: European Conference on Artificial Intelligence
5
+ link: https://ecai2025.org/deadlines/
6
+ deadline: '2025-05-06 23:59:59'
7
+ timezone: UTC-12
8
+ date: October 25-30, 2025
9
+ tags:
10
+ - machine-learning
11
+ city: Bologna
12
+ country: Italy
13
+ abstract_deadline: '2025-04-29 23:59:59'
14
+ rankings: 'CCF: B, CORE: A, THCPL: N'
15
+ venue: Bologna Congress Center and The Engineering School (University of Bologna)
16
+ rebuttal_period_start: '2025-06-23'
17
+ rebuttal_period_end: '2025-06-25'
18
+ final_decision_date: '2025-07-10'
19
+ note: All important dates can be found <a href='https://ecai2025.org/call-for-papers/'>here</a>.
src/data/conferences/eccv.yml ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - title: ECCV
2
+ year: 2026
3
+ id: eecv26
4
+ full_name: European Conference on Computer Vision
5
+ link: https://eccv.ecva.net/Conferences/2026
6
+ deadline: '2026-03-06 11:00:00'
7
+ timezone: UTC+0
8
+ city: Malmö
9
+ country: Sweden
10
+ date: September 8 - September 13, 2026
11
+ tags:
12
+ - computer-vision
src/data/conferences/ecir.yml ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - title: ECIR
2
+ year: 2025
3
+ id: ecir25
4
+ full_name: European Conference on Information Retrieval
5
+ link: https://ecir2025.eu/
6
+ deadline: '2024-10-09 23:59:59'
7
+ abstract_deadline: '2024-10-02 23:59:59'
8
+ timezone: UTC-12
9
+ city: Lucca
10
+ country: Tuscany
11
+ venue: IMT School for Advanced Studies Lucca, Lucca, Italy
12
+ date: April 6 - April 10, 2025
13
+ start: '2025-04-06'
14
+ end: '2025-04-10'
15
+ tags:
16
+ - data-mining
17
+ note: Abstract deadline on Oct 2, 2024. More info <a href='https://ecir2025.eu/'>here</a>.
src/data/conferences/ecml_pkdd.yml ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - title: ECML PKDD
2
+ year: 2025
3
+ id: ecmlpkdd25
4
+ full_name: European Conference on Machine Learning and Principles and Practice of
5
+ Knowledge Discovery in Databases
6
+ link: https://ecmlpkdd.org/2025/
7
+ deadline: '2025-03-14 23:59:59'
8
+ timezone: AoE
9
+ city: Porto
10
+ country: Portugal
11
+ abstract_deadline: '2025-03-07 23:59:59'
12
+ date: September 15 - September 19, 2025
13
+ tags:
14
+ - machine-learning
15
+ - data-mining
src/data/conferences/emnlp.yml ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - title: EMNLP
2
+ year: 2025
3
+ id: emnlp25
4
+ full_name: The annual Conference on Empirical Methods in Natural Language Processing
5
+ link: https://2025.emnlp.org/
6
+ deadline: '2025-05-19 23:59:59'
7
+ timezone: UTC-12
8
+ date: November 5 - 9, 2025
9
+ tags:
10
+ - natural-language-processing
11
+ city: Suzhou
12
+ country: China
13
+ rankings: 'CCF: B, CORE: A*, THCPL: A'
14
+ venue: Suzhou, China
15
+ start: '2025-11-05'
16
+ end: '2025-11-09'
src/data/conferences/emnlp_industry_track.yml ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - title: EMNLP (Industry Track)
2
+ year: 2025
3
+ id: emnlp25ind
4
+ full_name: The annual Conference on Empirical Methods in Natural Language Processing
5
+ (Industry Track)
6
+ link: https://2025.emnlp.org/
7
+ deadline: '2025-07-04 23:59:59'
8
+ timezone: UTC-12
9
+ date: November 5 - 9, 2025
10
+ tags:
11
+ - natural-language-processing
12
+ city: Suzhou
13
+ country: China
14
+ rankings: 'CCF: B, CORE: A*, THCPL: A'
15
+ venue: Suzhou, China
16
+ start: '2025-11-05'
17
+ end: '2025-11-09'
src/data/conferences/emnlp_system_demonstrations_track.yml ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - title: EMNLP (System Demonstrations Track)
2
+ year: 2025
3
+ id: emnlp25sys
4
+ full_name: The annual Conference on Empirical Methods in Natural Language Processing
5
+ (System Demonstrations Track)
6
+ link: https://2025.emnlp.org/
7
+ deadline: '2025-07-04 23:59:59'
8
+ timezone: UTC-12
9
+ date: November 5-9, 2025
10
+ tags:
11
+ - natural-language-processing
12
+ city: Suzhou
13
+ country: China
14
+ rankings: 'CCF: B, CORE: A*, THCPL: A'
15
+ venue: Suzhou, China
16
+ start: '2025-11-05'
17
+ end: '2025-11-09'
src/data/conferences/esann.yml ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - title: ESANN
2
+ year: 2025
3
+ id: esann25
4
+ full_name: European Symposium on Artificial Neural Networks, Computational Intelligence
5
+ and Machine Learning
6
+ link: https://www.esann.org/
7
+ deadline: '2024-11-20 00:00:00'
8
+ timezone: UTC-8
9
+ date: April 23 - April 25, 2025
10
+ tags: []
11
+ city: Bruges
12
+ country: Belgium
13
+ abstract_deadline: '2024-11-20 00:00:00'
14
+ rankings: 'CCF: N, CORE: B, THCPL: N'
src/data/conferences/eurographics.yml ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - title: Eurographics
2
+ year: 2025
3
+ id: eurographics25
4
+ full_name: The 46th Annual Conference of the European Association for Computer Graphics
5
+ link: https://www.eg.org/wp/event/eurographics-2025/
6
+ deadline: '2024-10-03 23:59:59'
7
+ timezone: UTC+1
8
+ city: London
9
+ country: UK
10
+ date: May 12 - 16, 2025
11
+ tags:
12
+ - computer-graphics
13
+ venue: London
src/data/conferences/fg.yml ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - title: FG
2
+ year: 2026
3
+ id: fg26
4
+ full_name: International Conference on Automatic Face and Gesture Recognition
5
+ link: https://fg2026.ieee-biometrics.org/
6
+ deadlines:
7
+ - type: abstract
8
+ label: Abstract Submission (Round 1)
9
+ date: '2025-09-25 23:59:59'
10
+ timezone: UTC-12
11
+ - type: submission
12
+ label: Paper Submission (Round 1)
13
+ date: '2025-10-02 23:59:59'
14
+ timezone: UTC-12
15
+ - type: notification
16
+ label: Notifications to authors (Round 1)
17
+ date: '2025-12-11 23:59:59'
18
+ timezone: UTC-12
19
+ - type: abstract
20
+ label: Abstract Submission (Round 2)
21
+ date: '2026-01-09 23:59:59'
22
+ timezone: UTC-12
23
+ - type: submission
24
+ label: Paper Submission (Round 2)
25
+ date: '2026-01-15 23:59:59'
26
+ timezone: UTC-12
27
+ - type: notification
28
+ label: Notifications to authors (Round 2)
29
+ date: '2026-05-02 23:59:59'
30
+ timezone: UTC-12
31
+ - type: camera_ready
32
+ label: Camera-ready (for all accepted papers)
33
+ date: '2026-05-21 23:59:59'
34
+ timezone: UTC-12
35
+ timezone: GMT+02
36
+ date: May 25-29, 2026
37
+ city: Kyoto
38
+ country: Japan
39
+ start: 2026-05-25
40
+ end: 2026-05-29
41
+ tags:
42
+ - computer-vision
43
+ note: Abstract deadline on 2025-09-25 23:59:59 UTC-8! Round 1
src/data/conferences/icann.yml ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - title: ICANN
2
+ year: 2025
3
+ id: icann25
4
+ full_name: International Conference on Artificial Neural Networks
5
+ link: https://e-nns.org/icann2025/
6
+ deadline: 2025-03-29 23:59
7
+ abstract_deadline: 2025-03-29 23:59
8
+ timezone: UTC-12
9
+ city: Kaunas
10
+ country: Lithuania
11
+ date: September, 9-12, 2025
12
+ start: 2025-09-09
13
+ end: 2025-09-12
14
+ paperslink: https://link.springer.com/conference/icann
15
+ hindex: 32.0
16
+ tags:
17
+ - machine-learning
18
+ note: Deadline for full paper submission extended to 29th March 2025. More info
19
+ <a href='https://e-nns.org/icann2025'>here</a>.
src/data/conferences/icassp.yml ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - title: ICASSP
2
+ year: 2025
3
+ id: icassp25
4
+ full_name: International Conference on Acoustics, Speech and Signal Processing
5
+ link: https://2025.ieeeicassp.org/
6
+ deadlines:
7
+ - type: submission
8
+ label: Paper Submission
9
+ date: '2025-09-18 08:59:59'
10
+ timezone: GMT+02
11
+ timezone: UTC-12
12
+ city: Hyderabad
13
+ country: India
14
+ venue: Hyderabad International Convention Center, Hyderabad, India
15
+ date: April 6-11, 2025
16
+ start: 2025-04-06
17
+ end: 2025-04-11
18
+ tags:
19
+ - signal-processing
20
+ - title: ICASSP
21
+ year: 2026
22
+ id: icassp26
23
+ full_name: International Conference on Acoustics, Speech and Signal Processing
24
+ link: https://2026.ieeeicassp.org
25
+ deadlines:
26
+ - type: submission
27
+ label: Paper Submission
28
+ date: '2025-09-18 08:59:59'
29
+ timezone: GMT+02
30
+ timezone: GMT+02
31
+ city: Barcelona
32
+ country: Spain
33
+ venue: Barcelona International Convention Center (CCIB), Barcelona, Spain
34
+ date: May 4-8, 2026
35
+ start: 2025-05-04
36
+ end: 2025-05-08
37
+ tags:
38
+ - speech
39
+ - signal-processing
src/data/conferences/iccv.yml ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - title: ICCV
2
+ year: 2025
3
+ id: iccv25
4
+ full_name: IEEE International Conference on Computer Vision
5
+ link: https://iccv.thecvf.com/Conferences/2025
6
+ deadline: '2025-03-08 09:59:59'
7
+ timezone: UTC+0
8
+ date: October 19-25, 2025
9
+ tags:
10
+ - machine-learning
11
+ - computer-vision
12
+ city: Honolulu
13
+ country: Hawaii
14
+ abstract_deadline: '2025-03-04 09:59:59'
15
+ rankings: 'CCF: A, CORE: A*, THCPL: A'
16
+ rebuttal_period_start: '2025-05-10'
17
+ rebuttal_period_end: '2025-05-16'
18
+ final_decision_date: '2025-06-20'
19
+ review_release_date: '2025-05-09'
20
+ note: All info can be found <a href='https://iccv.thecvf.com/Conferences/2025/CallForPapers'>here</a>.
src/data/conferences/icdar.yml ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - title: ICDAR
2
+ year: 2025
3
+ id: icdar2025
4
+ full_name: International Conference on Document Analysis and Recognition
5
+ link: https://www.icdar2025.com/home
6
+ deadline: '2025-03-07 23:59:59'
7
+ timezone: UTC+0
8
+ date: September 17-21, 2025
9
+ tags:
10
+ - computer-vision
11
+ city: Wuhan
12
+ country: China
13
+ abstract_deadline: '2025-02-28 23:59:59'
14
+ rankings: 'CCF: C, CORE: A, THCPL: B'
src/data/conferences/icdm.yml ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - title: ICDM
2
+ year: 2025
3
+ id: icdm25
4
+ full_name: International Conference on Data Mining
5
+ link: https://www3.cs.stonybrook.edu/~icdm2025/index.html
6
+ deadline: '2025-06-06 23:59:59'
7
+ timezone: AoE
8
+ city: Washington DC
9
+ country: USA
10
+ date: November 12 - November 15, 2025
11
+ start: '2025-11-12'
12
+ end: '2025-11-15'
13
+ tags:
14
+ - data-mining
src/data/conferences/iclr.yml ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - title: ICLR
2
+ year: 2025
3
+ id: iclr25
4
+ full_name: International Conference on Learning Representations
5
+ link: https://iclr.cc/Conferences/2025
6
+ deadline: '2024-10-01 23:59:59'
7
+ timezone: UTC-12
8
+ date: April 24-28, 2025
9
+ tags:
10
+ - machine-learning
11
+ - computer-vision
12
+ - natural-language-processing
13
+ - signal-processing
14
+ country: Singapore
15
+ abstract_deadline: '2024-09-27 23:59:59'
16
+ rankings: 'CCF: N, CORE: A*, THCPL: A'
17
+ venue: Singapore EXPO - 1 Expo Drive, Singapore
18
+ hindex: 304
19
+ note: Mandatory abstract deadline on September 27, 2024. More info <a href='https://iclr.cc/Conferences/2025/CallForPapers'>here</a>.
20
+ city: Singapore
21
+ - title: ICLR
22
+ year: 2026
23
+ id: iclr26
24
+ full_name: The Fourteenth International Conference on Learning Representations
25
+ link: https://iclr.cc/Conferences/2026
26
+ deadline: '2025-09-24 23:59:59'
27
+ abstract_deadline: '2025-09-19 23:59:59'
28
+ deadlines:
29
+ - type: abstract
30
+ label: Abstract Submission
31
+ date: '2025-09-19 23:59:59'
32
+ timezone: UTC-12
33
+ - type: submission
34
+ label: Paper Submission
35
+ date: '2025-09-24 23:59:59'
36
+ timezone: UTC-12
37
+ - type: review_release
38
+ label: Reviews Released
39
+ date: '2026-01-20 23:59:59'
40
+ timezone: UTC-12
41
+ - type: notification
42
+ label: Notification
43
+ date: '2026-02-01 23:59:59'
44
+ timezone: UTC-12
45
+ timezone: UTC-12
46
+ city: Rio de Janeiro
47
+ country: Brazil
48
+ venue: To be announced
49
+ date: April 23-27, 2026
50
+ start: 2026-04-23
51
+ end: 2026-04-27
52
+ hindex: 304
53
+ tags:
54
+ - data-mining
55
+ - machine-learning
56
+ - natural-language-processing
57
+ - computer-vision
58
+ - robotics
59
+ - mathematics
60
+ - reinforcement-learning
61
+ note: Mandatory abstract deadline on Sep 19, 2025. More info <a href='https://iclr.cc/Conferences/2026/Dates#'>here</a>.
src/data/conferences/icml.yml ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - title: ICML
2
+ year: 2025
3
+ id: icml25
4
+ full_name: International Conference on Machine Learning
5
+ link: https://icml.cc/Conferences/2025
6
+ deadline: '2025-01-30 23:59:59'
7
+ timezone: UTC-12
8
+ date: July 11-19, 2025
9
+ tags:
10
+ - machine-learning
11
+ city: Vancouver
12
+ country: Canada
13
+ abstract_deadline: '2025-01-23 23:59:59'
14
+ rankings: 'CCF: A, CORE: A*, THCPL: A'
15
+ venue: Vancouver Convention Center
16
+ submission_deadline: '2025-01-31 03:59:59'
17
+ timezone_submission: PST
src/data/conferences/icomp.yml ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - title: ICOMP
2
+ year: 2025
3
+ id: icomp25
4
+ full_name: International Conference on Computational Optimization
5
+ link: https://icomp.cc/
6
+ deadline: 2025-08-15 23:59
7
+ abstract_deadline: 2025-08-01 23:59
8
+ timezone: UTC-12
9
+ city: Abu Dhabi
10
+ country: UAE
11
+ date: October, 2025
12
+ tags:
13
+ - machine-learning
14
+ - optimization
src/data/conferences/icra.yml ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - title: ICRA
2
+ year: 2025
3
+ id: icra25
4
+ full_name: IEEE International Conference on Robotics and Automation
5
+ link: https://2025.ieee-icra.org
6
+ deadline: '2024-07-15 12:00:00'
7
+ timezone: UTC-4
8
+ date: May 19-23, 2025
9
+ tags:
10
+ - machine-learning
11
+ - robotics
12
+ city: Atlanta
13
+ country: USA
14
+ start: '2026-06-01'
15
+ end: '2026-06-05'
16
+ rankings: 'CCF: B, CORE: A*, THCPL: A'
17
+ venue: Georgia World Congress Center, Atlanta, USA
18
+ - title: ICRA
19
+ year: 2026
20
+ id: icra26
21
+ full_name: International Conference on Robotics and Automation
22
+ link: https://2026.ieee-icra.org/
23
+ deadlines:
24
+ - type: submission
25
+ label: Paper Submission
26
+ date: '2025-09-15 23:59:59'
27
+ timezone: GMT-08
28
+ timezone: PST
29
+ city: Vienna
30
+ country: Austria
31
+ venue: To be anounced
32
+ date: June 1 - June 5, 2026
33
+ start: 2026-06-01
34
+ end: 2026-06-05
35
+ hindex: 129
36
+ tags:
37
+ - robotics
38
+ - computer-vision
src/data/conferences/ijcai.yml ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - title: IJCAI
2
+ year: 2025
3
+ id: ijcai25
4
+ full_name: International Joint Conference on Artificial Intelligence
5
+ link: https://2025.ijcai.org/
6
+ deadline: '2025-01-23 23:59:59'
7
+ timezone: UTC-12
8
+ date: August 16-22, 2025
9
+ tags:
10
+ - machine-learning
11
+ city: Montreal
12
+ country: Canada
13
+ abstract_deadline: '2025-01-16 23:59:59'
14
+ rankings: 'CCF: A, CORE: A*, THCPL: B'
src/data/conferences/ijcnlp_and_aacl.yml ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - title: IJCNLP & AACL
2
+ year: 2025
3
+ id: ijcnlpaacl25
4
+ full_name: International Joint Conference on Natural Language Processing & Asia-Pacific
5
+ Chapter of the Association for Computational Linguistics
6
+ link: https://2025.aaclnet.org/
7
+ deadline: '2025-07-28 23:59:59'
8
+ abstract_deadline: '2025-07-28 23:59:59'
9
+ timezone: UTC-12
10
+ city: Mumbai
11
+ country: India
12
+ venue: null
13
+ date: December 20-24, 2025
14
+ start: 2025-12-20
15
+ end: 2025-12-24
16
+ paperslink: null
17
+ pwclink: null
18
+ hindex: null
19
+ tags:
20
+ - natural language processing
21
+ note: Submissions through ARR.
src/data/conferences/ijcnn.yml ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - title: IJCNN
2
+ year: 2025
3
+ id: ijcnn2025
4
+ full_name: International Joint Conference on Neural Networks
5
+ link: https://2025.ijcnn.org/
6
+ deadline: '2025-02-05 23:59:59'
7
+ timezone: UTC-12
8
+ date: June 30 - July 5, 2025
9
+ tags:
10
+ - machine-learning
11
+ city: Rome
12
+ country: Italy
13
+ rankings: 'CCF: C, CORE: B, THCPL: B'
14
+ - title: IJCNN
15
+ year: 2026
16
+ id: ijcnn26
17
+ full_name: International Joint Conference on Neural Networks
18
+ link: https://attend.ieee.org/wcci-2026/
19
+ deadline: '2025-09-24 23:59:59'
20
+ timezone: UTC-12
21
+ date: June 21-June 26, 2026
22
+ tags:
23
+ - machine-learning
24
+ city: Maastricht
25
+ country: Netherlands
26
+ rankings: 'CCF: C, CORE: B, THCPL: B'
27
+ venue: MECC Maastricht
28
+ deadlines:
29
+ - type: submission
30
+ label: Paper Submission
31
+ date: '2026-01-31 23:59:59'
32
+ timezone: UTC-12
33
+ - type: notification
34
+ label: Paper acceptance notification
35
+ date: '2026-03-15 23:59:59'
36
+ timezone: UTC-12
37
+ - type: camera_ready
38
+ label: Camera-ready papers
39
+ date: '2026-05-15 23:59:59'
40
+ timezone: UTC-12
src/data/conferences/interspeech.yml ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - title: Interspeech
2
+ year: 2026
3
+ id: interspeech2026
4
+ full_name: Interspeech
5
+ link: https://interspeech2026.org
6
+ deadline: '2026-03-02 23:59:59'
7
+ timezone: UTC-12
8
+ city: Sydney
9
+ country: Australia
10
+ venue: International Convention Centre (ICC) Sydney
11
+ date: September 27-October 1, 2026
12
+ start: 2026-09-27
13
+ end: 2026-10-01
14
+ tags:
15
+ - speech
16
+ - signal-processing
src/data/conferences/iros.yml ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - title: IROS
2
+ year: 2025
3
+ id: iros25
4
+ full_name: IEEE\RSJ International Conference on Intelligent Robots and Systems
5
+ link: http://www.iros25.org/
6
+ deadline: '2025-03-01 23:59:59'
7
+ timezone: UTC-8
8
+ date: October 19-25, 2025
9
+ tags:
10
+ - robotics
11
+ city: Hangzhou
12
+ country: China
13
+ rankings: 'CCF: C, CORE: A, THCPL: B'
src/data/conferences/iui.yml ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - title: IUI
2
+ year: 2026
3
+ id: iui26
4
+ full_name: ACM Conference on Intelligent User Interfaces
5
+ link: https://iui.acm.org/2026/
6
+ deadlines:
7
+ - type: submission
8
+ label: Abstract deadline on 2025-10-03 23:59:59 UTC-12!
9
+ date: '2025-10-11 13:59:59'
10
+ timezone: GMT+02
11
+ timezone: GMT+02
12
+ date: March 23-26, 2026
13
+ city: Paphos
14
+ country: Cyprus
15
+ start: 2026-03-23
16
+ end: 2026-03-26
17
+ tags:
18
+ - human-computer-interaction
19
+ note: Abstract deadline on 2025-10-03 23:59:59 UTC-12!
src/data/conferences/kdd.yml ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - title: KDD
2
+ year: 2025
3
+ id: kdd25
4
+ full_name: ACM SIGKDD Conference on Knowledge Discovery and Data Mining
5
+ deadline: '2025-02-10 23:59:59'
6
+ abstract_deadline: '2025-02-03 23:59:59'
7
+ timezone: AoE
8
+ city: Toronto
9
+ country: Canada
10
+ date: August 3 - August 7, 2025
11
+ start: '2025-08-03'
12
+ end: '2025-08-07'
13
+ tags:
14
+ - data-mining
15
+ - machine-learning
16
+ note: Abstract deadline on February 3rd, 2025. Paper submission deadline February
17
+ 10th, 2025 AoE.
18
+ rebuttal_period_start: '2025-04-04'
19
+ rebuttal_period_end: '2025-04-18'
20
+ final_decision_date: '2025-05-16'
src/data/conferences/ksem.yml ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - title: KSEM
2
+ year: 2025
3
+ id: ksem25
4
+ full_name: International Conference on Knowledge Science, Engineering and Management
5
+ link: https://ksem2025.scimeeting.cn/
6
+ deadline: '2025-03-20 23:59:59'
7
+ timezone: UTC+0
8
+ date: August 4-6, 2025
9
+ tags:
10
+ - machine-learning
11
+ city: Macao
12
+ country: China
13
+ rankings: 'CCF: C, CORE: C, THCPL: N'
src/data/conferences/lrec.yml ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ - title: LREC
2
+ year: 2026
3
+ id: lrec26
4
+ full_name: Language Resources and Evaluation Conference
5
+ link: https://www.elra.info/lrec2026/
6
+ deadlines:
7
+ - type: submission
8
+ label: Paper Submission
9
+ date: '2025-10-18 13:59:59'
10
+ timezone: GMT+02
11
+ timezone: GMT+02
12
+ date: May 11-16, 2026
13
+ city: Palma, Mallorca
14
+ country: Spain
15
+ start: 2026-05-11
16
+ end: 2026-05-16
17
+ tags:
18
+ - natural-language-processing