main 604b680c24bc cached
76 files
4.5 MB
1.2M tokens
21 symbols
1 requests
Download .txt
Showing preview only (4,773K chars total). Download the full file or copy to clipboard to get everything.
Repository: DmitryRyumin/AAAI-2024-Papers
Branch: main
Commit: 604b680c24bc
Files: 76
Total size: 4.5 MB

Directory structure:
gitextract_v9_t1iaz/

├── .flake8
├── .github/
│   └── workflows/
│       ├── copy_parse_markdown.yml
│       ├── parse_markdown.yml
│       └── sync_papers_with_hf.yml
├── .gitignore
├── CODE_OF_CONDUCT.md
├── LICENSE
├── README.md
├── code/
│   └── markdown_to_json_parser.py
├── json_data/
│   └── 2024/
│       └── main/
│           ├── 1001_1200.json
│           ├── 1201_1400.json
│           ├── 1401_1600.json
│           ├── 1601_1800.json
│           ├── 1801_2000.json
│           ├── 1_200.json
│           ├── 2001_2100.json
│           ├── 2001_2119.json
│           ├── 2001_2140.json
│           ├── 2001_2157.json
│           ├── 2001_2191.json
│           ├── 2001_2200.json
│           ├── 201_400.json
│           ├── 2201_2224.json
│           ├── 2201_2246.json
│           ├── 401_600.json
│           ├── 601_800.json
│           ├── 801_1000.json
│           ├── application_domains.json
│           ├── computer_vision.json
│           ├── constraint_satisfaction_and_optimization.json
│           ├── data_mining_and_knowledge_management.json
│           ├── game_theory_and_economic_paradigms.json
│           ├── humans_and_ai.json
│           ├── intelligent_robots.json
│           ├── knowledge_representation_and_reasoning.json
│           ├── machine_learning.json
│           ├── multiagent_systems.json
│           ├── natural_language_processing.json
│           ├── philosophy_and_ethics_of_ai.json
│           ├── planning_routing_and_scheduling.json
│           ├── reasoning_under_uncertainty.json
│           ├── safe_robust_and_responsible_ai.json
│           ├── search_and_optimization.json
│           └── сognitive_modeling_and_cognitive_systems.json
├── scripts/
│   ├── compare_files.sh
│   ├── show_file_content.sh
│   └── update_repo.sh
└── sections/
    └── 2024/
        └── main/
            ├── 1001_1200.md
            ├── 1201_1400.md
            ├── 1401_1600.md
            ├── 1601_1800.md
            ├── 1801_2000.md
            ├── 1_200.md
            ├── 2001_2200.md
            ├── 201_400.md
            ├── 2201_2246.md
            ├── 401_600.md
            ├── 601_800.md
            ├── 801_1000.md
            ├── application_domains.md
            ├── computer_vision.md
            ├── constraint_satisfaction_and_optimization.md
            ├── data_mining_and_knowledge_management.md
            ├── game_theory_and_economic_paradigms.md
            ├── humans_and_ai.md
            ├── intelligent_robots.md
            ├── knowledge_representation_and_reasoning.md
            ├── machine_learning.md
            ├── multiagent_systems.md
            ├── natural_language_processing.md
            ├── philosophy_and_ethics_of_ai.md
            ├── planning_routing_and_scheduling.md
            ├── reasoning_under_uncertainty.md
            ├── safe_robust_and_responsible_ai.md
            ├── search_and_optimization.md
            └── сognitive_modeling_and_cognitive_systems.md

================================================
FILE CONTENTS
================================================

================================================
FILE: .flake8
================================================
; https://www.flake8rules.com/

[flake8]
max-line-length = 120
ignore = E203, E402, E741, W503

================================================
FILE: .github/workflows/copy_parse_markdown.yml
================================================
name: Copy Parse Markdown and Generate JSON from Source Repo

on:
  workflow_dispatch:
    inputs:
      source_repo:
        description: 'Source repository name'
        required: true
        default: 'DmitryRyumin/NewEraAI-Papers'
      source_file_path:
        description: 'Path to the file in the source repository'
        required: true
        default: 'code/markdown_to_json_parser.py'
      code_directory:
        description: 'Directory where code is stored'
        required: true
        default: 'code'
      display_file_contents:
        description: 'Whether or not to display the contents of the doanload file and the destination file'
        required: true
        default: 'false'
        type: choice
        options:
          - true
          - false
  schedule:
    - cron: '30 23 * * *'

jobs:
  copy-code:
    runs-on: ubuntu-latest

    permissions:
      contents: write

    env:
      INPUT_SOURCE_REPO: ${{ github.event.inputs.source_repo || 'DmitryRyumin/NewEraAI-Papers' }}
      INPUT_SOURCE_FILE_PATH: ${{ github.event.inputs.source_file_path || 'code/markdown_to_json_parser.py' }}
      INPUT_CODE_DIRECTORY: ${{ github.event.inputs.code_directory || 'code' }}
      INPUT_DISPLAY_FILE_CONTENTS: ${{ github.event.inputs.display_file_contents || 'false' }}

    steps:
      - name: Checkout repository
        uses: actions/checkout@v4
        continue-on-error: true # Continue with the workflow even if the checkout fails
        with:
          ref: ${{ github.event.before || 'main' }}

      - name: Set SOURCE_FILE_PATH
        run: |
          echo "SOURCE_FILE_PATH=${{ github.workspace }}/${{ env.INPUT_CODE_DIRECTORY }}/markdown_to_json_parser_new.py" >> $GITHUB_ENV

      - name: Set SOURCE_DESTINATION_FILE_PATH
        run: |
          echo "SOURCE_DESTINATION_FILE_PATH=${{ github.workspace }}/${{ env.INPUT_SOURCE_FILE_PATH }}" >> $GITHUB_ENV

      - name: Define show_file_content function
        run: echo 'source ${{ github.workspace }}/scripts/show_file_content.sh' > show_file_content_step.sh

      - name: Download source file
        run: |
          if mkdir -p "${{ github.workspace }}/${{ env.INPUT_CODE_DIRECTORY }}"; then
            echo "Directory created successfully or already existed."
          else
            echo "Failed to create directory."
            exit 1
          fi

          source_url="https://raw.githubusercontent.com/${{ env.INPUT_SOURCE_REPO }}/main/${{ env.INPUT_SOURCE_FILE_PATH }}"
          if curl -o "${{ env.SOURCE_FILE_PATH }}" "$source_url"; then
            echo "Source file downloaded successfully."
          else
            echo "Failed to download source file."
            exit 1
          fi

      - name: Display content of the downloaded source file
        run: |
          set -e
          source show_file_content_step.sh
          show_file_content "${{ env.SOURCE_FILE_PATH }}" "${{ env.INPUT_DISPLAY_FILE_CONTENTS }}"

      - name: Display content of destination file from target repository
        run: |
          set -e
          source show_file_content_step.sh
          show_file_content "${{ env.SOURCE_DESTINATION_FILE_PATH }}" "${{ env.INPUT_DISPLAY_FILE_CONTENTS }}"

      - name: Compare and handle files
        run: |
          set -e

          handle_equal_files() {
            echo "Files are equal. Deleting SOURCE_FILE_PATH."
            if rm "${{ env.SOURCE_FILE_PATH }}"; then
              echo "SOURCE_FILE_PATH deleted successfully."
            else
              echo "Failed to delete SOURCE_FILE_PATH."
              exit 1
            fi
          }

          handle_unequal_files() {
            echo "Files are not equal. Replacing SOURCE_DESTINATION_FILE_PATH with content from SOURCE_FILE_PATH."
            if cat "${{ env.SOURCE_FILE_PATH }}" > "${{ env.SOURCE_DESTINATION_FILE_PATH }}"; then
              echo "SOURCE_DESTINATION_FILE_PATH replaced successfully."
              rm "${{ env.SOURCE_FILE_PATH }}"
            else
              echo "Failed to replace SOURCE_DESTINATION_FILE_PATH."
              exit 1
            fi
          }

          handle_missing_destination() {
            echo "SOURCE_DESTINATION_FILE_PATH does not exist. Renaming SOURCE_FILE_PATH to SOURCE_DESTINATION_FILE_PATH."
            if [ -f "${{ env.SOURCE_FILE_PATH }}" ] && [ -f "${{ env.SOURCE_DESTINATION_FILE_PATH }}" ]; then
              if mv "${{ env.SOURCE_FILE_PATH }}" "${{ env.SOURCE_DESTINATION_FILE_PATH }}"; then
                echo "Files renamed successfully."
              else
                echo "Failed to rename files."
                exit 1
              fi
            else
              echo "One or both of the files do not exist."
            fi
          }

          if [ -f "${{ env.SOURCE_DESTINATION_FILE_PATH }}" ]; then
            if cmp -s "${{ env.SOURCE_DESTINATION_FILE_PATH }}" "${{ env.SOURCE_FILE_PATH }}"; then
              handle_equal_files
            else
              handle_unequal_files
            fi
          else
            handle_missing_destination
          fi

      - name: Display working code directory content
        run: |
          ls -al "${{ github.workspace }}/${{ env.INPUT_CODE_DIRECTORY }}"

      - name: Auto commit changes
        uses: stefanzweifel/git-auto-commit-action@v5
        with:
          commit_message: 'Copy Parse Markdown and Generate JSON from Source Repo'
        env:
          PAPER_TOKEN: ${{ secrets.PAPER_TOKEN }}

      - name: Set output status
        run: echo "status=${{ steps.parse.outcome }}" >> $GITHUB_ENV


================================================
FILE: .github/workflows/parse_markdown.yml
================================================
name: Parse Markdown and Generate JSON

on:
  schedule:
    - cron: '0 0 * * *' # 00:00 UTC
  workflow_dispatch:

jobs:
  parse_markdown:
    runs-on: ubuntu-latest

    steps:
      - name: Checkout repository
        uses: actions/checkout@v4

      - name: Set up Python
        uses: actions/setup-python@v5
        with:
          python-version: 3.10.11

      - name: Install Node.js
        uses: actions/setup-node@v4
        with:
          node-version: '20'

      - name: Install dependencies
        run: |
          python -m pip install --upgrade pip
          pip install bs4 markdown2 prettytable PyGithub flake8 black
        continue-on-error: true

      - name: Run Flake8 (Linting)
        run: flake8 code/

      - name: Check code formatting
        run: black --check code/

      - name: Run Markdown Parser
        id: parse
        run: python code/markdown_to_json_parser.py
        working-directory: ${{ github.workspace }}
        continue-on-error: true
        env:
          PAPER_TOKEN: ${{ secrets.PAPER_TOKEN }}

      - name: Upload JSON files
        uses: actions/upload-artifact@v4
        with:
          name: json_data
          path: ${{ github.workspace }}/json_data

      - name: Set output status
        run: echo "status=${{ steps.parse.outcome }}" >> $GITHUB_ENV


================================================
FILE: .github/workflows/sync_papers_with_hf.yml
================================================
name: Sync Hugging Face App

on:
  schedule:
    - cron: '0 4 * * *' # 04:00 UTC
  workflow_dispatch:

jobs:
  sync-hf:
    runs-on: ubuntu-latest

    permissions:
      contents: write

    env:
      HF_USERNAME: 'DmitryRyumin'
      HF_REPO: 'NewEraAI-Papers'
      LOCAL_DIR: 'NewEraAI-Papers'
      HF_TOKEN: ${{ secrets.HUGGINGFACE_TOKEN }}
      JSON_DATA_PATH: 'json_data/2023/CVPR'
      UPDATE_REPO_SH: 'update_repo.sh'
      COMPARE_FILES_SH: 'compare_files.sh'
      EMAIL: 'dl_03.03.1991@mail.ru'

    steps:
      - name: Checkout repository
        uses: actions/checkout@v4
        continue-on-error: true # Continue with the workflow even if the checkout fails
        with:
          ref: ${{ github.event.before || 'main' }}

      - name: Install Git LFS
        run: |
          if ! command -v git-lfs &> /dev/null; then
            echo "Git LFS is not installed. Installing ..."
            sudo apt-get install git-lfs
          fi
          git lfs install

      - name: Install colordiff
        run: |
          if ! command -v colordiff &> /dev/null; then
            echo "colordiff is not installed. Installing ..."
            sudo apt-get install colordiff
          fi

      - name: Set REMOTE_URL
        run: |
          echo "REMOTE_URL=https://${{ env.HF_USERNAME }}:${{ env.HF_TOKEN }}@huggingface.co/spaces/${{ env.HF_USERNAME }}/${{ env.HF_REPO }}" >> $GITHUB_ENV

      - name: Clone Hugging Face Repository
        run: |
          GIT_LFS_SKIP_SMUDGE=1 git clone --quiet --branch=main --single-branch --depth=1 "$REMOTE_URL" "${{ env.LOCAL_DIR }}"
        continue-on-error: true

      - name: Display cloned directory contents
        run: |
          ls -al "${{ github.workspace }}/${{ env.LOCAL_DIR }}/${{ env.JSON_DATA_PATH }}"

      - name: Make scripts executable
        run: |
          chmod +x ${{ github.workspace }}/scripts/${{ env.UPDATE_REPO_SH }}
          chmod +x ${{ github.workspace }}/scripts/${{ env.COMPARE_FILES_SH }}

      - name: Define scripts
        run: |
          echo 'source ${{ github.workspace }}/scripts/${{ env.UPDATE_REPO_SH }}' > ${{ env.UPDATE_REPO_SH }}
          echo 'source ${{ github.workspace }}/scripts/${{ env.COMPARE_FILES_SH }}' > ${{ env.COMPARE_FILES_SH }}
          chmod +x ${{ github.workspace }}/${{ env.UPDATE_REPO_SH }}
          chmod +x ${{ github.workspace }}/${{ env.COMPARE_FILES_SH }}

      - name: Compare and update files
        run: bash ${{ env.COMPARE_FILES_SH }} "${{ github.workspace }}/json_data" "${{ github.workspace }}/${{ env.LOCAL_DIR }}/${{ env.JSON_DATA_PATH }}"

      - name: Update repository and commit
        run: bash ${{ env.UPDATE_REPO_SH }} "${{ github.workspace }}/${{ env.LOCAL_DIR }}/${{ env.JSON_DATA_PATH }}" "${{ env.EMAIL }}" "${{ env.HF_USERNAME }}" "${{ env.JSON_DATA_PATH }}" "${{ env.HF_USERNAME }}" "${{ env.HF_TOKEN }}" "${{ env.HF_REPO }}"

  finalize:
    runs-on: ubuntu-latest
    needs: sync-hf

    steps:
      - name: Output completion time
        run: echo "Workflow completed at [$(date '+%Y-%m-%d %H:%M:%S')]"

      - name: Set output status
        run: |
          if [ ${{ needs.sync-hf.result }} == 'success' ]; then
            echo "status=success" >> $GITHUB_ENV
          else
            echo "status=failure" >> $GITHUB_ENV
          fi


================================================
FILE: .gitignore
================================================
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
*.pyc

# Packages #
############
# it's better to unpack these files and commit the raw source
# git has its own built in compression methods
*.7z
*.dmg
*.gz
*.iso
*.rar
#*.tar
*.zip

# Logs and databases #
######################
*.log
*.sqlite

# OS generated files #
######################
.DS_Store
ehthumbs.db
Icon
Thumbs.db
.tmtags
.idea
.vscode
tags
vendor.tags
tmtagsHistory
*.sublime-project
*.sublime-workspace
.bundle

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
node_modules/

# PyInstaller
#  Usually these files are written by a python script from a template
#  before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/
.pytest_cache/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pyenv
.python-version

# pipenv
#   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
#   However, in case of collaboration, if having platform-specific dependencies or dependencies
#   having no cross-platform support, pipenv may install dependencies that don't work, or not
#   install all needed dependencies.
#Pipfile.lock

# celery beat schedule file
celerybeat-schedule

# SageMath parsed files
*.sage.py

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/

# Custom
*.pdf
/*.sh
/*.py
local_json_data/

================================================
FILE: CODE_OF_CONDUCT.md
================================================
# Code of Conduct

## Our Pledge

In the interest of fostering an open and welcoming environment, we as
contributors and maintainers pledge to make participation in our project and
our community a harassment-free experience for everyone, regardless of age, body
size, disability, ethnicity, sex characteristics, gender identity and expression,
level of experience, education, socio-economic status, nationality, personal
appearance, race, religion, or sexual identity and orientation.

## Our Standards

Examples of behavior that contributes to creating a positive environment
include:

* Using welcoming and inclusive language
* Being respectful of differing viewpoints and experiences
* Gracefully accepting constructive criticism
* Focusing on what is best for the community
* Showing empathy towards other community members

Examples of unacceptable behavior by participants include:

* The use of sexualized language or imagery and unwelcome sexual attention or
advances
* Trolling, insulting/derogatory comments, and personal or political attacks
* Public or private harassment
* Publishing others' private information, such as a physical or electronic
address, without explicit permission
* Other conduct which could reasonably be considered inappropriate in a
professional setting

## Our Responsibilities

Project maintainers are responsible for clarifying the standards of acceptable
behavior and are expected to take appropriate and fair corrective action in
response to any instances of unacceptable behavior.

Project maintainers have the right and responsibility to remove, edit, or
reject comments, commits, code, wiki edits, issues, and other contributions
that are not aligned to this Code of Conduct, or to ban temporarily or
permanently any contributor for other behaviors that they deem inappropriate,
threatening, offensive, or harmful.

## Scope

This Code of Conduct applies within all project spaces, and it also applies when
an individual is representing the project or its community in public spaces.
Examples of representing a project or community include using an official
project e-mail address, posting via an official social media account, or acting
as an appointed representative at an online or offline event. Representation of
a project may be further defined and clarified by project maintainers.

This Code of Conduct also applies outside the project spaces when there is a
reasonable belief that an individual's behavior may have a negative impact on
the project or its community.

## Enforcement

Instances of abusive, harassing, or otherwise unacceptable behavior may be
reported by contacting the project team at <neweraairesearch@gmail.com>. All
complaints will be reviewed and investigated and will result in a response that
is deemed necessary and appropriate to the circumstances. The project team is
obligated to maintain confidentiality with regard to the reporter of an incident.
Further details of specific enforcement policies may be posted separately.

Project maintainers who do not follow or enforce the Code of Conduct in good
faith may face temporary or permanent repercussions as determined by other
members of the project's leadership.

## Attribution

This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
available at <https://www.contributor-covenant.org/version/1/4/code-of-conduct.html>

[homepage]: https://www.contributor-covenant.org

For answers to common questions about this code of conduct, see
<https://www.contributor-covenant.org/faq>


================================================
FILE: LICENSE
================================================
MIT License

Copyright (c) 2024 Dmitry Ryumin

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.


================================================
FILE: README.md
================================================
<p align="center">
  <img src="https://capsule-render.vercel.app/api?type=waving&height=115&color=2C2A2E&text=AAAI-2024-Papers&section=header&reversal=false&textBg=false&fontAlign=50&fontSize=36&fontColor=FFFFFF&animation=scaleIn&fontAlignY=18" alt="AAAI-2024-Papers">
</p>

<table align="center">
  <tr>
    <td><strong>General Information</strong></td>
    <td>
      <a href="https://github.com/sindresorhus/awesome">
        <img src="https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg" alt="Awesome">
      </a>
      <a href="https://aaai.org/aaai-conference/">
        <img src="http://img.shields.io/badge/AAAI-2024-001B37.svg" alt="Conference">
      </a>
      <img src="https://img.shields.io/badge/version-v0.0.0-rc0" alt="Version">
      <a href ="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/LICENSE">
        <img src="https://img.shields.io/badge/License-MIT-green.svg" alt="License: MIT">
      </a>
    </td>
  </tr>
  <tr>
    <td><strong>Repository Size and Activity</strong></td>
    <td>
      <img src="https://img.shields.io/github/repo-size/DmitryRyumin/AAAI-2024-Papers" alt="GitHub repo size">
      <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/commits/main/">
        <img src="https://img.shields.io/github/commit-activity/t/dmitryryumin/AAAI-2024-Papers" alt="GitHub commit activity (branch)">
      </a>
    </td>
  </tr>
  <tr>
    <td><strong>Contribution Statistics</strong></td>
    <td>
      <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/graphs/contributors">
        <img src="https://img.shields.io/github/contributors/dmitryryumin/AAAI-2024-Papers" alt="GitHub contributors">
      </a>
      <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/issues?q=is%3Aissue+is%3Aclosed">
        <img src="https://img.shields.io/github/issues-closed/DmitryRyumin/AAAI-2024-Papers" alt="GitHub closed issues">
      </a>
      <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/issues">
        <img src="https://img.shields.io/github/issues/DmitryRyumin/AAAI-2024-Papers" alt="GitHub issues">
      </a>
      <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/pulls?q=is%3Apr+is%3Aclosed">
        <img src="https://img.shields.io/github/issues-pr-closed/DmitryRyumin/AAAI-2024-Papers" alt="GitHub closed pull requests">
      </a>
      <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/pulls">
        <img src="https://img.shields.io/github/issues-pr/dmitryryumin/AAAI-2024-Papers" alt="GitHub pull requests">
      </a>
    </td>
  </tr>
  <tr>
    <td><strong>Other Metrics</strong></td>
    <td>
      <img src="https://img.shields.io/github/last-commit/DmitryRyumin/AAAI-2024-Papers" alt="GitHub last commit">
      <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/watchers">
        <img src="https://img.shields.io/github/watchers/dmitryryumin/AAAI-2024-Papers?style=flat" alt="GitHub watchers">
      </a>
      <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/forks">
        <img src="https://img.shields.io/github/forks/dmitryryumin/AAAI-2024-Papers?style=flat" alt="GitHub forks">
      </a>
      <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/stargazers">
        <img src="https://img.shields.io/github/stars/dmitryryumin/AAAI-2024-Papers?style=flat" alt="GitHub Repo stars">
      </a>
      <img src="https://api.visitorbadge.io/api/combined?path=https%3A%2F%2Fgithub.com%2FDmitryRyumin%2FAAAI-2024-Papers&label=Visitors&countColor=%23263759&style=flat" alt="Visitors">
    </td>
  </tr>
  <tr>
    <td><strong>GitHub Actions</strong></td>
    <td>
      <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/actions/workflows/copy_parse_markdown.yml/badge.svg">
        <img src="https://github.com/DmitryRyumin/AAAI-2024-Papers/actions/workflows/copy_parse_markdown.yml/badge.svg" alt="Copy Parse Markdown and Generate JSON from Source Repo">
      </a>
      <br />
      <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/actions/workflows/parse_markdown.yml/badge.svg?branch=main">
        <img src="https://github.com/DmitryRyumin/AAAI-2024-Papers/actions/workflows/parse_markdown.yml/badge.svg?branch=main" alt="Parse Markdown and Generate JSON">
      </a>
      <br />
      <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/actions/workflows/sync_papers_with_hf.yml">
        <img src="https://github.com/DmitryRyumin/AAAI-2024-Papers/actions/workflows/sync_papers_with_hf.yml/badge.svg" alt="Sync Hugging Face App">
      </a>
    </td>
  </tr>
  <tr>
    <td><strong>Application</strong></td>
    <td>
      <a href="https://huggingface.co/spaces/DmitryRyumin/NewEraAI-Papers" style="float:left;">
        <img src="https://img.shields.io/badge/🤗-NewEraAI--Papers-FFD21F.svg" alt="App" />
      </a>
    </td>
  </tr>
  <tr>
    <td colspan="2" align="center"><strong>Progress Status</strong></td>
  </tr>
  <tr>
    <td><strong>Main</strong></td>
    <td>
      <!-- 446/2407 -->
      <div style="float:left;">
        <img src="https://geps.dev/progress/20?successColor=006600" alt="" />
        <img src="https://cdn.jsdelivr.net/gh/DmitryRyumin/NewEraAI-Papers@main/images/completed_checkmark_done.svg" width="25" alt="" />
      </div>
    </td>
  </tr>
</table>

---

AAAI 2024 Papers: Explore a comprehensive collection of innovative research papers presented at [*AAAI 2024*](https://aaai.org/aaai-conference/), one of the premier artificial intelligence conferences. Seamlessly integrate code implementations for better understanding. ⭐ experience the forefront of progress in artificial intelligence with this repository!

<p align="center">
    <a href="https://aaai.org/aaai-conference/" target="_blank">
        <img width="600" src="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/images/AAAI2024-banner.png" alt="AAAI 2024">
    </a>
<p>

---

> [!TIP]
> [*The PDF version of the AAAI 2024 Conference Programme*](https://aaai.org/wp-content/uploads/2024/02/AAAI-24_Main_2024-02-01.pdf), includes a comprehensive table listing all accepted full papers in the main track.

---

<a href="https://github.com/DmitryRyumin/NewEraAI-Papers" style="float:left;">
  <img src="https://cdn.jsdelivr.net/gh/DmitryRyumin/NewEraAI-Papers@main/images/arrow_click_cursor_pointer.png" width="25" alt="" />
  Other collections of the best AI conferences
</a>

<br />
<br />

<a href="https://huggingface.co/spaces/DmitryRyumin/NewEraAI-Papers" style="float:left;">
  <img src="https://img.shields.io/badge/🤗-NewEraAI--Papers-FFD21F.svg" alt="App" />
</a>

<br />
<br />

> [!important]
> Conference table will be up to date all the time.

<table>
    <tr>
        <td rowspan="2" align="center"><strong>Conference</strong></td>
        <td colspan="2" align="center"><strong>Year</strong></td>
    </tr>
    <tr>
        <td colspan="1" align="center"><i>2023</i></td>
        <td colspan="1" align="center"><i>2024</i></td>
    </tr>
    <tr>
        <td colspan="3" align="center"><i>Computer Vision (CV)</i></td>
    </tr>
    <tr>
        <td>CVPR</td>
        <td colspan="2" align="center"><a href="https://github.com/DmitryRyumin/CVPR-2023-24-Papers" target="_blank"><img src="https://img.shields.io/github/stars/DmitryRyumin/CVPR-2023-24-Papers?style=flat" alt="" /></a></td>
    </tr>
    <tr>
        <td>ICCV</td>
        <td align="center"><a href="https://github.com/DmitryRyumin/ICCV-2023-Papers" target="_blank"><img src="https://img.shields.io/github/stars/DmitryRyumin/ICCV-2023-Papers?style=flat" alt="" />&nbsp;<img src="https://cdn.jsdelivr.net/gh/DmitryRyumin/NewEraAI-Papers@main/images/done.svg" width="20" alt="" /></a></td>
        <td align="center"><img src="https://img.shields.io/badge/Not%20Scheduled-CC5540" alt=""/></td>
    </tr>
    <tr>
        <td>ECCV</td>
        <td align="center"><img src="https://img.shields.io/badge/Not%20Scheduled-CC5540" alt=""/></td>
        <td align="center"><img src="https://img.shields.io/badge/October-white?logo=github&labelColor=b31b1b" alt="" /></td>
    </tr>
    <tr>
        <td>WACV</td>
        <td align="center">:heavy_minus_sign:</td>
        <td align="center"><a href="https://github.com/DmitryRyumin/WACV-2024-Papers" target="_blank"><img src="https://img.shields.io/github/stars/DmitryRyumin/WACV-2024-Papers?style=flat" alt="" />&nbsp;<img src="https://cdn.jsdelivr.net/gh/DmitryRyumin/NewEraAI-Papers@main/images/done.svg" width="20" alt="" /></a></td>
    </tr>
    <tr>
        <td>FG</td>
        <td align="center">:heavy_minus_sign:</td>
        <td align="center"><a href="https://github.com/DmitryRyumin/FG-2024-Papers" target="_blank"><img src="https://img.shields.io/github/stars/DmitryRyumin/FG-2024-Papers?style=flat" alt="" /></a></td>
    </tr>
    <tr>
        <td colspan="3" align="center"><i>Speech/Signal Processing (SP/SigProc)</i></td>
    </tr>
    <tr>
        <td>ICASSP</td>
        <td colspan="2" align="center"><a href="https://github.com/DmitryRyumin/ICASSP-2023-24-Papers" target="_blank"><img src="https://img.shields.io/github/stars/DmitryRyumin/ICASSP-2023-24-Papers?style=flat" alt="" /></a></td>
    </tr>
    <tr>
        <td>INTERSPEECH</td>
        <td align="center"><a href="https://github.com/DmitryRyumin/INTERSPEECH-2023-Papers" target="_blank"><img src="https://img.shields.io/github/stars/DmitryRyumin/INTERSPEECH-2023-Papers?style=flat" alt="" />&nbsp;<img src="https://cdn.jsdelivr.net/gh/DmitryRyumin/NewEraAI-Papers@main/images/done.svg" width="20" alt="" /></a></td>
        <td align="center"><img src="https://img.shields.io/badge/September-white?logo=github&labelColor=b31b1b" alt="" /></td>
    </tr>
    <tr>
        <td>ISMIR</td>
        <td align="center"><a href="https://github.com/yamathcy/ISMIR-2023-Papers" target="_blank"><img src="https://img.shields.io/github/stars/yamathcy/ISMIR-2023-Papers?style=flat" alt="" />&nbsp;<img src="https://cdn.jsdelivr.net/gh/DmitryRyumin/NewEraAI-Papers@main/images/done.svg" width="20" alt="" /></a></td>
        <td align="center">:heavy_minus_sign:</td>
    </tr>
    <tr>
        <td colspan="3" align="center"><i>Natural Language Processing (NLP)</i></td>
    </tr>
    <tr>
        <td>EMNLP</td>
        <td align="center"><a href="https://github.com/DmitryRyumin/EMNLP-2023-Papers" target="_blank"><img src="https://img.shields.io/github/stars/DmitryRyumin/EMNLP-2023-Papers?style=flat" alt="" /></a></td>
        <td align="center"><img src="https://img.shields.io/badge/December-white?logo=github&labelColor=b31b1b" alt="" /></td>
    </tr>
    <tr>
        <td colspan="3" align="center"><i>Machine Learning (ML)</i></td>
    </tr>
    <tr>
        <td>AAAI</td>
        <td align="center">:heavy_minus_sign:</td>
        <td align="center"><a href="https://github.com/DmitryRyumin/AAAI-2024-Papers" target="_blank"><img src="https://img.shields.io/github/stars/DmitryRyumin/AAAI-2024-Papers?style=flat" alt="" /></a></td>
    </tr>
    <tr>
        <td>ICLR</td>
        <td align="center">:heavy_minus_sign:</td>
        <td align="center"><img src="https://img.shields.io/badge/May-white?logo=github&labelColor=b31b1b" alt="" /></td>
    </tr>
    <tr>
        <td>ICML</td>
        <td align="center">:heavy_minus_sign:</td>
        <td align="center"><img src="https://img.shields.io/badge/July-white?logo=github&labelColor=b31b1b" alt="" /></td>
    </tr>
    <tr>
        <td>NeurIPS</td>
        <td align="center">:heavy_minus_sign:</td>
        <td align="center"><img src="https://img.shields.io/badge/December-white?logo=github&labelColor=b31b1b" alt="" /></td>
    </tr>
</table>

---

## Contributors

<a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/graphs/contributors">
  <img src="http://contributors.nn.ci/api?repo=DmitryRyumin/AAAI-2024-Papers" alt="" />
</a>

<br />
<br />

> [!NOTE]
> Contributions to improve the completeness of this list are greatly appreciated. If you come across any overlooked papers, please **feel free to [*create pull requests*](https://github.com/DmitryRyumin/AAAI-2024-Papers/pulls), [*open issues*](https://github.com/DmitryRyumin/AAAI-2024-Papers/issues) or contact me via [*email*](mailto:neweraairesearch@gmail.com)**. Your participation is crucial to making this repository even better.

---

## Papers <img src="https://cdn.jsdelivr.net/gh/DmitryRyumin/NewEraAI-Papers@main/images/ai.svg" width="30" alt="" />

<a href="https://huggingface.co/spaces/DmitryRyumin/NewEraAI-Papers" style="float:left;">
  <img src="https://img.shields.io/badge/🤗-NewEraAI--Papers-FFD21F.svg" alt="App" />
</a>

> [!important]
> Sorting papers by category in progress.

<table>
    <thead>
        <tr>
            <th scope="col">Section</th>
            <th scope="col">Papers</th>
            <th scope="col"><img src="https://cdn.jsdelivr.net/gh/DmitryRyumin/NewEraAI-Papers@main/images/arxiv-logo.svg" width="45" alt="" /></th>
            <th scope="col"><img src="https://cdn.jsdelivr.net/gh/DmitryRyumin/NewEraAI-Papers@main/images/github_code_developer.svg" width="27" alt="" /></th>
            <th scope="col"><img src="https://cdn.jsdelivr.net/gh/DmitryRyumin/NewEraAI-Papers@main/images/video.svg" width="27" alt="" /></th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td colspan="5" align="center"><i>Main</i></td>
        </tr>
        <tr>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/application_domains.md">Application Domains</a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/application_domains.md"><img src="https://img.shields.io/badge/50-42BA16" alt="Papers"></a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/application_domains.md"><img src="https://img.shields.io/badge/29-b31b1b" alt="Preprints"></a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/application_domains.md"><img src="https://img.shields.io/badge/26-1D7FBF" alt="Open Code"></a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/application_domains.md"><img src="https://img.shields.io/badge/23-FF0000" alt="Videos"></a>
            </td>
        </tr>
        <tr>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/сognitive_modeling_and_cognitive_systems.md">Cognitive Modeling and Cognitive Systems</a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/сognitive_modeling_and_cognitive_systems.md"><img src="https://img.shields.io/badge/25-42BA16" alt="Papers"></a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/сognitive_modeling_and_cognitive_systems.md"><img src="https://img.shields.io/badge/13-b31b1b" alt="Preprints"></a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/сognitive_modeling_and_cognitive_systems.md"><img src="https://img.shields.io/badge/16-1D7FBF" alt="Open Code"></a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/сognitive_modeling_and_cognitive_systems.md"><img src="https://img.shields.io/badge/15-FF0000" alt="Videos"></a>
            </td>
        </tr>
        <tr>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/computer_vision.md">Computer Vision</a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/computer_vision.md"><img src="https://img.shields.io/badge/804-42BA16" alt="Papers"></a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/computer_vision.md"><img src="https://img.shields.io/badge/207-b31b1b" alt="Preprints"></a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/computer_vision.md"><img src="https://img.shields.io/badge/189-1D7FBF" alt="Open Code"></a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/computer_vision.md"><img src="https://img.shields.io/badge/173-FF0000" alt="Videos"></a>
            </td>
        </tr>
        <tr>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/constraint_satisfaction_and_optimization.md">Constraint Satisfaction and Optimization</a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/constraint_satisfaction_and_optimization.md"><img src="https://img.shields.io/badge/35-42BA16" alt="Papers"></a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/constraint_satisfaction_and_optimization.md"><img src="https://img.shields.io/badge/19-b31b1b" alt="Preprints"></a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/constraint_satisfaction_and_optimization.md"><img src="https://img.shields.io/badge/12-1D7FBF" alt="Open Code"></a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/constraint_satisfaction_and_optimization.md"><img src="https://img.shields.io/badge/23-FF0000" alt="Videos"></a>
            </td>
        </tr>
        <tr>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/data_mining_and_knowledge_management.md">Data Mining and Knowledge Management</a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/data_mining_and_knowledge_management.md"><img src="https://img.shields.io/badge/135-42BA16" alt="Papers"></a>
            </td>
            <td colspan="3" rowspan="2" align="center"><i>Will soon be added</i></td>
        </tr>
        <tr>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/game_theory_and_economic_paradigms.md">Game Theory and Economic Paradigms</a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/game_theory_and_economic_paradigms.md"><img src="https://img.shields.io/badge/65-42BA16" alt="Papers"></a>
            </td>
        </tr>
        <tr>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/humans_and_ai.md">Humans and AI</a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/humans_and_ai.md"><img src="https://img.shields.io/badge/31-42BA16" alt="Papers"></a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/humans_and_ai.md"><img src="https://img.shields.io/badge/15-b31b1b" alt="Preprints"></a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/humans_and_ai.md"><img src="https://img.shields.io/badge/15-1D7FBF" alt="Open Code"></a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/humans_and_ai.md"><img src="https://img.shields.io/badge/15-FF0000" alt="Videos"></a>
            </td>
        </tr>
        <tr>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/intelligent_robots.md">Intelligent Robots</a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/intelligent_robots.md"><img src="https://img.shields.io/badge/16-42BA16" alt="Papers"></a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/intelligent_robots.md"><img src="https://img.shields.io/badge/9-b31b1b" alt="Preprints"></a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/intelligent_robots.md"><img src="https://img.shields.io/badge/13-1D7FBF" alt="Open Code"></a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/intelligent_robots.md"><img src="https://img.shields.io/badge/10-FF0000" alt="Videos"></a>
            </td>
        </tr>
        <tr>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/knowledge_representation_and_reasoning.md">Knowledge Representation and Reasoning</a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/knowledge_representation_and_reasoning.md"><img src="https://img.shields.io/badge/38-42BA16" alt="Papers"></a>
            </td>
            <td colspan="3" rowspan="8" align="center"><i>Will soon be added</i></td>
        </tr>
        <tr>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/machine_learning.md">Machine Learning</a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/machine_learning.md"><img src="https://img.shields.io/badge/728-42BA16" alt="Papers"></a>
            </td>
        </tr>
        <tr>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/multiagent_systems.md">Multiagent Systems</a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/multiagent_systems.md"><img src="https://img.shields.io/badge/39-42BA16" alt="Papers"></a>
            </td>
        </tr>
        <tr>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/natural_language_processing.md">Natural Language Processing</a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/natural_language_processing.md"><img src="https://img.shields.io/badge/240-42BA16" alt="Papers"></a>
            </td>
        </tr>
        <tr>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/philosophy_and_ethics_of_ai.md">Philosophy and Ethics of AI</a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/philosophy_and_ethics_of_ai.md"><img src="https://img.shields.io/badge/24-42BA16" alt="Papers"></a>
            </td>
        </tr>
        <tr>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/planning_routing_and_scheduling.md">Planning, Routing, and Scheduling</a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/planning_routing_and_scheduling.md"><img src="https://img.shields.io/badge/31-42BA16" alt="Papers"></a>
            </td>
        </tr>
        <tr>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/reasoning_under_uncertainty.md">Reasoning under Uncertainty</a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/reasoning_under_uncertainty.md"><img src="https://img.shields.io/badge/37-42BA16" alt="Papers"></a>
            </td>
        </tr>
        <tr>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/safe_robust_and_responsible_ai.md">Safe, Robust and Responsible AI</a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/safe_robust_and_responsible_ai.md"><img src="https://img.shields.io/badge/109-42BA16" alt="Papers"></a>
            </td>
        </tr>
    </tbody>
</table>

> [!important]
> Papers will be sorted by category as soon as the [*proceedings*](https://aaai.org/aaai-publications/aaai-conference-proceedings/) are available.

<table>
    <thead>
        <tr>
            <th scope="col">Section</th>
            <th scope="col">Papers</th>
            <th scope="col"><img src="https://cdn.jsdelivr.net/gh/DmitryRyumin/NewEraAI-Papers@main/images/arxiv-logo.svg" width="45" alt="" /></th>
            <th scope="col"><img src="https://cdn.jsdelivr.net/gh/DmitryRyumin/NewEraAI-Papers@main/images/github_code_developer.svg" width="27" alt="" /></th>
            <th scope="col"><img src="https://cdn.jsdelivr.net/gh/DmitryRyumin/NewEraAI-Papers@main/images/video.svg" width="27" alt="" /></th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td colspan="5" align="center"><i>Main</i></td>
        </tr>
        <tr>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/1_200.md">1-200 papers</a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/1_200.md"><img src="https://img.shields.io/badge/200-42BA16" alt="Papers"></a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/1_200.md"><img src="https://img.shields.io/badge/126-b31b1b" alt="Preprints"></a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/1_200.md"><img src="https://img.shields.io/badge/85-1D7FBF" alt="Open Code"></a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/1_200.md"><img src="https://img.shields.io/badge/4-FF0000" alt="Videos"></a>
            </td>
        </tr>
        <tr>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/201_400.md">201-400 papers</a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/201_400.md"><img src="https://img.shields.io/badge/200-42BA16" alt="Papers"></a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/201_400.md"><img src="https://img.shields.io/badge/113-b31b1b" alt="Preprints"></a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/201_400.md"><img src="https://img.shields.io/badge/83-1D7FBF" alt="Open Code"></a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/201_400.md"><img src="https://img.shields.io/badge/2-FF0000" alt="Videos"></a>
            </td>
        </tr>
        <tr>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/401_600.md">401-600 papers</a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/401_600.md"><img src="https://img.shields.io/badge/200-42BA16" alt="Papers"></a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/401_600.md"><img src="https://img.shields.io/badge/105-b31b1b" alt="Preprints"></a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/401_600.md"><img src="https://img.shields.io/badge/70-1D7FBF" alt="Open Code"></a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/401_600.md"><img src="https://img.shields.io/badge/3-FF0000" alt="Videos"></a>
            </td>
        </tr>
        <tr>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/601_800.md">601-800 papers</a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/601_800.md"><img src="https://img.shields.io/badge/200-42BA16" alt="Papers"></a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/601_800.md"><img src="https://img.shields.io/badge/117-b31b1b" alt="Preprints"></a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/601_800.md"><img src="https://img.shields.io/badge/77-1D7FBF" alt="Open Code"></a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/601_800.md"><img src="https://img.shields.io/badge/4-FF0000" alt="Videos"></a>
            </td>
        </tr>
        <tr>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/801_1000.md">801-1000 papers</a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/801_1000.md"><img src="https://img.shields.io/badge/200-42BA16" alt="Papers"></a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/801_1000.md"><img src="https://img.shields.io/badge/110-b31b1b" alt="Preprints"></a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/801_1000.md"><img src="https://img.shields.io/badge/70-1D7FBF" alt="Open Code"></a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/801_1000.md"><img src="https://img.shields.io/badge/4-FF0000" alt="Videos"></a>
            </td>
        </tr>
        <tr>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/1001_1200.md">1001-1200 papers</a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/1001_1200.md"><img src="https://img.shields.io/badge/200-42BA16" alt="Papers"></a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/1001_1200.md"><img src="https://img.shields.io/badge/125-b31b1b" alt="Preprints"></a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/1001_1200.md"><img src="https://img.shields.io/badge/73-1D7FBF" alt="Open Code"></a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/1001_1200.md"><img src="https://img.shields.io/badge/7-FF0000" alt="Videos"></a>
            </td>
        </tr>
        </tr>
        <tr>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/1201_1400.md">1201-1400 papers</a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/1201_1400.md"><img src="https://img.shields.io/badge/110-42BA16" alt="Papers"></a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/1201_1400.md"><img src="https://img.shields.io/badge/75-b31b1b" alt="Preprints"></a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/1201_1400.md"><img src="https://img.shields.io/badge/47-1D7FBF" alt="Open Code"></a>
            </td>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/1201_1400.md"><img src="https://img.shields.io/badge/1-FF0000" alt="Videos"></a>
            </td>
        </tr>
        <tr>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/1401_1600.md">1401-1600 papers</a>
            </td>
            <td colspan="4" rowspan="5" align="center"><i>Will soon be sorted</i></td>
        </tr>
        <tr>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/1601_1800.md">1601-1800 papers</a>
            </td>
        </tr>
        <tr>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/1801_2000.md">1801-2000 papers</a>
            </td>
        </tr>
        <tr>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/2001_2200.md">2001-2200 papers</a>
            </td>
        </tr>
        <tr>
            <td>
                <a href="https://github.com/DmitryRyumin/AAAI-2024-Papers/blob/main/sections/2024/main/2201_2246.md">2201-2246 papers</a>
            </td>
        </tr>
    </tbody>
</table>

---

## Key Terms

> Will soon be added

---

## Star History

<p align="center">
    <a href="https://star-history.com/#Dmitryryumin/AAAI-2024-Papers&Date" target="_blank">
        <img width="500" src="https://api.star-history.com/svg?repos=Dmitryryumin/AAAI-2024-Papers&type=Date" alt="Star History Chart">
    </a>
<p>


================================================
FILE: code/markdown_to_json_parser.py
================================================
# The code is importing necessary modules for the script to work:
import os
import shutil
import re
import json
from pathlib import Path
from bs4 import BeautifulSoup
import markdown2
from prettytable import PrettyTable
from github import Github, InputGitTreeElement, InputGitAuthor
from urllib.parse import urlsplit, urlunsplit, urlparse, urlunparse, parse_qs


class FileUpdate:
    def __init__(self, path, content):
        self.path = path
        self.content = content


repo_full_name = os.getenv("GITHUB_REPOSITORY")
if repo_full_name:
    owner, repo_name = repo_full_name.split("/")
else:
    owner, repo_name = None, None


class Config:
    GITHUB_TOKEN = os.getenv("INPUT_PAPER_TOKEN") or os.getenv("PAPER_TOKEN")
    GITHUB_WORKSPACE = os.getenv("GITHUB_WORKSPACE", "/github/workspace")
    MARKDOWN_DIRECTORY = "sections"
    OUTPUT_DIRECTORY = "json_data"
    MARKDOWN_DIRECTORY_LOCAL = Path("./sections").resolve()
    OUTPUT_DIRECTORY_LOCAL = Path("./local_json_data").resolve()
    REPO_OWNER = owner
    REPO_NAME = repo_name
    COMMIT_MESSAGE = "Update files"


def print_colored_status(status):
    color_codes = {"No table": 91, "Success": 92, "Error": 91}
    color_code = color_codes.get(status, 0)  # Default to red color if not found
    return f"\033[{color_code}m{status}\033[0m" if color_code else status


def print_colored_count(count, label):
    color_code = 91  # Default to red color for No table and Errors

    if label == "Success" and count > 0:
        color_code = 92  # Green color for Success
    elif label in ["No table", "Errors"] and count == 0:
        color_code = 92  # Green color for No table or Errors when count is 0

    return f"\033[{color_code}m{count}\033[0m"


def is_digits(string):
    pattern = r"^\d+$"

    return bool(re.match(pattern, string)) if string else False


def clear_directory(directory):
    path = Path(directory)
    for item in path.iterdir():
        try:
            if item.is_file():
                item.unlink()
            elif item.is_dir():
                shutil.rmtree(item)
        except Exception as e:
            print(f"Error while deleting {item}: {e}")


def get_github_repository():
    github_token = Config.GITHUB_TOKEN
    if not github_token:
        print("GitHub token not available. Exiting.")
        return None, None

    g = Github(github_token)
    return g, g.get_user(Config.REPO_OWNER).get_repo(Config.REPO_NAME)


def update_branch_reference(repo, commit_sha):
    try:
        repo.get_git_ref(f"heads/{repo.default_branch}").edit(commit_sha)
    except Exception as e:
        print(f"Error updating branch reference: {e}")


def commit_and_update_branch(g, repo, latest_commit, tree):
    try:
        committer = InputGitAuthor(
            name=g.get_user().name,
            email=g.get_user().email,
        )

        commit = repo.create_git_commit(
            message=Config.COMMIT_MESSAGE,
            tree=tree,
            parents=[latest_commit],
            committer=committer,
            author=committer,
        )

        # Update the branch reference to the new commit
        print(f"Old Branch SHA: {repo.get_branch(repo.default_branch).commit.sha}")
        print(
            f"Current Branch Protection: {repo.get_branch(repo.default_branch).protected}"
        )

        update_branch_reference(repo, commit.sha)

        print(f"New Branch SHA: {repo.get_branch(repo.default_branch).commit.sha}")
        print("Files updated successfully.")
    except Exception as e:
        print(f"Error updating files: {e}")


def has_file_changed(repo, file_path, new_content, branch_name):
    try:
        contents = repo.get_contents(file_path, ref=branch_name)
        existing_content = contents.decoded_content.decode("utf-8")
        return existing_content != new_content
    except Exception as e:
        print(f"Exception in has_file_changed: {e}")
        print(f"File Path: {file_path}")
        return True


def create_git_tree_elements(file_updates):
    return [
        InputGitTreeElement(
            path=update.path, mode="100644", type="blob", content=update.content
        )
        for update in file_updates
    ]


def update_repository_with_json(file_updates):
    g, github_repo = get_github_repository()

    if not github_repo:
        return

    if not file_updates:
        print("No changes detected. Exiting.")
        return

    # Check if each file has changed
    updated_files = [
        file_update
        for file_update in file_updates
        if has_file_changed(
            github_repo,
            file_update.path,
            file_update.content,
            github_repo.default_branch,
        )
    ]

    print("All files:", [file_update.path for file_update in file_updates])

    if not updated_files:
        print("No changes detected. Exiting.")
        return

    print("Updated files:", [file_update.path for file_update in updated_files])

    # Get the latest commit
    latest_commit_sha = github_repo.get_branch(github_repo.default_branch).commit.sha
    latest_commit = github_repo.get_git_commit(sha=latest_commit_sha)

    # Create a tree with the updates
    tree_elements = create_git_tree_elements(updated_files)
    tree = github_repo.create_git_tree(tree_elements, base_tree=latest_commit.tree)

    print(f"Latest Commit SHA: {latest_commit.sha}")
    print(f"New Tree SHA: {tree.sha}")

    commit_and_update_branch(g, github_repo, latest_commit, tree)


def find_common_prefix(urls):
    if not urls or not all(urls):
        return ""

    first_parts = urlsplit(urls[0])
    common_prefix = f"{first_parts.scheme}://{first_parts.netloc}"

    path_prefix = first_parts.path

    for url in urls[1:]:
        parsed_url = urlsplit(url)

        if (
            parsed_url.scheme != first_parts.scheme
            or parsed_url.netloc != first_parts.netloc
        ):
            common_prefix = f"{parsed_url.scheme}://{parsed_url.netloc}"
            break

        current_path = parsed_url.path

        common_prefix_len = 0
        for i in range(min(len(path_prefix), len(current_path))):
            if path_prefix[i] == current_path[i]:
                common_prefix_len += 1
            else:
                break

        path_prefix = path_prefix[:common_prefix_len]

    common_prefix = common_prefix.rstrip("/")

    parsed_url = urlparse(common_prefix)
    parsed_url = parsed_url._replace(scheme="")
    url_without_https = urlunparse(parsed_url)
    url_without_slashes = url_without_https.lstrip("/")

    return urlunsplit(("https", url_without_slashes, path_prefix, "", ""))


def extract_relative_url(full_url, base_url):
    if full_url.startswith(base_url):
        trimmed_title_page = full_url[len(base_url) :]
        return trimmed_title_page
    else:
        return full_url


def extract_video_id(url):
    VIDEO_NOT_FOUND = {
        "youtube": None,
        "drive": None,
        "dropbox": None,
        "onedrive": None,
        "loom": None,
    }

    try:
        if not url:
            return VIDEO_NOT_FOUND

        parsed_url = urlparse(url)

        if "youtube.com" in parsed_url.netloc or "youtu.be" in parsed_url.netloc:
            video_id = parse_qs(parsed_url.query).get("v", [None])[
                0
            ] or parsed_url.path.lstrip("/")
            if video_id:
                return {
                    "youtube": video_id,
                    "drive": None,
                    "dropbox": None,
                    "onedrive": None,
                    "loom": None,
                }
            else:
                return VIDEO_NOT_FOUND

        elif "drive.google.com" in parsed_url.netloc:
            return {
                "youtube": None,
                "drive": url,
                "dropbox": None,
                "onedrive": None,
                "loom": None,
            }

        elif "dropbox.com" in parsed_url.netloc:
            return {
                "youtube": None,
                "drive": None,
                "dropbox": url,
                "onedrive": None,
                "loom": None,
            }

        elif "onedrive.com" in parsed_url.netloc:
            return {
                "youtube": None,
                "drive": None,
                "dropbox": None,
                "onedrive": url,
                "loom": None,
            }

        elif "loom.com" in parsed_url.netloc:
            return {
                "youtube": None,
                "drive": None,
                "dropbox": None,
                "onedrive": None,
                "loom": url,
            }

        return VIDEO_NOT_FOUND
    except Exception:
        return VIDEO_NOT_FOUND


def extract_hub_info(url):
    if not url:
        return None

    try:
        username, repo_name = urlparse(url).path.strip("/").split("/")[-2:]
        return f"{username}/{repo_name}" if username and repo_name else None
    except Exception:
        return None


def parse_paper_links(html):
    links = html.find_all("a")

    final_link = None
    ieee_id = None
    arxiv_id = None
    pdf_link = None
    hal_link = None
    researchgate_link = None
    amazonscience_link = None

    for link in links:
        href = link.get("href", "")
        img = link.img
        img_alt = img.get("alt", "").lower() if img else ""

        if "thecvf" in img_alt:
            final_link = href
        elif "ieee xplore" in img_alt:
            ieee_id = urlsplit(href).path.split("/")[-1]
        elif "arxiv" in img_alt and "arxiv.org" in href:
            arxiv_id = urlsplit(href).path.split("/")[-1]
        elif "pdf" in img_alt:
            pdf_link = href
        elif "hal science" in img_alt:
            hal_link = href
        elif "researchgate" in img_alt:
            researchgate_link = href
        elif "amazon science" in img_alt:
            amazonscience_link = href

    return {
        "final": final_link,
        "ieee_id": ieee_id,
        "arxiv_id": arxiv_id,
        "pdf": pdf_link,
        "hal": hal_link,
        "researchgate": researchgate_link,
        "amazonscience": amazonscience_link,
    }


def extract_paper_data(paper_section, columns):
    title_column = columns[0]
    # title = title_column.get_text(strip=True)
    title = (
        title_column.a.encode_contents().decode("utf-8")
        if title_column.a is not None
        else (
            title_column.encode_contents().decode("utf-8")
            if title_column.get_text(strip=True) is not None
            else None
        )
    )

    title = re.sub(r"<(?:br\s*/?>|img[^>]*>)", "", title)
    title = title.strip()

    html_entities = {
        "&amp;": "&",
        "&lt;": "<",
        "&gt;": ">",
        "&quot;": '"',
        "&apos;": "'",
    }
    title = re.sub(
        r"(&\w+;)", lambda x: html_entities.get(x.group(0), x.group(0)), title
    )

    title_link = title_column.find("a")
    title_page = title_link["href"] if title_link else None

    if title and any(column.find("a") for column in columns[1:]):
        links = columns[1].find_all("a")

        web_page_link = next(
            (a for a in links if "page" in a.img.get("alt", "").lower()),
            None,
        )

        web_page = (
            web_page_link["href"]
            if web_page_link and "web" in web_page_link.img.get("alt", "").lower()
            else None
        )
        github_page = (
            web_page_link["href"]
            if web_page_link and "github" in web_page_link.img.get("alt", "").lower()
            else None
        )

        github_link = next(
            (a for a in links if a.img.get("alt", "").lower() == "github"),
            None,
        )
        github = (
            github_link["href"]
            if github_link and "github" in github_link.img.get("alt", "").lower()
            else None
        )
        github_info = extract_hub_info(github)

        gitlab_link = next(
            (a for a in links if a.img.get("alt", "").lower() == "gitlab"),
            None,
        )
        gitlab = (
            gitlab_link["href"]
            if gitlab_link and "gitlab" in gitlab_link.img.get("alt", "").lower()
            else None
        )
        gitlab_info = extract_hub_info(gitlab)

        modelscope_link = next(
            (a for a in links if a.img.get("alt", "").lower() == "modelscope"),
            None,
        )
        modelscope = (
            modelscope_link["href"]
            if modelscope_link
            and "modelscope" in modelscope_link.img.get("alt", "").lower()
            else None
        )

        gitee_link = next(
            (a for a in links if a.img.get("alt", "").lower() == "gitee"),
            None,
        )
        gitee = (
            gitee_link["href"]
            if gitee_link and "gitee" in gitee_link.img.get("alt", "").lower()
            else None
        )

        demo_link = next(
            (
                a
                for a in links
                if any(
                    keyword in a.img.get("alt", "").lower()
                    for keyword in ["hugging face", "hf"]
                )
            ),
            None,
        )
        demo_page = demo_link["href"] if demo_link else None

        colab_link = next(
            (a for a in links if "open in colab" in a.img.get("alt", "").lower()),
            None,
        )
        colab = colab_link["href"] if colab_link else None

        zenodo_link = next(
            (a for a in links if "zenodo" in a.img.get("alt", "").lower()),
            None,
        )
        zenodo = zenodo_link["href"] if zenodo_link else None

        kaggle_link = next(
            (a for a in links if "kaggle" in a.img.get("alt", "").lower()),
            None,
        )
        kaggle = kaggle_link["href"] if kaggle_link else None

        (
            paper_thecvf,
            paper_ieee_id,
            paper_arxiv_id,
            paper_pdf,
            paper_hal,
            paper_researchgate,
            paper_amazon,
        ) = parse_paper_links(columns[2]).values()

        video_link = columns[3].find("a")
        video = video_link["href"] if video_link else None

        (
            video_id_youtube,
            video_drive,
            video_dropbox,
            video_onedrive,
            video_loom,
        ) = extract_video_id(video).values()

        base_url = None
        if title_page and paper_thecvf:
            urls = [title_page, paper_thecvf]
            common_prefix = find_common_prefix(urls)
            base_url = common_prefix.rstrip("/")

            title_page = extract_relative_url(title_page, base_url)
            paper_thecvf = extract_relative_url(paper_thecvf, base_url)

        ieee_id = None
        if is_digits(paper_ieee_id):
            ieee_id = paper_ieee_id

        paper_data = {
            "title": title,
            "base_url": base_url,
            "title_page": title_page,
            "ieee_id": ieee_id,
            "github": github_info,
            "web_page": web_page,
            "github_page": github_page,
            "colab": colab,
            "modelscope": modelscope,
            "gitee": gitee,
            "gitlab": gitlab_info,
            "zenodo": zenodo,
            "kaggle": kaggle,
            "demo_page": demo_page,
            "paper_thecvf": paper_thecvf,
            "paper_arxiv_id": paper_arxiv_id,
            "paper_pdf": paper_pdf,
            "paper_hal_science": paper_hal,
            "paper_researchgate": paper_researchgate,
            "paper_amazon": paper_amazon,
            "youtube_id": video_id_youtube,
            "drive_google": video_drive,
            "dropbox": video_dropbox,
            "onedrive": video_onedrive,
            "loom": video_loom,
            "section": paper_section,
        }

        return paper_data
    else:
        return None


def process_markdown_file(
    markdown_file,
    output_directory,
    counter,
    table,
    success_count,
    no_table_count,
    error_count,
    file_updates,
):
    common_ancestor = Path(
        *Path(markdown_file)
        .resolve()
        .parts[: len(Path(output_directory).resolve().parts)]
    )
    relative_path = Path(
        *Path(markdown_file).resolve().parts[len(common_ancestor.resolve().parts) :]
    )
    json_filename = output_directory.joinpath(relative_path.with_suffix(".json"))

    try:
        with open(markdown_file, "r", encoding="utf-8") as file:
            markdown_content = file.read()

        markdown_content = re.sub(r"<!--.*?-->", "", markdown_content, flags=re.DOTALL)

        html_content = markdown2.markdown(
            text=markdown_content, html4tags=True, extras=["tables"]
        )
        soup = BeautifulSoup(html_content, "html.parser")
        table_in_file = soup.find_all("table")[-1]
        paper_section = soup.find("h2").text

        papers = []

        if table_in_file:
            for row in table_in_file.find_all("tr")[1:]:
                columns = row.find_all("td")[-4:]
                paper_data = extract_paper_data(paper_section, columns)
                if paper_data:
                    papers.append(paper_data)

        if len(papers) == 0:
            table.add_row(
                [counter, markdown_file.name, print_colored_status("No table")]
            )
            no_table_count[0] += 1
        else:
            json_filename.parent.mkdir(parents=True, exist_ok=True)

            with open(json_filename, "w", encoding="utf-8") as file:
                json.dump(papers, file, ensure_ascii=False, indent=2)

            table.add_row(
                [
                    counter,
                    os.path.basename(json_filename),
                    print_colored_status("Success"),
                ],
            )

            json_content = json.dumps(papers, ensure_ascii=False, indent=2)
            file_updates.append(
                FileUpdate(
                    path=f"json_data/{relative_path.with_suffix('.json')}",
                    content=json_content,
                )
            )

            success_count[0] += 1
    except Exception as e:
        table.add_row(
            [
                counter,
                os.path.basename(json_filename),
                print_colored_status(f"Error: {e}"),
            ],
        )
        error_count[0] += 1

    return table, file_updates, success_count, no_table_count, error_count


def main():
    # Check if running in GitHub Actions
    in_actions = os.getenv("GITHUB_ACTIONS") == "true" or os.getenv("CI") == "true"

    # Define the paths based on the environment
    if in_actions:
        # Define the paths using the GitHub workspace
        markdown_directory = Path(Config.GITHUB_WORKSPACE) / Config.MARKDOWN_DIRECTORY
        output_directory = Path(Config.GITHUB_WORKSPACE) / Config.OUTPUT_DIRECTORY
    else:
        # Define local paths
        markdown_directory = Path(Config.MARKDOWN_DIRECTORY_LOCAL)
        output_directory = Path(Config.OUTPUT_DIRECTORY_LOCAL)

    # Add this line at the end to print the paths for verification
    print(f"Markdown Directory: {markdown_directory}")
    print(f"Output Directory: {output_directory}")

    if not output_directory.is_dir():
        output_directory.mkdir(parents=True)
    else:
        clear_directory(output_directory)

    # Create a PrettyTable
    table = PrettyTable(["#", "File", "Status"])
    table.align["File"] = "l"  # Align "File" column to the left

    # Create counters as lists to enable modification within functions
    success_count = [0]
    no_table_count = [0]
    error_count = [0]

    markdown_files = [f for f in markdown_directory.rglob("*.md")]

    file_updates = []

    for counter, markdown_file in enumerate(markdown_files, start=1):
        (
            table,
            file_updates,
            success_count,
            no_table_count,
            error_count,
        ) = process_markdown_file(
            markdown_file,
            output_directory,
            counter,
            table,
            success_count,
            no_table_count,
            error_count,
            file_updates,
        )

    update_repository_with_json(file_updates)

    # Print the PrettyTable
    print(table)

    summary_table = PrettyTable(["Category", "Count"])
    summary_table.align["Category"] = "l"  # Align "Category" column to the left

    # Add rows to the summary table
    summary_table.add_row(["Success", print_colored_count(success_count[0], "Success")])
    summary_table.add_row(
        ["No table", print_colored_count(no_table_count[0], "No table")]
    )
    summary_table.add_row(["Errors", print_colored_count(error_count[0], "Errors")])

    # Print the summary table
    print(summary_table)


if __name__ == "__main__":
    main()


================================================
FILE: json_data/2024/main/1001_1200.json
================================================
[
  {
    "title": "Spatial-Contextual Discrepancy Information Compensation for GAN Inversion",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "ZzqLKED/SDIC",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.07079",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Weakly-Supervised Temporal Action Localization by Inferring Salient Snippet-Feature",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2303.12332",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "SimCalib: Graph Neural Network Calibration based on Similarity between Nodes",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.11858",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "SA<sup>2</sup>VP: Spatially Aligned-and-Adapted Visual Prompt",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "tommy-xq/SA2VP",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.10376",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Hypergraph-guided Disentangled Spectrum Transformer Networks for Near-Infrared Facial Expression Recognition",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.05907",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Exploring Sparse Visual Prompt for Domain Adaptive Dense Prediction",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "Anonymous-012/SVDP",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2303.09792",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Scalable Geometric Fracture Assembly via Co-Creation Space among Assemblers",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "Ruiyuan-Zhang/CCS",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.12340",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Spot the Error: Non-Autoregressive Graphic Layout Generation with Wireframe Locator",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "ffffatgoose/SpotError",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2401.16375",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "High-Fidelity Diffusion-based Image Editing",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.15707",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "SIG: Speaker Identification in Literature via Prompt-based Generation",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.14590",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "RLfOLD: Reinforcement Learning from Online Demonstrations in Urban Autonomous Driving",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "DanielCoelho112/rlfold",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": null,
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Reward Penalties on Augmented States for Solving Richly Constrained RL Effectively",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "xiaomeijiang258/aaaicrl",
    "web_page": null,
    "github_page": "https://xiaomeijiang258.github.io/aaaicrl/",
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2301.11592",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Parsing All Adverse Scenes: Severity-Aware Semantic Segmentation with Mask-Enhanced Cross-Domain Consistency",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "Cuzyoung/PASS",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": null,
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Context-Aware Iteration Policy Network for Efficient Optical Flow Estimation",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.07180",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Regulating AI: Applying Insights from Behavioural Economics and Psychology to the Application of Article 5 of the EU AI Act",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2308.02041",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": "nWPpHYwqpU8",
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Online Boosting Adaptive Learning under Concept Drift for Multistream Classification",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.10841",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Region-Aware Exposure Consistency Network for Mixed Exposure Correction",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "kravrolens/RECNet",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2402.18217",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Unified Framework for Diffusion Generative Models in SO(3): Applications in Computer Vision and Astrophysics",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.11707",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Hardness of Random Reordered Encodings of Parity for Resolution and CDCL",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2402.00542",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Enhancing Evolving Domain Generalization through Dynamic Latent Representations",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2401.08464",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Diverse and Aligned Audio-to-Video Generation via Text-to-Video Model Adaptation",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "guyyariv/TempoTokens",
    "web_page": "https://pages.cs.huji.ac.il/adiyoss-lab/TempoTokens/",
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2309.16429",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "A Convolutional Neural Network Interpretable Framework for Human Ventral Visual Pathway Representation",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "BIT-YangLab/CNN-IF",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": null,
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "BAT: Behavior-Aware Human-Like Trajectory Prediction for Autonomous Driving",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "Petrichor625/BATraj-Behavior-aware-Model",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.06371",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Learning from Ambiguous Demonstrations with Self-Explanation Guided Reinforcement Learning",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "YantianZha/SERLfD",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2110.05286",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "CUDC: A Curiosity-Driven Unsupervised Data Collection Method with Adaptive Temporal Distances for Offline Reinforcement Learning",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.12191",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "MDFL: Multi-Domain Diffusion-Driven Feature Learning",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2311.09520",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Embracing Language Inclusivity and Diversity in CLIP through Continual Language Learning",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "yangbang18/CLFM",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2401.17186",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Omnidirectional Image Super-Resolution via Bi-Projection Fusion",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "W-JG/BPOSR",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": null,
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "History Matters: Temporal Knowledge Editing in Large Language Model",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "Arvid-pku/ATOKE",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.05497",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Fluctuation-based Adaptive Structured Pruning for Large Language Models",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "CASIA-IVA-Lab/FLAP",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.11983",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Hybrid-Supervised Dual-Search: Leveraging Automatic Learning for Loss-Free Multi-Exposure Image Fusion",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "RollingPlain/HSDS_MEF",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2309.01113",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "FPRF: Feed-Forward Photorealistic Style Transfer of Large-Scale 3D Neural Radiance Fields",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "postech-ami/FPRF",
    "web_page": null,
    "github_page": "https://kim-geonu.github.io/FPRF/",
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2401.05516",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Divide and Conquer: Hybrid Pre-Training for Person Search",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "personsearch/PretrainPS",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.07970",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Optimize and Reduce: A Top-Down Approach for Image Vectorization",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "ajevnisek/optimize-and-reduce",
    "web_page": null,
    "github_page": "https://ajevnisek.github.io/optimize-and-reduce/",
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.11334",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Proportional Aggregation of Preferences for Sequential Decision Making",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2306.14858",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": "kjZG89iDzuU",
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Tail-STEAK: Improve Friend Recommendation for Tail Users via Self-Training Enhanced Knowledge Distillation",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "antman9914/Tail-STEAK",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": null,
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": "BSrTZ6vcQK0",
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Limited Query Graph Connectivity Test",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2302.13036",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Gated Attention Coding for Training High-Performance and Efficient Spiking Neural Networks",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "bollossom/GAC",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2308.06582",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "FedASMU: Efficient Asynchronous Federated Learning with Dynamic Staleness-Aware Model Update",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.05770",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Dynamic Budget Throttling in Repeated Second-Price Auctions",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2207.04690",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "ProCC: Progressive Cross-Primitive Compatibility for Open-World Compositional Zero-Shot Learning",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "huofushuo/procc",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2211.12417",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Data Roaming and Quality Assessment for Composed Image Retrieval",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2303.09429",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Frequency Spectrum is more Effective for Multimodal Representation and Fusion: A Multimodal Spectrum Rumor Detector",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "dm4m/FSRU",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.11023",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Task-Driven Causal Feature Distillation: Towards Trustworthy Risk Prediction",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.16113",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "ConsistentEE: A Consistent and Hardness-Guided Early Exiting Method for Accelerating Language Models Inference",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "ZeroNLP/ConsistentEE",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.11882",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Turning Dust into Gold: Distilling Complex Reasoning Capabilities from LLMs by Leveraging Negative Data",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "Yiwei98/TDG",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.12832",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Beyond Entities: A Large-Scale Multi-Modal Knowledge Graph with Triplet Fact Grounding",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "kleinercubs/ImgFact",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": null,
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Cycle-Consistency Learning for Captioning and Grounding",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.15162",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Analytically Tractable Models for Decision Making under Present Bias",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2302.08132",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Mitigating Large Language Model Hallucinations via Autonomous Knowledge Graph-based Retrofitting",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2311.13314",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Neural Network Approximators for Marginal MAP in Probabilistic Circuits",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2402.03621",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Wikiformer: Pre-Training with Structured Information of Wikipedia for Ad-Hoc Retrieval",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "oneal2000/Wikiformer",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.10661",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Rethinking Dimensional Rationale in Graph Contrastive Learning from Causal Perspective",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "ByronJi/DRGCL",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.10401",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Text-to-Image Generation for Abstract Concepts",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2309.14623",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Diagnosing and Rectifying Fake OOD Invariance: A Restructured Causal Approach",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.09758",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Arbitrary-Scale Point Cloud Upsampling by Voxel-based Network with Latent Geometric-Consistent Learning",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": "https://github.com/hikvision-research/3DVision/tree/main/PointUpsampling/PU-VoxelNet",
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2403.05117",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Pay to (Not) Play: Monetizing Impatience in Mobile Games",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.10205",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Exact ASP Counting with Compact Encodings",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "meelgroup/sharpASP",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.11936",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Large Occluded Human Image Completion via Image-Prior Cooperating",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "ZhaoHengrun/LOHC",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": null,
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Expressive Forecasting of 3D Whole-Body Human Motions",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "Dingpx/EAI",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.11972",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "SeqGPT: An Out-of-the-Box Large Language Model for Open Domain Sequence Understanding",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "Alibaba-NLP/SeqGPT",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2308.10529",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Non-Excludable Bilateral Trade between Groups",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.11800",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Learning to Learn in Interactive Constraint Acquisition",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.10795",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "CamoDiffusion: Camouflaged Object Detection via Conditional Diffusion Models",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "Rapisurazurite/CamoDiffusion",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2305.17932",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Density Matters: Improved Core-Set for Active Domain Adaptive Segmentation",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.09595",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Imitate the Good and Avoid the Bad: An Incremental Approach to Safe Reinforcement Learning",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "hmhuy2000/SIM-RL",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.10385",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Multiple Hypothesis Dropout: Estimating the Parameters of Multi-Modal Output Distributions",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.11735",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Batch Normalization is Blind to the First and Second Derivatives of the Loss",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "zzp1012/BN-blindness",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2205.15146",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Solving Satisfiability Modulo Counting for Symbolic and Statistical AI Integration with Provable Guarantees",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2309.08883",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": "GwLONo6Ubcs",
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Towards Equipping Transformer with the Ability of Systematic Compositionality",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.07280",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Peer Learning: Learning Complex Policies in Groups from Scratch via Action Recommendations",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "kramerlab/PeerLearning",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.09950",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "DeepPointMap: Advancing LiDAR SLAM with Unified Neural Descriptors",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.02684",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Rethinking Two-Stage Referring Expression Comprehension: A Novel Grounding and Segmentation Method Modulated by Point",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "VILAN-Lab/PBREC-MT",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": null,
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Noisy Correspondence Learning with Self-Reinforcing Errors Mitigation",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.16478",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Cost Minimization for Equilibrium Transition",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.07603",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Neural Amortized Inference for Nested Multi-Agent Reasoning",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "KJha02/AmortizedNestedReasoning",
    "web_page": "https://www.tshu.io/nested_reasoning/",
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2308.11071",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "MotionMix: Weakly-Supervised Diffusion for Controllable Motion Generation",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "NhatHoang2002/MotionMix",
    "web_page": null,
    "github_page": "https://nhathoang2002.github.io/MotionMix-page/",
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2401.11115",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Simplifying Complex Observation Models in Continuous POMDP Planning with Probabilistic Guarantees and Practice",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2311.07745",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Responsibility in Extensive Form Games",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.07637",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": "P_hCGBK70X4",
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Personalized Reinforcement Learning with a Budget of Policies",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "dimonenka/RL_policy_budget",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2401.06514",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "An Autoregressive Text-to-Graph Framework for Joint Entity and Relation Extraction",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "urchade/ATG",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2401.01326",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Reachability of Fair Allocations via Sequential Exchanges",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.07241",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "HGE: Embedding Temporal Knowledge Graphs in a Product Space of Heterogeneous Geometric Subspaces",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "NacyNiko/HGE",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.13680",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Improving Factual Error Correction by Learning to Inject Factual Errors",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.07049",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Multi-Objective Bayesian Optimization with Active Preference Learning",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2311.13460",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "A Class of Topological Pseudodistances for Fast Comparison of Persistence Diagrams",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "rolan2kn/aaai2024_etd_src",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2402.14489",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "CAVEN: An Embodied Conversational Agent for Efficient Audio-Visual Navigation in Noisy Environments",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2306.04047",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Lyapunov-Stable Deep Equilibrium Models",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2304.12707",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "TD<sup>2</sup>-Net: Toward Denoising and Debiasing for Video Scene Graph Generation",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2401.12479",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Improving Automatic VQA Evaluation using Large Language Models",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2310.02567",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Layer-Wise Representation Fusion for Compositional Generalization",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "thinkaboutzero/LRF",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2307.10799",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "FedA<sup>3</sup>I: Annotation Quality-Aware Aggregation for Federated Medical Image Segmentation against Heterogeneous Annotation Noise",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "wnn2000/FedAAAI",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.12838",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Procedural Level Generation with Diffusion Models from a Single Example",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "shiqi-dai/diffusioncraft",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": null,
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "MM-TTS: Multi-Modal Prompt based Style Transfer for Expressive Text-to-Speech Synthesis",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": "https://multimodal-tts.github.io/",
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.10687",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Contrastive Tuning: A Little Help to Make Masked Autoencoders Forget",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "ml-jku/MAE-CT",
    "web_page": null,
    "github_page": "https://ml-jku.github.io/MAE-CT/",
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2304.10520",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Generating Images of Rare Concepts using Pre-trained Diffusion Models",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "dvirsamuel/SeedSelect",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2304.14530",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": "ZwDPoG5iGT4",
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "The Moderating Effect of Instant Runoff Voting",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2303.09734",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "How to Make Knockout Tournaments more Popular?",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2309.09967",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "On Inference Stability for Diffusion Models",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "VinAIResearch/SA-DPM",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.12431",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "QLABGrad: A Hyperparameter-Free and Convergence-Guaranteed Scheme for Deep Learning",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2302.00252",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Active Learning Guided by Efficient Surrogate Learners",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2301.02761",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Implications of Distance over Redistricting Maps: Central and Outlier Maps",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2203.00872",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Leveraging Normalization Layer in Adapters with Progressive Learning and Adaptive Distillation for Cross-Domain Few-Shot Learning",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.11260",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Domain-Aware Fine-Tuning: Enhancing Neural Network Adaptability",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2308.07728",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Content Filtering with Inattentive Information Consumers",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2205.14060",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "VLM2Scene: Self-Supervised Image-Text-LiDAR Learning with Foundation Models for Autonomous Driving Scene Understanding",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "gbliao/VLM2Scene",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": null,
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Generalized Bradley-Terry Models for Score Estimation from Paired Comparisons",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2308.08644",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Learning Real-World Image De-Weathering with Imperfect Supervision",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "1180300419/imperfect-deweathering",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2310.14958",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Approximate Integer Solution Counts over Linear Arithmetic Constraints",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.08776",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Faster Stochastic Variance Reduction Methods for Compositional MiniMax Optimization",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2308.09604",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Multi-Class Support Vector Machine with Maximizing Minimum Margin",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "zz-haooo/M3SVM",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.06578",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "A Two-Stage Information Extraction Network for Incomplete Multi-View Multi-Label Classification",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "KevinTan10/TSIEN",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": null,
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Chronic Poisoning: Backdoor Attack against Split Learning",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "chaoge123456/chronic_poisoning",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": null,
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "GO-DICE: Goal-Conditioned Option-Aware Offline Imitation Learning via Stationary Distribution Correction Estimation",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.10802",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Online Conversion Rate Prediction via Multi-Interval Screening and Synthesizing under Delayed Feedback",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "NealWalker/MISS",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": null,
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Linear-Time Verification of Data-Aware Processes Modulo Theories via Covers and Automata",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2310.12180",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Motif-Aware Riemannian Graph Neural Network with Generative-Contrastive Learning",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "RiemannGraph/MotifRGC",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2401.01232",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Non-Monotone Sequential Submodular Maximization",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2308.08641",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Emotion Rendering for Conversational Speech Synthesis with Heterogeneous Graph-based Context Modeling",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "walker-hyf/ECSS",
    "web_page": null,
    "github_page": "https://walker-hyf.github.io/ECSS/",
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.11947",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Finding Interpretable Class-Specific Patterns through Efficient Neural Search",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.04311",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Domain Generalization with Vital Phase Augmentation",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "excitedkid/vipaug",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.16451",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Adversarial Purification with the Manifold Hypothesis",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2210.14404",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Cross-Gate MLP with Protein Complex Invariant Embedding is a One-Shot Antibody Designer",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "A4Bio/ADesigner",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2305.09480",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "DiffAIL: Diffusion Adversarial Imitation Learning",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "ML-Group-SDU/DiffAIL",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.06348",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Learning to Unlearn: Instance-Wise Unlearning for Pre-trained Classifiers",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2301.11578",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Learning-Augmented Online Algorithm for Two-Level Ski-Rental Problem",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2402.06715",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Visual Instruction Tuning with Polite Flamingo",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "ChenDelong1999/polite-flamingo",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2307.01003",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Rethinking Propagation for Unsupervised Graph Domain Adaptation",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "Meihan-Liu/24AAAI-A2GNN",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2402.05660",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Arithmetic Feature Interaction is Necessary for Deep Tabular Learning",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "aigc-apps/AMFormer",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2402.02334",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Structural Information Guided Multimodal Pre-Training for Vehicle-Centric Perception",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "Event-AHU/VehicleMAE",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.09812",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": "IL4KUA5NAnk",
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Optimistic Model Rollouts for Pessimistic Offline Policy Optimization",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "George-Chia/ORPO",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2401.05899",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "CIDR: A Cooperative Integrated Dynamic Refining Method for Minimal Feature Removal Problem",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.08157",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Learning Multimodal Volumetric Features for Large-Scale Neuron Tracing",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "Levishery/Flywire-Neuron-Tracing",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2401.03043",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "One-Step Forward and Backtrack: Overcoming Zig-Zagging in Loss-Aware Quantization Training",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "paperProof24/Appendix_BLAQ",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2401.16760",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Not All Tasks are Equally Difficult: Multi-Task Deep Reinforcement Learning with Dynamic Depth Routing",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "DarkDawn233/D2R_MTRL",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.14472",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "VQAttack: Transferable Adversarial Attacks on Visual Question Answering via Pre-trained Models",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "ericyinyzy/VQAttack",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2402.11083",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Contextual Pre-Planning on Reward Machine Abstractions for Enhanced Transfer in Deep Reinforcement Learning",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2307.05209",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "EnMatch: Matchmaking for Better Player Engagement via Neural Combinatorial Optimization",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "anonymouss2023/EnMatch",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": null,
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  },
  {
    "title": "Graph of Thoughts: Solving Elaborate Problems with Large Language Models",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "spcl/graph-of-thoughts",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2308.09687",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1001-1200 papers"
  }
]

================================================
FILE: json_data/2024/main/1201_1400.json
================================================
[
  {
    "title": "Semi-Supervised Active Learning for Video Action Detection",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "AKASH2907/semi_sup_active_learning",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.07169",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1201-1400 papers"
  },
  {
    "title": "DiffSED: Sound Event Detection with Denoising Diffusion",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "sauradip/DiffSED",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2308.07293",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1201-1400 papers"
  },
  {
    "title": "Deep Copula-based Survival Analysis for Dependent Censoring with Identifiability Guarantees",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "WeijiaZhang24/DCSurvival",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.15566",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1201-1400 papers"
  },
  {
    "title": "Task Contamination: Language Models May Not Be Few-Shot Anymore",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.16337",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1201-1400 papers"
  },
  {
    "title": "United We Stand: Using Epoch-Wise Agreement of Ensembles to Combat Overfit",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "uristern123/United-We-Stand-Using-Epoch-wise-Agreement-of-Ensembles-to-Combat-Overfit",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2310.11077",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1201-1400 papers"
  },
  {
    "title": "ESRL: Efficient Sampling-based Reinforcement Learning for Sequence Generation",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2308.02223",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1201-1400 papers"
  },
  {
    "title": "Sparse Bayesian Deep Learning for Cross Domain Medical Image Reconstruction",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "Habseligkeiten87/SBDL",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": null,
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1201-1400 papers"
  },
  {
    "title": "GraFITi: Graphs for Forecasting Irregularly Sampled Time Series",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "ForestsKing/GraFITi",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2305.12932",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1201-1400 papers"
  },
  {
    "title": "Attack Deterministic Conditional Image Generative Models for Diverse and Controllable Generation",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "1911cty/Attack-deterministic-generative-model",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2403.08294",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1201-1400 papers"
  },
  {
    "title": "Multi-Granularity Causal Structure Learning",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.05549",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1201-1400 papers"
  },
  {
    "title": "NeRF-VPT: Learning Novel View Representations with Neural Radiance Fields via View Prompt Tuning",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "Freedomcls/NeRF-VPT",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2403.01325",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1201-1400 papers"
  },
  {
    "title": "Regulating Intermediate 3D Features for Vision-Centric Autonomous Driving",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "cskkxjk/Vampire",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.11837",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1201-1400 papers"
  },
  {
    "title": "ADA-GAD: Anomaly-Denoised Autoencoders for Graph Anomaly Detection",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "jweihe/ADA-GAD",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.14535",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1201-1400 papers"
  },
  {
    "title": "Distributional Off-Policy Evaluation for Slate Recommendations",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "shreyasc-13/SUnO",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2308.14165",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1201-1400 papers"
  },
  {
    "title": "Optimal Transport with Tempered Exponential Measures",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2309.04015",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1201-1400 papers"
  },
  {
    "title": "Cross-Class Feature Augmentation for Class Incremental Learning",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2304.01899",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1201-1400 papers"
  },
  {
    "title": "The Complexity of Optimizing Atomic Congestion",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.10219",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1201-1400 papers"
  },
  {
    "title": "Protein 3D Graph Structure Learning for Robust Structure-based Protein Property Prediction",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2310.11466",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1201-1400 papers"
  },
  {
    "title": "Federated X-Armed Bandit",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2205.15268",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1201-1400 papers"
  },
  {
    "title": "Decoupled Textual Embeddings for Customized Image Generation",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "PrototypeNx/DETEX",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.11826",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1201-1400 papers"
  },
  {
    "title": "PointAttN: You Only Need Attention for Point Cloud Completion",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "ohhhyeahhh/PointAttN",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2203.08485",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1201-1400 papers"
  },
  {
    "title": "SSMG: Spatial-Semantic Map Guided Diffusion Model for Free-Form Layout-to-Image Generation",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2308.10156",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1201-1400 papers"
  },
  {
    "title": "PNeRFLoc: Visual Localization with Point-based Neural Radiance Fields",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "BoMingZhao/PNeRFLoc",
    "web_page": null,
    "github_page": "https://zju3dv.github.io/PNeRFLoc/",
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.10649",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1201-1400 papers"
  },
  {
    "title": "Measuring Self-Supervised Representation Quality for Downstream Classification using Discriminative Features",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2203.01881",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1201-1400 papers"
  },
  {
    "title": "Once and for All: Universal Transferable Adversarial Perturbation against Deep Hashing-based Facial Image Retrieval",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "t2222l/UTAP",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": null,
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1201-1400 papers"
  },
  {
    "title": "Benchmarking Large Language Models on Controllable Generation under Diversified Instructions",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "Xt-cyh/CoDI-Eval",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2401.00690",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1201-1400 papers"
  },
  {
    "title": "Transformer-based Selective Super-Resolution for Efficient Image Refinement",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "destiny301/SSR",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.05803",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1201-1400 papers"
  },
  {
    "title": "Point Cloud Part Editing: Segmentation, Generation, Assembly, and Selection",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "kaiyizhang/SGAS",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.11867",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1201-1400 papers"
  },
  {
    "title": "Neural Oscillators for Generalization of Physics-Informed Machine Learning",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2308.08989",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": "zJExHI-MYvE",
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1201-1400 papers"
  },
  {
    "title": "Maximizing Nash Social Welfare under Two-Sided Preferences",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2312.09167",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1201-1400 papers"
  },
  {
    "title": "Fast Machine Unlearning without Retraining through Selective Synaptic Dampening",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "if-loops/selective-synaptic-dampening",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2308.07707",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1201-1400 papers"
  },
  {
    "title": "NeSyFOLD: A Framework for Interpretable Image Classification",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2301.12667",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1201-1400 papers"
  },
  {
    "title": "MESED: A Multi-Modal Entity Set Expansion Dataset with Fine-Grained Semantic Classes and Hard Negative Entities",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "THUKElab/MESED",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2307.14878",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1201-1400 papers"
  },
  {
    "title": "Decoupling Degradations with Recurrent Network for Video Restoration in Under-Display Camera",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "ChengxuLiu/DDRNet",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2403.05660",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1201-1400 papers"
  },
  {
    "title": "Learning Temporal Resolution in Spectrogram for Audio Classification",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2210.01719",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1201-1400 papers"
  },
  {
    "title": "FLAME: A Small Language Model for Spreadsheet Formulas",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": null,
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": "2301.13779",
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1201-1400 papers"
  },
  {
    "title": "A Robust Mutual-Reinforcing Framework for 3D Multi-Modal Medical Image Fusion based on Visual-Semantic Consistency",
    "base_url": null,
    "title_page": null,
    "ieee_id": null,
    "github": "HaoZhang1018/RMR-Fusion",
    "web_page": null,
    "github_page": null,
    "colab": null,
    "modelscope": null,
    "gitee": null,
    "gitlab": null,
    "zenodo": null,
    "kaggle": null,
    "demo_page": null,
    "paper_thecvf": null,
    "paper_arxiv_id": null,
    "paper_pdf": null,
    "paper_hal_science": null,
    "paper_researchgate": null,
    "paper_amazon": null,
    "youtube_id": null,
    "drive_google": null,
    "dropbox": null,
    "onedrive": null,
    "loom": null,
    "section": "1201-1400 papers"
  },
  
Download .txt
gitextract_v9_t1iaz/

├── .flake8
├── .github/
│   └── workflows/
│       ├── copy_parse_markdown.yml
│       ├── parse_markdown.yml
│       └── sync_papers_with_hf.yml
├── .gitignore
├── CODE_OF_CONDUCT.md
├── LICENSE
├── README.md
├── code/
│   └── markdown_to_json_parser.py
├── json_data/
│   └── 2024/
│       └── main/
│           ├── 1001_1200.json
│           ├── 1201_1400.json
│           ├── 1401_1600.json
│           ├── 1601_1800.json
│           ├── 1801_2000.json
│           ├── 1_200.json
│           ├── 2001_2100.json
│           ├── 2001_2119.json
│           ├── 2001_2140.json
│           ├── 2001_2157.json
│           ├── 2001_2191.json
│           ├── 2001_2200.json
│           ├── 201_400.json
│           ├── 2201_2224.json
│           ├── 2201_2246.json
│           ├── 401_600.json
│           ├── 601_800.json
│           ├── 801_1000.json
│           ├── application_domains.json
│           ├── computer_vision.json
│           ├── constraint_satisfaction_and_optimization.json
│           ├── data_mining_and_knowledge_management.json
│           ├── game_theory_and_economic_paradigms.json
│           ├── humans_and_ai.json
│           ├── intelligent_robots.json
│           ├── knowledge_representation_and_reasoning.json
│           ├── machine_learning.json
│           ├── multiagent_systems.json
│           ├── natural_language_processing.json
│           ├── philosophy_and_ethics_of_ai.json
│           ├── planning_routing_and_scheduling.json
│           ├── reasoning_under_uncertainty.json
│           ├── safe_robust_and_responsible_ai.json
│           ├── search_and_optimization.json
│           └── сognitive_modeling_and_cognitive_systems.json
├── scripts/
│   ├── compare_files.sh
│   ├── show_file_content.sh
│   └── update_repo.sh
└── sections/
    └── 2024/
        └── main/
            ├── 1001_1200.md
            ├── 1201_1400.md
            ├── 1401_1600.md
            ├── 1601_1800.md
            ├── 1801_2000.md
            ├── 1_200.md
            ├── 2001_2200.md
            ├── 201_400.md
            ├── 2201_2246.md
            ├── 401_600.md
            ├── 601_800.md
            ├── 801_1000.md
            ├── application_domains.md
            ├── computer_vision.md
            ├── constraint_satisfaction_and_optimization.md
            ├── data_mining_and_knowledge_management.md
            ├── game_theory_and_economic_paradigms.md
            ├── humans_and_ai.md
            ├── intelligent_robots.md
            ├── knowledge_representation_and_reasoning.md
            ├── machine_learning.md
            ├── multiagent_systems.md
            ├── natural_language_processing.md
            ├── philosophy_and_ethics_of_ai.md
            ├── planning_routing_and_scheduling.md
            ├── reasoning_under_uncertainty.md
            ├── safe_robust_and_responsible_ai.md
            ├── search_and_optimization.md
            └── сognitive_modeling_and_cognitive_systems.md
Download .txt
SYMBOL INDEX (21 symbols across 1 files)

FILE: code/markdown_to_json_parser.py
  class FileUpdate (line 14) | class FileUpdate:
    method __init__ (line 15) | def __init__(self, path, content):
  class Config (line 27) | class Config:
  function print_colored_status (line 39) | def print_colored_status(status):
  function print_colored_count (line 45) | def print_colored_count(count, label):
  function is_digits (line 56) | def is_digits(string):
  function clear_directory (line 62) | def clear_directory(directory):
  function get_github_repository (line 74) | def get_github_repository():
  function update_branch_reference (line 84) | def update_branch_reference(repo, commit_sha):
  function commit_and_update_branch (line 91) | def commit_and_update_branch(g, repo, latest_commit, tree):
  function has_file_changed (line 120) | def has_file_changed(repo, file_path, new_content, branch_name):
  function create_git_tree_elements (line 131) | def create_git_tree_elements(file_updates):
  function update_repository_with_json (line 140) | def update_repository_with_json(file_updates):
  function find_common_prefix (line 184) | def find_common_prefix(urls):
  function extract_relative_url (line 224) | def extract_relative_url(full_url, base_url):
  function extract_video_id (line 232) | def extract_video_id(url):
  function extract_hub_info (line 303) | def extract_hub_info(url):
  function parse_paper_links (line 314) | def parse_paper_links(html):
  function extract_paper_data (line 356) | def extract_paper_data(paper_section, columns):
  function process_markdown_file (line 547) | def process_markdown_file(
  function main (line 630) | def main():
Condensed preview — 76 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (5,133K chars).
[
  {
    "path": ".flake8",
    "chars": 94,
    "preview": "; https://www.flake8rules.com/\n\n[flake8]\nmax-line-length = 120\nignore = E203, E402, E741, W503"
  },
  {
    "path": ".github/workflows/copy_parse_markdown.yml",
    "chars": 5578,
    "preview": "name: Copy Parse Markdown and Generate JSON from Source Repo\n\non:\n  workflow_dispatch:\n    inputs:\n      source_repo:\n  "
  },
  {
    "path": ".github/workflows/parse_markdown.yml",
    "chars": 1318,
    "preview": "name: Parse Markdown and Generate JSON\n\non:\n  schedule:\n    - cron: '0 0 * * *' # 00:00 UTC\n  workflow_dispatch:\n\njobs:\n"
  },
  {
    "path": ".github/workflows/sync_papers_with_hf.yml",
    "chars": 3315,
    "preview": "name: Sync Hugging Face App\n\non:\n  schedule:\n    - cron: '0 4 * * *' # 04:00 UTC\n  workflow_dispatch:\n\njobs:\n  sync-hf:\n"
  },
  {
    "path": ".gitignore",
    "chars": 2275,
    "preview": "# Compiled source #\n###################\n*.com\n*.class\n*.dll\n*.exe\n*.o\n*.so\n*.pyc\n\n# Packages #\n############\n# it's bette"
  },
  {
    "path": "CODE_OF_CONDUCT.md",
    "chars": 3540,
    "preview": "# Code of Conduct\n\n## Our Pledge\n\nIn the interest of fostering an open and welcoming environment, we as\ncontributors and"
  },
  {
    "path": "LICENSE",
    "chars": 1070,
    "preview": "MIT License\n\nCopyright (c) 2024 Dmitry Ryumin\n\nPermission is hereby granted, free of charge, to any person obtaining a c"
  },
  {
    "path": "README.md",
    "chars": 35123,
    "preview": "<p align=\"center\">\n  <img src=\"https://capsule-render.vercel.app/api?type=waving&height=115&color=2C2A2E&text=AAAI-2024-"
  },
  {
    "path": "code/markdown_to_json_parser.py",
    "chars": 20819,
    "preview": "# The code is importing necessary modules for the script to work:\nimport os\nimport shutil\nimport re\nimport json\nfrom pat"
  },
  {
    "path": "json_data/2024/main/1001_1200.json",
    "chars": 99127,
    "preview": "[\n  {\n    \"title\": \"Spatial-Contextual Discrepancy Information Compensation for GAN Inversion\",\n    \"base_url\": null,\n  "
  },
  {
    "path": "json_data/2024/main/1201_1400.json",
    "chars": 98427,
    "preview": "[\n  {\n    \"title\": \"Semi-Supervised Active Learning for Video Action Detection\",\n    \"base_url\": null,\n    \"title_page\":"
  },
  {
    "path": "json_data/2024/main/1401_1600.json",
    "chars": 104170,
    "preview": "[\n  {\n    \"title\": \"Well, Now We Know! Unveiling Sarcasm: Initiating and Exploring Multimodal\",\n    \"base_url\": null,\n  "
  },
  {
    "path": "json_data/2024/main/1601_1800.json",
    "chars": 96787,
    "preview": "[\n  {\n    \"title\": \"Gradual Residuals Alignment: A Dual-Stream Framework for GAN Inversion and\",\n    \"base_url\": null,\n "
  },
  {
    "path": "json_data/2024/main/1801_2000.json",
    "chars": 95257,
    "preview": "[\n  {\n    \"title\": \"Abstract Action Scheduling for Optimal Temporal Planning via OMT\",\n    \"base_url\": null,\n    \"title_"
  },
  {
    "path": "json_data/2024/main/1_200.json",
    "chars": 100107,
    "preview": "[\n  {\n    \"title\": \"Attention Disturbance and Dual-Path Constraint Network for Occluded Person Re-Identification\",\n    \""
  },
  {
    "path": "json_data/2024/main/2001_2100.json",
    "chars": 15544,
    "preview": "[\n  {\n    \"title\": \"Progressive Distillation Based on Masked Generation Feature Method for\",\n    \"base_url\": null,\n    \""
  },
  {
    "path": "json_data/2024/main/2001_2119.json",
    "chars": 25139,
    "preview": "[\n  {\n    \"title\": \"Progressive Distillation Based on Masked Generation Feature Method for\",\n    \"base_url\": null,\n    \""
  },
  {
    "path": "json_data/2024/main/2001_2140.json",
    "chars": 31950,
    "preview": "[\n  {\n    \"title\": \"Progressive Distillation Based on Masked Generation Feature Method for\",\n    \"base_url\": null,\n    \""
  },
  {
    "path": "json_data/2024/main/2001_2157.json",
    "chars": 40913,
    "preview": "[\n  {\n    \"title\": \"Progressive Distillation Based on Masked Generation Feature Method for\",\n    \"base_url\": null,\n    \""
  },
  {
    "path": "json_data/2024/main/2001_2191.json",
    "chars": 54412,
    "preview": "[\n  {\n    \"title\": \"Progressive Distillation Based on Masked Generation Feature Method for\",\n    \"base_url\": null,\n    \""
  },
  {
    "path": "json_data/2024/main/2001_2200.json",
    "chars": 56789,
    "preview": "[\n  {\n    \"title\": \"Progressive Distillation Based on Masked Generation Feature Method for\",\n    \"base_url\": null,\n    \""
  },
  {
    "path": "json_data/2024/main/201_400.json",
    "chars": 93656,
    "preview": "[\n  {\n    \"title\": \"Balancing Humans and Machines: A Study on Integration Scale and Its Impact on Collaborative Performa"
  },
  {
    "path": "json_data/2024/main/2201_2224.json",
    "chars": 9671,
    "preview": "[\n  {\n    \"title\": \"End-to-End Verification for Subgraph Solving\",\n    \"base_url\": null,\n    \"title_page\": null,\n    \"ie"
  },
  {
    "path": "json_data/2024/main/2201_2246.json",
    "chars": 18714,
    "preview": "[\n  {\n    \"title\": \"End-to-End Verification for Subgraph Solving\",\n    \"base_url\": null,\n    \"title_page\": null,\n    \"ie"
  },
  {
    "path": "json_data/2024/main/401_600.json",
    "chars": 86672,
    "preview": "[\n  {\n    \"title\": \"Orthogonal Dictionary Guided Shape Completion Network for Point Cloud\",\n    \"base_url\": null,\n    \"t"
  },
  {
    "path": "json_data/2024/main/601_800.json",
    "chars": 95175,
    "preview": "[\n  {\n    \"title\": \"Root Cause Explanation of Outliers under Noisy Mechanisms\",\n    \"base_url\": null,\n    \"title_page\": "
  },
  {
    "path": "json_data/2024/main/801_1000.json",
    "chars": 85380,
    "preview": "[\n  {\n    \"title\": \"TaskLAMA: Probing the Complex Task Understanding of Language Models\",\n    \"base_url\": null,\n    \"tit"
  },
  {
    "path": "json_data/2024/main/application_domains.json",
    "chars": 38415,
    "preview": "[\n  {\n    \"title\": \"A Multi-Modal Contrastive Diffusion Model for Therapeutic Peptide Generation\",\n    \"base_url\": null,"
  },
  {
    "path": "json_data/2024/main/computer_vision.json",
    "chars": 606101,
    "preview": "[\n  {\n    \"title\": \"DreamStyler: Paint by Style Inversion with Text-to-Image Diffusion Models\",\n    \"base_url\": null,\n  "
  },
  {
    "path": "json_data/2024/main/constraint_satisfaction_and_optimization.json",
    "chars": 27038,
    "preview": "[\n  {\n    \"title\": \"Parameterization of (Partial) Maximum Satisfiability above Matching in a Variable-Clause Graph\",\n   "
  },
  {
    "path": "json_data/2024/main/data_mining_and_knowledge_management.json",
    "chars": 103767,
    "preview": "[\n  {\n    \"title\": \"Multimodal Graph Neural Architecture Search under Distribution Shifts\",\n    \"base_url\": null,\n    \"t"
  },
  {
    "path": "json_data/2024/main/game_theory_and_economic_paradigms.json",
    "chars": 48712,
    "preview": "[\n  {\n    \"title\": \"Analytically Tractable Models for Decision Making under Present Bias\",\n    \"base_url\": null,\n    \"ti"
  },
  {
    "path": "json_data/2024/main/humans_and_ai.json",
    "chars": 23795,
    "preview": "[\n  {\n    \"title\": \"Explaining Reinforcement Learning Agents through Counterfactual Action Outcomes\",\n    \"base_url\": nu"
  },
  {
    "path": "json_data/2024/main/intelligent_robots.json",
    "chars": 12415,
    "preview": "[\n  {\n    \"title\": \"Optimal Makespan in a Minute Timespan! A Scalable Multi-Robot Goal Assignment Algorithm for Minimizi"
  },
  {
    "path": "json_data/2024/main/knowledge_representation_and_reasoning.json",
    "chars": 28800,
    "preview": "[\n  {\n    \"title\": \"Complexity of Credulous and Skeptical Acceptance in Epistemic Argumentation Framework\",\n    \"base_ur"
  },
  {
    "path": "json_data/2024/main/machine_learning.json",
    "chars": 541791,
    "preview": "[\n  {\n    \"title\": \"Prot2Text: Multimodal Protein’s Function Generation with GNNs and Transformers\",\n    \"base_url\": nul"
  },
  {
    "path": "json_data/2024/main/multiagent_systems.json",
    "chars": 29389,
    "preview": "[\n  {\n    \"title\": \"Improved Anonymous Multi-Agent Path Finding Algorithm\",\n    \"base_url\": null,\n    \"title_page\": \"htt"
  },
  {
    "path": "json_data/2024/main/natural_language_processing.json",
    "chars": 182955,
    "preview": "[\n  {\n    \"title\": \"Frame Semantic Role Labeling Using Arbitrary-Order Conditional Random Fields\",\n    \"base_url\": null,"
  },
  {
    "path": "json_data/2024/main/philosophy_and_ethics_of_ai.json",
    "chars": 18051,
    "preview": "[\n  {\n    \"title\": \"Quality-Diversity Generative Sampling for Learning with Synthetic Data\",\n    \"base_url\": null,\n    \""
  },
  {
    "path": "json_data/2024/main/planning_routing_and_scheduling.json",
    "chars": 23775,
    "preview": "[\n  {\n    \"title\": \"Learning Planning Domains from Non-redundant Fully-Observed Traces: Theoretical Foundations and Comp"
  },
  {
    "path": "json_data/2024/main/reasoning_under_uncertainty.json",
    "chars": 27887,
    "preview": "[\n  {\n    \"title\": \"s-ID: Causal Effect Identification in a Sub-population\",\n    \"base_url\": null,\n    \"title_page\": \"ht"
  },
  {
    "path": "json_data/2024/main/safe_robust_and_responsible_ai.json",
    "chars": 83041,
    "preview": "[\n  {\n    \"title\": \"ImageCaptioner2: Image Captioner for Image Captioning Bias Amplification Assessment\",\n    \"base_url\""
  },
  {
    "path": "json_data/2024/main/search_and_optimization.json",
    "chars": 24140,
    "preview": "[\n  {\n    \"title\": \"DOGE-Train: Discrete Optimization on GPU with End-to-End Training\",\n    \"base_url\": null,\n    \"title"
  },
  {
    "path": "json_data/2024/main/сognitive_modeling_and_cognitive_systems.json",
    "chars": 19951,
    "preview": "[\n  {\n    \"title\": \"Operationalizing Essential Characteristics of Creativity in a Computational System for Music Composi"
  },
  {
    "path": "scripts/compare_files.sh",
    "chars": 2152,
    "preview": "#!/bin/bash\n\n# Define colors\nRED='\\033[0;31m'\nGREEN='\\033[0;32m'\nNC='\\033[0m' # No Color\n\nSOURCE_DIR=\"$1\"\nTARGET_DIR=\"$2"
  },
  {
    "path": "scripts/show_file_content.sh",
    "chars": 350,
    "preview": "#!/bin/bash\n\nshow_file_content() {\n  local file_path=$1\n  local display_file_contents=$2\n\n  if [[ -f \"$file_path\" ]]; th"
  },
  {
    "path": "scripts/update_repo.sh",
    "chars": 518,
    "preview": "#!/bin/bash\n\nTARGET_DIR=\"$1\"\nEMAIL=\"$2\"\nUSERNAME=\"$3\"\nJSON_DATA_PATH=\"$4\"\nHF_USERNAME=\"$5\"\nHF_TOKEN=\"$6\"\nHF_REPO=\"$7\"\n\n#"
  },
  {
    "path": "sections/2024/main/1001_1200.md",
    "chars": 52188,
    "preview": "# AAAI-2024-Papers\n\n<table>\n    <tr>\n        <td><strong>Application</strong></td>\n        <td>\n            <a href=\"htt"
  },
  {
    "path": "sections/2024/main/1201_1400.md",
    "chars": 44821,
    "preview": "# AAAI-2024-Papers\n\n<table>\n    <tr>\n        <td><strong>Application</strong></td>\n        <td>\n            <a href=\"htt"
  },
  {
    "path": "sections/2024/main/1401_1600.md",
    "chars": 34421,
    "preview": "# AAAI-2024-Papers\n\n<table>\n    <tr>\n        <td><strong>Application</strong></td>\n        <td>\n            <a href=\"htt"
  },
  {
    "path": "sections/2024/main/1601_1800.md",
    "chars": 33589,
    "preview": "# AAAI-2024-Papers\n\n<table>\n    <tr>\n        <td><strong>Application</strong></td>\n        <td>\n            <a href=\"htt"
  },
  {
    "path": "sections/2024/main/1801_2000.md",
    "chars": 33257,
    "preview": "# AAAI-2024-Papers\n\n<table>\n    <tr>\n        <td><strong>Application</strong></td>\n        <td>\n            <a href=\"htt"
  },
  {
    "path": "sections/2024/main/1_200.md",
    "chars": 53734,
    "preview": "# AAAI-2024-Papers\n\n<table>\n    <tr>\n        <td><strong>Application</strong></td>\n        <td>\n            <a href=\"htt"
  },
  {
    "path": "sections/2024/main/2001_2200.md",
    "chars": 29060,
    "preview": "# AAAI-2024-Papers\n\n<table>\n    <tr>\n        <td><strong>Application</strong></td>\n        <td>\n            <a href=\"htt"
  },
  {
    "path": "sections/2024/main/201_400.md",
    "chars": 51553,
    "preview": "# AAAI-2024-Papers\n\n<table>\n    <tr>\n        <td><strong>Application</strong></td>\n        <td>\n            <a href=\"htt"
  },
  {
    "path": "sections/2024/main/2201_2246.md",
    "chars": 8374,
    "preview": "# AAAI-2024-Papers\n\n<table>\n    <tr>\n        <td><strong>Application</strong></td>\n        <td>\n            <a href=\"htt"
  },
  {
    "path": "sections/2024/main/401_600.md",
    "chars": 50921,
    "preview": "# AAAI-2024-Papers\n\n<table>\n    <tr>\n        <td><strong>Application</strong></td>\n        <td>\n            <a href=\"htt"
  },
  {
    "path": "sections/2024/main/601_800.md",
    "chars": 51045,
    "preview": "# AAAI-2024-Papers\n\n<table>\n    <tr>\n        <td><strong>Application</strong></td>\n        <td>\n            <a href=\"htt"
  },
  {
    "path": "sections/2024/main/801_1000.md",
    "chars": 50032,
    "preview": "# AAAI-2024-Papers\n\n<table>\n    <tr>\n        <td><strong>Application</strong></td>\n        <td>\n            <a href=\"htt"
  },
  {
    "path": "sections/2024/main/application_domains.md",
    "chars": 26859,
    "preview": "# AAAI-2024-Papers\n\n<table>\n    <tr>\n        <td><strong>Application</strong></td>\n        <td>\n            <a href=\"htt"
  },
  {
    "path": "sections/2024/main/computer_vision.md",
    "chars": 392699,
    "preview": "# AAAI-2024-Papers\n\n<table>\n    <tr>\n        <td><strong>Application</strong></td>\n        <td>\n            <a href=\"htt"
  },
  {
    "path": "sections/2024/main/constraint_satisfaction_and_optimization.md",
    "chars": 19281,
    "preview": "# AAAI-2024-Papers\n\n<table>\n    <tr>\n        <td><strong>Application</strong></td>\n        <td>\n            <a href=\"htt"
  },
  {
    "path": "sections/2024/main/data_mining_and_knowledge_management.md",
    "chars": 59071,
    "preview": "# AAAI-2024-Papers\n\n<table>\n    <tr>\n        <td><strong>Application</strong></td>\n        <td>\n            <a href=\"htt"
  },
  {
    "path": "sections/2024/main/game_theory_and_economic_paradigms.md",
    "chars": 27540,
    "preview": "# AAAI-2024-Papers\n\n<table>\n    <tr>\n        <td><strong>Application</strong></td>\n        <td>\n            <a href=\"htt"
  },
  {
    "path": "sections/2024/main/humans_and_ai.md",
    "chars": 17426,
    "preview": "# AAAI-2024-Papers\n\n<table>\n    <tr>\n        <td><strong>Application</strong></td>\n        <td>\n            <a href=\"htt"
  },
  {
    "path": "sections/2024/main/intelligent_robots.md",
    "chars": 10865,
    "preview": "# AAAI-2024-Papers\n\n<table>\n    <tr>\n        <td><strong>Application</strong></td>\n        <td>\n            <a href=\"htt"
  },
  {
    "path": "sections/2024/main/knowledge_representation_and_reasoning.md",
    "chars": 17793,
    "preview": "# AAAI-2024-Papers\n\n<table>\n    <tr>\n        <td><strong>Application</strong></td>\n        <td>\n            <a href=\"htt"
  },
  {
    "path": "sections/2024/main/machine_learning.md",
    "chars": 318171,
    "preview": "# AAAI-2024-Papers\n\n<table>\n    <tr>\n        <td><strong>Application</strong></td>\n        <td>\n            <a href=\"htt"
  },
  {
    "path": "sections/2024/main/multiagent_systems.md",
    "chars": 18520,
    "preview": "# AAAI-2024-Papers\n\n<table>\n    <tr>\n        <td><strong>Application</strong></td>\n        <td>\n            <a href=\"htt"
  },
  {
    "path": "sections/2024/main/natural_language_processing.md",
    "chars": 107019,
    "preview": "# AAAI-2024-Papers\n\n<table>\n    <tr>\n        <td><strong>Application</strong></td>\n        <td>\n            <a href=\"htt"
  },
  {
    "path": "sections/2024/main/philosophy_and_ethics_of_ai.md",
    "chars": 12291,
    "preview": "# AAAI-2024-Papers\n\n<table>\n    <tr>\n        <td><strong>Application</strong></td>\n        <td>\n            <a href=\"htt"
  },
  {
    "path": "sections/2024/main/planning_routing_and_scheduling.md",
    "chars": 15101,
    "preview": "# AAAI-2024-Papers\n\n<table>\n    <tr>\n        <td><strong>Application</strong></td>\n        <td>\n            <a href=\"htt"
  },
  {
    "path": "sections/2024/main/reasoning_under_uncertainty.md",
    "chars": 17605,
    "preview": "# AAAI-2024-Papers\n\n<table>\n    <tr>\n        <td><strong>Application</strong></td>\n        <td>\n            <a href=\"htt"
  },
  {
    "path": "sections/2024/main/safe_robust_and_responsible_ai.md",
    "chars": 49811,
    "preview": "# AAAI-2024-Papers\n\n<table>\n    <tr>\n        <td><strong>Application</strong></td>\n        <td>\n            <a href=\"htt"
  },
  {
    "path": "sections/2024/main/search_and_optimization.md",
    "chars": 15314,
    "preview": "# AAAI-2024-Papers\n\n<table>\n    <tr>\n        <td><strong>Application</strong></td>\n        <td>\n            <a href=\"htt"
  },
  {
    "path": "sections/2024/main/сognitive_modeling_and_cognitive_systems.md",
    "chars": 15422,
    "preview": "# AAAI-2024-Papers\n\n<table>\n    <tr>\n        <td><strong>Application</strong></td>\n        <td>\n            <a href=\"htt"
  }
]

About this extraction

This page contains the full source code of the DmitryRyumin/AAAI-2024-Papers GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 76 files (4.5 MB), approximately 1.2M tokens, and a symbol index with 21 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!