Spaces:
Running
Running
Update conference data
Browse files- .github/scripts/update_conferences.py +13 -2
- src/data/conferences.yml +185 -186
.github/scripts/update_conferences.py
CHANGED
@@ -114,11 +114,22 @@ def transform_conference_data(conferences: List[Dict[str, Any]]) -> List[Dict[st
|
|
114 |
'link': recent_conf.get('link', ''),
|
115 |
'deadline': recent_conf.get('timeline', [{}])[0].get('deadline', ''),
|
116 |
'timezone': recent_conf.get('timezone', ''),
|
117 |
-
'place': recent_conf.get('place', ''),
|
118 |
'date': recent_conf.get('date', ''),
|
119 |
'tags': [], # We'll need to maintain a mapping for tags
|
120 |
}
|
121 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
122 |
# Add optional fields
|
123 |
timeline = recent_conf.get('timeline', [{}])[0]
|
124 |
if 'abstract_deadline' in timeline:
|
@@ -193,7 +204,7 @@ def main():
|
|
193 |
'timezone_submission', 'rebuttal_period_start',
|
194 |
'rebuttal_period_end', 'final_decision_date',
|
195 |
'review_release_date', 'commitment_deadline',
|
196 |
-
'start', 'end', 'note' # Added
|
197 |
]
|
198 |
for field in preserved_fields:
|
199 |
if field in curr_conf:
|
|
|
114 |
'link': recent_conf.get('link', ''),
|
115 |
'deadline': recent_conf.get('timeline', [{}])[0].get('deadline', ''),
|
116 |
'timezone': recent_conf.get('timezone', ''),
|
|
|
117 |
'date': recent_conf.get('date', ''),
|
118 |
'tags': [], # We'll need to maintain a mapping for tags
|
119 |
}
|
120 |
|
121 |
+
# Handle city and country fields instead of place
|
122 |
+
place = recent_conf.get('place', '')
|
123 |
+
if place:
|
124 |
+
# Try to parse the place into city and country if it contains a comma
|
125 |
+
if ',' in place:
|
126 |
+
city, country = place.split(',', 1)
|
127 |
+
transformed_conf['city'] = city.strip()
|
128 |
+
transformed_conf['country'] = country.strip()
|
129 |
+
else:
|
130 |
+
# If we can't parse, just set the country
|
131 |
+
transformed_conf['country'] = place.strip()
|
132 |
+
|
133 |
# Add optional fields
|
134 |
timeline = recent_conf.get('timeline', [{}])[0]
|
135 |
if 'abstract_deadline' in timeline:
|
|
|
204 |
'timezone_submission', 'rebuttal_period_start',
|
205 |
'rebuttal_period_end', 'final_decision_date',
|
206 |
'review_release_date', 'commitment_deadline',
|
207 |
+
'start', 'end', 'note', 'city', 'country' # Added city and country to preserved fields
|
208 |
]
|
209 |
for field in preserved_fields:
|
210 |
if field in curr_conf:
|
src/data/conferences.yml
CHANGED
@@ -1,54 +1,16 @@
|
|
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>
|
18 |
-
|
19 |
-
|
20 |
-
- title: CoRL
|
21 |
-
year: 2025
|
22 |
-
id: corl25
|
23 |
-
full_name: Conference on Robot Learning
|
24 |
-
link: https://www.corl.org/
|
25 |
-
deadline: '2025-04-30 23:59:00'
|
26 |
-
abstract_deadline: '2025-04-23 23:59:00'
|
27 |
-
timezone: UTC-12
|
28 |
-
city: Seoul
|
29 |
-
country: South Korea
|
30 |
-
date: Sep 27-30, 2025
|
31 |
-
tags:
|
32 |
-
- machine-learning
|
33 |
-
- robotics
|
34 |
-
start: '2025-09-27'
|
35 |
-
end: '2025-09-30'
|
36 |
-
venue: COEX Convention & Exhibition Center, Seoul, South Korea
|
37 |
-
|
38 |
-
|
39 |
- title: ICRA
|
40 |
year: 2025
|
41 |
id: icra25
|
42 |
-
full_name: International Conference on Robotics and Automation
|
43 |
link: https://2025.ieee-icra.org
|
44 |
deadline: '2024-07-15 12:00:00'
|
45 |
timezone: UTC-4
|
46 |
-
city: Atlanta
|
47 |
-
country: USA
|
48 |
date: May 19-23, 2025
|
49 |
tags:
|
50 |
- machine-learning
|
51 |
- robotics
|
|
|
|
|
52 |
start: '2026-06-01'
|
53 |
end: '2026-06-05'
|
54 |
rankings: 'CCF: B, CORE: A*, THCPL: A'
|
@@ -57,16 +19,16 @@
|
|
57 |
- title: WACV
|
58 |
year: 2025
|
59 |
id: wacv25
|
60 |
-
full_name: Winter Conference on Applications of Computer Vision
|
61 |
link: https://wacv2025.thecvf.com/
|
62 |
deadline: '2024-07-15 23:59:59'
|
63 |
timezone: UTC-7
|
64 |
-
city: Tucson
|
65 |
-
country: USA
|
66 |
date: February 28 - March 4, 2025
|
67 |
tags:
|
68 |
- machine-learning
|
69 |
- computer-vision
|
|
|
|
|
70 |
rankings: 'CCF: N, CORE: A, THCPL: N'
|
71 |
venue: JW Marriott Starpass in Tucson, Arizona, USA
|
72 |
|
@@ -97,14 +59,14 @@
|
|
97 |
link: https://aaai.org/conference/aaai/aaai-25/
|
98 |
deadline: '2024-08-15 23:59:59'
|
99 |
timezone: UTC-12
|
100 |
-
city: PHILADELPHIA
|
101 |
-
country: PENNSYLVANIA
|
102 |
date: February 25 - March 4, 2025
|
103 |
tags:
|
104 |
- data-mining
|
105 |
- machine-learning
|
106 |
- natural-language-processing
|
107 |
- computer-vision
|
|
|
|
|
108 |
abstract_deadline: '2024-08-07 23:59:59'
|
109 |
rankings: 'CCF: A, CORE: A*, THCPL: A'
|
110 |
venue: Pennsylvania Convention Center, Philadelphia, USA
|
@@ -153,11 +115,11 @@
|
|
153 |
link: https://coling2025.org/
|
154 |
deadline: '2024-09-16 23:59:59'
|
155 |
timezone: UTC-12
|
156 |
-
city: Abu Dhabi
|
157 |
-
country: UAE
|
158 |
date: Jan 19 - Jan 24, 2025
|
159 |
tags:
|
160 |
- natural-language-processing
|
|
|
|
|
161 |
start: '2025-01-19'
|
162 |
end: '2025-01-24'
|
163 |
rankings: 'CCF: B, CORE: B, THCPL: B'
|
@@ -172,11 +134,11 @@
|
|
172 |
link: https://algorithmiclearningtheory.org/alt2025/
|
173 |
deadline: '2024-10-01 09:59:59'
|
174 |
timezone: UTC+0
|
175 |
-
city: Milan
|
176 |
-
country: Italy
|
177 |
date: February 24-27, 2025
|
178 |
tags:
|
179 |
- machine-learning
|
|
|
|
|
180 |
rankings: 'CCF: C, CORE: B, THCPL: B'
|
181 |
venue: Politecnico di Milano, Milan, Italy
|
182 |
|
@@ -187,18 +149,19 @@
|
|
187 |
link: https://iclr.cc/Conferences/2025
|
188 |
deadline: '2024-10-01 23:59:59'
|
189 |
timezone: UTC-12
|
190 |
-
city: Singapore
|
191 |
date: April 24-28, 2025
|
192 |
tags:
|
193 |
- machine-learning
|
194 |
- computer-vision
|
195 |
- natural-language-processing
|
196 |
- signal-processing
|
|
|
197 |
abstract_deadline: '2024-09-27 23:59:59'
|
198 |
rankings: 'CCF: N, CORE: A*, THCPL: A'
|
199 |
venue: Singapore EXPO - 1 Expo Drive, Singapore
|
200 |
hindex: 304
|
201 |
note: Mandatory abstract deadline on September 27, 2024. More info <a href='https://iclr.cc/Conferences/2025/CallForPapers'>here</a>.
|
|
|
202 |
|
203 |
- title: Eurographics
|
204 |
year: 2025
|
@@ -239,11 +202,11 @@
|
|
239 |
link: https://aistats.org/aistats2025
|
240 |
deadline: '2024-10-10 23:59:59'
|
241 |
timezone: UTC-12
|
242 |
-
city: Mai Khao
|
243 |
-
country: Thailand
|
244 |
date: May 3-5, 2025
|
245 |
tags:
|
246 |
- machine-learning
|
|
|
|
|
247 |
abstract_deadline: '2024-10-03 23:59:59'
|
248 |
start: '2025-05-03'
|
249 |
end: '2025-05-05'
|
@@ -259,11 +222,11 @@
|
|
259 |
link: https://2025.naacl.org/
|
260 |
deadline: '2024-10-15 23:59:59'
|
261 |
timezone: UTC-12
|
262 |
-
city: Albuquerque
|
263 |
-
country: New Mexico
|
264 |
date: April 29-May 4, 2025
|
265 |
tags:
|
266 |
- natural-language-processing
|
|
|
|
|
267 |
rankings: 'CCF: B, CORE: A, THCPL: B'
|
268 |
hindex: 132
|
269 |
note: All submissions must be done through ARR. More info <a href='https://2025.naacl.org/calls/papers/'>here</a>.
|
@@ -275,12 +238,12 @@
|
|
275 |
link: https://aamas2025.org/
|
276 |
deadline: '2024-10-16 23:59:59'
|
277 |
timezone: UTC-12
|
278 |
-
city: Detroit
|
279 |
-
country: Michigan
|
280 |
date: May 19-23, 2025
|
281 |
tags:
|
282 |
- machine-learning
|
283 |
- robotics
|
|
|
|
|
284 |
abstract_deadline: '2024-10-09 23:59:59'
|
285 |
start: '2025-05-19'
|
286 |
end: '2025-05-23'
|
@@ -290,15 +253,15 @@
|
|
290 |
- title: CVPR
|
291 |
year: 2025
|
292 |
id: cvpr25
|
293 |
-
full_name: Conference on Computer Vision and Pattern Recognition
|
294 |
link: https://cvpr.thecvf.com/Conferences/2025/CallForPapers
|
295 |
deadline: '2024-11-14 23:59:00'
|
296 |
timezone: UTC-8
|
297 |
-
city: Nashville
|
298 |
-
country: Tennessee
|
299 |
date: June 10-17, 2025
|
300 |
tags:
|
301 |
- computer-vision
|
|
|
|
|
302 |
abstract_deadline: '2024-11-07 23:59:00'
|
303 |
rankings: 'CCF: A, CORE: A*, THCPL: A'
|
304 |
venue: Music City Center, Nashville, USA
|
@@ -315,10 +278,10 @@
|
|
315 |
link: https://www.esann.org/
|
316 |
deadline: '2024-11-20 00:00:00'
|
317 |
timezone: UTC-8
|
318 |
-
city: Bruges
|
319 |
-
country: Belgium
|
320 |
date: April 23 - April 25, 2025
|
321 |
tags: []
|
|
|
|
|
322 |
abstract_deadline: '2024-11-20 00:00:00'
|
323 |
rankings: 'CCF: N, CORE: B, THCPL: N'
|
324 |
|
@@ -329,25 +292,25 @@
|
|
329 |
link: https://cpal.cc/
|
330 |
deadline: '2024-11-25 23:59:59'
|
331 |
timezone: AoE
|
332 |
-
city: California
|
333 |
-
country: USA
|
334 |
date: March 24-27, 2025
|
335 |
tags:
|
336 |
- machine-learning
|
|
|
|
|
337 |
rankings: 'CCF: N, CORE: N, THCPL: N'
|
338 |
|
339 |
- title: CEC
|
340 |
year: 2025
|
341 |
id: cec2025
|
342 |
-
full_name: Congress on Evolutionary Computation
|
343 |
link: https://www.cec2025.org/
|
344 |
deadline: '2025-01-15 23:59:59'
|
345 |
timezone: UTC-12
|
346 |
-
city: Hangzhou
|
347 |
-
country: China
|
348 |
date: June 8-12, 2025
|
349 |
tags:
|
350 |
- machine-learning
|
|
|
|
|
351 |
rankings: 'CCF: N, CORE: B, THCPL: N'
|
352 |
|
353 |
- title: SIGGRAPH
|
@@ -373,11 +336,11 @@
|
|
373 |
link: https://2025.ijcai.org/
|
374 |
deadline: '2025-01-23 23:59:59'
|
375 |
timezone: UTC-12
|
376 |
-
city: Montreal
|
377 |
-
country: Canada
|
378 |
date: August 16-22, 2025
|
379 |
tags:
|
380 |
- machine-learning
|
|
|
|
|
381 |
abstract_deadline: '2025-01-16 23:59:59'
|
382 |
rankings: 'CCF: A, CORE: A*, THCPL: B'
|
383 |
|
@@ -388,11 +351,11 @@
|
|
388 |
link: https://roboticsconference.org
|
389 |
deadline: '2025-01-24 23:59:00'
|
390 |
timezone: AoE
|
391 |
-
city: Los Angeles
|
392 |
-
country: USA
|
393 |
date: June 21-25, 2025
|
394 |
tags:
|
395 |
- machine-learning
|
|
|
|
|
396 |
abstract_deadline: '2025-01-17 23:59:00'
|
397 |
rankings: 'CCF: N, CORE: A*, THCPL: A'
|
398 |
|
@@ -403,14 +366,14 @@
|
|
403 |
link: https://icml.cc/Conferences/2025
|
404 |
deadline: '2025-01-30 23:59:59'
|
405 |
timezone: UTC-12
|
406 |
-
city: Vancouver
|
407 |
-
country: Canada
|
408 |
-
venue: Vancouver Convention Center
|
409 |
date: July 11-19, 2025
|
410 |
tags:
|
411 |
- machine-learning
|
|
|
|
|
412 |
abstract_deadline: '2025-01-23 23:59:59'
|
413 |
rankings: 'CCF: A, CORE: A*, THCPL: A'
|
|
|
414 |
submission_deadline: '2025-01-31 03:59:59'
|
415 |
timezone_submission: PST
|
416 |
|
@@ -421,11 +384,11 @@
|
|
421 |
link: https://2025.ijcnn.org/
|
422 |
deadline: '2025-02-05 23:59:59'
|
423 |
timezone: UTC-12
|
424 |
-
city: Rome
|
425 |
-
country: Italy
|
426 |
date: June 30 - July 5, 2025
|
427 |
tags:
|
428 |
- machine-learning
|
|
|
|
|
429 |
rankings: 'CCF: C, CORE: B, THCPL: B'
|
430 |
|
431 |
- title: COLT
|
@@ -435,13 +398,33 @@
|
|
435 |
link: https://learningtheory.org/colt2025/
|
436 |
deadline: '2025-02-06 16:59:59'
|
437 |
timezone: UTC-5
|
438 |
-
city: Lyon
|
439 |
-
country: France
|
440 |
date: June 30 - July 4, 2025
|
441 |
tags:
|
442 |
- machine-learning
|
|
|
|
|
443 |
rankings: 'CCF: B, CORE: A*, THCPL: A'
|
444 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
445 |
- title: UAI
|
446 |
year: 2025
|
447 |
id: uai25
|
@@ -449,11 +432,11 @@
|
|
449 |
link: https://www.auai.org/uai2025/
|
450 |
deadline: '2025-02-10 23:59:59'
|
451 |
timezone: AoE
|
452 |
-
city: Rio de Janeiro
|
453 |
-
country: Brazil
|
454 |
date: July 21-25, 2025
|
455 |
tags:
|
456 |
- machine-learning
|
|
|
|
|
457 |
rankings: 'CCF: B, CORE: A, THCPL: B'
|
458 |
|
459 |
- title: KDD
|
@@ -483,11 +466,11 @@
|
|
483 |
link: https://2025.aclweb.org/
|
484 |
deadline: '2025-02-15 23:59:59'
|
485 |
timezone: UTC-12
|
486 |
-
city: Vienna
|
487 |
-
country: Austria
|
488 |
date: July 27 - August 1, 2025
|
489 |
tags:
|
490 |
- natural-language-processing
|
|
|
|
|
491 |
rankings: 'CCF: A, CORE: A*, THCPL: A'
|
492 |
final_decision_date: '2025-05-15 23:59:59'
|
493 |
commitment_deadline: '2025-04-10 23:59:59'
|
@@ -534,30 +517,34 @@
|
|
534 |
- title: IROS
|
535 |
year: 2025
|
536 |
id: iros25
|
537 |
-
full_name: International Conference on Intelligent Robots and Systems
|
538 |
link: http://www.iros25.org/
|
539 |
deadline: '2025-03-01 23:59:59'
|
540 |
timezone: UTC-8
|
541 |
-
city: Hangzhou
|
542 |
-
country: China
|
543 |
date: October 19-25, 2025
|
544 |
tags:
|
545 |
- robotics
|
|
|
|
|
546 |
rankings: 'CCF: C, CORE: A, THCPL: B'
|
547 |
|
548 |
-
- title:
|
549 |
year: 2025
|
550 |
-
id:
|
551 |
-
full_name:
|
552 |
-
link: https://
|
553 |
-
deadline: '2025-03-
|
554 |
-
|
555 |
-
|
556 |
-
|
557 |
-
|
|
|
|
|
|
|
558 |
tags:
|
559 |
- machine-learning
|
560 |
-
|
|
|
561 |
|
562 |
- title: ICDAR
|
563 |
year: 2025
|
@@ -566,34 +553,81 @@
|
|
566 |
link: https://www.icdar2025.com/home
|
567 |
deadline: '2025-03-07 23:59:59'
|
568 |
timezone: UTC+0
|
569 |
-
city: Wuhan
|
570 |
-
country: China
|
571 |
date: September 17-21, 2025
|
572 |
tags:
|
573 |
- computer-vision
|
|
|
|
|
574 |
abstract_deadline: '2025-02-28 23:59:59'
|
575 |
rankings: 'CCF: C, CORE: A, THCPL: B'
|
576 |
|
577 |
- title: ICCV
|
578 |
year: 2025
|
579 |
id: iccv25
|
580 |
-
full_name: International Conference on Computer Vision
|
581 |
link: https://iccv.thecvf.com/Conferences/2025
|
582 |
-
deadline: '2025-03-
|
583 |
-
timezone: UTC
|
584 |
-
city: Honolulu
|
585 |
-
country: Hawaii
|
586 |
date: October 19-25, 2025
|
587 |
-
note: All info can be found <a href='https://iccv.thecvf.com/Conferences/2025/CallForPapers'>here</a>.
|
588 |
tags:
|
589 |
- machine-learning
|
590 |
- computer-vision
|
|
|
|
|
|
|
591 |
rankings: 'CCF: A, CORE: A*, THCPL: A'
|
592 |
-
abstract_deadline: '2025-03-03 23:59:59'
|
593 |
rebuttal_period_start: '2025-05-10'
|
594 |
rebuttal_period_end: '2025-05-16'
|
595 |
final_decision_date: '2025-06-20'
|
596 |
review_release_date: '2025-05-09'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
597 |
|
598 |
- title: ICANN
|
599 |
year: 2025
|
@@ -612,42 +646,67 @@
|
|
612 |
hindex: 32.0
|
613 |
tags:
|
614 |
- machine-learning
|
615 |
-
note: Deadline for full paper submission extended to
|
616 |
|
617 |
-
- title:
|
618 |
year: 2025
|
619 |
-
id:
|
620 |
-
full_name:
|
621 |
-
link: https://
|
622 |
-
deadline: '2025-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
623 |
timezone: AoE
|
624 |
-
|
625 |
-
country: Canada
|
626 |
-
date: October 7-9, 2025
|
627 |
tags:
|
628 |
-
-
|
629 |
-
|
|
|
|
|
630 |
rankings: 'CCF: N, CORE: N, THCPL: N'
|
631 |
-
venue:
|
|
|
|
|
632 |
|
633 |
- title: ECAI
|
634 |
year: 2025
|
635 |
id: ecai25
|
636 |
full_name: European Conference on Artificial Intelligence
|
637 |
-
link: https://
|
638 |
deadline: '2025-05-06 23:59:59'
|
639 |
timezone: UTC-12
|
640 |
-
city: Bologna
|
641 |
-
country: Italy
|
642 |
date: October 25-30, 2025
|
643 |
tags:
|
644 |
- machine-learning
|
|
|
|
|
645 |
abstract_deadline: '2025-04-29 23:59:59'
|
|
|
|
|
646 |
rebuttal_period_start: '2025-06-23'
|
647 |
rebuttal_period_end: '2025-06-25'
|
648 |
final_decision_date: '2025-07-10'
|
649 |
-
rankings: 'CCF: B, CORE: A, THCPL: N'
|
650 |
-
venue: Bologna Congress Center and The Engineering School (University of Bologna)
|
651 |
note: All important dates can be found <a href='https://ecai2025.org/call-for-papers/'>here</a>.
|
652 |
|
653 |
- title: NeurIPS
|
@@ -673,32 +732,15 @@
|
|
673 |
link: https://2025.emnlp.org/
|
674 |
deadline: '2025-05-19 23:59:59'
|
675 |
timezone: UTC-12
|
676 |
-
city: Suzhou
|
677 |
-
country: China
|
678 |
date: November 5 - 9, 2025
|
679 |
-
start: '2025-11-05'
|
680 |
-
end: '2025-11-09'
|
681 |
tags:
|
682 |
- natural-language-processing
|
|
|
|
|
683 |
rankings: 'CCF: B, CORE: A*, THCPL: A'
|
684 |
venue: Suzhou, China
|
685 |
-
|
686 |
-
|
687 |
-
year: 2025
|
688 |
-
id: conll25
|
689 |
-
full_name: The SIGNLL Conference on Computational Natural Language Learning
|
690 |
-
link: https://conll.org/
|
691 |
-
deadline: 2025-03-15 12:00
|
692 |
-
timezone: UTC-12
|
693 |
-
city: Vienna
|
694 |
-
country: Austria
|
695 |
-
date: July 31 - August 1, 2025
|
696 |
-
start: '2025-07-31'
|
697 |
-
end: '2025-08-01'
|
698 |
-
tags:
|
699 |
-
- natural-language-processing
|
700 |
-
rankings: 'CCF: B, CORE: A, THCPL: B'
|
701 |
-
venue: Vienna, Austria
|
702 |
|
703 |
- title: ICDM
|
704 |
year: 2025
|
@@ -712,7 +754,7 @@
|
|
712 |
date: November 12 - November 15, 2025
|
713 |
start: '2025-11-12'
|
714 |
end: '2025-11-15'
|
715 |
-
tags:
|
716 |
- data-mining
|
717 |
|
718 |
- title: ECCV
|
@@ -725,48 +767,5 @@
|
|
725 |
city: Malmö
|
726 |
country: Sweden
|
727 |
date: September 8 - September 13, 2026
|
728 |
-
tags:
|
729 |
-
- computer-vision
|
730 |
-
|
731 |
-
- title: ACM MM
|
732 |
-
year: 2025
|
733 |
-
id: acm25
|
734 |
-
full_name: ACM Multimedia
|
735 |
-
link: https://acmmm2025.org/
|
736 |
-
deadline: '2025-04-11 23:59:59'
|
737 |
-
abstract_deadline: '2025-04-04 23:59:59'
|
738 |
-
rebuttal_period_start: '2025-06-22'
|
739 |
-
rebuttal_period_end: '2025-06-09'
|
740 |
-
final_decision_date: '2025-07-04'
|
741 |
-
timezone: UTC-12
|
742 |
-
city: Dublin
|
743 |
-
country: Ireland
|
744 |
-
date: October 27-31, 2025
|
745 |
-
start: '2025-10-27'
|
746 |
-
end: '2025-10-31'
|
747 |
-
venue: Dublin Royal Convention Center, Dublin, Ireland
|
748 |
-
note: All important dates can be found <a href='https://acmmm2025.org/important-dates/'>here</a>.
|
749 |
-
tags:
|
750 |
-
- computer-vision
|
751 |
-
- machine-learning
|
752 |
-
- human-computer-interaction
|
753 |
-
|
754 |
-
- title: SGP
|
755 |
-
year: 2025
|
756 |
-
id: sgp25
|
757 |
-
full_name: Synopsium on Geometric Processing
|
758 |
-
link: https://sgp2025.my.canva.site/
|
759 |
-
deadline: '2025-02-07 23:59:59'
|
760 |
-
abstract_deadline: '2025-02-04 23:59:59'
|
761 |
-
final_decision_date: '2025-03-15'
|
762 |
-
timezone: UTC-12
|
763 |
-
city: Bilbao
|
764 |
-
country: Spain
|
765 |
-
date: June 30-July 4, 2025
|
766 |
-
start: '2025-06-30'
|
767 |
-
end: '2025-07-04'
|
768 |
-
venue: Bizkaia Aretoa, Bilbao, Spain
|
769 |
-
note: All important dates can be found <a href='https://sgp2025.my.canva.site/submit-page-sgp'>here</a>.
|
770 |
tags:
|
771 |
- computer-vision
|
772 |
-
- machine-learning
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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'
|
|
|
19 |
- title: WACV
|
20 |
year: 2025
|
21 |
id: wacv25
|
22 |
+
full_name: IEEE/CVF Winter Conference on Applications of Computer Vision
|
23 |
link: https://wacv2025.thecvf.com/
|
24 |
deadline: '2024-07-15 23:59:59'
|
25 |
timezone: UTC-7
|
|
|
|
|
26 |
date: February 28 - March 4, 2025
|
27 |
tags:
|
28 |
- machine-learning
|
29 |
- computer-vision
|
30 |
+
city: Tucson
|
31 |
+
country: USA
|
32 |
rankings: 'CCF: N, CORE: A, THCPL: N'
|
33 |
venue: JW Marriott Starpass in Tucson, Arizona, USA
|
34 |
|
|
|
59 |
link: https://aaai.org/conference/aaai/aaai-25/
|
60 |
deadline: '2024-08-15 23:59:59'
|
61 |
timezone: UTC-12
|
|
|
|
|
62 |
date: February 25 - March 4, 2025
|
63 |
tags:
|
64 |
- data-mining
|
65 |
- machine-learning
|
66 |
- natural-language-processing
|
67 |
- computer-vision
|
68 |
+
city: PHILADELPHIA
|
69 |
+
country: PENNSYLVANIA
|
70 |
abstract_deadline: '2024-08-07 23:59:59'
|
71 |
rankings: 'CCF: A, CORE: A*, THCPL: A'
|
72 |
venue: Pennsylvania Convention Center, Philadelphia, USA
|
|
|
115 |
link: https://coling2025.org/
|
116 |
deadline: '2024-09-16 23:59:59'
|
117 |
timezone: UTC-12
|
|
|
|
|
118 |
date: Jan 19 - Jan 24, 2025
|
119 |
tags:
|
120 |
- natural-language-processing
|
121 |
+
city: Abu Dhabi
|
122 |
+
country: UAE
|
123 |
start: '2025-01-19'
|
124 |
end: '2025-01-24'
|
125 |
rankings: 'CCF: B, CORE: B, THCPL: B'
|
|
|
134 |
link: https://algorithmiclearningtheory.org/alt2025/
|
135 |
deadline: '2024-10-01 09:59:59'
|
136 |
timezone: UTC+0
|
|
|
|
|
137 |
date: February 24-27, 2025
|
138 |
tags:
|
139 |
- machine-learning
|
140 |
+
city: Milan
|
141 |
+
country: Italy
|
142 |
rankings: 'CCF: C, CORE: B, THCPL: B'
|
143 |
venue: Politecnico di Milano, Milan, Italy
|
144 |
|
|
|
149 |
link: https://iclr.cc/Conferences/2025
|
150 |
deadline: '2024-10-01 23:59:59'
|
151 |
timezone: UTC-12
|
|
|
152 |
date: April 24-28, 2025
|
153 |
tags:
|
154 |
- machine-learning
|
155 |
- computer-vision
|
156 |
- natural-language-processing
|
157 |
- signal-processing
|
158 |
+
country: Singapore
|
159 |
abstract_deadline: '2024-09-27 23:59:59'
|
160 |
rankings: 'CCF: N, CORE: A*, THCPL: A'
|
161 |
venue: Singapore EXPO - 1 Expo Drive, Singapore
|
162 |
hindex: 304
|
163 |
note: Mandatory abstract deadline on September 27, 2024. More info <a href='https://iclr.cc/Conferences/2025/CallForPapers'>here</a>.
|
164 |
+
city: Singapore
|
165 |
|
166 |
- title: Eurographics
|
167 |
year: 2025
|
|
|
202 |
link: https://aistats.org/aistats2025
|
203 |
deadline: '2024-10-10 23:59:59'
|
204 |
timezone: UTC-12
|
|
|
|
|
205 |
date: May 3-5, 2025
|
206 |
tags:
|
207 |
- machine-learning
|
208 |
+
city: Mai Khao
|
209 |
+
country: Thailand
|
210 |
abstract_deadline: '2024-10-03 23:59:59'
|
211 |
start: '2025-05-03'
|
212 |
end: '2025-05-05'
|
|
|
222 |
link: https://2025.naacl.org/
|
223 |
deadline: '2024-10-15 23:59:59'
|
224 |
timezone: UTC-12
|
|
|
|
|
225 |
date: April 29-May 4, 2025
|
226 |
tags:
|
227 |
- natural-language-processing
|
228 |
+
city: Albuquerque
|
229 |
+
country: New Mexico
|
230 |
rankings: 'CCF: B, CORE: A, THCPL: B'
|
231 |
hindex: 132
|
232 |
note: All submissions must be done through ARR. More info <a href='https://2025.naacl.org/calls/papers/'>here</a>.
|
|
|
238 |
link: https://aamas2025.org/
|
239 |
deadline: '2024-10-16 23:59:59'
|
240 |
timezone: UTC-12
|
|
|
|
|
241 |
date: May 19-23, 2025
|
242 |
tags:
|
243 |
- machine-learning
|
244 |
- robotics
|
245 |
+
city: Detroit
|
246 |
+
country: Michigan
|
247 |
abstract_deadline: '2024-10-09 23:59:59'
|
248 |
start: '2025-05-19'
|
249 |
end: '2025-05-23'
|
|
|
253 |
- title: CVPR
|
254 |
year: 2025
|
255 |
id: cvpr25
|
256 |
+
full_name: IEEE/CVF Conference on Computer Vision and Pattern Recognition
|
257 |
link: https://cvpr.thecvf.com/Conferences/2025/CallForPapers
|
258 |
deadline: '2024-11-14 23:59:00'
|
259 |
timezone: UTC-8
|
|
|
|
|
260 |
date: June 10-17, 2025
|
261 |
tags:
|
262 |
- computer-vision
|
263 |
+
city: Nashville
|
264 |
+
country: Tennessee
|
265 |
abstract_deadline: '2024-11-07 23:59:00'
|
266 |
rankings: 'CCF: A, CORE: A*, THCPL: A'
|
267 |
venue: Music City Center, Nashville, USA
|
|
|
278 |
link: https://www.esann.org/
|
279 |
deadline: '2024-11-20 00:00:00'
|
280 |
timezone: UTC-8
|
|
|
|
|
281 |
date: April 23 - April 25, 2025
|
282 |
tags: []
|
283 |
+
city: Bruges
|
284 |
+
country: Belgium
|
285 |
abstract_deadline: '2024-11-20 00:00:00'
|
286 |
rankings: 'CCF: N, CORE: B, THCPL: N'
|
287 |
|
|
|
292 |
link: https://cpal.cc/
|
293 |
deadline: '2024-11-25 23:59:59'
|
294 |
timezone: AoE
|
|
|
|
|
295 |
date: March 24-27, 2025
|
296 |
tags:
|
297 |
- machine-learning
|
298 |
+
city: California
|
299 |
+
country: USA
|
300 |
rankings: 'CCF: N, CORE: N, THCPL: N'
|
301 |
|
302 |
- title: CEC
|
303 |
year: 2025
|
304 |
id: cec2025
|
305 |
+
full_name: IEEE Congress on Evolutionary Computation
|
306 |
link: https://www.cec2025.org/
|
307 |
deadline: '2025-01-15 23:59:59'
|
308 |
timezone: UTC-12
|
|
|
|
|
309 |
date: June 8-12, 2025
|
310 |
tags:
|
311 |
- machine-learning
|
312 |
+
city: Hangzhou
|
313 |
+
country: China
|
314 |
rankings: 'CCF: N, CORE: B, THCPL: N'
|
315 |
|
316 |
- title: SIGGRAPH
|
|
|
336 |
link: https://2025.ijcai.org/
|
337 |
deadline: '2025-01-23 23:59:59'
|
338 |
timezone: UTC-12
|
|
|
|
|
339 |
date: August 16-22, 2025
|
340 |
tags:
|
341 |
- machine-learning
|
342 |
+
city: Montreal
|
343 |
+
country: Canada
|
344 |
abstract_deadline: '2025-01-16 23:59:59'
|
345 |
rankings: 'CCF: A, CORE: A*, THCPL: B'
|
346 |
|
|
|
351 |
link: https://roboticsconference.org
|
352 |
deadline: '2025-01-24 23:59:00'
|
353 |
timezone: AoE
|
|
|
|
|
354 |
date: June 21-25, 2025
|
355 |
tags:
|
356 |
- machine-learning
|
357 |
+
city: Los Angeles
|
358 |
+
country: USA
|
359 |
abstract_deadline: '2025-01-17 23:59:00'
|
360 |
rankings: 'CCF: N, CORE: A*, THCPL: A'
|
361 |
|
|
|
366 |
link: https://icml.cc/Conferences/2025
|
367 |
deadline: '2025-01-30 23:59:59'
|
368 |
timezone: UTC-12
|
|
|
|
|
|
|
369 |
date: July 11-19, 2025
|
370 |
tags:
|
371 |
- machine-learning
|
372 |
+
city: Vancouver
|
373 |
+
country: Canada
|
374 |
abstract_deadline: '2025-01-23 23:59:59'
|
375 |
rankings: 'CCF: A, CORE: A*, THCPL: A'
|
376 |
+
venue: Vancouver Convention Center
|
377 |
submission_deadline: '2025-01-31 03:59:59'
|
378 |
timezone_submission: PST
|
379 |
|
|
|
384 |
link: https://2025.ijcnn.org/
|
385 |
deadline: '2025-02-05 23:59:59'
|
386 |
timezone: UTC-12
|
|
|
|
|
387 |
date: June 30 - July 5, 2025
|
388 |
tags:
|
389 |
- machine-learning
|
390 |
+
city: Rome
|
391 |
+
country: Italy
|
392 |
rankings: 'CCF: C, CORE: B, THCPL: B'
|
393 |
|
394 |
- title: COLT
|
|
|
398 |
link: https://learningtheory.org/colt2025/
|
399 |
deadline: '2025-02-06 16:59:59'
|
400 |
timezone: UTC-5
|
|
|
|
|
401 |
date: June 30 - July 4, 2025
|
402 |
tags:
|
403 |
- machine-learning
|
404 |
+
city: Lyon
|
405 |
+
country: France
|
406 |
rankings: 'CCF: B, CORE: A*, THCPL: A'
|
407 |
|
408 |
+
- title: SGP
|
409 |
+
year: 2025
|
410 |
+
id: sgp25
|
411 |
+
full_name: Synopsium on Geometric Processing
|
412 |
+
link: https://sgp2025.my.canva.site/
|
413 |
+
deadline: '2025-02-07 23:59:59'
|
414 |
+
abstract_deadline: '2025-02-04 23:59:59'
|
415 |
+
final_decision_date: '2025-03-15'
|
416 |
+
timezone: UTC-12
|
417 |
+
city: Bilbao
|
418 |
+
country: Spain
|
419 |
+
date: June 30-July 4, 2025
|
420 |
+
start: '2025-06-30'
|
421 |
+
end: '2025-07-04'
|
422 |
+
venue: Bizkaia Aretoa, Bilbao, Spain
|
423 |
+
note: All important dates can be found <a href='https://sgp2025.my.canva.site/submit-page-sgp'>here</a>.
|
424 |
+
tags:
|
425 |
+
- computer-vision
|
426 |
+
- machine-learning
|
427 |
+
|
428 |
- title: UAI
|
429 |
year: 2025
|
430 |
id: uai25
|
|
|
432 |
link: https://www.auai.org/uai2025/
|
433 |
deadline: '2025-02-10 23:59:59'
|
434 |
timezone: AoE
|
|
|
|
|
435 |
date: July 21-25, 2025
|
436 |
tags:
|
437 |
- machine-learning
|
438 |
+
city: Rio de Janeiro
|
439 |
+
country: Brazil
|
440 |
rankings: 'CCF: B, CORE: A, THCPL: B'
|
441 |
|
442 |
- title: KDD
|
|
|
466 |
link: https://2025.aclweb.org/
|
467 |
deadline: '2025-02-15 23:59:59'
|
468 |
timezone: UTC-12
|
|
|
|
|
469 |
date: July 27 - August 1, 2025
|
470 |
tags:
|
471 |
- natural-language-processing
|
472 |
+
city: Vienna
|
473 |
+
country: Austria
|
474 |
rankings: 'CCF: A, CORE: A*, THCPL: A'
|
475 |
final_decision_date: '2025-05-15 23:59:59'
|
476 |
commitment_deadline: '2025-04-10 23:59:59'
|
|
|
517 |
- title: IROS
|
518 |
year: 2025
|
519 |
id: iros25
|
520 |
+
full_name: IEEE\RSJ International Conference on Intelligent Robots and Systems
|
521 |
link: http://www.iros25.org/
|
522 |
deadline: '2025-03-01 23:59:59'
|
523 |
timezone: UTC-8
|
|
|
|
|
524 |
date: October 19-25, 2025
|
525 |
tags:
|
526 |
- robotics
|
527 |
+
city: Hangzhou
|
528 |
+
country: China
|
529 |
rankings: 'CCF: C, CORE: A, THCPL: B'
|
530 |
|
531 |
+
- title: CoLLAs
|
532 |
year: 2025
|
533 |
+
id: collas25
|
534 |
+
full_name: Conference on Lifelong Learning Agents
|
535 |
+
link: https://lifelong-ml.cc
|
536 |
+
deadline: '2025-03-03 23:59:59'
|
537 |
+
abstract_deadline: '2025-02-26 23:59:59'
|
538 |
+
timezone: UTC-12
|
539 |
+
city: Philadelphia
|
540 |
+
country: USA
|
541 |
+
date: August 11-14, 2025
|
542 |
+
start: 2025-08-11
|
543 |
+
end: 2025-08-14
|
544 |
tags:
|
545 |
- machine-learning
|
546 |
+
- lifelong-learning
|
547 |
+
note: Abstract deadline on February 26, 2025. More info <a href='https://lifelong-ml.cc/Conferences/2025/call'>here</a>
|
548 |
|
549 |
- title: ICDAR
|
550 |
year: 2025
|
|
|
553 |
link: https://www.icdar2025.com/home
|
554 |
deadline: '2025-03-07 23:59:59'
|
555 |
timezone: UTC+0
|
|
|
|
|
556 |
date: September 17-21, 2025
|
557 |
tags:
|
558 |
- computer-vision
|
559 |
+
city: Wuhan
|
560 |
+
country: China
|
561 |
abstract_deadline: '2025-02-28 23:59:59'
|
562 |
rankings: 'CCF: C, CORE: A, THCPL: B'
|
563 |
|
564 |
- title: ICCV
|
565 |
year: 2025
|
566 |
id: iccv25
|
567 |
+
full_name: IEEE International Conference on Computer Vision
|
568 |
link: https://iccv.thecvf.com/Conferences/2025
|
569 |
+
deadline: '2025-03-08 09:59:59'
|
570 |
+
timezone: UTC+0
|
|
|
|
|
571 |
date: October 19-25, 2025
|
|
|
572 |
tags:
|
573 |
- machine-learning
|
574 |
- computer-vision
|
575 |
+
city: Honolulu
|
576 |
+
country: Hawaii
|
577 |
+
abstract_deadline: '2025-03-04 09:59:59'
|
578 |
rankings: 'CCF: A, CORE: A*, THCPL: A'
|
|
|
579 |
rebuttal_period_start: '2025-05-10'
|
580 |
rebuttal_period_end: '2025-05-16'
|
581 |
final_decision_date: '2025-06-20'
|
582 |
review_release_date: '2025-05-09'
|
583 |
+
note: All info can be found <a href='https://iccv.thecvf.com/Conferences/2025/CallForPapers'>here</a>.
|
584 |
+
|
585 |
+
- title: CoNLL
|
586 |
+
year: 2025
|
587 |
+
id: conll25
|
588 |
+
full_name: The SIGNLL Conference on Computational Natural Language Learning
|
589 |
+
link: https://conll.org/
|
590 |
+
deadline: 2025-03-15 12:00
|
591 |
+
timezone: UTC-12
|
592 |
+
city: Vienna
|
593 |
+
country: Austria
|
594 |
+
date: July 31 - August 1, 2025
|
595 |
+
start: '2025-07-31'
|
596 |
+
end: '2025-08-01'
|
597 |
+
tags:
|
598 |
+
- natural-language-processing
|
599 |
+
rankings: 'CCF: B, CORE: A, THCPL: B'
|
600 |
+
venue: Vienna, Austria
|
601 |
+
|
602 |
+
- title: KSEM
|
603 |
+
year: 2025
|
604 |
+
id: ksem25
|
605 |
+
full_name: International Conference on Knowledge Science, Engineering and Management
|
606 |
+
link: https://ksem2025.scimeeting.cn/
|
607 |
+
deadline: '2025-03-20 23:59:59'
|
608 |
+
timezone: UTC+0
|
609 |
+
date: August 4-6, 2025
|
610 |
+
tags:
|
611 |
+
- machine-learning
|
612 |
+
city: Macao
|
613 |
+
country: China
|
614 |
+
rankings: 'CCF: C, CORE: C, THCPL: N'
|
615 |
+
|
616 |
+
- title: COLM
|
617 |
+
year: 2025
|
618 |
+
id: colm25
|
619 |
+
full_name: Conference on Language Modeling
|
620 |
+
link: https://colmweb.org/cfp.html
|
621 |
+
deadline: '2025-03-27 23:59:59'
|
622 |
+
timezone: AoE
|
623 |
+
date: October 7-9, 2025
|
624 |
+
tags:
|
625 |
+
- natural-language-processing
|
626 |
+
city: Montreal
|
627 |
+
country: Canada
|
628 |
+
abstract_deadline: '2025-03-20 23:59:59'
|
629 |
+
rankings: 'CCF: N, CORE: N, THCPL: N'
|
630 |
+
venue: Palais des Congrès Montreal, Canada
|
631 |
|
632 |
- title: ICANN
|
633 |
year: 2025
|
|
|
646 |
hindex: 32.0
|
647 |
tags:
|
648 |
- machine-learning
|
649 |
+
note: Deadline for full paper submission extended to 29th March 2025. More info <a href='https://e-nns.org/icann2025'>here</a>.
|
650 |
|
651 |
+
- title: ACM MM
|
652 |
year: 2025
|
653 |
+
id: acm25
|
654 |
+
full_name: ACM Multimedia
|
655 |
+
link: https://acmmm2025.org/
|
656 |
+
deadline: '2025-04-11 23:59:59'
|
657 |
+
abstract_deadline: '2025-04-04 23:59:59'
|
658 |
+
rebuttal_period_start: '2025-06-22'
|
659 |
+
rebuttal_period_end: '2025-06-09'
|
660 |
+
final_decision_date: '2025-07-04'
|
661 |
+
timezone: UTC-12
|
662 |
+
city: Dublin
|
663 |
+
country: Ireland
|
664 |
+
date: October 27-31, 2025
|
665 |
+
start: '2025-10-27'
|
666 |
+
end: '2025-10-31'
|
667 |
+
venue: Dublin Royal Convention Center, Dublin, Ireland
|
668 |
+
note: All important dates can be found <a href='https://acmmm2025.org/important-dates/'>here</a>.
|
669 |
+
tags:
|
670 |
+
- computer-vision
|
671 |
+
- machine-learning
|
672 |
+
- human-computer-interaction
|
673 |
+
|
674 |
+
- title: CoRL
|
675 |
+
year: 2025
|
676 |
+
id: corl25
|
677 |
+
full_name: The Conference on Robot Learning
|
678 |
+
link: https://www.corl.org/
|
679 |
+
deadline: '2025-04-30 23:59:59'
|
680 |
timezone: AoE
|
681 |
+
date: September 27-30, 2025
|
|
|
|
|
682 |
tags:
|
683 |
+
- machine-learning
|
684 |
+
- robotics
|
685 |
+
city: Seoul
|
686 |
+
country: South Korea
|
687 |
rankings: 'CCF: N, CORE: N, THCPL: N'
|
688 |
+
venue: COEX Convention & Exhibition Center, Seoul, South Korea
|
689 |
+
start: '2025-09-27'
|
690 |
+
end: '2025-09-30'
|
691 |
|
692 |
- title: ECAI
|
693 |
year: 2025
|
694 |
id: ecai25
|
695 |
full_name: European Conference on Artificial Intelligence
|
696 |
+
link: https://ecai2025.org/deadlines/
|
697 |
deadline: '2025-05-06 23:59:59'
|
698 |
timezone: UTC-12
|
|
|
|
|
699 |
date: October 25-30, 2025
|
700 |
tags:
|
701 |
- machine-learning
|
702 |
+
city: Bologna
|
703 |
+
country: Italy
|
704 |
abstract_deadline: '2025-04-29 23:59:59'
|
705 |
+
rankings: 'CCF: B, CORE: A, THCPL: N'
|
706 |
+
venue: Bologna Congress Center and The Engineering School (University of Bologna)
|
707 |
rebuttal_period_start: '2025-06-23'
|
708 |
rebuttal_period_end: '2025-06-25'
|
709 |
final_decision_date: '2025-07-10'
|
|
|
|
|
710 |
note: All important dates can be found <a href='https://ecai2025.org/call-for-papers/'>here</a>.
|
711 |
|
712 |
- title: NeurIPS
|
|
|
732 |
link: https://2025.emnlp.org/
|
733 |
deadline: '2025-05-19 23:59:59'
|
734 |
timezone: UTC-12
|
|
|
|
|
735 |
date: November 5 - 9, 2025
|
|
|
|
|
736 |
tags:
|
737 |
- natural-language-processing
|
738 |
+
city: Suzhou
|
739 |
+
country: China
|
740 |
rankings: 'CCF: B, CORE: A*, THCPL: A'
|
741 |
venue: Suzhou, China
|
742 |
+
start: '2025-11-05'
|
743 |
+
end: '2025-11-09'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
744 |
|
745 |
- title: ICDM
|
746 |
year: 2025
|
|
|
754 |
date: November 12 - November 15, 2025
|
755 |
start: '2025-11-12'
|
756 |
end: '2025-11-15'
|
757 |
+
tags:
|
758 |
- data-mining
|
759 |
|
760 |
- title: ECCV
|
|
|
767 |
city: Malmö
|
768 |
country: Sweden
|
769 |
date: September 8 - September 13, 2026
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
770 |
tags:
|
771 |
- computer-vision
|
|