Spaces:
				
			
			
	
			
			
					
		Running
		
	
	
	
			
			
	
	
	
	
		
		
					
		Running
		
	Add rankings as separate field
Browse files
    	
        .github/scripts/update_conferences.py
    CHANGED
    
    | @@ -136,13 +136,13 @@ def transform_conference_data(conferences: List[Dict[str, Any]]) -> List[Dict[st | |
| 136 | 
             
                    except Exception as e:
         | 
| 137 | 
             
                        print(f"Warning: Could not parse date for {transformed_conf['title']}: {e}")
         | 
| 138 |  | 
| 139 | 
            -
                    # Add rankings as  | 
| 140 | 
             
                    if 'rank' in conf:
         | 
| 141 | 
             
                        rankings = []
         | 
| 142 | 
             
                        for rank_type, rank_value in conf['rank'].items():
         | 
| 143 | 
             
                            rankings.append(f"{rank_type.upper()}: {rank_value}")
         | 
| 144 | 
             
                        if rankings:
         | 
| 145 | 
            -
                            transformed_conf[' | 
| 146 |  | 
| 147 | 
             
                    transformed.append(transformed_conf)
         | 
| 148 |  | 
| @@ -182,7 +182,7 @@ def main(): | |
| 182 | 
             
                                'timezone_submission', 'rebuttal_period_start',
         | 
| 183 | 
             
                                'rebuttal_period_end', 'final_decision_date',
         | 
| 184 | 
             
                                'review_release_date', 'commitment_deadline',
         | 
| 185 | 
            -
                                'start', 'end'
         | 
| 186 | 
             
                            ]
         | 
| 187 | 
             
                            for field in preserved_fields:
         | 
| 188 | 
             
                                if field in curr_conf:
         | 
| @@ -194,11 +194,9 @@ def main(): | |
| 194 | 
             
                            if 'end' not in curr_conf and 'end' in new_conf:
         | 
| 195 | 
             
                                new_conf['end'] = new_conf['end']
         | 
| 196 |  | 
| 197 | 
            -
                            # Preserve existing  | 
| 198 | 
            -
                            if ' | 
| 199 | 
            -
                                ' | 
| 200 | 
            -
                                not curr_conf['note'].startswith('Rankings:')):
         | 
| 201 | 
            -
                                new_conf['note'] = curr_conf['note']
         | 
| 202 |  | 
| 203 | 
             
                            # Update the conference in the dictionary
         | 
| 204 | 
             
                            current_conf_dict[new_conf['id']] = new_conf
         | 
|  | |
| 136 | 
             
                    except Exception as e:
         | 
| 137 | 
             
                        print(f"Warning: Could not parse date for {transformed_conf['title']}: {e}")
         | 
| 138 |  | 
| 139 | 
            +
                    # Add rankings as separate field
         | 
| 140 | 
             
                    if 'rank' in conf:
         | 
| 141 | 
             
                        rankings = []
         | 
| 142 | 
             
                        for rank_type, rank_value in conf['rank'].items():
         | 
| 143 | 
             
                            rankings.append(f"{rank_type.upper()}: {rank_value}")
         | 
| 144 | 
             
                        if rankings:
         | 
| 145 | 
            +
                            transformed_conf['rankings'] = ', '.join(rankings)
         | 
| 146 |  | 
| 147 | 
             
                    transformed.append(transformed_conf)
         | 
| 148 |  | 
|  | |
| 182 | 
             
                                'timezone_submission', 'rebuttal_period_start',
         | 
| 183 | 
             
                                'rebuttal_period_end', 'final_decision_date',
         | 
| 184 | 
             
                                'review_release_date', 'commitment_deadline',
         | 
| 185 | 
            +
                                'start', 'end', 'note'  # Added note to preserved fields
         | 
| 186 | 
             
                            ]
         | 
| 187 | 
             
                            for field in preserved_fields:
         | 
| 188 | 
             
                                if field in curr_conf:
         | 
|  | |
| 194 | 
             
                            if 'end' not in curr_conf and 'end' in new_conf:
         | 
| 195 | 
             
                                new_conf['end'] = new_conf['end']
         | 
| 196 |  | 
| 197 | 
            +
                            # Preserve existing rankings if available
         | 
| 198 | 
            +
                            if 'rankings' in curr_conf:
         | 
| 199 | 
            +
                                new_conf['rankings'] = curr_conf['rankings']
         | 
|  | |
|  | |
| 200 |  | 
| 201 | 
             
                            # Update the conference in the dictionary
         | 
| 202 | 
             
                            current_conf_dict[new_conf['id']] = new_conf
         | 
    	
        src/data/conferences.yml
    CHANGED
    
    | @@ -12,7 +12,7 @@ | |
| 12 | 
             
              - robotics
         | 
| 13 | 
             
              start: '2026-06-01'
         | 
| 14 | 
             
              end: '2026-06-05'
         | 
| 15 | 
            -
               | 
| 16 | 
             
              venue: Georgia World Congress Center, Atlanta, USA
         | 
| 17 |  | 
| 18 | 
             
            - title: WACV
         | 
| @@ -27,7 +27,7 @@ | |
| 27 | 
             
              tags:
         | 
| 28 | 
             
              - machine-learning
         | 
| 29 | 
             
              - computer-vision
         | 
| 30 | 
            -
               | 
| 31 | 
             
              venue: JW Marriott Starpass in Tucson, Arizona, USA
         | 
| 32 |  | 
| 33 | 
             
            - title: WSDM
         | 
| @@ -62,9 +62,10 @@ | |
| 62 | 
             
              - natural-language-processing
         | 
| 63 | 
             
              - computer-vision
         | 
| 64 | 
             
              abstract_deadline: '2024-08-07 23:59:59'
         | 
| 65 | 
            -
               | 
| 66 | 
             
              venue: Pennsylvania Convention Center, Philadelphia, USA
         | 
| 67 | 
             
              hindex: 212
         | 
|  | |
| 68 |  | 
| 69 | 
             
            - title: ICASSP
         | 
| 70 | 
             
              year: 2025
         | 
| @@ -112,9 +113,10 @@ | |
| 112 | 
             
              - natural-language-processing
         | 
| 113 | 
             
              start: '2025-01-19'
         | 
| 114 | 
             
              end: '2025-01-24'
         | 
| 115 | 
            -
               | 
| 116 | 
             
              venue: Abu Dhabi National Exhibition Centre (ADNEC), Abu Dhabi, UAE
         | 
| 117 | 
             
              hindex: 73
         | 
|  | |
| 118 |  | 
| 119 | 
             
            - title: ALT
         | 
| 120 | 
             
              year: 2025
         | 
| @@ -127,7 +129,7 @@ | |
| 127 | 
             
              date: February 24-27, 2025
         | 
| 128 | 
             
              tags:
         | 
| 129 | 
             
              - machine-learning
         | 
| 130 | 
            -
               | 
| 131 | 
             
              venue: Politecnico di Milano, Milan, Italy
         | 
| 132 |  | 
| 133 | 
             
            - title: ICLR
         | 
| @@ -145,9 +147,23 @@ | |
| 145 | 
             
              - natural-language-processing
         | 
| 146 | 
             
              - signal-processing
         | 
| 147 | 
             
              abstract_deadline: '2024-09-27 23:59:59'
         | 
| 148 | 
            -
               | 
| 149 | 
             
              venue: Singapore EXPO - 1 Expo Drive, Singapore
         | 
| 150 | 
             
              hindex: 304
         | 
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
|  | |
| 151 |  | 
| 152 | 
             
            - title: ECIR
         | 
| 153 | 
             
              year: 2025
         | 
| @@ -180,9 +196,10 @@ | |
| 180 | 
             
              abstract_deadline: '2024-10-03 23:59:59'
         | 
| 181 | 
             
              start: '2025-05-03'
         | 
| 182 | 
             
              end: '2025-05-05'
         | 
| 183 | 
            -
               | 
| 184 | 
             
              venue: TBA
         | 
| 185 | 
             
              hindex: 100
         | 
|  | |
| 186 |  | 
| 187 | 
             
            - title: NAACL
         | 
| 188 | 
             
              year: 2025
         | 
| @@ -195,8 +212,9 @@ | |
| 195 | 
             
              date: April 29-May 4, 2025
         | 
| 196 | 
             
              tags:
         | 
| 197 | 
             
              - natural-language-processing
         | 
| 198 | 
            -
               | 
| 199 | 
             
              hindex: 132
         | 
|  | |
| 200 |  | 
| 201 | 
             
            - title: AAMAS
         | 
| 202 | 
             
              year: 2025
         | 
| @@ -213,6 +231,7 @@ | |
| 213 | 
             
              abstract_deadline: '2024-10-09 23:59:59'
         | 
| 214 | 
             
              start: '2025-05-19'
         | 
| 215 | 
             
              end: '2025-05-23'
         | 
|  | |
| 216 | 
             
              note: Mandatory abstract deadline on Oct 09, 2024. More info <a href='https://aamas2025.org/'>here</a>.
         | 
| 217 |  | 
| 218 | 
             
            - title: CVPR
         | 
| @@ -227,12 +246,13 @@ | |
| 227 | 
             
              tags:
         | 
| 228 | 
             
              - computer-vision
         | 
| 229 | 
             
              abstract_deadline: '2024-11-07 23:59:00'
         | 
| 230 | 
            -
               | 
| 231 | 
             
              venue: Music City Center, Nashville, USA
         | 
| 232 | 
             
              hindex: 389
         | 
| 233 | 
             
              rebuttal_period_end: '2025-01-31 07:59:59'
         | 
| 234 | 
             
              final_decision_date: '2025-02-26 07:59:59'
         | 
| 235 | 
             
              review_release_date: '2025-01-23 07:59:59'
         | 
|  | |
| 236 |  | 
| 237 | 
             
            - title: ESANN
         | 
| 238 | 
             
              year: 2025
         | 
| @@ -245,7 +265,7 @@ | |
| 245 | 
             
              date: April 23 - April 25, 2025
         | 
| 246 | 
             
              tags: []
         | 
| 247 | 
             
              abstract_deadline: '2024-11-20 00:00:00'
         | 
| 248 | 
            -
               | 
| 249 |  | 
| 250 | 
             
            - title: CPAL
         | 
| 251 | 
             
              year: 2025
         | 
| @@ -258,7 +278,7 @@ | |
| 258 | 
             
              date: March 24-27, 2025
         | 
| 259 | 
             
              tags:
         | 
| 260 | 
             
              - machine-learning
         | 
| 261 | 
            -
               | 
| 262 |  | 
| 263 | 
             
            - title: CEC
         | 
| 264 | 
             
              year: 2025
         | 
| @@ -271,7 +291,7 @@ | |
| 271 | 
             
              date: June 8-12, 2025
         | 
| 272 | 
             
              tags:
         | 
| 273 | 
             
              - machine-learning
         | 
| 274 | 
            -
               | 
| 275 |  | 
| 276 | 
             
            - title: SIGGRAPH
         | 
| 277 | 
             
              year: 2025
         | 
| @@ -300,7 +320,7 @@ | |
| 300 | 
             
              tags:
         | 
| 301 | 
             
              - machine-learning
         | 
| 302 | 
             
              abstract_deadline: '2025-01-16 23:59:59'
         | 
| 303 | 
            -
               | 
| 304 |  | 
| 305 | 
             
            - title: RSS
         | 
| 306 | 
             
              year: 2025
         | 
| @@ -314,7 +334,7 @@ | |
| 314 | 
             
              tags:
         | 
| 315 | 
             
              - machine-learning
         | 
| 316 | 
             
              abstract_deadline: '2025-01-17 23:59:00'
         | 
| 317 | 
            -
               | 
| 318 |  | 
| 319 | 
             
            - title: ICML
         | 
| 320 | 
             
              year: 2025
         | 
| @@ -328,7 +348,7 @@ | |
| 328 | 
             
              tags:
         | 
| 329 | 
             
              - machine-learning
         | 
| 330 | 
             
              abstract_deadline: '2025-01-23 23:59:59'
         | 
| 331 | 
            -
               | 
| 332 | 
             
              submission_deadline: '2025-01-31 03:59:59'
         | 
| 333 | 
             
              timezone_submission: PST
         | 
| 334 |  | 
| @@ -343,7 +363,7 @@ | |
| 343 | 
             
              date: June 30 - July 5, 2025
         | 
| 344 | 
             
              tags:
         | 
| 345 | 
             
              - machine-learning
         | 
| 346 | 
            -
               | 
| 347 |  | 
| 348 | 
             
            - title: COLT
         | 
| 349 | 
             
              year: 2025
         | 
| @@ -356,7 +376,7 @@ | |
| 356 | 
             
              date: June 30 - July 4, 2025
         | 
| 357 | 
             
              tags:
         | 
| 358 | 
             
              - machine-learning
         | 
| 359 | 
            -
               | 
| 360 |  | 
| 361 | 
             
            - title: UAI
         | 
| 362 | 
             
              year: 2025
         | 
| @@ -369,7 +389,7 @@ | |
| 369 | 
             
              date: July 21-25, 2025
         | 
| 370 | 
             
              tags:
         | 
| 371 | 
             
              - machine-learning
         | 
| 372 | 
            -
               | 
| 373 |  | 
| 374 | 
             
            - title: KDD
         | 
| 375 | 
             
              year: 2025
         | 
| @@ -399,9 +419,10 @@ | |
| 399 | 
             
              date: July 27 - August 1, 2025
         | 
| 400 | 
             
              tags:
         | 
| 401 | 
             
              - natural-language-processing
         | 
| 402 | 
            -
               | 
| 403 | 
             
              final_decision_date: '2025-05-15 23:59:59'
         | 
| 404 | 
             
              commitment_deadline: '2025-04-10 23:59:59'
         | 
|  | |
| 405 |  | 
| 406 | 
             
            - title: IROS
         | 
| 407 | 
             
              year: 2025
         | 
| @@ -414,7 +435,7 @@ | |
| 414 | 
             
              date: October 19-25, 2025
         | 
| 415 | 
             
              tags:
         | 
| 416 | 
             
              - robotics
         | 
| 417 | 
            -
               | 
| 418 |  | 
| 419 | 
             
            - title: KSEM
         | 
| 420 | 
             
              year: 2025
         | 
| @@ -427,7 +448,7 @@ | |
| 427 | 
             
              date: August 4-6, 2025
         | 
| 428 | 
             
              tags:
         | 
| 429 | 
             
              - machine-learning
         | 
| 430 | 
            -
               | 
| 431 |  | 
| 432 | 
             
            - title: ICDAR
         | 
| 433 | 
             
              year: 2025
         | 
| @@ -441,7 +462,7 @@ | |
| 441 | 
             
              tags:
         | 
| 442 | 
             
              - computer-vision
         | 
| 443 | 
             
              abstract_deadline: '2025-02-28 23:59:59'
         | 
| 444 | 
            -
               | 
| 445 |  | 
| 446 | 
             
            - title: ICCV
         | 
| 447 | 
             
              year: 2025
         | 
| @@ -455,7 +476,7 @@ | |
| 455 | 
             
              tags:
         | 
| 456 | 
             
              - machine-learning
         | 
| 457 | 
             
              - computer-vision
         | 
| 458 | 
            -
               | 
| 459 | 
             
              rebuttal_period_start: '2025-05-10'
         | 
| 460 | 
             
              rebuttal_period_end: '2025-05-16'
         | 
| 461 | 
             
              final_decision_date: '2025-06-20'
         | 
| @@ -472,7 +493,7 @@ | |
| 472 | 
             
              date: Sept 9-12, 2025
         | 
| 473 | 
             
              tags:
         | 
| 474 | 
             
              - machine-learning
         | 
| 475 | 
            -
               | 
| 476 | 
             
              venue: Campus of Vytautas Magnus University and Lithuanian University of Health Sciences, Kaunas, Lithuania
         | 
| 477 |  | 
| 478 | 
             
            - title: COLM
         | 
| @@ -487,7 +508,7 @@ | |
| 487 | 
             
              tags:
         | 
| 488 | 
             
              - natural-language-processing
         | 
| 489 | 
             
              abstract_deadline: '2025-03-20 23:59:59'
         | 
| 490 | 
            -
               | 
| 491 | 
             
              venue: Palais des Congrès Montreal, Canada
         | 
| 492 |  | 
| 493 | 
             
            - title: ECAI
         | 
| @@ -502,7 +523,7 @@ | |
| 502 | 
             
              tags:
         | 
| 503 | 
             
              - machine-learning
         | 
| 504 | 
             
              abstract_deadline: '2025-04-29 23:59:59'
         | 
| 505 | 
            -
               | 
| 506 | 
             
              venue: Bologna Congress Center and The Engineering School (University of Bologna)
         | 
| 507 |  | 
| 508 | 
             
            - title: NeurIPS
         | 
| @@ -531,5 +552,5 @@ | |
| 531 | 
             
              date: November 5 - 9, 2025
         | 
| 532 | 
             
              tags:
         | 
| 533 | 
             
              - natural-language-processing
         | 
| 534 | 
            -
               | 
| 535 | 
             
              venue: Suzhou, China
         | 
|  | |
| 12 | 
             
              - robotics
         | 
| 13 | 
             
              start: '2026-06-01'
         | 
| 14 | 
             
              end: '2026-06-05'
         | 
| 15 | 
            +
              rankings: 'CCF: B, CORE: A*, THCPL: A'
         | 
| 16 | 
             
              venue: Georgia World Congress Center, Atlanta, USA
         | 
| 17 |  | 
| 18 | 
             
            - title: WACV
         | 
|  | |
| 27 | 
             
              tags:
         | 
| 28 | 
             
              - machine-learning
         | 
| 29 | 
             
              - computer-vision
         | 
| 30 | 
            +
              rankings: 'CCF: N, CORE: A, THCPL: N'
         | 
| 31 | 
             
              venue: JW Marriott Starpass in Tucson, Arizona, USA
         | 
| 32 |  | 
| 33 | 
             
            - title: WSDM
         | 
|  | |
| 62 | 
             
              - natural-language-processing
         | 
| 63 | 
             
              - computer-vision
         | 
| 64 | 
             
              abstract_deadline: '2024-08-07 23:59:59'
         | 
| 65 | 
            +
              rankings: 'CCF: A, CORE: A*, THCPL: A'
         | 
| 66 | 
             
              venue: Pennsylvania Convention Center, Philadelphia, USA
         | 
| 67 | 
             
              hindex: 212
         | 
| 68 | 
            +
              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>.
         | 
| 69 |  | 
| 70 | 
             
            - title: ICASSP
         | 
| 71 | 
             
              year: 2025
         | 
|  | |
| 113 | 
             
              - natural-language-processing
         | 
| 114 | 
             
              start: '2025-01-19'
         | 
| 115 | 
             
              end: '2025-01-24'
         | 
| 116 | 
            +
              rankings: 'CCF: B, CORE: B, THCPL: B'
         | 
| 117 | 
             
              venue: Abu Dhabi National Exhibition Centre (ADNEC), Abu Dhabi, UAE
         | 
| 118 | 
             
              hindex: 73
         | 
| 119 | 
            +
              note: More info can be found <a href="https://coling2025.org/calls/main_conference_papers/#important-dates">here</a>.
         | 
| 120 |  | 
| 121 | 
             
            - title: ALT
         | 
| 122 | 
             
              year: 2025
         | 
|  | |
| 129 | 
             
              date: February 24-27, 2025
         | 
| 130 | 
             
              tags:
         | 
| 131 | 
             
              - machine-learning
         | 
| 132 | 
            +
              rankings: 'CCF: C, CORE: B, THCPL: B'
         | 
| 133 | 
             
              venue: Politecnico di Milano, Milan, Italy
         | 
| 134 |  | 
| 135 | 
             
            - title: ICLR
         | 
|  | |
| 147 | 
             
              - natural-language-processing
         | 
| 148 | 
             
              - signal-processing
         | 
| 149 | 
             
              abstract_deadline: '2024-09-27 23:59:59'
         | 
| 150 | 
            +
              rankings: 'CCF: N, CORE: A*, THCPL: A'
         | 
| 151 | 
             
              venue: Singapore EXPO - 1 Expo Drive, Singapore
         | 
| 152 | 
             
              hindex: 304
         | 
| 153 | 
            +
              note: Mandatory abstract deadline on September 27, 2024. More info <a href='https://iclr.cc/Conferences/2025/CallForPapers'>here</a>.
         | 
| 154 | 
            +
             | 
| 155 | 
            +
            - title: Eurographics
         | 
| 156 | 
            +
              year: 2025
         | 
| 157 | 
            +
              id: eurographics25
         | 
| 158 | 
            +
              full_name: The 46th Annual Conference of the European Association for Computer Graphics
         | 
| 159 | 
            +
              link: https://www.eg.org/wp/event/eurographics-2025/
         | 
| 160 | 
            +
              deadline: '2024-10-03 23:59:59'
         | 
| 161 | 
            +
              timezone: UTC+1
         | 
| 162 | 
            +
              place: London, UK
         | 
| 163 | 
            +
              date: May 12 - 16, 2025
         | 
| 164 | 
            +
              tags:
         | 
| 165 | 
            +
              - computer-graphics
         | 
| 166 | 
            +
              venue: London
         | 
| 167 |  | 
| 168 | 
             
            - title: ECIR
         | 
| 169 | 
             
              year: 2025
         | 
|  | |
| 196 | 
             
              abstract_deadline: '2024-10-03 23:59:59'
         | 
| 197 | 
             
              start: '2025-05-03'
         | 
| 198 | 
             
              end: '2025-05-05'
         | 
| 199 | 
            +
              rankings: 'CCF: C, CORE: A, THCPL: B'
         | 
| 200 | 
             
              venue: TBA
         | 
| 201 | 
             
              hindex: 100
         | 
| 202 | 
            +
              note: Abstract deadline on October 3, 2024. More info <a href='https://aistats.org/aistats2025/call-for-papers.html'>here</a>
         | 
| 203 |  | 
| 204 | 
             
            - title: NAACL
         | 
| 205 | 
             
              year: 2025
         | 
|  | |
| 212 | 
             
              date: April 29-May 4, 2025
         | 
| 213 | 
             
              tags:
         | 
| 214 | 
             
              - natural-language-processing
         | 
| 215 | 
            +
              rankings: 'CCF: B, CORE: A, THCPL: B'
         | 
| 216 | 
             
              hindex: 132
         | 
| 217 | 
            +
              note: All submissions must be done through ARR. More info <a href='https://2025.naacl.org/calls/papers/'>here</a>.
         | 
| 218 |  | 
| 219 | 
             
            - title: AAMAS
         | 
| 220 | 
             
              year: 2025
         | 
|  | |
| 231 | 
             
              abstract_deadline: '2024-10-09 23:59:59'
         | 
| 232 | 
             
              start: '2025-05-19'
         | 
| 233 | 
             
              end: '2025-05-23'
         | 
| 234 | 
            +
              rankings: 'CCF: B, CORE: A*, THCPL: B'
         | 
| 235 | 
             
              note: Mandatory abstract deadline on Oct 09, 2024. More info <a href='https://aamas2025.org/'>here</a>.
         | 
| 236 |  | 
| 237 | 
             
            - title: CVPR
         | 
|  | |
| 246 | 
             
              tags:
         | 
| 247 | 
             
              - computer-vision
         | 
| 248 | 
             
              abstract_deadline: '2024-11-07 23:59:00'
         | 
| 249 | 
            +
              rankings: 'CCF: A, CORE: A*, THCPL: A'
         | 
| 250 | 
             
              venue: Music City Center, Nashville, USA
         | 
| 251 | 
             
              hindex: 389
         | 
| 252 | 
             
              rebuttal_period_end: '2025-01-31 07:59:59'
         | 
| 253 | 
             
              final_decision_date: '2025-02-26 07:59:59'
         | 
| 254 | 
             
              review_release_date: '2025-01-23 07:59:59'
         | 
| 255 | 
            +
              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.
         | 
| 256 |  | 
| 257 | 
             
            - title: ESANN
         | 
| 258 | 
             
              year: 2025
         | 
|  | |
| 265 | 
             
              date: April 23 - April 25, 2025
         | 
| 266 | 
             
              tags: []
         | 
| 267 | 
             
              abstract_deadline: '2024-11-20 00:00:00'
         | 
| 268 | 
            +
              rankings: 'CCF: N, CORE: B, THCPL: N'
         | 
| 269 |  | 
| 270 | 
             
            - title: CPAL
         | 
| 271 | 
             
              year: 2025
         | 
|  | |
| 278 | 
             
              date: March 24-27, 2025
         | 
| 279 | 
             
              tags:
         | 
| 280 | 
             
              - machine-learning
         | 
| 281 | 
            +
              rankings: 'CCF: N, CORE: N, THCPL: N'
         | 
| 282 |  | 
| 283 | 
             
            - title: CEC
         | 
| 284 | 
             
              year: 2025
         | 
|  | |
| 291 | 
             
              date: June 8-12, 2025
         | 
| 292 | 
             
              tags:
         | 
| 293 | 
             
              - machine-learning
         | 
| 294 | 
            +
              rankings: 'CCF: N, CORE: B, THCPL: N'
         | 
| 295 |  | 
| 296 | 
             
            - title: SIGGRAPH
         | 
| 297 | 
             
              year: 2025
         | 
|  | |
| 320 | 
             
              tags:
         | 
| 321 | 
             
              - machine-learning
         | 
| 322 | 
             
              abstract_deadline: '2025-01-16 23:59:59'
         | 
| 323 | 
            +
              rankings: 'CCF: A, CORE: A*, THCPL: B'
         | 
| 324 |  | 
| 325 | 
             
            - title: RSS
         | 
| 326 | 
             
              year: 2025
         | 
|  | |
| 334 | 
             
              tags:
         | 
| 335 | 
             
              - machine-learning
         | 
| 336 | 
             
              abstract_deadline: '2025-01-17 23:59:00'
         | 
| 337 | 
            +
              rankings: 'CCF: N, CORE: A*, THCPL: A'
         | 
| 338 |  | 
| 339 | 
             
            - title: ICML
         | 
| 340 | 
             
              year: 2025
         | 
|  | |
| 348 | 
             
              tags:
         | 
| 349 | 
             
              - machine-learning
         | 
| 350 | 
             
              abstract_deadline: '2025-01-23 23:59:59'
         | 
| 351 | 
            +
              rankings: 'CCF: A, CORE: A*, THCPL: A'
         | 
| 352 | 
             
              submission_deadline: '2025-01-31 03:59:59'
         | 
| 353 | 
             
              timezone_submission: PST
         | 
| 354 |  | 
|  | |
| 363 | 
             
              date: June 30 - July 5, 2025
         | 
| 364 | 
             
              tags:
         | 
| 365 | 
             
              - machine-learning
         | 
| 366 | 
            +
              rankings: 'CCF: C, CORE: B, THCPL: B'
         | 
| 367 |  | 
| 368 | 
             
            - title: COLT
         | 
| 369 | 
             
              year: 2025
         | 
|  | |
| 376 | 
             
              date: June 30 - July 4, 2025
         | 
| 377 | 
             
              tags:
         | 
| 378 | 
             
              - machine-learning
         | 
| 379 | 
            +
              rankings: 'CCF: B, CORE: A*, THCPL: A'
         | 
| 380 |  | 
| 381 | 
             
            - title: UAI
         | 
| 382 | 
             
              year: 2025
         | 
|  | |
| 389 | 
             
              date: July 21-25, 2025
         | 
| 390 | 
             
              tags:
         | 
| 391 | 
             
              - machine-learning
         | 
| 392 | 
            +
              rankings: 'CCF: B, CORE: A, THCPL: B'
         | 
| 393 |  | 
| 394 | 
             
            - title: KDD
         | 
| 395 | 
             
              year: 2025
         | 
|  | |
| 419 | 
             
              date: July 27 - August 1, 2025
         | 
| 420 | 
             
              tags:
         | 
| 421 | 
             
              - natural-language-processing
         | 
| 422 | 
            +
              rankings: 'CCF: A, CORE: A*, THCPL: A'
         | 
| 423 | 
             
              final_decision_date: '2025-05-15 23:59:59'
         | 
| 424 | 
             
              commitment_deadline: '2025-04-10 23:59:59'
         | 
| 425 | 
            +
              note: ARR commitment deadline on April 10th, 2025.
         | 
| 426 |  | 
| 427 | 
             
            - title: IROS
         | 
| 428 | 
             
              year: 2025
         | 
|  | |
| 435 | 
             
              date: October 19-25, 2025
         | 
| 436 | 
             
              tags:
         | 
| 437 | 
             
              - robotics
         | 
| 438 | 
            +
              rankings: 'CCF: C, CORE: A, THCPL: B'
         | 
| 439 |  | 
| 440 | 
             
            - title: KSEM
         | 
| 441 | 
             
              year: 2025
         | 
|  | |
| 448 | 
             
              date: August 4-6, 2025
         | 
| 449 | 
             
              tags:
         | 
| 450 | 
             
              - machine-learning
         | 
| 451 | 
            +
              rankings: 'CCF: C, CORE: C, THCPL: N'
         | 
| 452 |  | 
| 453 | 
             
            - title: ICDAR
         | 
| 454 | 
             
              year: 2025
         | 
|  | |
| 462 | 
             
              tags:
         | 
| 463 | 
             
              - computer-vision
         | 
| 464 | 
             
              abstract_deadline: '2025-02-28 23:59:59'
         | 
| 465 | 
            +
              rankings: 'CCF: C, CORE: A, THCPL: B'
         | 
| 466 |  | 
| 467 | 
             
            - title: ICCV
         | 
| 468 | 
             
              year: 2025
         | 
|  | |
| 476 | 
             
              tags:
         | 
| 477 | 
             
              - machine-learning
         | 
| 478 | 
             
              - computer-vision
         | 
| 479 | 
            +
              rankings: 'CCF: A, CORE: A*, THCPL: A'
         | 
| 480 | 
             
              rebuttal_period_start: '2025-05-10'
         | 
| 481 | 
             
              rebuttal_period_end: '2025-05-16'
         | 
| 482 | 
             
              final_decision_date: '2025-06-20'
         | 
|  | |
| 493 | 
             
              date: Sept 9-12, 2025
         | 
| 494 | 
             
              tags:
         | 
| 495 | 
             
              - machine-learning
         | 
| 496 | 
            +
              rankings: 'CCF: C, CORE: C, THCPL: N'
         | 
| 497 | 
             
              venue: Campus of Vytautas Magnus University and Lithuanian University of Health Sciences, Kaunas, Lithuania
         | 
| 498 |  | 
| 499 | 
             
            - title: COLM
         | 
|  | |
| 508 | 
             
              tags:
         | 
| 509 | 
             
              - natural-language-processing
         | 
| 510 | 
             
              abstract_deadline: '2025-03-20 23:59:59'
         | 
| 511 | 
            +
              rankings: 'CCF: N, CORE: N, THCPL: N'
         | 
| 512 | 
             
              venue: Palais des Congrès Montreal, Canada
         | 
| 513 |  | 
| 514 | 
             
            - title: ECAI
         | 
|  | |
| 523 | 
             
              tags:
         | 
| 524 | 
             
              - machine-learning
         | 
| 525 | 
             
              abstract_deadline: '2025-04-29 23:59:59'
         | 
| 526 | 
            +
              rankings: 'CCF: B, CORE: A, THCPL: N'
         | 
| 527 | 
             
              venue: Bologna Congress Center and The Engineering School (University of Bologna)
         | 
| 528 |  | 
| 529 | 
             
            - title: NeurIPS
         | 
|  | |
| 552 | 
             
              date: November 5 - 9, 2025
         | 
| 553 | 
             
              tags:
         | 
| 554 | 
             
              - natural-language-processing
         | 
| 555 | 
            +
              rankings: 'CCF: B, CORE: A*, THCPL: A'
         | 
| 556 | 
             
              venue: Suzhou, China
         | 

