diff --git a/.github/scripts/update_conferences_new.py b/.github/scripts/update_conferences_new.py
new file mode 100644
index 0000000000000000000000000000000000000000..50c5c4476433c2577a3bddd6eece1bfc6ad12832
--- /dev/null
+++ b/.github/scripts/update_conferences_new.py
@@ -0,0 +1,324 @@
+import yaml
+import requests
+import os
+import re
+from datetime import datetime
+from typing import Dict, List, Any
+
+
+def fetch_conference_files() -> List[Dict[str, Any]]:
+ """Fetch all conference YAML files from ccfddl repository."""
+
+ # First get the directory listing from GitHub API
+ api_url = "https://api.github.com/repos/ccfddl/ccf-deadlines/contents/conference/AI"
+ response = requests.get(api_url)
+ files = response.json()
+
+ conferences = []
+ for file in files:
+ if file['name'].endswith('.yml'):
+ yaml_content = requests.get(file['download_url']).text
+ conf_data = yaml.safe_load(yaml_content)
+ # The data is a list with a single item
+ if isinstance(conf_data, list) and len(conf_data) > 0:
+ conferences.append(conf_data[0])
+
+ return conferences
+
+
+def parse_date_range(date_str: str, year: str) -> tuple[str, str]:
+ """Parse various date formats and return start and end dates."""
+ # Remove the year if it appears at the end of the string
+ date_str = date_str.replace(f", {year}", "")
+
+ # Handle various date formats
+ try:
+ # Split into start and end dates
+ if ' - ' in date_str:
+ start, end = date_str.split(' - ')
+ elif '-' in date_str:
+ start, end = date_str.split('-')
+ else:
+ # For single date format like "May 19, 2025"
+ start = end = date_str
+
+ # Clean up month abbreviations
+ month_map = {
+ 'Sept': 'September', # Handle Sept before Sep
+ 'Jan': 'January',
+ 'Feb': 'February',
+ 'Mar': 'March',
+ 'Apr': 'April',
+ 'Jun': 'June',
+ 'Jul': 'July',
+ 'Aug': 'August',
+ 'Sep': 'September',
+ 'Oct': 'October',
+ 'Nov': 'November',
+ 'Dec': 'December'
+ }
+
+ # Create a set of all month names (full and abbreviated)
+ all_months = set(month_map.keys()) | set(month_map.values())
+
+ # Handle cases like "April 29-May 4"
+ has_month = any(month in end for month in all_months)
+ if not has_month:
+ # End is just a day number, use start's month
+ start_parts = start.split()
+ if len(start_parts) >= 1:
+ end = f"{start_parts[0]} {end.strip()}"
+
+ # Replace month abbreviations
+ for abbr, full in month_map.items():
+ start = start.replace(abbr, full)
+ end = end.replace(abbr, full)
+
+ # Clean up any extra spaces
+ start = ' '.join(start.split())
+ end = ' '.join(end.split())
+
+ # Parse start date
+ start_date = datetime.strptime(f"{start}, {year}", "%B %d, %Y")
+
+ # Parse end date
+ end_date = datetime.strptime(f"{end}, {year}", "%B %d, %Y")
+
+ return start_date.strftime('%Y-%m-%d'), end_date.strftime('%Y-%m-%d')
+
+ except Exception as e:
+ raise ValueError(f"Could not parse date: {date_str} ({e})")
+
+
+def transform_conference_data(conferences: List[Dict[str, Any]]) -> List[Dict[str, Any]]:
+ """Transform ccfddl format to our format."""
+ transformed = []
+ current_year = datetime.now().year
+
+ for conf in conferences:
+ # Get the most recent or upcoming conference instance
+ recent_conf = None
+ if 'confs' in conf:
+ for instance in conf['confs']:
+ if instance['year'] >= current_year:
+ recent_conf = instance
+ break
+
+ if not recent_conf:
+ continue
+
+ # Transform to our format
+ transformed_conf = {
+ 'title': conf.get('title', ''),
+ 'year': recent_conf['year'],
+ 'id': recent_conf['id'],
+ 'full_name': conf.get('description', ''),
+ 'link': recent_conf.get('link', ''),
+ 'deadline': recent_conf.get('timeline', [{}])[0].get('deadline', ''),
+ 'timezone': recent_conf.get('timezone', ''),
+ 'date': recent_conf.get('date', ''),
+ 'tags': [], # We'll need to maintain a mapping for tags
+ }
+
+ # Handle city and country fields instead of place
+ place = recent_conf.get('place', '')
+ if place:
+ # Try to parse the place into city and country if it contains a comma
+ if ',' in place:
+ city, country = place.split(',', 1)
+ transformed_conf['city'] = city.strip()
+ transformed_conf['country'] = country.strip()
+ else:
+ # If we can't parse, just set the country
+ transformed_conf['country'] = place.strip()
+
+ # Add optional fields
+ timeline = recent_conf.get('timeline', [{}])[0]
+ if 'abstract_deadline' in timeline:
+ transformed_conf['abstract_deadline'] = timeline['abstract_deadline']
+
+ # Parse date range for start/end
+ try:
+ if transformed_conf['date']:
+ start_date, end_date = parse_date_range(
+ transformed_conf['date'],
+ str(transformed_conf['year'])
+ )
+ transformed_conf['start'] = start_date
+ transformed_conf['end'] = end_date
+ except Exception as e:
+ print(f"Warning: Could not parse date for {transformed_conf['title']}: {e}")
+
+ # Add rankings as separate field
+ if 'rank' in conf:
+ rankings = []
+ for rank_type, rank_value in conf['rank'].items():
+ rankings.append(f"{rank_type.upper()}: {rank_value}")
+ if rankings:
+ transformed_conf['rankings'] = ', '.join(rankings)
+
+ transformed.append(transformed_conf)
+
+ return transformed
+
+
+def load_all_current_conferences() -> Dict[str, List[Dict[str, Any]]]:
+ """Load all current conferences from individual files."""
+ conferences_dir = 'src/data/conferences'
+ conference_groups = {}
+
+ if not os.path.exists(conferences_dir):
+ return {}
+
+ for filename in os.listdir(conferences_dir):
+ if filename.endswith('.yml'):
+ filepath = os.path.join(conferences_dir, filename)
+ with open(filepath, 'r') as f:
+ conferences = yaml.safe_load(f)
+ if conferences:
+ # Extract conference title from the first entry
+ title = conferences[0]['title']
+ conference_groups[title] = conferences
+
+ return conference_groups
+
+
+def create_filename_from_title(title: str) -> str:
+ """Create a filename-safe version of the conference title."""
+ filename = re.sub(r'[^a-zA-Z0-9\s&()-]', '', title.lower())
+ filename = re.sub(r'\s+', '_', filename)
+ filename = filename.replace('&', 'and')
+ filename = filename.strip('_')
+ return filename
+
+
+def update_conference_loader():
+ """Update the conference loader file with all current conferences."""
+ conferences_dir = 'src/data/conferences'
+ loader_path = 'src/utils/conferenceLoader.ts'
+
+ # Get all conference files
+ conference_files = []
+ if os.path.exists(conferences_dir):
+ for filename in sorted(os.listdir(conferences_dir)):
+ if filename.endswith('.yml'):
+ conference_files.append(filename)
+
+ # Generate import statements
+ imports = []
+ variable_names = []
+
+ for filename in conference_files:
+ # Create variable name from filename
+ var_name = filename.replace('.yml', '').replace('-', '_') + 'Data'
+ variable_names.append(var_name)
+ imports.append(f"import {var_name} from '@/data/conferences/{filename}';")
+
+ # Generate the loader file content
+ loader_content = f"""import {{ Conference }} from '@/types/conference';
+
+// Import all conference YAML files
+{chr(10).join(imports)}
+
+// Combine all conference data into a single array
+const allConferencesData: Conference[] = [
+{chr(10).join(f' ...{var_name},' for var_name in variable_names)}
+];
+
+export default allConferencesData;"""
+
+ # Write the loader file
+ with open(loader_path, 'w') as f:
+ f.write(loader_content)
+
+ print(f"Updated conference loader with {len(conference_files)} conference files")
+
+
+def main():
+ try:
+ # Load current conferences from individual files
+ current_conference_groups = load_all_current_conferences()
+
+ # Fetch and transform new data
+ new_conferences = fetch_conference_files()
+ if not new_conferences:
+ print("Warning: No conferences fetched from ccfddl")
+ return
+
+ transformed_conferences = transform_conference_data(new_conferences)
+ if not transformed_conferences:
+ print("Warning: No conferences transformed")
+ return
+
+ # Create conferences directory if it doesn't exist
+ conferences_dir = 'src/data/conferences'
+ os.makedirs(conferences_dir, exist_ok=True)
+
+ # Group new conferences by title
+ new_conference_groups = {}
+ for conf in transformed_conferences:
+ title = conf['title']
+ if title not in new_conference_groups:
+ new_conference_groups[title] = []
+ new_conference_groups[title].append(conf)
+
+ # Update each conference group
+ updated_count = 0
+ for title, new_confs in new_conference_groups.items():
+ filename = create_filename_from_title(title) + '.yml'
+ filepath = os.path.join(conferences_dir, filename)
+
+ # Get current conferences for this title
+ current_confs = current_conference_groups.get(title, [])
+ current_conf_dict = {conf['id']: conf for conf in current_confs}
+
+ # Update or add new conferences
+ for new_conf in new_confs:
+ if new_conf['id'] in current_conf_dict:
+ # Update existing conference while preserving fields
+ curr_conf = current_conf_dict[new_conf['id']]
+
+ # Preserve existing fields
+ preserved_fields = [
+ 'tags', 'venue', 'hindex', 'submission_deadline',
+ 'timezone_submission', 'rebuttal_period_start',
+ 'rebuttal_period_end', 'final_decision_date',
+ 'review_release_date', 'commitment_deadline',
+ 'start', 'end', 'note', 'city', 'country', 'deadlines'
+ ]
+ for field in preserved_fields:
+ if field in curr_conf:
+ new_conf[field] = curr_conf[field]
+
+ # Preserve existing rankings if available
+ if 'rankings' in curr_conf:
+ new_conf['rankings'] = curr_conf['rankings']
+
+ current_conf_dict[new_conf['id']] = new_conf
+ else:
+ # Add new conference
+ current_conf_dict[new_conf['id']] = new_conf
+
+ # Convert back to list and sort by year
+ all_confs = list(current_conf_dict.values())
+ all_confs.sort(key=lambda x: x.get('year', 9999))
+
+ # Write to individual file
+ with open(filepath, 'w') as f:
+ yaml.dump(all_confs, f, default_flow_style=False, sort_keys=False, allow_unicode=True)
+
+ updated_count += 1
+ print(f"Updated {filename} with {len(all_confs)} entries")
+
+ # Update the conference loader
+ update_conference_loader()
+
+ print(f"Successfully updated {updated_count} conference files")
+
+ except Exception as e:
+ print(f"Error: {e}")
+ raise
+
+
+if __name__ == "__main__":
+ main()
diff --git a/CLAUDE.md b/CLAUDE.md
index f431e5552d00bd5e26d12ae38540c61f77ee89ab..0d75761457a317c4cc7df5d02d530ddf376891f5 100644
--- a/CLAUDE.md
+++ b/CLAUDE.md
@@ -32,7 +32,7 @@ npm preview
- **Frontend**: React 18 + TypeScript + Vite
- **UI Framework**: shadcn-ui components with Radix UI primitives
- **Styling**: Tailwind CSS with custom animations
-- **Data Source**: Static YAML file (`src/data/conferences.yml`) updated via GitHub Actions
+- **Data Source**: Individual YAML files per conference (`src/data/conferences/`) updated via GitHub Actions
- **State Management**: React hooks, no external state management library
### Key Directories
@@ -65,7 +65,7 @@ Conferences are defined by the `Conference` interface in `src/types/conference.t
- `tsconfig.json` - TypeScript configuration
### Data Updates
-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.
+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.
### Path Aliases
- `@/*` maps to `src/*` for cleaner imports
diff --git a/README.md b/README.md
index 5f298144673b1c5b0b130838b2bd179268bca393..23ffa1125697ef4d0a8ee1c0b24043cab087547c 100644
--- a/README.md
+++ b/README.md
@@ -24,7 +24,7 @@ This project is entirely based on the awesome https://github.com/paperswithcode/
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).
-A CRON job (set up as a [Github action](.github/workflows/update-conferences.yml)) automatically updates the data present at src/data/conferences.yml.
+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/.
**URL**: https://huggingface.co/spaces/huggingface/ai-deadlines
@@ -36,7 +36,7 @@ To keep things minimal, we mainly focus on top-tier conferences in AI.
To add or update a deadline:
- Fork the repository
-- Update [src/data/conferences.yml](src/data/conferences.yml)
+- Update the appropriate conference file in [src/data/conferences/](src/data/conferences/)
- Make sure it has the `title`, `year`, `id`, `link`, `deadline`, `timezone`, `date`, `city`, `country`, `tags` attributes
+ See available timezone strings [here](https://momentjs.com/timezone/).
- Optionally add a `venue`, `note` and `abstract_deadline` in case this info is known
@@ -64,7 +64,7 @@ To add or update a deadline:
- machine learning
note: Important
```
-- Send a pull request to update [src/data/conferences.yml](src/data/conferences.yml).
+- Send a pull request to update the appropriate conference file in [src/data/conferences/](src/data/conferences/).
## How to run locally
diff --git a/src/components/FilterBar.tsx b/src/components/FilterBar.tsx
index 6a7050d2484db9be029e434ab80649c51e64c7ae..71f017b076651d11174be185cc8ba32861e4e149 100644
--- a/src/components/FilterBar.tsx
+++ b/src/components/FilterBar.tsx
@@ -1,5 +1,5 @@
import { useMemo } from "react";
-import conferencesData from "@/data/conferences.yml";
+import conferencesData from "@/utils/conferenceLoader";
import { X, ChevronRight, Filter } from "lucide-react";
import { getAllCountries } from "@/utils/countryExtractor";
import {
diff --git a/src/data/conferences.yml b/src/data/conferences.yml
deleted file mode 100644
index ed4c77bbc299ffd6900696f411e0bbc0efeca06a..0000000000000000000000000000000000000000
--- a/src/data/conferences.yml
+++ /dev/null
@@ -1,1260 +0,0 @@
-- title: WACV
- year: 2026
- id: wacv26
- full_name: IEEE/CVF Winter Conference on Applications of Computer Vision
- link: https://wacv.thecvf.com/
- deadlines:
- - type: registration
- label: Round 2 New Paper Registration
- date: '2025-09-12 23:59:59'
- timezone: UTC-12
- - type: submission
- label: Round 2 Paper Submission
- date: '2025-09-19 23:59:59'
- timezone: UTC-12
- - type: submission
- label: Round 2 Supplementary Material Submission
- date: '2025-09-19 23:59:59'
- timezone: UTC-12
- - type: rebuttal_and_revision
- label: Round 1 Rebuttal and Revision Submission
- date: '2025-09-19 23:59:59'
- timezone: UTC-12
- - type: notification
- label: Round 1 Final Decisions Released to Authors
- date: '2025-11-06 07:59:59'
- timezone: UTC
- - type: notification
- label: Round 2 Reviews and Final Decisions to Authors
- date: '2025-11-06 07:59:59'
- timezone: UTC
- timezone: UTC-12
- date: March 6 - March 10, 2026
- city: Tucson, Arizona
- country: USA
- venue: JW Marriott Starpass in Tucson, Arizona, USA
- tags:
- - machine-learning
- - computer-vision
-
-- title: WWW
- year: 2026
- id: www26
- full_name: The Web Conference
- link: https://www2026.thewebconf.org/
- deadline: '2025-10-07 23:59:59'
- abstract_deadline: '2025-09-30 23:59:59'
- deadlines:
- - type: abstract
- label: Abstract deadline on 2025-09-30 23:59:59 UTC-12!
- date: '2025-10-08 13:59:59'
- timezone: GMT+02
- - type: submission
- label: Paper Submission
- date: '2025-10-07 23:59:59'
- timezone: UTC-12
- - type: rebuttal_start
- label: Rebuttal Period Start
- date: '2025-11-24 00:00:00'
- timezone: UTC-12
- - type: rebuttal_end
- label: Rebuttal Period End
- date: '2025-12-01 23:59:59'
- - type: notification
- label: Notification
- date: '2026-01-13 23:59:59'
- timezone: UTC-12
- - type: camera_ready
- label: Camera Ready
- date: '2026-01-15 23:59:59'
- timezone: UTC-12
- timezone: GMT+02
- city: Dubai
- country: UAE
- date: April, 13-17, 2026
- start: 2026-04-13
- end: 2026-04-17
- tags:
- - machine learning
- - recommendation
- - semantics and knowledge
- - retrieval
- - web mining
- - content analysis
-
-- title: AISTATS
- year: 2026
- id: aistats26
- full_name: International Conference on Artificial Intelligence and Statistics
- link: https://virtual.aistats.org/Conferences/2026
- deadlines:
- - type: submission
- label: Abstract deadline on 2025-09-25 23:59:59 UTC-12!
- date: '2025-10-03 13:59:59'
- timezone: GMT+02
- timezone: GMT+02
- date: May 2-5, 2026
- tags:
- - machine-learning
- city: Tangier
- country: Morocco
- start: '2026-05-02'
- end: '2026-05-05'
- rankings: 'CCF: C, CORE: A, THCPL: B'
- venue: TBA
- hindex: 101
- note: Abstract deadline on 2025-09-25 23:59:59 UTC-12!
-
-- title: ICASSP
- year: 2026
- id: icassp26
- full_name: International Conference on Acoustics, Speech and Signal Processing
- link: https://2026.ieeeicassp.org
- deadlines:
- - type: submission
- label: Paper Submission
- date: '2025-09-18 08:59:59'
- timezone: GMT+02
- timezone: GMT+02
- city: Barcelona
- country: Spain
- venue: Barcelona International Convention Center (CCIB), Barcelona, Spain
- date: May 4-8, 2026
- start: 2025-05-04
- end: 2025-05-08
- tags:
- - speech
- - signal-processing
-
-- title: Interspeech
- year: 2026
- id: interspeech2026
- full_name: Interspeech
- link: https://interspeech2026.org
- deadline: '2026-03-02 23:59:59'
- timezone: UTC-12
- city: Sydney
- country: Australia
- venue: International Convention Centre (ICC) Sydney
- date: September 27-October 1, 2026
- start: 2026-09-27
- end: 2026-10-01
- tags:
- - speech
- - signal-processing
-
-- title: EMNLP (System Demonstrations Track)
- year: 2025
- id: emnlp25sys
- full_name: The annual Conference on Empirical Methods in Natural Language Processing (System Demonstrations Track)
- link: https://2025.emnlp.org/
- deadline: '2025-07-04 23:59:59'
- timezone: UTC-12
- date: November 5-9, 2025
- tags:
- - natural-language-processing
- city: Suzhou
- country: China
- rankings: 'CCF: B, CORE: A*, THCPL: A'
- venue: Suzhou, China
- start: '2025-11-05'
- end: '2025-11-09'
-
-- title: EMNLP (Industry Track)
- year: 2025
- id: emnlp25ind
- full_name: The annual Conference on Empirical Methods in Natural Language Processing (Industry Track)
- link: https://2025.emnlp.org/
- deadline: '2025-07-04 23:59:59'
- timezone: UTC-12
- date: November 5 - 9, 2025
- tags:
- - natural-language-processing
- city: Suzhou
- country: China
- rankings: 'CCF: B, CORE: A*, THCPL: A'
- venue: Suzhou, China
- start: '2025-11-05'
- end: '2025-11-09'
-
-- title: IJCNLP & AACL
- year: 2025
- id: ijcnlpaacl25
- full_name: International Joint Conference on Natural Language Processing & Asia-Pacific Chapter of the Association for Computational Linguistics
- link: https://2025.aaclnet.org/
- deadline: '2025-07-28 23:59:59'
- abstract_deadline: '2025-07-28 23:59:59'
- timezone: UTC-12
- city: Mumbai
- country: India
- venue:
- date: December 20-24, 2025
- start: 2025-12-20
- end: 2025-12-24
- paperslink:
- pwclink:
- hindex:
- tags:
- - natural language processing
- note: Submissions through ARR.
-
-- title: ICLR
- year: 2026
- id: iclr26
- full_name: The Fourteenth International Conference on Learning Representations
- link: https://iclr.cc/Conferences/2026
- deadline: '2025-09-24 23:59:59'
- abstract_deadline: '2025-09-19 23:59:59'
- deadlines:
- - type: abstract
- label: Abstract Submission
- date: '2025-09-19 23:59:59'
- timezone: UTC-12
- - type: submission
- label: Paper Submission
- date: '2025-09-24 23:59:59'
- timezone: UTC-12
- - type: review_release
- label: Reviews Released
- date: '2026-01-20 23:59:59'
- timezone: UTC-12
- - type: notification
- label: Notification
- date: '2026-02-01 23:59:59'
- timezone: UTC-12
- timezone: UTC-12
- city: Rio de Janeiro
- country: Brazil
- venue: To be announced
- date: April 23-27, 2026
- start: 2026-04-23
- end: 2026-04-27
- hindex: 304
- tags:
- - data-mining
- - machine-learning
- - natural-language-processing
- - computer-vision
- - robotics
- - mathematics
- - reinforcement-learning
- note: Mandatory abstract deadline on Sep 19, 2025. More info here.
-
-- title: CIKM
- year: 2025
- id: cikm25
- full_name: Conference on Information and Knowledge Management
- note: Abstract deadline on May 16, 2025
- link: https://cikm2025.org/
- deadline: '2025-05-23 23:59:00'
- timezone: UTC-12
- city: Seoul
- country: South Korea
- venue: COEX, Seoul, South Korea
- date: November 11-14, 2025
- start: 2025-11-11
- end: 2025-11-14
- tags:
- - web-search
- - data-mining
- - machine-learning
- abstract_deadline: '2025-05-16 23:59:00'
- hindex: 91.0
-
-- title: ICRA
- year: 2025
- id: icra25
- full_name: IEEE International Conference on Robotics and Automation
- link: https://2025.ieee-icra.org
- deadline: '2024-07-15 12:00:00'
- timezone: UTC-4
- date: May 19-23, 2025
- tags:
- - machine-learning
- - robotics
- city: Atlanta
- country: USA
- start: '2026-06-01'
- end: '2026-06-05'
- rankings: 'CCF: B, CORE: A*, THCPL: A'
- venue: Georgia World Congress Center, Atlanta, USA
-
-- title: WACV
- year: 2025
- id: wacv25
- full_name: IEEE/CVF Winter Conference on Applications of Computer Vision
- link: https://wacv2025.thecvf.com/
- deadline: '2024-07-15 23:59:59'
- timezone: UTC-7
- date: February 28 - March 4, 2025
- tags:
- - machine-learning
- - computer-vision
- city: Tucson
- country: USA
- rankings: 'CCF: N, CORE: A, THCPL: N'
- venue: JW Marriott Starpass in Tucson, Arizona, USA
-
-- title: WSDM
- year: 2025
- id: wsdm25
- full_name: ACM International Conference on Web Search and Data Mining
- note: Abstract deadline on August 7, 2024
- link: https://www.wsdm-conference.org/2025/
- deadline: '2024-08-14 23:59:00'
- timezone: UTC-12
- city: Hannover
- country: Germany
- venue: Hannover Congress Center, Hannover, Germany
- date: March 10-14, 2025
- start: 2025-03-10
- end: 2025-03-14
- tags:
- - web-search
- - data-mining
- abstract_deadline: '2024-08-07 23:59:00'
- rankings: 'CCF: B, CORE: A*, THCPL: B'
-
-- title: AAAI
- year: 2025
- id: aaai25
- full_name: AAAI Conference on Artificial Intelligence
- link: https://aaai.org/conference/aaai/aaai-25/
- deadline: '2024-08-15 23:59:59'
- timezone: UTC-12
- date: February 25 - March 4, 2025
- tags:
- - data-mining
- - machine-learning
- - natural-language-processing
- - computer-vision
- city: PHILADELPHIA
- country: PENNSYLVANIA
- abstract_deadline: '2024-08-07 23:59:59'
- rankings: 'CCF: A, CORE: A*, THCPL: A'
- venue: Pennsylvania Convention Center, Philadelphia, USA
- hindex: 212
- note: Mandatory abstract deadline on Aug 07, 2024, and supplementary material deadline on Aug 19, 2024. More info here.
-
-- title: ICASSP
- year: 2025
- id: icassp25
- full_name: International Conference on Acoustics, Speech and Signal Processing
- link: https://2025.ieeeicassp.org/
- deadlines:
- - type: submission
- label: Paper Submission
- date: '2025-09-18 08:59:59'
- timezone: GMT+02
- timezone: UTC-12
- city: Hyderabad
- country: India
- venue: Hyderabad International Convention Center, Hyderabad, India
- date: April 6-11, 2025
- start: 2025-04-06
- end: 2025-04-11
- tags:
- - signal-processing
-
-- title: CHI
- year: 2025
- id: chi25
- full_name: The ACM Conference on Human Factors in Computing Systems
- link: https://chi2025.acm.org/
- deadline: '2024-09-12 23:59:59'
- abstract_deadline: '2024-09-05 23:59:59'
- timezone: UTC-12
- city: Yokohama
- country: Japan
- venue: Pacifico Yokohama Conference Center, Yokohama, Japan
- date: April 26 - May 01, 2025
- start: 2025-04-26
- end: 2025-05-01
- hindex: 122
- tags:
- - human-computer-interaction
- note: Mandatory abstract deadline on Sep 05, 2024. More info here.
-
-- title: COLING
- year: 2025
- id: coling25
- full_name: INTERNATIONNAL CONFERENCE ON COMPUTATIONAL LINGUISTICS
- link: https://coling2025.org/
- deadline: '2024-09-16 23:59:59'
- timezone: UTC-12
- date: Jan 19 - Jan 24, 2025
- tags:
- - natural-language-processing
- city: Abu Dhabi
- country: UAE
- start: '2025-01-19'
- end: '2025-01-24'
- rankings: 'CCF: B, CORE: B, THCPL: B'
- venue: Abu Dhabi National Exhibition Centre (ADNEC), Abu Dhabi, UAE
- hindex: 73
- note: More info can be found here.
-
-- title: ALT
- year: 2025
- id: alt2025
- full_name: International Conference on Algorithmic Learning Theory
- link: https://algorithmiclearningtheory.org/alt2025/
- deadline: '2024-10-01 09:59:59'
- timezone: UTC+0
- date: February 24-27, 2025
- tags:
- - machine-learning
- city: Milan
- country: Italy
- rankings: 'CCF: C, CORE: B, THCPL: B'
- venue: Politecnico di Milano, Milan, Italy
-
-- title: ICLR
- year: 2025
- id: iclr25
- full_name: International Conference on Learning Representations
- link: https://iclr.cc/Conferences/2025
- deadline: '2024-10-01 23:59:59'
- timezone: UTC-12
- date: April 24-28, 2025
- tags:
- - machine-learning
- - computer-vision
- - natural-language-processing
- - signal-processing
- country: Singapore
- abstract_deadline: '2024-09-27 23:59:59'
- rankings: 'CCF: N, CORE: A*, THCPL: A'
- venue: Singapore EXPO - 1 Expo Drive, Singapore
- hindex: 304
- note: Mandatory abstract deadline on September 27, 2024. More info here.
- city: Singapore
-
-- title: Eurographics
- year: 2025
- id: eurographics25
- full_name: The 46th Annual Conference of the European Association for Computer Graphics
- link: https://www.eg.org/wp/event/eurographics-2025/
- deadline: '2024-10-03 23:59:59'
- timezone: UTC+1
- city: London
- country: UK
- date: May 12 - 16, 2025
- tags:
- - computer-graphics
- venue: London
-
-- title: ECIR
- year: 2025
- id: ecir25
- full_name: European Conference on Information Retrieval
- link: https://ecir2025.eu/
- deadline: '2024-10-09 23:59:59'
- abstract_deadline: '2024-10-02 23:59:59'
- timezone: UTC-12
- city: Lucca
- country: Tuscany
- venue: IMT School for Advanced Studies Lucca, Lucca, Italy
- date: April 6 - April 10, 2025
- start: '2025-04-06'
- end: '2025-04-10'
- tags:
- - data-mining
- note: Abstract deadline on Oct 2, 2024. More info here.
-
-- title: AISTATS
- year: 2025
- id: aistats25
- full_name: International Conference on Artificial Intelligence and Statistics
- link: https://aistats.org/aistats2025
- deadline: '2024-10-10 23:59:59'
- timezone: UTC-12
- date: May 3-5, 2025
- tags:
- - machine-learning
- city: Mai Khao
- country: Thailand
- abstract_deadline: '2024-10-03 23:59:59'
- start: '2025-05-03'
- end: '2025-05-05'
- rankings: 'CCF: C, CORE: A, THCPL: B'
- venue: TBA
- hindex: 100
- note: Abstract deadline on October 3, 2024. More info here
-
-- title: NAACL
- year: 2025
- id: naacl25
- full_name: The Annual Conference of the North American Chapter of the Association for Computational Linguistics
- link: https://2025.naacl.org/
- deadline: '2024-10-15 23:59:59'
- timezone: UTC-12
- date: April 29-May 4, 2025
- tags:
- - natural-language-processing
- city: Albuquerque
- country: New Mexico
- rankings: 'CCF: B, CORE: A, THCPL: B'
- hindex: 132
- note: All submissions must be done through ARR. More info here.
-
-- title: AAMAS
- year: 2025
- id: aamas25
- full_name: International Conference on Autonomous Agents and Multiagent Systems
- link: https://aamas2025.org/
- deadline: '2024-10-16 23:59:59'
- timezone: UTC-12
- date: May 19-23, 2025
- tags:
- - machine-learning
- - robotics
- city: Detroit
- country: Michigan
- abstract_deadline: '2024-10-09 23:59:59'
- start: '2025-05-19'
- end: '2025-05-23'
- rankings: 'CCF: B, CORE: A*, THCPL: B'
- note: Mandatory abstract deadline on Oct 09, 2024. More info here.
-
-- title: CVPR
- year: 2025
- id: cvpr25
- full_name: IEEE/CVF Conference on Computer Vision and Pattern Recognition
- link: https://cvpr.thecvf.com/Conferences/2025/CallForPapers
- deadline: '2024-11-14 23:59:00'
- timezone: UTC-8
- date: June 10-17, 2025
- tags:
- - computer-vision
- city: Nashville
- country: Tennessee
- abstract_deadline: '2024-11-07 23:59:00'
- rankings: 'CCF: A, CORE: A*, THCPL: A'
- venue: Music City Center, Nashville, USA
- hindex: 389
- rebuttal_period_end: '2025-01-31 07:59:59'
- final_decision_date: '2025-02-26 07:59:59'
- review_release_date: '2025-01-23 07:59:59'
- 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.
-
-- title: ESANN
- year: 2025
- id: esann25
- full_name: European Symposium on Artificial Neural Networks, Computational Intelligence and Machine Learning
- link: https://www.esann.org/
- deadline: '2024-11-20 00:00:00'
- timezone: UTC-8
- date: April 23 - April 25, 2025
- tags: []
- city: Bruges
- country: Belgium
- abstract_deadline: '2024-11-20 00:00:00'
- rankings: 'CCF: N, CORE: B, THCPL: N'
-
-- title: CPAL
- year: 2025
- id: cpal25
- full_name: The Conference on Parsimony and Learning
- link: https://cpal.cc/
- deadline: '2024-11-25 23:59:59'
- timezone: AoE
- date: March 24-27, 2025
- tags:
- - machine-learning
- city: California
- country: USA
- rankings: 'CCF: N, CORE: N, THCPL: N'
-
-- title: CEC
- year: 2025
- id: cec2025
- full_name: IEEE Congress on Evolutionary Computation
- link: https://www.cec2025.org/
- deadline: '2025-01-15 23:59:59'
- timezone: UTC-12
- date: June 8-12, 2025
- tags:
- - machine-learning
- city: Hangzhou
- country: China
- rankings: 'CCF: N, CORE: B, THCPL: N'
-
-- title: SIGGRAPH
- year: 2025
- id: siggraph25
- full_name: Conference on Computer Graphics and Interactive Techniques
- link: https://s2025.siggraph.org/
- deadline: '2025-01-16 23:59:59'
- timezone: UTC-8
- city: Vancouver
- country: Canada
- venue: Convention Centre, Vancouver, Canada
- date: August 10-14, 2025
- start: '2025-08-10'
- end: '2025-08-14'
- tags:
- - computer-graphics
-
-- title: IJCAI
- year: 2025
- id: ijcai25
- full_name: International Joint Conference on Artificial Intelligence
- link: https://2025.ijcai.org/
- deadline: '2025-01-23 23:59:59'
- timezone: UTC-12
- date: August 16-22, 2025
- tags:
- - machine-learning
- city: Montreal
- country: Canada
- abstract_deadline: '2025-01-16 23:59:59'
- rankings: 'CCF: A, CORE: A*, THCPL: B'
-
-- title: RSS
- year: 2025
- id: rss25
- full_name: Robotics Science and Systems
- link: https://roboticsconference.org
- deadline: '2025-01-24 23:59:00'
- timezone: AoE
- date: June 21-25, 2025
- tags:
- - machine-learning
- city: Los Angeles
- country: USA
- abstract_deadline: '2025-01-17 23:59:00'
- rankings: 'CCF: N, CORE: A*, THCPL: A'
-
-- title: ICML
- year: 2025
- id: icml25
- full_name: International Conference on Machine Learning
- link: https://icml.cc/Conferences/2025
- deadline: '2025-01-30 23:59:59'
- timezone: UTC-12
- date: July 11-19, 2025
- tags:
- - machine-learning
- city: Vancouver
- country: Canada
- abstract_deadline: '2025-01-23 23:59:59'
- rankings: 'CCF: A, CORE: A*, THCPL: A'
- venue: Vancouver Convention Center
- submission_deadline: '2025-01-31 03:59:59'
- timezone_submission: PST
-
-- title: IJCNN
- year: 2026
- id: ijcnn26
- full_name: International Joint Conference on Neural Networks
- link: https://attend.ieee.org/wcci-2026/
- deadline: '2025-09-24 23:59:59'
- timezone: UTC-12
- date: June 21-June 26, 2026
- tags:
- - machine-learning
- city: Maastricht
- country: Netherlands
- rankings: 'CCF: C, CORE: B, THCPL: B'
- venue: MECC Maastricht
- deadlines:
- - type: submission
- label: Paper Submission
- date: '2026-01-31 23:59:59'
- timezone: UTC-12
- - type: notification
- label: Paper acceptance notification
- date: '2026-03-15 23:59:59'
- timezone: UTC-12
- - type: camera_ready
- label: Camera-ready papers
- date: '2026-05-15 23:59:59'
- timezone: UTC-12
-
-- title: IJCNN
- year: 2025
- id: ijcnn2025
- full_name: International Joint Conference on Neural Networks
- link: https://2025.ijcnn.org/
- deadline: '2025-02-05 23:59:59'
- timezone: UTC-12
- date: June 30 - July 5, 2025
- tags:
- - machine-learning
- city: Rome
- country: Italy
- rankings: 'CCF: C, CORE: B, THCPL: B'
-
-- title: COLT
- year: 2025
- id: colt25
- full_name: Annual Conference on Learning Theory
- link: https://learningtheory.org/colt2025/
- deadline: '2025-02-06 16:59:59'
- timezone: UTC-5
- date: June 30 - July 4, 2025
- tags:
- - machine-learning
- city: Lyon
- country: France
- rankings: 'CCF: B, CORE: A*, THCPL: A'
-
-- title: SGP
- year: 2025
- id: sgp25
- full_name: Synopsium on Geometric Processing
- link: https://sgp2025.my.canva.site/
- deadline: '2025-02-07 23:59:59'
- abstract_deadline: '2025-02-04 23:59:59'
- final_decision_date: '2025-03-15'
- timezone: UTC-12
- city: Bilbao
- country: Spain
- date: June 30-July 4, 2025
- start: '2025-06-30'
- end: '2025-07-04'
- venue: Bizkaia Aretoa, Bilbao, Spain
- note: All important dates can be found here.
- tags:
- - computer-vision
- - machine-learning
-
-- title: UAI
- year: 2025
- id: uai25
- full_name: Conference on Uncertainty in Artificial Intelligence
- link: https://www.auai.org/uai2025/
- deadline: '2025-02-10 23:59:59'
- timezone: AoE
- date: July 21-25, 2025
- tags:
- - machine-learning
- city: Rio de Janeiro
- country: Brazil
- rankings: 'CCF: B, CORE: A, THCPL: B'
-
-- title: KDD
- year: 2025
- id: kdd25
- full_name: ACM SIGKDD Conference on Knowledge Discovery and Data Mining
- deadline: '2025-02-10 23:59:59'
- abstract_deadline: '2025-02-03 23:59:59'
- timezone: AoE
- city: Toronto
- country: Canada
- date: August 3 - August 7, 2025
- start: '2025-08-03'
- end: '2025-08-07'
- tags:
- - data-mining
- - machine-learning
- note: Abstract deadline on February 3rd, 2025. Paper submission deadline February 10th, 2025 AoE.
- rebuttal_period_start: '2025-04-04'
- rebuttal_period_end: '2025-04-18'
- final_decision_date: '2025-05-16'
-
-- title: ACL
- year: 2025
- id: acl25
- full_name: Annual Meeting of the Association for Computational Linguistics
- link: https://2025.aclweb.org/
- deadline: '2025-02-15 23:59:59'
- timezone: UTC-12
- date: July 27 - August 1, 2025
- tags:
- - natural-language-processing
- city: Vienna
- country: Austria
- rankings: 'CCF: A, CORE: A*, THCPL: A'
- final_decision_date: '2025-05-15 23:59:59'
- commitment_deadline: '2025-04-10 23:59:59'
- note: ARR commitment deadline on April 10th, 2025.
-
-- title: MathAI 2025
- year: 2025
- id: MathAI2025
- full_name: The International Conference dedicated to mathematics in artificial intelligence
- link: https://mathai.club
- deadline: 2025-02-20 23:59
- abstract_deadline: 2025-02-01 23:59
- timezone: Russia/Moscow
- city: Sochi
- country: Russia
- date: March, 24-28, 2025
- start: 2025-03-24
- end: 2025-03-28
- paperslink: https://openreview.net/group?id=mathai.club/MathAI/2025/Conference
- pwclink: https://openreview.net/group?id=mathai.club/MathAI/2025/Conference
- hindex: 100.0
- tags:
- - machine-learning
- - mathematics
- note: Abstract deadline on February 1, 2025. More info here
-
-- title: RLC
- year: 2025
- id: rlc25
- full_name: Reinforcement Learning Conference
- link: https://rl-conference.cc/
- deadline: '2025-02-28 23:59:59'
- abstract_deadline: '2025-02-21 23:59:59'
- final_decision_date: '2025-05-09'
- timezone: UTC-12
- city: Edmonton
- country: Canada
- date: August 5 - August 8, 2025
- tags:
- - machine-learning
- - reinforcement-learning
- note: Mandatory abstract deadline on Feb 21, 2025.
-
-- title: IROS
- year: 2025
- id: iros25
- full_name: IEEE\RSJ International Conference on Intelligent Robots and Systems
- link: http://www.iros25.org/
- deadline: '2025-03-01 23:59:59'
- timezone: UTC-8
- date: October 19-25, 2025
- tags:
- - robotics
- city: Hangzhou
- country: China
- rankings: 'CCF: C, CORE: A, THCPL: B'
-
-- title: CoLLAs
- year: 2025
- id: collas25
- full_name: Conference on Lifelong Learning Agents
- link: https://lifelong-ml.cc
- deadline: '2025-03-03 23:59:59'
- abstract_deadline: '2025-02-26 23:59:59'
- timezone: UTC-12
- city: Philadelphia
- country: USA
- date: August 11-14, 2025
- start: 2025-08-11
- end: 2025-08-14
- tags:
- - machine-learning
- - lifelong-learning
- note: Abstract deadline on February 26, 2025. More info here
-
-- title: ICDAR
- year: 2025
- id: icdar2025
- full_name: International Conference on Document Analysis and Recognition
- link: https://www.icdar2025.com/home
- deadline: '2025-03-07 23:59:59'
- timezone: UTC+0
- date: September 17-21, 2025
- tags:
- - computer-vision
- city: Wuhan
- country: China
- abstract_deadline: '2025-02-28 23:59:59'
- rankings: 'CCF: C, CORE: A, THCPL: B'
-
-- title: ICCV
- year: 2025
- id: iccv25
- full_name: IEEE International Conference on Computer Vision
- link: https://iccv.thecvf.com/Conferences/2025
- deadline: '2025-03-08 09:59:59'
- timezone: UTC+0
- date: October 19-25, 2025
- tags:
- - machine-learning
- - computer-vision
- city: Honolulu
- country: Hawaii
- abstract_deadline: '2025-03-04 09:59:59'
- rankings: 'CCF: A, CORE: A*, THCPL: A'
- rebuttal_period_start: '2025-05-10'
- rebuttal_period_end: '2025-05-16'
- final_decision_date: '2025-06-20'
- review_release_date: '2025-05-09'
- note: All info can be found here.
-
-- title: CoNLL
- year: 2025
- id: conll25
- full_name: The SIGNLL Conference on Computational Natural Language Learning
- link: https://conll.org/
- deadline: 2025-03-15 12:00
- timezone: UTC-12
- city: Vienna
- country: Austria
- date: July 31 - August 1, 2025
- start: '2025-07-31'
- end: '2025-08-01'
- tags:
- - natural-language-processing
- rankings: 'CCF: B, CORE: A, THCPL: B'
- venue: Vienna, Austria
-
-- title: KSEM
- year: 2025
- id: ksem25
- full_name: International Conference on Knowledge Science, Engineering and Management
- link: https://ksem2025.scimeeting.cn/
- deadline: '2025-03-20 23:59:59'
- timezone: UTC+0
- date: August 4-6, 2025
- tags:
- - machine-learning
- city: Macao
- country: China
- rankings: 'CCF: C, CORE: C, THCPL: N'
-
-- title: COLM
- year: 2025
- id: colm25
- full_name: Conference on Language Modeling
- link: https://colmweb.org/cfp.html
- deadline: '2025-03-27 23:59:59'
- timezone: AoE
- date: October 7-9, 2025
- tags:
- - natural-language-processing
- city: Montreal
- country: Canada
- abstract_deadline: '2025-03-20 23:59:59'
- rankings: 'CCF: N, CORE: N, THCPL: N'
- venue: Palais des Congrès Montreal, Canada
-
-- title: ICANN
- year: 2025
- id: icann25
- full_name: International Conference on Artificial Neural Networks
- link: https://e-nns.org/icann2025/
- deadline: 2025-03-29 23:59
- abstract_deadline: 2025-03-29 23:59
- timezone: UTC-12
- city: Kaunas
- country: Lithuania
- date: September, 9-12, 2025
- start: 2025-09-09
- end: 2025-09-12
- paperslink: https://link.springer.com/conference/icann
- hindex: 32.0
- tags:
- - machine-learning
- note: Deadline for full paper submission extended to 29th March 2025. More info here.
-
-- title: ACM MM
- year: 2025
- id: acm25
- full_name: ACM Multimedia
- link: https://acmmm2025.org/
- deadline: '2025-04-11 23:59:59'
- abstract_deadline: '2025-04-04 23:59:59'
- rebuttal_period_start: '2025-06-22'
- rebuttal_period_end: '2025-06-09'
- final_decision_date: '2025-07-04'
- timezone: UTC-12
- city: Dublin
- country: Ireland
- date: October 27-31, 2025
- start: '2025-10-27'
- end: '2025-10-31'
- venue: Dublin Royal Convention Center, Dublin, Ireland
- note: All important dates can be found here.
- tags:
- - computer-vision
- - machine-learning
- - human-computer-interaction
-
-- title: CoRL
- year: 2025
- id: corl25
- full_name: The Conference on Robot Learning
- link: https://www.corl.org/
- deadline: '2025-04-30 23:59:59'
- timezone: AoE
- date: September 27-30, 2025
- tags:
- - machine-learning
- - robotics
- city: Seoul
- country: South Korea
- rankings: 'CCF: N, CORE: N, THCPL: N'
- venue: COEX Convention & Exhibition Center, Seoul, South Korea
- start: '2025-09-27'
- end: '2025-09-30'
-
-- title: ECAI
- year: 2025
- id: ecai25
- full_name: European Conference on Artificial Intelligence
- link: https://ecai2025.org/deadlines/
- deadline: '2025-05-06 23:59:59'
- timezone: UTC-12
- date: October 25-30, 2025
- tags:
- - machine-learning
- city: Bologna
- country: Italy
- abstract_deadline: '2025-04-29 23:59:59'
- rankings: 'CCF: B, CORE: A, THCPL: N'
- venue: Bologna Congress Center and The Engineering School (University of Bologna)
- rebuttal_period_start: '2025-06-23'
- rebuttal_period_end: '2025-06-25'
- final_decision_date: '2025-07-10'
- note: All important dates can be found here.
-
-- title: NeurIPS
- year: 2025
- id: neurips25
- full_name: Conference on Neural Information Processing Systems
- link: https://neurips.cc/
- deadline: '2025-05-16 23:59:59'
- timezone: UTC-8
- city: San Diego
- country: USA
- venue: San Diego Convention Center, San Diego, USA
- date: December 9-15, 2025
- start: '2025-12-09'
- end: '2025-12-15'
- tags:
- - machine-learning
-
-- title: EMNLP
- year: 2025
- id: emnlp25
- full_name: The annual Conference on Empirical Methods in Natural Language Processing
- link: https://2025.emnlp.org/
- deadline: '2025-05-19 23:59:59'
- timezone: UTC-12
- date: November 5 - 9, 2025
- tags:
- - natural-language-processing
- city: Suzhou
- country: China
- rankings: 'CCF: B, CORE: A*, THCPL: A'
- venue: Suzhou, China
- start: '2025-11-05'
- end: '2025-11-09'
-
-- title: ICDM
- year: 2025
- id: icdm25
- full_name: International Conference on Data Mining
- link: https://www3.cs.stonybrook.edu/~icdm2025/index.html
- deadline: '2025-06-06 23:59:59'
- timezone: AoE
- city: Washington DC
- country: USA
- date: November 12 - November 15, 2025
- start: '2025-11-12'
- end: '2025-11-15'
- tags:
- - data-mining
-
-- title: ECCV
- year: 2026
- id: eecv26
- full_name: European Conference on Computer Vision
- link: https://eccv.ecva.net/Conferences/2026
- deadline: '2026-03-06 11:00:00'
- timezone: UTC+0
- city: Malmö
- country: Sweden
- date: September 8 - September 13, 2026
- tags:
- - computer-vision
-
-- title: ECML PKDD
- year: 2025
- id: ecmlpkdd25
- full_name: European Conference on Machine Learning and Principles and Practice of Knowledge Discovery in Databases
- link: https://ecmlpkdd.org/2025/
- deadline: '2025-03-14 23:59:59'
- timezone: AoE
- city: Porto
- country: Portugal
- abstract_deadline: '2025-03-07 23:59:59'
- date: September 15 - September 19, 2025
- tags:
- - machine-learning
- - data-mining
-
-- title: ICOMP
- year: 2025
- id: icomp25
- full_name: International Conference on Computational Optimization
- link: https://icomp.cc/
- deadline: 2025-08-15 23:59
- abstract_deadline: 2025-08-01 23:59
- timezone: UTC-12
- city: Abu Dhabi
- country: UAE
- date: October, 2025
- tags:
- - machine-learning
- - optimization
-
-- title: AAAI
- year: 2026
- id: aaai26
- full_name: AAAI Conference on Artificial Intelligence
- link: https://aaai.org/conference/aaai/aaai-26/
- deadline: '2025-08-01 23:59:59'
- abstract_deadline: '2025-07-25 23:59:59'
- timezone: UTC-12
- date: January 20 – January 27, 2026
- tags:
- - data-mining
- - machine-learning
- - natural-language-processing
- - computer-vision
- country: Singapore
- rankings: 'CCF: A, CORE: A*, THCPL: A'
- venue: Singapore EXPO, Singapore
- hindex: 220
- note: Mandatory abstract deadline on Jul 25, 2025, and supplementary material deadline on Aug 04, 2025. More info here.
-
-- title: CHI
- year: 2026
- id: chi26
- full_name: The ACM Conference on Human Factors in Computing Systems
- link: https://chi2026.acm.org/
- deadline: '2025-09-11 23:59:59'
- abstract_deadline: '2025-09-04 23:59:59'
- timezone: UTC-12
- city: Barcelona
- country: Spain
- venue: Centre de Convencions Internacional de Barcelona, Barcelona, Spain
- date: April 13 - April 17, 2026
- start: 2026-04-13
- end: 2026-04-17
- hindex: 128
- tags:
- - human-computer-interaction
- note: Mandatory abstract deadline on Sep 04, 2025. More info here.
-
-- title: ICRA
- year: 2026
- id: icra26
- full_name: International Conference on Robotics and Automation
- link: https://2026.ieee-icra.org/
- deadlines:
- - type: submission
- label: Paper Submission
- date: '2025-09-15 23:59:59'
- timezone: GMT-08
- timezone: PST
- city: Vienna
- country: Austria
- venue: To be anounced
- date: June 1 - June 5, 2026
- start: 2026-06-01
- end: 2026-06-05
- hindex: 129
- tags:
- - robotics
- - computer-vision
-
-- title: FG
- year: 2026
- id: fg26
- full_name: International Conference on Automatic Face and Gesture Recognition
- link: https://fg2026.ieee-biometrics.org/
- deadlines:
- - type: abstract
- label: Abstract Submission (Round 1)
- date: '2025-09-25 23:59:59'
- timezone: UTC-12
- - type: submission
- label: Paper Submission (Round 1)
- date: '2025-10-02 23:59:59'
- timezone: UTC-12
- - type: notification
- label: Notifications to authors (Round 1)
- date: '2025-12-11 23:59:59'
- timezone: UTC-12
- - type: abstract
- label: Abstract Submission (Round 2)
- date: '2026-01-09 23:59:59'
- timezone: UTC-12
- - type: submission
- label: Paper Submission (Round 2)
- date: '2026-01-15 23:59:59'
- timezone: UTC-12
- - type: notification
- label: Notifications to authors (Round 2)
- date: '2026-05-02 23:59:59'
- timezone: UTC-12
- - type: camera_ready
- label: Camera-ready (for all accepted papers)
- date: '2026-05-21 23:59:59'
- timezone: UTC-12
- timezone: GMT+02
- date: May 25-29, 2026
- city: Kyoto
- country: Japan
- start: 2026-05-25
- end: 2026-05-29
- tags:
- - computer-vision
- note: Abstract deadline on 2025-09-25 23:59:59 UTC-8! Round 1
-
-- title: AAMAS
- year: 2026
- id: aamas26
- full_name: International Conference on Autonomous Agents and Multiagent Systems
- link: https://aamas2026.org/
- deadlines:
- - type: submission
- label: Abstract deadline on 2025-10-01 23:59:59 UTC-12!
- date: '2025-10-09 13:59:59'
- timezone: GMT+02
- timezone: GMT+02
- date: May 27-29, 2026
- city: Paphos
- country: Cyprus
- start: 2026-05-27
- end: 2026-05-29
- tags:
- - other
- note: Abstract deadline on 2025-10-01 23:59:59 UTC-12!
-
-- title: IUI
- year: 2026
- id: iui26
- full_name: ACM Conference on Intelligent User Interfaces
- link: https://iui.acm.org/2026/
- deadlines:
- - type: submission
- label: Abstract deadline on 2025-10-03 23:59:59 UTC-12!
- date: '2025-10-11 13:59:59'
- timezone: GMT+02
- timezone: GMT+02
- date: March 23-26, 2026
- city: Paphos
- country: Cyprus
- start: 2026-03-23
- end: 2026-03-26
- tags:
- - human-computer-interaction
- note: Abstract deadline on 2025-10-03 23:59:59 UTC-12!
-
-- title: LREC
- year: 2026
- id: lrec26
- full_name: Language Resources and Evaluation Conference
- link: https://www.elra.info/lrec2026/
- deadlines:
- - type: submission
- label: Paper Submission
- date: '2025-10-18 13:59:59'
- timezone: GMT+02
- timezone: GMT+02
- date: May 11-16, 2026
- city: Palma, Mallorca
- country: Spain
- start: 2026-05-11
- end: 2026-05-16
- tags:
- - natural-language-processing
diff --git a/src/data/conferences/aaai.yml b/src/data/conferences/aaai.yml
new file mode 100644
index 0000000000000000000000000000000000000000..ebc58226f79a8f668c668abe7b8a82142b2ff135
--- /dev/null
+++ b/src/data/conferences/aaai.yml
@@ -0,0 +1,41 @@
+- title: AAAI
+ year: 2025
+ id: aaai25
+ full_name: AAAI Conference on Artificial Intelligence
+ link: https://aaai.org/conference/aaai/aaai-25/
+ deadline: '2024-08-15 23:59:59'
+ timezone: UTC-12
+ date: February 25 - March 4, 2025
+ tags:
+ - data-mining
+ - machine-learning
+ - natural-language-processing
+ - computer-vision
+ city: PHILADELPHIA
+ country: PENNSYLVANIA
+ abstract_deadline: '2024-08-07 23:59:59'
+ rankings: 'CCF: A, CORE: A*, THCPL: A'
+ venue: Pennsylvania Convention Center, Philadelphia, USA
+ hindex: 212
+ note: Mandatory abstract deadline on Aug 07, 2024, and supplementary material deadline
+ on Aug 19, 2024. More info here.
+- title: AAAI
+ year: 2026
+ id: aaai26
+ full_name: AAAI Conference on Artificial Intelligence
+ link: https://aaai.org/conference/aaai/aaai-26/
+ deadline: '2025-08-01 23:59:59'
+ abstract_deadline: '2025-07-25 23:59:59'
+ timezone: UTC-12
+ date: January 20 – January 27, 2026
+ tags:
+ - data-mining
+ - machine-learning
+ - natural-language-processing
+ - computer-vision
+ country: Singapore
+ rankings: 'CCF: A, CORE: A*, THCPL: A'
+ venue: Singapore EXPO, Singapore
+ hindex: 220
+ note: Mandatory abstract deadline on Jul 25, 2025, and supplementary material deadline
+ on Aug 04, 2025. More info here.
diff --git a/src/data/conferences/aamas.yml b/src/data/conferences/aamas.yml
new file mode 100644
index 0000000000000000000000000000000000000000..ff3bb723aef4f9db2c388cb8d9f45e602b2d4324
--- /dev/null
+++ b/src/data/conferences/aamas.yml
@@ -0,0 +1,37 @@
+- title: AAMAS
+ year: 2025
+ id: aamas25
+ full_name: International Conference on Autonomous Agents and Multiagent Systems
+ link: https://aamas2025.org/
+ deadline: '2024-10-16 23:59:59'
+ timezone: UTC-12
+ date: May 19-23, 2025
+ tags:
+ - machine-learning
+ - robotics
+ city: Detroit
+ country: Michigan
+ abstract_deadline: '2024-10-09 23:59:59'
+ start: '2025-05-19'
+ end: '2025-05-23'
+ rankings: 'CCF: B, CORE: A*, THCPL: B'
+ note: Mandatory abstract deadline on Oct 09, 2024. More info here.
+- title: AAMAS
+ year: 2026
+ id: aamas26
+ full_name: International Conference on Autonomous Agents and Multiagent Systems
+ link: https://aamas2026.org/
+ deadlines:
+ - type: submission
+ label: Abstract deadline on 2025-10-01 23:59:59 UTC-12!
+ date: '2025-10-09 13:59:59'
+ timezone: GMT+02
+ timezone: GMT+02
+ date: May 27-29, 2026
+ city: Paphos
+ country: Cyprus
+ start: 2026-05-27
+ end: 2026-05-29
+ tags:
+ - other
+ note: Abstract deadline on 2025-10-01 23:59:59 UTC-12!
diff --git a/src/data/conferences/acl.yml b/src/data/conferences/acl.yml
new file mode 100644
index 0000000000000000000000000000000000000000..b96d28a477525f7c2b5bb003012be04a0818c995
--- /dev/null
+++ b/src/data/conferences/acl.yml
@@ -0,0 +1,16 @@
+- title: ACL
+ year: 2025
+ id: acl25
+ full_name: Annual Meeting of the Association for Computational Linguistics
+ link: https://2025.aclweb.org/
+ deadline: '2025-02-15 23:59:59'
+ timezone: UTC-12
+ date: July 27 - August 1, 2025
+ tags:
+ - natural-language-processing
+ city: Vienna
+ country: Austria
+ rankings: 'CCF: A, CORE: A*, THCPL: A'
+ final_decision_date: '2025-05-15 23:59:59'
+ commitment_deadline: '2025-04-10 23:59:59'
+ note: ARR commitment deadline on April 10th, 2025.
diff --git a/src/data/conferences/acm_mm.yml b/src/data/conferences/acm_mm.yml
new file mode 100644
index 0000000000000000000000000000000000000000..18aec41e0cbb8c9263d2afb19cbdffbef7e06d55
--- /dev/null
+++ b/src/data/conferences/acm_mm.yml
@@ -0,0 +1,22 @@
+- title: ACM MM
+ year: 2025
+ id: acm25
+ full_name: ACM Multimedia
+ link: https://acmmm2025.org/
+ deadline: '2025-04-11 23:59:59'
+ abstract_deadline: '2025-04-04 23:59:59'
+ rebuttal_period_start: '2025-06-22'
+ rebuttal_period_end: '2025-06-09'
+ final_decision_date: '2025-07-04'
+ timezone: UTC-12
+ city: Dublin
+ country: Ireland
+ date: October 27-31, 2025
+ start: '2025-10-27'
+ end: '2025-10-31'
+ venue: Dublin Royal Convention Center, Dublin, Ireland
+ note: All important dates can be found here.
+ tags:
+ - computer-vision
+ - machine-learning
+ - human-computer-interaction
diff --git a/src/data/conferences/aistats.yml b/src/data/conferences/aistats.yml
new file mode 100644
index 0000000000000000000000000000000000000000..d55658ad78dc6a0e7a11ef33fbf1b0add329fbe7
--- /dev/null
+++ b/src/data/conferences/aistats.yml
@@ -0,0 +1,41 @@
+- title: AISTATS
+ year: 2025
+ id: aistats25
+ full_name: International Conference on Artificial Intelligence and Statistics
+ link: https://aistats.org/aistats2025
+ deadline: '2024-10-10 23:59:59'
+ timezone: UTC-12
+ date: May 3-5, 2025
+ tags:
+ - machine-learning
+ city: Mai Khao
+ country: Thailand
+ abstract_deadline: '2024-10-03 23:59:59'
+ start: '2025-05-03'
+ end: '2025-05-05'
+ rankings: 'CCF: C, CORE: A, THCPL: B'
+ venue: TBA
+ hindex: 100
+ note: Abstract deadline on October 3, 2024. More info here
+- title: AISTATS
+ year: 2026
+ id: aistats26
+ full_name: International Conference on Artificial Intelligence and Statistics
+ link: https://virtual.aistats.org/Conferences/2026
+ deadlines:
+ - type: submission
+ label: Abstract deadline on 2025-09-25 23:59:59 UTC-12!
+ date: '2025-10-03 13:59:59'
+ timezone: GMT+02
+ timezone: GMT+02
+ date: May 2-5, 2026
+ tags:
+ - machine-learning
+ city: Tangier
+ country: Morocco
+ start: '2026-05-02'
+ end: '2026-05-05'
+ rankings: 'CCF: C, CORE: A, THCPL: B'
+ venue: TBA
+ hindex: 101
+ note: Abstract deadline on 2025-09-25 23:59:59 UTC-12!
diff --git a/src/data/conferences/alt.yml b/src/data/conferences/alt.yml
new file mode 100644
index 0000000000000000000000000000000000000000..7451e5df7576523fe20bb5bc70dab801a2e05f58
--- /dev/null
+++ b/src/data/conferences/alt.yml
@@ -0,0 +1,14 @@
+- title: ALT
+ year: 2025
+ id: alt2025
+ full_name: International Conference on Algorithmic Learning Theory
+ link: https://algorithmiclearningtheory.org/alt2025/
+ deadline: '2024-10-01 09:59:59'
+ timezone: UTC+0
+ date: February 24-27, 2025
+ tags:
+ - machine-learning
+ city: Milan
+ country: Italy
+ rankings: 'CCF: C, CORE: B, THCPL: B'
+ venue: Politecnico di Milano, Milan, Italy
diff --git a/src/data/conferences/cec.yml b/src/data/conferences/cec.yml
new file mode 100644
index 0000000000000000000000000000000000000000..b20e488070f721e2c02627fe123dc458285a6064
--- /dev/null
+++ b/src/data/conferences/cec.yml
@@ -0,0 +1,13 @@
+- title: CEC
+ year: 2025
+ id: cec2025
+ full_name: IEEE Congress on Evolutionary Computation
+ link: https://www.cec2025.org/
+ deadline: '2025-01-15 23:59:59'
+ timezone: UTC-12
+ date: June 8-12, 2025
+ tags:
+ - machine-learning
+ city: Hangzhou
+ country: China
+ rankings: 'CCF: N, CORE: B, THCPL: N'
diff --git a/src/data/conferences/chi.yml b/src/data/conferences/chi.yml
new file mode 100644
index 0000000000000000000000000000000000000000..322c352121b3e20d0ca1725af5b587aabc3e9633
--- /dev/null
+++ b/src/data/conferences/chi.yml
@@ -0,0 +1,36 @@
+- title: CHI
+ year: 2025
+ id: chi25
+ full_name: The ACM Conference on Human Factors in Computing Systems
+ link: https://chi2025.acm.org/
+ deadline: '2024-09-12 23:59:59'
+ abstract_deadline: '2024-09-05 23:59:59'
+ timezone: UTC-12
+ city: Yokohama
+ country: Japan
+ venue: Pacifico Yokohama Conference Center, Yokohama, Japan
+ date: April 26 - May 01, 2025
+ start: 2025-04-26
+ end: 2025-05-01
+ hindex: 122
+ tags:
+ - human-computer-interaction
+ note: Mandatory abstract deadline on Sep 05, 2024. More info here.
+- title: CHI
+ year: 2026
+ id: chi26
+ full_name: The ACM Conference on Human Factors in Computing Systems
+ link: https://chi2026.acm.org/
+ deadline: '2025-09-11 23:59:59'
+ abstract_deadline: '2025-09-04 23:59:59'
+ timezone: UTC-12
+ city: Barcelona
+ country: Spain
+ venue: Centre de Convencions Internacional de Barcelona, Barcelona, Spain
+ date: April 13 - April 17, 2026
+ start: 2026-04-13
+ end: 2026-04-17
+ hindex: 128
+ tags:
+ - human-computer-interaction
+ note: Mandatory abstract deadline on Sep 04, 2025. More info here.
diff --git a/src/data/conferences/cikm.yml b/src/data/conferences/cikm.yml
new file mode 100644
index 0000000000000000000000000000000000000000..8b9a410b4a874002a1097f038977ee149ebcafa2
--- /dev/null
+++ b/src/data/conferences/cikm.yml
@@ -0,0 +1,20 @@
+- title: CIKM
+ year: 2025
+ id: cikm25
+ full_name: Conference on Information and Knowledge Management
+ note: Abstract deadline on May 16, 2025
+ link: https://cikm2025.org/
+ deadline: '2025-05-23 23:59:00'
+ timezone: UTC-12
+ city: Seoul
+ country: South Korea
+ venue: COEX, Seoul, South Korea
+ date: November 11-14, 2025
+ start: 2025-11-11
+ end: 2025-11-14
+ tags:
+ - web-search
+ - data-mining
+ - machine-learning
+ abstract_deadline: '2025-05-16 23:59:00'
+ hindex: 91.0
diff --git a/src/data/conferences/coling.yml b/src/data/conferences/coling.yml
new file mode 100644
index 0000000000000000000000000000000000000000..ff116d303fad1afcb0dfb3cea3b5a4f84fecd94a
--- /dev/null
+++ b/src/data/conferences/coling.yml
@@ -0,0 +1,18 @@
+- title: COLING
+ year: 2025
+ id: coling25
+ full_name: INTERNATIONNAL CONFERENCE ON COMPUTATIONAL LINGUISTICS
+ link: https://coling2025.org/
+ deadline: '2024-09-16 23:59:59'
+ timezone: UTC-12
+ date: Jan 19 - Jan 24, 2025
+ tags:
+ - natural-language-processing
+ city: Abu Dhabi
+ country: UAE
+ start: '2025-01-19'
+ end: '2025-01-24'
+ rankings: 'CCF: B, CORE: B, THCPL: B'
+ venue: Abu Dhabi National Exhibition Centre (ADNEC), Abu Dhabi, UAE
+ hindex: 73
+ note: More info can be found here.
diff --git a/src/data/conferences/collas.yml b/src/data/conferences/collas.yml
new file mode 100644
index 0000000000000000000000000000000000000000..86afeb030f9bc895698049f050ce60b01af01d4b
--- /dev/null
+++ b/src/data/conferences/collas.yml
@@ -0,0 +1,17 @@
+- title: CoLLAs
+ year: 2025
+ id: collas25
+ full_name: Conference on Lifelong Learning Agents
+ link: https://lifelong-ml.cc
+ deadline: '2025-03-03 23:59:59'
+ abstract_deadline: '2025-02-26 23:59:59'
+ timezone: UTC-12
+ city: Philadelphia
+ country: USA
+ date: August 11-14, 2025
+ start: 2025-08-11
+ end: 2025-08-14
+ tags:
+ - machine-learning
+ - lifelong-learning
+ note: Abstract deadline on February 26, 2025. More info here
diff --git a/src/data/conferences/colm.yml b/src/data/conferences/colm.yml
new file mode 100644
index 0000000000000000000000000000000000000000..f3072aa065b060c9befb2ecc0ab52b93a007e687
--- /dev/null
+++ b/src/data/conferences/colm.yml
@@ -0,0 +1,15 @@
+- title: COLM
+ year: 2025
+ id: colm25
+ full_name: Conference on Language Modeling
+ link: https://colmweb.org/cfp.html
+ deadline: '2025-03-27 23:59:59'
+ timezone: AoE
+ date: October 7-9, 2025
+ tags:
+ - natural-language-processing
+ city: Montreal
+ country: Canada
+ abstract_deadline: '2025-03-20 23:59:59'
+ rankings: 'CCF: N, CORE: N, THCPL: N'
+ venue: Palais des Congrès Montreal, Canada
diff --git a/src/data/conferences/colt.yml b/src/data/conferences/colt.yml
new file mode 100644
index 0000000000000000000000000000000000000000..0b65cab230a840e31cd5ee11ce4d484cf1508326
--- /dev/null
+++ b/src/data/conferences/colt.yml
@@ -0,0 +1,13 @@
+- title: COLT
+ year: 2025
+ id: colt25
+ full_name: Annual Conference on Learning Theory
+ link: https://learningtheory.org/colt2025/
+ deadline: '2025-02-06 16:59:59'
+ timezone: UTC-5
+ date: June 30 - July 4, 2025
+ tags:
+ - machine-learning
+ city: Lyon
+ country: France
+ rankings: 'CCF: B, CORE: A*, THCPL: A'
diff --git a/src/data/conferences/conll.yml b/src/data/conferences/conll.yml
new file mode 100644
index 0000000000000000000000000000000000000000..ebd76115e7ea46fe070a10dd6f6633f93261dc21
--- /dev/null
+++ b/src/data/conferences/conll.yml
@@ -0,0 +1,16 @@
+- title: CoNLL
+ year: 2025
+ id: conll25
+ full_name: The SIGNLL Conference on Computational Natural Language Learning
+ link: https://conll.org/
+ deadline: 2025-03-15 12:00
+ timezone: UTC-12
+ city: Vienna
+ country: Austria
+ date: July 31 - August 1, 2025
+ start: '2025-07-31'
+ end: '2025-08-01'
+ tags:
+ - natural-language-processing
+ rankings: 'CCF: B, CORE: A, THCPL: B'
+ venue: Vienna, Austria
diff --git a/src/data/conferences/corl.yml b/src/data/conferences/corl.yml
new file mode 100644
index 0000000000000000000000000000000000000000..a61ea838bfc16a10f0af58acebd5cc92e3fe19a7
--- /dev/null
+++ b/src/data/conferences/corl.yml
@@ -0,0 +1,17 @@
+- title: CoRL
+ year: 2025
+ id: corl25
+ full_name: The Conference on Robot Learning
+ link: https://www.corl.org/
+ deadline: '2025-04-30 23:59:59'
+ timezone: AoE
+ date: September 27-30, 2025
+ tags:
+ - machine-learning
+ - robotics
+ city: Seoul
+ country: South Korea
+ rankings: 'CCF: N, CORE: N, THCPL: N'
+ venue: COEX Convention & Exhibition Center, Seoul, South Korea
+ start: '2025-09-27'
+ end: '2025-09-30'
diff --git a/src/data/conferences/cpal.yml b/src/data/conferences/cpal.yml
new file mode 100644
index 0000000000000000000000000000000000000000..9b99ca1e76f2936edd979f47d093dd3f2169e7ef
--- /dev/null
+++ b/src/data/conferences/cpal.yml
@@ -0,0 +1,13 @@
+- title: CPAL
+ year: 2025
+ id: cpal25
+ full_name: The Conference on Parsimony and Learning
+ link: https://cpal.cc/
+ deadline: '2024-11-25 23:59:59'
+ timezone: AoE
+ date: March 24-27, 2025
+ tags:
+ - machine-learning
+ city: California
+ country: USA
+ rankings: 'CCF: N, CORE: N, THCPL: N'
diff --git a/src/data/conferences/cvpr.yml b/src/data/conferences/cvpr.yml
new file mode 100644
index 0000000000000000000000000000000000000000..aa406a3daf2d88a43aca891ea318e903b1aa1290
--- /dev/null
+++ b/src/data/conferences/cvpr.yml
@@ -0,0 +1,22 @@
+- title: CVPR
+ year: 2025
+ id: cvpr25
+ full_name: IEEE/CVF Conference on Computer Vision and Pattern Recognition
+ link: https://cvpr.thecvf.com/Conferences/2025/CallForPapers
+ deadline: '2024-11-14 23:59:00'
+ timezone: UTC-8
+ date: June 10-17, 2025
+ tags:
+ - computer-vision
+ city: Nashville
+ country: Tennessee
+ abstract_deadline: '2024-11-07 23:59:00'
+ rankings: 'CCF: A, CORE: A*, THCPL: A'
+ venue: Music City Center, Nashville, USA
+ hindex: 389
+ rebuttal_period_end: '2025-01-31 07:59:59'
+ final_decision_date: '2025-02-26 07:59:59'
+ review_release_date: '2025-01-23 07:59:59'
+ 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.
diff --git a/src/data/conferences/ecai.yml b/src/data/conferences/ecai.yml
new file mode 100644
index 0000000000000000000000000000000000000000..5dd1d519985f92b45b4d0bb8a3b10f723457f2a0
--- /dev/null
+++ b/src/data/conferences/ecai.yml
@@ -0,0 +1,19 @@
+- title: ECAI
+ year: 2025
+ id: ecai25
+ full_name: European Conference on Artificial Intelligence
+ link: https://ecai2025.org/deadlines/
+ deadline: '2025-05-06 23:59:59'
+ timezone: UTC-12
+ date: October 25-30, 2025
+ tags:
+ - machine-learning
+ city: Bologna
+ country: Italy
+ abstract_deadline: '2025-04-29 23:59:59'
+ rankings: 'CCF: B, CORE: A, THCPL: N'
+ venue: Bologna Congress Center and The Engineering School (University of Bologna)
+ rebuttal_period_start: '2025-06-23'
+ rebuttal_period_end: '2025-06-25'
+ final_decision_date: '2025-07-10'
+ note: All important dates can be found here.
diff --git a/src/data/conferences/eccv.yml b/src/data/conferences/eccv.yml
new file mode 100644
index 0000000000000000000000000000000000000000..04293cb4dd27ac100babada7eb2a36f232832579
--- /dev/null
+++ b/src/data/conferences/eccv.yml
@@ -0,0 +1,12 @@
+- title: ECCV
+ year: 2026
+ id: eecv26
+ full_name: European Conference on Computer Vision
+ link: https://eccv.ecva.net/Conferences/2026
+ deadline: '2026-03-06 11:00:00'
+ timezone: UTC+0
+ city: Malmö
+ country: Sweden
+ date: September 8 - September 13, 2026
+ tags:
+ - computer-vision
diff --git a/src/data/conferences/ecir.yml b/src/data/conferences/ecir.yml
new file mode 100644
index 0000000000000000000000000000000000000000..b1c37a643308314d7f6705059dd9a601f1746c0b
--- /dev/null
+++ b/src/data/conferences/ecir.yml
@@ -0,0 +1,17 @@
+- title: ECIR
+ year: 2025
+ id: ecir25
+ full_name: European Conference on Information Retrieval
+ link: https://ecir2025.eu/
+ deadline: '2024-10-09 23:59:59'
+ abstract_deadline: '2024-10-02 23:59:59'
+ timezone: UTC-12
+ city: Lucca
+ country: Tuscany
+ venue: IMT School for Advanced Studies Lucca, Lucca, Italy
+ date: April 6 - April 10, 2025
+ start: '2025-04-06'
+ end: '2025-04-10'
+ tags:
+ - data-mining
+ note: Abstract deadline on Oct 2, 2024. More info here.
diff --git a/src/data/conferences/ecml_pkdd.yml b/src/data/conferences/ecml_pkdd.yml
new file mode 100644
index 0000000000000000000000000000000000000000..9af169585509e0059e625787b8451392bdb44646
--- /dev/null
+++ b/src/data/conferences/ecml_pkdd.yml
@@ -0,0 +1,15 @@
+- title: ECML PKDD
+ year: 2025
+ id: ecmlpkdd25
+ full_name: European Conference on Machine Learning and Principles and Practice of
+ Knowledge Discovery in Databases
+ link: https://ecmlpkdd.org/2025/
+ deadline: '2025-03-14 23:59:59'
+ timezone: AoE
+ city: Porto
+ country: Portugal
+ abstract_deadline: '2025-03-07 23:59:59'
+ date: September 15 - September 19, 2025
+ tags:
+ - machine-learning
+ - data-mining
diff --git a/src/data/conferences/emnlp.yml b/src/data/conferences/emnlp.yml
new file mode 100644
index 0000000000000000000000000000000000000000..0709ce913122a61e91697fb80839898c3cff8e98
--- /dev/null
+++ b/src/data/conferences/emnlp.yml
@@ -0,0 +1,16 @@
+- title: EMNLP
+ year: 2025
+ id: emnlp25
+ full_name: The annual Conference on Empirical Methods in Natural Language Processing
+ link: https://2025.emnlp.org/
+ deadline: '2025-05-19 23:59:59'
+ timezone: UTC-12
+ date: November 5 - 9, 2025
+ tags:
+ - natural-language-processing
+ city: Suzhou
+ country: China
+ rankings: 'CCF: B, CORE: A*, THCPL: A'
+ venue: Suzhou, China
+ start: '2025-11-05'
+ end: '2025-11-09'
diff --git a/src/data/conferences/emnlp_industry_track.yml b/src/data/conferences/emnlp_industry_track.yml
new file mode 100644
index 0000000000000000000000000000000000000000..0f11189b1fd0ccdc981a798862409795f0ec2c07
--- /dev/null
+++ b/src/data/conferences/emnlp_industry_track.yml
@@ -0,0 +1,17 @@
+- title: EMNLP (Industry Track)
+ year: 2025
+ id: emnlp25ind
+ full_name: The annual Conference on Empirical Methods in Natural Language Processing
+ (Industry Track)
+ link: https://2025.emnlp.org/
+ deadline: '2025-07-04 23:59:59'
+ timezone: UTC-12
+ date: November 5 - 9, 2025
+ tags:
+ - natural-language-processing
+ city: Suzhou
+ country: China
+ rankings: 'CCF: B, CORE: A*, THCPL: A'
+ venue: Suzhou, China
+ start: '2025-11-05'
+ end: '2025-11-09'
diff --git a/src/data/conferences/emnlp_system_demonstrations_track.yml b/src/data/conferences/emnlp_system_demonstrations_track.yml
new file mode 100644
index 0000000000000000000000000000000000000000..1bc3aeeed2647d0ead0cc9aeb0520ff988f5ebe9
--- /dev/null
+++ b/src/data/conferences/emnlp_system_demonstrations_track.yml
@@ -0,0 +1,17 @@
+- title: EMNLP (System Demonstrations Track)
+ year: 2025
+ id: emnlp25sys
+ full_name: The annual Conference on Empirical Methods in Natural Language Processing
+ (System Demonstrations Track)
+ link: https://2025.emnlp.org/
+ deadline: '2025-07-04 23:59:59'
+ timezone: UTC-12
+ date: November 5-9, 2025
+ tags:
+ - natural-language-processing
+ city: Suzhou
+ country: China
+ rankings: 'CCF: B, CORE: A*, THCPL: A'
+ venue: Suzhou, China
+ start: '2025-11-05'
+ end: '2025-11-09'
diff --git a/src/data/conferences/esann.yml b/src/data/conferences/esann.yml
new file mode 100644
index 0000000000000000000000000000000000000000..ec6342e293b6acaf09c8493b95d17a11709a1e0e
--- /dev/null
+++ b/src/data/conferences/esann.yml
@@ -0,0 +1,14 @@
+- title: ESANN
+ year: 2025
+ id: esann25
+ full_name: European Symposium on Artificial Neural Networks, Computational Intelligence
+ and Machine Learning
+ link: https://www.esann.org/
+ deadline: '2024-11-20 00:00:00'
+ timezone: UTC-8
+ date: April 23 - April 25, 2025
+ tags: []
+ city: Bruges
+ country: Belgium
+ abstract_deadline: '2024-11-20 00:00:00'
+ rankings: 'CCF: N, CORE: B, THCPL: N'
diff --git a/src/data/conferences/eurographics.yml b/src/data/conferences/eurographics.yml
new file mode 100644
index 0000000000000000000000000000000000000000..18c703419f51ccb4a93166d3b5d6229fe4b99c5f
--- /dev/null
+++ b/src/data/conferences/eurographics.yml
@@ -0,0 +1,13 @@
+- title: Eurographics
+ year: 2025
+ id: eurographics25
+ full_name: The 46th Annual Conference of the European Association for Computer Graphics
+ link: https://www.eg.org/wp/event/eurographics-2025/
+ deadline: '2024-10-03 23:59:59'
+ timezone: UTC+1
+ city: London
+ country: UK
+ date: May 12 - 16, 2025
+ tags:
+ - computer-graphics
+ venue: London
diff --git a/src/data/conferences/fg.yml b/src/data/conferences/fg.yml
new file mode 100644
index 0000000000000000000000000000000000000000..493c36d912388d7255d83cd6b4b17d872aa4a3d6
--- /dev/null
+++ b/src/data/conferences/fg.yml
@@ -0,0 +1,43 @@
+- title: FG
+ year: 2026
+ id: fg26
+ full_name: International Conference on Automatic Face and Gesture Recognition
+ link: https://fg2026.ieee-biometrics.org/
+ deadlines:
+ - type: abstract
+ label: Abstract Submission (Round 1)
+ date: '2025-09-25 23:59:59'
+ timezone: UTC-12
+ - type: submission
+ label: Paper Submission (Round 1)
+ date: '2025-10-02 23:59:59'
+ timezone: UTC-12
+ - type: notification
+ label: Notifications to authors (Round 1)
+ date: '2025-12-11 23:59:59'
+ timezone: UTC-12
+ - type: abstract
+ label: Abstract Submission (Round 2)
+ date: '2026-01-09 23:59:59'
+ timezone: UTC-12
+ - type: submission
+ label: Paper Submission (Round 2)
+ date: '2026-01-15 23:59:59'
+ timezone: UTC-12
+ - type: notification
+ label: Notifications to authors (Round 2)
+ date: '2026-05-02 23:59:59'
+ timezone: UTC-12
+ - type: camera_ready
+ label: Camera-ready (for all accepted papers)
+ date: '2026-05-21 23:59:59'
+ timezone: UTC-12
+ timezone: GMT+02
+ date: May 25-29, 2026
+ city: Kyoto
+ country: Japan
+ start: 2026-05-25
+ end: 2026-05-29
+ tags:
+ - computer-vision
+ note: Abstract deadline on 2025-09-25 23:59:59 UTC-8! Round 1
diff --git a/src/data/conferences/icann.yml b/src/data/conferences/icann.yml
new file mode 100644
index 0000000000000000000000000000000000000000..72c49059a2e2bd894209bbecbcd6c4b4944dad0b
--- /dev/null
+++ b/src/data/conferences/icann.yml
@@ -0,0 +1,19 @@
+- title: ICANN
+ year: 2025
+ id: icann25
+ full_name: International Conference on Artificial Neural Networks
+ link: https://e-nns.org/icann2025/
+ deadline: 2025-03-29 23:59
+ abstract_deadline: 2025-03-29 23:59
+ timezone: UTC-12
+ city: Kaunas
+ country: Lithuania
+ date: September, 9-12, 2025
+ start: 2025-09-09
+ end: 2025-09-12
+ paperslink: https://link.springer.com/conference/icann
+ hindex: 32.0
+ tags:
+ - machine-learning
+ note: Deadline for full paper submission extended to 29th March 2025. More info
+ here.
diff --git a/src/data/conferences/icassp.yml b/src/data/conferences/icassp.yml
new file mode 100644
index 0000000000000000000000000000000000000000..caa9299ad9aa05b3b205b909d62ae3386afce2c6
--- /dev/null
+++ b/src/data/conferences/icassp.yml
@@ -0,0 +1,39 @@
+- title: ICASSP
+ year: 2025
+ id: icassp25
+ full_name: International Conference on Acoustics, Speech and Signal Processing
+ link: https://2025.ieeeicassp.org/
+ deadlines:
+ - type: submission
+ label: Paper Submission
+ date: '2025-09-18 08:59:59'
+ timezone: GMT+02
+ timezone: UTC-12
+ city: Hyderabad
+ country: India
+ venue: Hyderabad International Convention Center, Hyderabad, India
+ date: April 6-11, 2025
+ start: 2025-04-06
+ end: 2025-04-11
+ tags:
+ - signal-processing
+- title: ICASSP
+ year: 2026
+ id: icassp26
+ full_name: International Conference on Acoustics, Speech and Signal Processing
+ link: https://2026.ieeeicassp.org
+ deadlines:
+ - type: submission
+ label: Paper Submission
+ date: '2025-09-18 08:59:59'
+ timezone: GMT+02
+ timezone: GMT+02
+ city: Barcelona
+ country: Spain
+ venue: Barcelona International Convention Center (CCIB), Barcelona, Spain
+ date: May 4-8, 2026
+ start: 2025-05-04
+ end: 2025-05-08
+ tags:
+ - speech
+ - signal-processing
diff --git a/src/data/conferences/iccv.yml b/src/data/conferences/iccv.yml
new file mode 100644
index 0000000000000000000000000000000000000000..716380db3529a8274b483142b6d2bb8ea4c22bdc
--- /dev/null
+++ b/src/data/conferences/iccv.yml
@@ -0,0 +1,20 @@
+- title: ICCV
+ year: 2025
+ id: iccv25
+ full_name: IEEE International Conference on Computer Vision
+ link: https://iccv.thecvf.com/Conferences/2025
+ deadline: '2025-03-08 09:59:59'
+ timezone: UTC+0
+ date: October 19-25, 2025
+ tags:
+ - machine-learning
+ - computer-vision
+ city: Honolulu
+ country: Hawaii
+ abstract_deadline: '2025-03-04 09:59:59'
+ rankings: 'CCF: A, CORE: A*, THCPL: A'
+ rebuttal_period_start: '2025-05-10'
+ rebuttal_period_end: '2025-05-16'
+ final_decision_date: '2025-06-20'
+ review_release_date: '2025-05-09'
+ note: All info can be found here.
diff --git a/src/data/conferences/icdar.yml b/src/data/conferences/icdar.yml
new file mode 100644
index 0000000000000000000000000000000000000000..093dc9c3be95ccbde482cd7eccbb1f05a73a60d6
--- /dev/null
+++ b/src/data/conferences/icdar.yml
@@ -0,0 +1,14 @@
+- title: ICDAR
+ year: 2025
+ id: icdar2025
+ full_name: International Conference on Document Analysis and Recognition
+ link: https://www.icdar2025.com/home
+ deadline: '2025-03-07 23:59:59'
+ timezone: UTC+0
+ date: September 17-21, 2025
+ tags:
+ - computer-vision
+ city: Wuhan
+ country: China
+ abstract_deadline: '2025-02-28 23:59:59'
+ rankings: 'CCF: C, CORE: A, THCPL: B'
diff --git a/src/data/conferences/icdm.yml b/src/data/conferences/icdm.yml
new file mode 100644
index 0000000000000000000000000000000000000000..c7e4c45779696486e8fa1dd251fe5dc99f3311ec
--- /dev/null
+++ b/src/data/conferences/icdm.yml
@@ -0,0 +1,14 @@
+- title: ICDM
+ year: 2025
+ id: icdm25
+ full_name: International Conference on Data Mining
+ link: https://www3.cs.stonybrook.edu/~icdm2025/index.html
+ deadline: '2025-06-06 23:59:59'
+ timezone: AoE
+ city: Washington DC
+ country: USA
+ date: November 12 - November 15, 2025
+ start: '2025-11-12'
+ end: '2025-11-15'
+ tags:
+ - data-mining
diff --git a/src/data/conferences/iclr.yml b/src/data/conferences/iclr.yml
new file mode 100644
index 0000000000000000000000000000000000000000..0fc338bfda8695cc3201f38f78c829a306a50878
--- /dev/null
+++ b/src/data/conferences/iclr.yml
@@ -0,0 +1,61 @@
+- title: ICLR
+ year: 2025
+ id: iclr25
+ full_name: International Conference on Learning Representations
+ link: https://iclr.cc/Conferences/2025
+ deadline: '2024-10-01 23:59:59'
+ timezone: UTC-12
+ date: April 24-28, 2025
+ tags:
+ - machine-learning
+ - computer-vision
+ - natural-language-processing
+ - signal-processing
+ country: Singapore
+ abstract_deadline: '2024-09-27 23:59:59'
+ rankings: 'CCF: N, CORE: A*, THCPL: A'
+ venue: Singapore EXPO - 1 Expo Drive, Singapore
+ hindex: 304
+ note: Mandatory abstract deadline on September 27, 2024. More info here.
+ city: Singapore
+- title: ICLR
+ year: 2026
+ id: iclr26
+ full_name: The Fourteenth International Conference on Learning Representations
+ link: https://iclr.cc/Conferences/2026
+ deadline: '2025-09-24 23:59:59'
+ abstract_deadline: '2025-09-19 23:59:59'
+ deadlines:
+ - type: abstract
+ label: Abstract Submission
+ date: '2025-09-19 23:59:59'
+ timezone: UTC-12
+ - type: submission
+ label: Paper Submission
+ date: '2025-09-24 23:59:59'
+ timezone: UTC-12
+ - type: review_release
+ label: Reviews Released
+ date: '2026-01-20 23:59:59'
+ timezone: UTC-12
+ - type: notification
+ label: Notification
+ date: '2026-02-01 23:59:59'
+ timezone: UTC-12
+ timezone: UTC-12
+ city: Rio de Janeiro
+ country: Brazil
+ venue: To be announced
+ date: April 23-27, 2026
+ start: 2026-04-23
+ end: 2026-04-27
+ hindex: 304
+ tags:
+ - data-mining
+ - machine-learning
+ - natural-language-processing
+ - computer-vision
+ - robotics
+ - mathematics
+ - reinforcement-learning
+ note: Mandatory abstract deadline on Sep 19, 2025. More info here.
diff --git a/src/data/conferences/icml.yml b/src/data/conferences/icml.yml
new file mode 100644
index 0000000000000000000000000000000000000000..a8c686192d7899fecf8a3aa056c809f08cc77a47
--- /dev/null
+++ b/src/data/conferences/icml.yml
@@ -0,0 +1,17 @@
+- title: ICML
+ year: 2025
+ id: icml25
+ full_name: International Conference on Machine Learning
+ link: https://icml.cc/Conferences/2025
+ deadline: '2025-01-30 23:59:59'
+ timezone: UTC-12
+ date: July 11-19, 2025
+ tags:
+ - machine-learning
+ city: Vancouver
+ country: Canada
+ abstract_deadline: '2025-01-23 23:59:59'
+ rankings: 'CCF: A, CORE: A*, THCPL: A'
+ venue: Vancouver Convention Center
+ submission_deadline: '2025-01-31 03:59:59'
+ timezone_submission: PST
diff --git a/src/data/conferences/icomp.yml b/src/data/conferences/icomp.yml
new file mode 100644
index 0000000000000000000000000000000000000000..337332cf6a8acf42e6778bd0e9b9a13761d8089a
--- /dev/null
+++ b/src/data/conferences/icomp.yml
@@ -0,0 +1,14 @@
+- title: ICOMP
+ year: 2025
+ id: icomp25
+ full_name: International Conference on Computational Optimization
+ link: https://icomp.cc/
+ deadline: 2025-08-15 23:59
+ abstract_deadline: 2025-08-01 23:59
+ timezone: UTC-12
+ city: Abu Dhabi
+ country: UAE
+ date: October, 2025
+ tags:
+ - machine-learning
+ - optimization
diff --git a/src/data/conferences/icra.yml b/src/data/conferences/icra.yml
new file mode 100644
index 0000000000000000000000000000000000000000..570ba7d6ab0e08f9ada2d9f32390f6f48726b3b9
--- /dev/null
+++ b/src/data/conferences/icra.yml
@@ -0,0 +1,38 @@
+- title: ICRA
+ year: 2025
+ id: icra25
+ full_name: IEEE International Conference on Robotics and Automation
+ link: https://2025.ieee-icra.org
+ deadline: '2024-07-15 12:00:00'
+ timezone: UTC-4
+ date: May 19-23, 2025
+ tags:
+ - machine-learning
+ - robotics
+ city: Atlanta
+ country: USA
+ start: '2026-06-01'
+ end: '2026-06-05'
+ rankings: 'CCF: B, CORE: A*, THCPL: A'
+ venue: Georgia World Congress Center, Atlanta, USA
+- title: ICRA
+ year: 2026
+ id: icra26
+ full_name: International Conference on Robotics and Automation
+ link: https://2026.ieee-icra.org/
+ deadlines:
+ - type: submission
+ label: Paper Submission
+ date: '2025-09-15 23:59:59'
+ timezone: GMT-08
+ timezone: PST
+ city: Vienna
+ country: Austria
+ venue: To be anounced
+ date: June 1 - June 5, 2026
+ start: 2026-06-01
+ end: 2026-06-05
+ hindex: 129
+ tags:
+ - robotics
+ - computer-vision
diff --git a/src/data/conferences/ijcai.yml b/src/data/conferences/ijcai.yml
new file mode 100644
index 0000000000000000000000000000000000000000..033f49d8cde99652955ea14a318147958585bfaa
--- /dev/null
+++ b/src/data/conferences/ijcai.yml
@@ -0,0 +1,14 @@
+- title: IJCAI
+ year: 2025
+ id: ijcai25
+ full_name: International Joint Conference on Artificial Intelligence
+ link: https://2025.ijcai.org/
+ deadline: '2025-01-23 23:59:59'
+ timezone: UTC-12
+ date: August 16-22, 2025
+ tags:
+ - machine-learning
+ city: Montreal
+ country: Canada
+ abstract_deadline: '2025-01-16 23:59:59'
+ rankings: 'CCF: A, CORE: A*, THCPL: B'
diff --git a/src/data/conferences/ijcnlp_and_aacl.yml b/src/data/conferences/ijcnlp_and_aacl.yml
new file mode 100644
index 0000000000000000000000000000000000000000..b9ea8d37d41595da115b6521156c66e3dbe0c00b
--- /dev/null
+++ b/src/data/conferences/ijcnlp_and_aacl.yml
@@ -0,0 +1,21 @@
+- title: IJCNLP & AACL
+ year: 2025
+ id: ijcnlpaacl25
+ full_name: International Joint Conference on Natural Language Processing & Asia-Pacific
+ Chapter of the Association for Computational Linguistics
+ link: https://2025.aaclnet.org/
+ deadline: '2025-07-28 23:59:59'
+ abstract_deadline: '2025-07-28 23:59:59'
+ timezone: UTC-12
+ city: Mumbai
+ country: India
+ venue: null
+ date: December 20-24, 2025
+ start: 2025-12-20
+ end: 2025-12-24
+ paperslink: null
+ pwclink: null
+ hindex: null
+ tags:
+ - natural language processing
+ note: Submissions through ARR.
diff --git a/src/data/conferences/ijcnn.yml b/src/data/conferences/ijcnn.yml
new file mode 100644
index 0000000000000000000000000000000000000000..a350555fdaa4dec8ae822fb963a8ccb8ef25efdc
--- /dev/null
+++ b/src/data/conferences/ijcnn.yml
@@ -0,0 +1,40 @@
+- title: IJCNN
+ year: 2025
+ id: ijcnn2025
+ full_name: International Joint Conference on Neural Networks
+ link: https://2025.ijcnn.org/
+ deadline: '2025-02-05 23:59:59'
+ timezone: UTC-12
+ date: June 30 - July 5, 2025
+ tags:
+ - machine-learning
+ city: Rome
+ country: Italy
+ rankings: 'CCF: C, CORE: B, THCPL: B'
+- title: IJCNN
+ year: 2026
+ id: ijcnn26
+ full_name: International Joint Conference on Neural Networks
+ link: https://attend.ieee.org/wcci-2026/
+ deadline: '2025-09-24 23:59:59'
+ timezone: UTC-12
+ date: June 21-June 26, 2026
+ tags:
+ - machine-learning
+ city: Maastricht
+ country: Netherlands
+ rankings: 'CCF: C, CORE: B, THCPL: B'
+ venue: MECC Maastricht
+ deadlines:
+ - type: submission
+ label: Paper Submission
+ date: '2026-01-31 23:59:59'
+ timezone: UTC-12
+ - type: notification
+ label: Paper acceptance notification
+ date: '2026-03-15 23:59:59'
+ timezone: UTC-12
+ - type: camera_ready
+ label: Camera-ready papers
+ date: '2026-05-15 23:59:59'
+ timezone: UTC-12
diff --git a/src/data/conferences/interspeech.yml b/src/data/conferences/interspeech.yml
new file mode 100644
index 0000000000000000000000000000000000000000..e008aaf76e7f92d2d8847c13e12395bb9aba5b1a
--- /dev/null
+++ b/src/data/conferences/interspeech.yml
@@ -0,0 +1,16 @@
+- title: Interspeech
+ year: 2026
+ id: interspeech2026
+ full_name: Interspeech
+ link: https://interspeech2026.org
+ deadline: '2026-03-02 23:59:59'
+ timezone: UTC-12
+ city: Sydney
+ country: Australia
+ venue: International Convention Centre (ICC) Sydney
+ date: September 27-October 1, 2026
+ start: 2026-09-27
+ end: 2026-10-01
+ tags:
+ - speech
+ - signal-processing
diff --git a/src/data/conferences/iros.yml b/src/data/conferences/iros.yml
new file mode 100644
index 0000000000000000000000000000000000000000..17082545550d45a147f13b8578b5233e200797e3
--- /dev/null
+++ b/src/data/conferences/iros.yml
@@ -0,0 +1,13 @@
+- title: IROS
+ year: 2025
+ id: iros25
+ full_name: IEEE\RSJ International Conference on Intelligent Robots and Systems
+ link: http://www.iros25.org/
+ deadline: '2025-03-01 23:59:59'
+ timezone: UTC-8
+ date: October 19-25, 2025
+ tags:
+ - robotics
+ city: Hangzhou
+ country: China
+ rankings: 'CCF: C, CORE: A, THCPL: B'
diff --git a/src/data/conferences/iui.yml b/src/data/conferences/iui.yml
new file mode 100644
index 0000000000000000000000000000000000000000..473f135af59f92e04433feecf80e46ab306d1ad3
--- /dev/null
+++ b/src/data/conferences/iui.yml
@@ -0,0 +1,19 @@
+- title: IUI
+ year: 2026
+ id: iui26
+ full_name: ACM Conference on Intelligent User Interfaces
+ link: https://iui.acm.org/2026/
+ deadlines:
+ - type: submission
+ label: Abstract deadline on 2025-10-03 23:59:59 UTC-12!
+ date: '2025-10-11 13:59:59'
+ timezone: GMT+02
+ timezone: GMT+02
+ date: March 23-26, 2026
+ city: Paphos
+ country: Cyprus
+ start: 2026-03-23
+ end: 2026-03-26
+ tags:
+ - human-computer-interaction
+ note: Abstract deadline on 2025-10-03 23:59:59 UTC-12!
diff --git a/src/data/conferences/kdd.yml b/src/data/conferences/kdd.yml
new file mode 100644
index 0000000000000000000000000000000000000000..e0ac4f1a85ff499e8444c5748f189a7d49ddac7d
--- /dev/null
+++ b/src/data/conferences/kdd.yml
@@ -0,0 +1,20 @@
+- title: KDD
+ year: 2025
+ id: kdd25
+ full_name: ACM SIGKDD Conference on Knowledge Discovery and Data Mining
+ deadline: '2025-02-10 23:59:59'
+ abstract_deadline: '2025-02-03 23:59:59'
+ timezone: AoE
+ city: Toronto
+ country: Canada
+ date: August 3 - August 7, 2025
+ start: '2025-08-03'
+ end: '2025-08-07'
+ tags:
+ - data-mining
+ - machine-learning
+ note: Abstract deadline on February 3rd, 2025. Paper submission deadline February
+ 10th, 2025 AoE.
+ rebuttal_period_start: '2025-04-04'
+ rebuttal_period_end: '2025-04-18'
+ final_decision_date: '2025-05-16'
diff --git a/src/data/conferences/ksem.yml b/src/data/conferences/ksem.yml
new file mode 100644
index 0000000000000000000000000000000000000000..e9c06907fc3f5e7a62fa1ded180afd9b632350a9
--- /dev/null
+++ b/src/data/conferences/ksem.yml
@@ -0,0 +1,13 @@
+- title: KSEM
+ year: 2025
+ id: ksem25
+ full_name: International Conference on Knowledge Science, Engineering and Management
+ link: https://ksem2025.scimeeting.cn/
+ deadline: '2025-03-20 23:59:59'
+ timezone: UTC+0
+ date: August 4-6, 2025
+ tags:
+ - machine-learning
+ city: Macao
+ country: China
+ rankings: 'CCF: C, CORE: C, THCPL: N'
diff --git a/src/data/conferences/lrec.yml b/src/data/conferences/lrec.yml
new file mode 100644
index 0000000000000000000000000000000000000000..0daec667763787883ea21576f7604ca97a6a3254
--- /dev/null
+++ b/src/data/conferences/lrec.yml
@@ -0,0 +1,18 @@
+- title: LREC
+ year: 2026
+ id: lrec26
+ full_name: Language Resources and Evaluation Conference
+ link: https://www.elra.info/lrec2026/
+ deadlines:
+ - type: submission
+ label: Paper Submission
+ date: '2025-10-18 13:59:59'
+ timezone: GMT+02
+ timezone: GMT+02
+ date: May 11-16, 2026
+ city: Palma, Mallorca
+ country: Spain
+ start: 2026-05-11
+ end: 2026-05-16
+ tags:
+ - natural-language-processing
diff --git a/src/data/conferences/mathai.yml b/src/data/conferences/mathai.yml
new file mode 100644
index 0000000000000000000000000000000000000000..91e64a0322ee4b773f953fa9a27f8962d8a73850
--- /dev/null
+++ b/src/data/conferences/mathai.yml
@@ -0,0 +1,20 @@
+- title: MathAI 2025
+ year: 2025
+ id: MathAI2025
+ full_name: The International Conference dedicated to mathematics in artificial intelligence
+ link: https://mathai.club
+ deadline: 2025-02-20 23:59
+ abstract_deadline: 2025-02-01 23:59
+ timezone: Russia/Moscow
+ city: Sochi
+ country: Russia
+ date: March, 24-28, 2025
+ start: 2025-03-24
+ end: 2025-03-28
+ paperslink: https://openreview.net/group?id=mathai.club/MathAI/2025/Conference
+ pwclink: https://openreview.net/group?id=mathai.club/MathAI/2025/Conference
+ hindex: 100.0
+ tags:
+ - machine-learning
+ - mathematics
+ note: Abstract deadline on February 1, 2025. More info here
diff --git a/src/data/conferences/naacl.yml b/src/data/conferences/naacl.yml
new file mode 100644
index 0000000000000000000000000000000000000000..269b6fa835a55197a7635ea4bcac5ad2607740c7
--- /dev/null
+++ b/src/data/conferences/naacl.yml
@@ -0,0 +1,16 @@
+- title: NAACL
+ year: 2025
+ id: naacl25
+ full_name: The Annual Conference of the North American Chapter of the Association
+ for Computational Linguistics
+ link: https://2025.naacl.org/
+ deadline: '2024-10-15 23:59:59'
+ timezone: UTC-12
+ date: April 29-May 4, 2025
+ tags:
+ - natural-language-processing
+ city: Albuquerque
+ country: New Mexico
+ rankings: 'CCF: B, CORE: A, THCPL: B'
+ hindex: 132
+ note: All submissions must be done through ARR. More info here.
diff --git a/src/data/conferences/neurips.yml b/src/data/conferences/neurips.yml
new file mode 100644
index 0000000000000000000000000000000000000000..0a0527f7a5c05fc5e48e8257d6466b25820d0cde
--- /dev/null
+++ b/src/data/conferences/neurips.yml
@@ -0,0 +1,15 @@
+- title: NeurIPS
+ year: 2025
+ id: neurips25
+ full_name: Conference on Neural Information Processing Systems
+ link: https://neurips.cc/
+ deadline: '2025-05-16 23:59:59'
+ timezone: UTC-8
+ city: San Diego
+ country: USA
+ venue: San Diego Convention Center, San Diego, USA
+ date: December 9-15, 2025
+ start: '2025-12-09'
+ end: '2025-12-15'
+ tags:
+ - machine-learning
diff --git a/src/data/conferences/rlc.yml b/src/data/conferences/rlc.yml
new file mode 100644
index 0000000000000000000000000000000000000000..29a619b69112084aeca1df8396f278fead8e8ceb
--- /dev/null
+++ b/src/data/conferences/rlc.yml
@@ -0,0 +1,16 @@
+- title: RLC
+ year: 2025
+ id: rlc25
+ full_name: Reinforcement Learning Conference
+ link: https://rl-conference.cc/
+ deadline: '2025-02-28 23:59:59'
+ abstract_deadline: '2025-02-21 23:59:59'
+ final_decision_date: '2025-05-09'
+ timezone: UTC-12
+ city: Edmonton
+ country: Canada
+ date: August 5 - August 8, 2025
+ tags:
+ - machine-learning
+ - reinforcement-learning
+ note: Mandatory abstract deadline on Feb 21, 2025.
diff --git a/src/data/conferences/rss.yml b/src/data/conferences/rss.yml
new file mode 100644
index 0000000000000000000000000000000000000000..cb751da0fdc797d053a81c2071c047a60cba80a0
--- /dev/null
+++ b/src/data/conferences/rss.yml
@@ -0,0 +1,14 @@
+- title: RSS
+ year: 2025
+ id: rss25
+ full_name: Robotics Science and Systems
+ link: https://roboticsconference.org
+ deadline: '2025-01-24 23:59:00'
+ timezone: AoE
+ date: June 21-25, 2025
+ tags:
+ - machine-learning
+ city: Los Angeles
+ country: USA
+ abstract_deadline: '2025-01-17 23:59:00'
+ rankings: 'CCF: N, CORE: A*, THCPL: A'
diff --git a/src/data/conferences/sgp.yml b/src/data/conferences/sgp.yml
new file mode 100644
index 0000000000000000000000000000000000000000..3d78a30ea6d7585eb786ad3a00360c714e9e91d1
--- /dev/null
+++ b/src/data/conferences/sgp.yml
@@ -0,0 +1,19 @@
+- title: SGP
+ year: 2025
+ id: sgp25
+ full_name: Synopsium on Geometric Processing
+ link: https://sgp2025.my.canva.site/
+ deadline: '2025-02-07 23:59:59'
+ abstract_deadline: '2025-02-04 23:59:59'
+ final_decision_date: '2025-03-15'
+ timezone: UTC-12
+ city: Bilbao
+ country: Spain
+ date: June 30-July 4, 2025
+ start: '2025-06-30'
+ end: '2025-07-04'
+ venue: Bizkaia Aretoa, Bilbao, Spain
+ note: All important dates can be found here.
+ tags:
+ - computer-vision
+ - machine-learning
diff --git a/src/data/conferences/siggraph.yml b/src/data/conferences/siggraph.yml
new file mode 100644
index 0000000000000000000000000000000000000000..3581052fc25b327d7732e76362c87f4546d255f7
--- /dev/null
+++ b/src/data/conferences/siggraph.yml
@@ -0,0 +1,15 @@
+- title: SIGGRAPH
+ year: 2025
+ id: siggraph25
+ full_name: Conference on Computer Graphics and Interactive Techniques
+ link: https://s2025.siggraph.org/
+ deadline: '2025-01-16 23:59:59'
+ timezone: UTC-8
+ city: Vancouver
+ country: Canada
+ venue: Convention Centre, Vancouver, Canada
+ date: August 10-14, 2025
+ start: '2025-08-10'
+ end: '2025-08-14'
+ tags:
+ - computer-graphics
diff --git a/src/data/conferences/uai.yml b/src/data/conferences/uai.yml
new file mode 100644
index 0000000000000000000000000000000000000000..1555ab36626ad57afabe0406276947e19c2fbfc6
--- /dev/null
+++ b/src/data/conferences/uai.yml
@@ -0,0 +1,13 @@
+- title: UAI
+ year: 2025
+ id: uai25
+ full_name: Conference on Uncertainty in Artificial Intelligence
+ link: https://www.auai.org/uai2025/
+ deadline: '2025-02-10 23:59:59'
+ timezone: AoE
+ date: July 21-25, 2025
+ tags:
+ - machine-learning
+ city: Rio de Janeiro
+ country: Brazil
+ rankings: 'CCF: B, CORE: A, THCPL: B'
diff --git a/src/data/conferences/wacv.yml b/src/data/conferences/wacv.yml
new file mode 100644
index 0000000000000000000000000000000000000000..44480afb763c6d01b0c047d109c6776dab96b7e2
--- /dev/null
+++ b/src/data/conferences/wacv.yml
@@ -0,0 +1,53 @@
+- title: WACV
+ year: 2025
+ id: wacv25
+ full_name: IEEE/CVF Winter Conference on Applications of Computer Vision
+ link: https://wacv2025.thecvf.com/
+ deadline: '2024-07-15 23:59:59'
+ timezone: UTC-7
+ date: February 28 - March 4, 2025
+ tags:
+ - machine-learning
+ - computer-vision
+ city: Tucson
+ country: USA
+ rankings: 'CCF: N, CORE: A, THCPL: N'
+ venue: JW Marriott Starpass in Tucson, Arizona, USA
+- title: WACV
+ year: 2026
+ id: wacv26
+ full_name: IEEE/CVF Winter Conference on Applications of Computer Vision
+ link: https://wacv.thecvf.com/
+ deadlines:
+ - type: registration
+ label: Round 2 New Paper Registration
+ date: '2025-09-12 23:59:59'
+ timezone: UTC-12
+ - type: submission
+ label: Round 2 Paper Submission
+ date: '2025-09-19 23:59:59'
+ timezone: UTC-12
+ - type: submission
+ label: Round 2 Supplementary Material Submission
+ date: '2025-09-19 23:59:59'
+ timezone: UTC-12
+ - type: rebuttal_and_revision
+ label: Round 1 Rebuttal and Revision Submission
+ date: '2025-09-19 23:59:59'
+ timezone: UTC-12
+ - type: notification
+ label: Round 1 Final Decisions Released to Authors
+ date: '2025-11-06 07:59:59'
+ timezone: UTC
+ - type: notification
+ label: Round 2 Reviews and Final Decisions to Authors
+ date: '2025-11-06 07:59:59'
+ timezone: UTC
+ timezone: UTC-12
+ date: March 6 - March 10, 2026
+ city: Tucson, Arizona
+ country: USA
+ venue: JW Marriott Starpass in Tucson, Arizona, USA
+ tags:
+ - machine-learning
+ - computer-vision
diff --git a/src/data/conferences/wsdm.yml b/src/data/conferences/wsdm.yml
new file mode 100644
index 0000000000000000000000000000000000000000..86d657ee426f178ba050e7bb9fad18bd84be2042
--- /dev/null
+++ b/src/data/conferences/wsdm.yml
@@ -0,0 +1,19 @@
+- title: WSDM
+ year: 2025
+ id: wsdm25
+ full_name: ACM International Conference on Web Search and Data Mining
+ note: Abstract deadline on August 7, 2024
+ link: https://www.wsdm-conference.org/2025/
+ deadline: '2024-08-14 23:59:00'
+ timezone: UTC-12
+ city: Hannover
+ country: Germany
+ venue: Hannover Congress Center, Hannover, Germany
+ date: March 10-14, 2025
+ start: 2025-03-10
+ end: 2025-03-14
+ tags:
+ - web-search
+ - data-mining
+ abstract_deadline: '2024-08-07 23:59:00'
+ rankings: 'CCF: B, CORE: A*, THCPL: B'
diff --git a/src/data/conferences/www.yml b/src/data/conferences/www.yml
new file mode 100644
index 0000000000000000000000000000000000000000..e97bfb3f80e17b5c8fffe8c2202feabf42719723
--- /dev/null
+++ b/src/data/conferences/www.yml
@@ -0,0 +1,44 @@
+- title: WWW
+ year: 2026
+ id: www26
+ full_name: The Web Conference
+ link: https://www2026.thewebconf.org/
+ deadline: '2025-10-07 23:59:59'
+ abstract_deadline: '2025-09-30 23:59:59'
+ deadlines:
+ - type: abstract
+ label: Abstract deadline on 2025-09-30 23:59:59 UTC-12!
+ date: '2025-10-08 13:59:59'
+ timezone: GMT+02
+ - type: submission
+ label: Paper Submission
+ date: '2025-10-07 23:59:59'
+ timezone: UTC-12
+ - type: rebuttal_start
+ label: Rebuttal Period Start
+ date: '2025-11-24 00:00:00'
+ timezone: UTC-12
+ - type: rebuttal_end
+ label: Rebuttal Period End
+ date: '2025-12-01 23:59:59'
+ - type: notification
+ label: Notification
+ date: '2026-01-13 23:59:59'
+ timezone: UTC-12
+ - type: camera_ready
+ label: Camera Ready
+ date: '2026-01-15 23:59:59'
+ timezone: UTC-12
+ timezone: GMT+02
+ city: Dubai
+ country: UAE
+ date: April, 13-17, 2026
+ start: 2026-04-13
+ end: 2026-04-17
+ tags:
+ - machine learning
+ - recommendation
+ - semantics and knowledge
+ - retrieval
+ - web mining
+ - content analysis
diff --git a/src/pages/Calendar.tsx b/src/pages/Calendar.tsx
index 46e9a62f2df92d240394770d44b252c6b4ffdb6f..06a0765a25b78a65f89f613fa95a2c14e7c2e0e6 100644
--- a/src/pages/Calendar.tsx
+++ b/src/pages/Calendar.tsx
@@ -1,5 +1,5 @@
import { useState } from "react";
-import conferencesData from "@/data/conferences.yml";
+import conferencesData from "@/utils/conferenceLoader";
import { Conference } from "@/types/conference";
import { Calendar as CalendarIcon, Tag, X, Plus } from "lucide-react"; // Added X and Plus imports
import { Calendar } from "@/components/ui/calendar";
diff --git a/src/pages/Index.tsx b/src/pages/Index.tsx
index 6fa73841f15f3bb92f4d95f9041255feb4728471..130925e20fef345cfa1feda355222bcf721bcd67 100644
--- a/src/pages/Index.tsx
+++ b/src/pages/Index.tsx
@@ -1,7 +1,7 @@
import Header from "@/components/Header";
import FilterBar from "@/components/FilterBar";
import ConferenceCard from "@/components/ConferenceCard";
-import conferencesData from "@/data/conferences.yml";
+import conferencesData from "@/utils/conferenceLoader";
import { Conference } from "@/types/conference";
import { useState, useMemo, useEffect } from "react";
import { Switch } from "@/components/ui/switch"
diff --git a/src/utils/conferenceLoader.ts b/src/utils/conferenceLoader.ts
new file mode 100644
index 0000000000000000000000000000000000000000..d5ec8c5ab228261f5ad3932881b29bb5a419753d
--- /dev/null
+++ b/src/utils/conferenceLoader.ts
@@ -0,0 +1,121 @@
+import { Conference } from '@/types/conference';
+
+// Import all conference YAML files
+import aaaiData from '@/data/conferences/aaai.yml';
+import aamasData from '@/data/conferences/aamas.yml';
+import aclData from '@/data/conferences/acl.yml';
+import acmMmData from '@/data/conferences/acm_mm.yml';
+import aistatsData from '@/data/conferences/aistats.yml';
+import altData from '@/data/conferences/alt.yml';
+import cecData from '@/data/conferences/cec.yml';
+import chiData from '@/data/conferences/chi.yml';
+import cikmData from '@/data/conferences/cikm.yml';
+import colingData from '@/data/conferences/coling.yml';
+import collasData from '@/data/conferences/collas.yml';
+import colmData from '@/data/conferences/colm.yml';
+import coltData from '@/data/conferences/colt.yml';
+import conllData from '@/data/conferences/conll.yml';
+import corlData from '@/data/conferences/corl.yml';
+import cpalData from '@/data/conferences/cpal.yml';
+import cvprData from '@/data/conferences/cvpr.yml';
+import ecaiData from '@/data/conferences/ecai.yml';
+import eccvData from '@/data/conferences/eccv.yml';
+import ecirData from '@/data/conferences/ecir.yml';
+import ecmlPkddData from '@/data/conferences/ecml_pkdd.yml';
+import emnlpData from '@/data/conferences/emnlp.yml';
+import emnlpIndustryData from '@/data/conferences/emnlp_industry_track.yml';
+import emnlpSystemData from '@/data/conferences/emnlp_system_demonstrations_track.yml';
+import esannData from '@/data/conferences/esann.yml';
+import eurographicsData from '@/data/conferences/eurographics.yml';
+import fgData from '@/data/conferences/fg.yml';
+import icannData from '@/data/conferences/icann.yml';
+import icasspData from '@/data/conferences/icassp.yml';
+import iccvData from '@/data/conferences/iccv.yml';
+import icdarData from '@/data/conferences/icdar.yml';
+import icdmData from '@/data/conferences/icdm.yml';
+import iclrData from '@/data/conferences/iclr.yml';
+import icmlData from '@/data/conferences/icml.yml';
+import icompData from '@/data/conferences/icomp.yml';
+import icraData from '@/data/conferences/icra.yml';
+import ijcaiData from '@/data/conferences/ijcai.yml';
+import ijcnlpAaclData from '@/data/conferences/ijcnlp_and_aacl.yml';
+import ijcnnData from '@/data/conferences/ijcnn.yml';
+import interspeechData from '@/data/conferences/interspeech.yml';
+import irosData from '@/data/conferences/iros.yml';
+import iuiData from '@/data/conferences/iui.yml';
+import kddData from '@/data/conferences/kdd.yml';
+import ksemData from '@/data/conferences/ksem.yml';
+import lrecData from '@/data/conferences/lrec.yml';
+import mathaiData from '@/data/conferences/mathai.yml';
+import naaclData from '@/data/conferences/naacl.yml';
+import neuripsData from '@/data/conferences/neurips.yml';
+import rlcData from '@/data/conferences/rlc.yml';
+import rssData from '@/data/conferences/rss.yml';
+import sgpData from '@/data/conferences/sgp.yml';
+import siggraphData from '@/data/conferences/siggraph.yml';
+import uaiData from '@/data/conferences/uai.yml';
+import wacvData from '@/data/conferences/wacv.yml';
+import wsdmData from '@/data/conferences/wsdm.yml';
+import wwwData from '@/data/conferences/www.yml';
+
+// Combine all conference data into a single array
+const allConferencesData: Conference[] = [
+ ...aaaiData,
+ ...aamasData,
+ ...aclData,
+ ...acmMmData,
+ ...aistatsData,
+ ...altData,
+ ...cecData,
+ ...chiData,
+ ...cikmData,
+ ...colingData,
+ ...collasData,
+ ...colmData,
+ ...coltData,
+ ...conllData,
+ ...corlData,
+ ...cpalData,
+ ...cvprData,
+ ...ecaiData,
+ ...eccvData,
+ ...ecirData,
+ ...ecmlPkddData,
+ ...emnlpData,
+ ...emnlpIndustryData,
+ ...emnlpSystemData,
+ ...esannData,
+ ...eurographicsData,
+ ...fgData,
+ ...icannData,
+ ...icasspData,
+ ...iccvData,
+ ...icdarData,
+ ...icdmData,
+ ...iclrData,
+ ...icmlData,
+ ...icompData,
+ ...icraData,
+ ...ijcaiData,
+ ...ijcnlpAaclData,
+ ...ijcnnData,
+ ...interspeechData,
+ ...irosData,
+ ...iuiData,
+ ...kddData,
+ ...ksemData,
+ ...lrecData,
+ ...mathaiData,
+ ...naaclData,
+ ...neuripsData,
+ ...rlcData,
+ ...rssData,
+ ...sgpData,
+ ...siggraphData,
+ ...uaiData,
+ ...wacvData,
+ ...wsdmData,
+ ...wwwData,
+];
+
+export default allConferencesData;