To browse acceptance rates in a more interactive format, please visit the OpenAccept main site.
OpenAccept (OAc) is a collaborative platform for collecting and sharing metadata on paper acceptance rates at global computer science conferences. Our goal is to provide essential insights into the CS research community by aggregating publicly available statistics.
As conference data is often scattered across web platforms and formats, community collaboration is vital to achieving comprehensive, accurate, and up-to-date records. OAc leverages this collaboration to build a centralized, open-source resource for researchers and academia.
- Social media platforms. Researchers frequently share acceptance emails or paper notifications on platforms like Twitter/X, LinkedIn, or Xiaohongshu (Red Note). Search for keywords such as "accepted" or "notification" alongside conference names.
- Conference websites. Many venues publish detailed reports directly, such as the CHI 2025 Paper Outcomes Report.
- Conference proceedings. Acceptance rates are often mentioned in the "Preface" or "Chairs' Notes" sections of conference proceedings. For example, see ICDE 2024 Proceedings, "A Message from the Chairs".
- On-site slides. Chairs may present acceptance statistics during opening or closing sessions. Photos of these slides are sometimes shared on social media.
We welcome community-driven updates to the OAc repository. Follow these steps to contribute:
- Fork the Repository and make changes.
- Add a new JSON file (or edit an existing one) that follows the template.
- Submit a Pull Request with your edits, including clear data sources.
- The maintainers will review your PR; once approved, it will be merged.
Please note that by contributing, you agree to OAc's Terms of Use.
All conference entries must be valid JSON and adhere to one of the two templates below.
{
"name": "Conference name abbreviation (e.g., AAAI)",
"full_name": "Conference full name",
"website": "Website URL",
"dblp": "DBLP URL",
"yearly_data": [
{ "year": 2025, "submitted": 12957, "accepted": 3032, "source": "https://url.here" },
{ "year": 2024, "submitted": 9862, "accepted": 2342, "source": "https://url.here" }
],
"remarks": "Any additional notes, optional",
"sources": [
"https://urls.here"
],
"ratings": {
"CCF2022": "A",
"CCF2026": "A",
"ICORE2026": "A*"
}
}If the conference has a secondary track (currently, OAc only takes short papers, ACL Findings, and KDD ADL into account), please refer to the following template.
{
"name": "Conference name abbreviation (e.g., AAAI)",
"full_name": "Conference full name",
"website": "Website URL",
"dblp": "DBLP URL",
"yearly_data": [
{ "year": 2025, "submitted": 12957, "accepted": 3032, "source": "https://url.here" },
{ "year": 2024, "submitted": 9862, "accepted": 2342, "source": "https://url.here" }
],
"second_track": "Findings",
"second_track_yearly_data": [
{"year": 2024, "accepted": 976, "submitted": 4407, "source": "https://url.here"},
{"year": 2023, "accepted": 901, "submitted": 4864, "source": "https://url.here"}
],
"remarks": "Any additional notes, optional",
"sources": [
"https://urls.here"
],
"ratings": {
"CCF2022": "A",
"CCF2026": "A",
"ICORE2026": "A*"
}
}| Field | Description | Required | Remarks |
|---|---|---|---|
| name | Conference abbreviation | Yes | In most cases, the abbr. should be unique, all caps. But there are exceptions, e.g., "RecSys" and "MobiSys". |
| full_name | Conference full name | Yes | |
| website | Conference website | Yes | If the conference does not have a dedicated website, please use the latest year's website. |
| dblp | Conference DBLP URL | Yes | |
| yearly_data | Array of yearly data | Yes | Each entry should include the year, # of submitted papers, # of accepted papers, and data source[1]. |
| second_track | Secondary track name | Depends[2] | If the conference has a secondary track, please specify the track name. |
| second_track_yearly_data | Array of yearly data for the secondary track | Depends[2] | Each entry should include the year, # of submitted papers, # of accepted papers, and data source[1]. |
| remarks | Additional notes | No | Any additional notes, optional. |
| sources | Array of data sources | No | Where data can be acquired in bulk. For instance, someone's blog that keeps track of acceptance rates over the past few years. |
| ratings | Conference ratings | Yes | Ratings by different organizations, see table below. |
| Sub-field | Description | Required | Remarks |
|---|---|---|---|
| CCF2022 | CCF 2022 catalog (6th edition) rating | Yes | Must be one of: A, B, C, TBD |
| CCF2026 | CCF 2026 catalog (7th edition) rating | Yes | Must be one of: A, B, C, TBD |
| ICORE2026 | CORE Ranking 2026 edition | Yes | Must be one of: A*, A, B, C, N/A |
Important
OAc primarily adopts the taxonomy used in CCF's Recommended International Conferences and Journals Catalog (written in Chinese) to categorize conferences into 10 topics:
- AI: Artificial Intelligence
- CHI: Computer-Human Interaction
- DM: Database/Data Mining/Information Retrieval
- GM: Computer Graphics/Multimedia
- NEW: New/Interdiscipline
- NET: Computer Networks
- SEC: Cybersecurity/System Security
- SW: Software Engineering/System Software
- SYS: Computer Systems/Architecture
- TH: Computing Theory
In each category, conferences are classified into four tiers (A, B, C, and TBD) according to CCF's Catalog. CORE Ranking is also used for reference.
When you propose a conference that is not in either list (CCF's or CORE), please include a brief justification (e.g., “high‑impact venue in the emerging field of...”) in your PR description. Maintainers may need additional discussion time before merging.
Some of the historical data in this repository was gathered from the following sources:
- Computer Science Conference Statistics
- Acceptance rates for the
majortop-tier AI-related conferences - Paper Copilot
We would like to thank the maintainers of these sources for their endless and valuable efforts to find and share such acceptance rates data.