├── .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 ├── images └── AAAI2024-banner.png ├── 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 /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/workflows/copy_parse_markdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/.github/workflows/copy_parse_markdown.yml -------------------------------------------------------------------------------- /.github/workflows/parse_markdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/.github/workflows/parse_markdown.yml -------------------------------------------------------------------------------- /.github/workflows/sync_papers_with_hf.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/.github/workflows/sync_papers_with_hf.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/README.md -------------------------------------------------------------------------------- /code/markdown_to_json_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/code/markdown_to_json_parser.py -------------------------------------------------------------------------------- /images/AAAI2024-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/images/AAAI2024-banner.png -------------------------------------------------------------------------------- /json_data/2024/main/1001_1200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/json_data/2024/main/1001_1200.json -------------------------------------------------------------------------------- /json_data/2024/main/1201_1400.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/json_data/2024/main/1201_1400.json -------------------------------------------------------------------------------- /json_data/2024/main/1401_1600.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/json_data/2024/main/1401_1600.json -------------------------------------------------------------------------------- /json_data/2024/main/1601_1800.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/json_data/2024/main/1601_1800.json -------------------------------------------------------------------------------- /json_data/2024/main/1801_2000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/json_data/2024/main/1801_2000.json -------------------------------------------------------------------------------- /json_data/2024/main/1_200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/json_data/2024/main/1_200.json -------------------------------------------------------------------------------- /json_data/2024/main/2001_2100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/json_data/2024/main/2001_2100.json -------------------------------------------------------------------------------- /json_data/2024/main/2001_2119.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/json_data/2024/main/2001_2119.json -------------------------------------------------------------------------------- /json_data/2024/main/2001_2140.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/json_data/2024/main/2001_2140.json -------------------------------------------------------------------------------- /json_data/2024/main/2001_2157.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/json_data/2024/main/2001_2157.json -------------------------------------------------------------------------------- /json_data/2024/main/2001_2191.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/json_data/2024/main/2001_2191.json -------------------------------------------------------------------------------- /json_data/2024/main/2001_2200.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/json_data/2024/main/2001_2200.json -------------------------------------------------------------------------------- /json_data/2024/main/201_400.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/json_data/2024/main/201_400.json -------------------------------------------------------------------------------- /json_data/2024/main/2201_2224.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/json_data/2024/main/2201_2224.json -------------------------------------------------------------------------------- /json_data/2024/main/2201_2246.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/json_data/2024/main/2201_2246.json -------------------------------------------------------------------------------- /json_data/2024/main/401_600.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/json_data/2024/main/401_600.json -------------------------------------------------------------------------------- /json_data/2024/main/601_800.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/json_data/2024/main/601_800.json -------------------------------------------------------------------------------- /json_data/2024/main/801_1000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/json_data/2024/main/801_1000.json -------------------------------------------------------------------------------- /json_data/2024/main/application_domains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/json_data/2024/main/application_domains.json -------------------------------------------------------------------------------- /json_data/2024/main/computer_vision.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/json_data/2024/main/computer_vision.json -------------------------------------------------------------------------------- /json_data/2024/main/constraint_satisfaction_and_optimization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/json_data/2024/main/constraint_satisfaction_and_optimization.json -------------------------------------------------------------------------------- /json_data/2024/main/data_mining_and_knowledge_management.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/json_data/2024/main/data_mining_and_knowledge_management.json -------------------------------------------------------------------------------- /json_data/2024/main/game_theory_and_economic_paradigms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/json_data/2024/main/game_theory_and_economic_paradigms.json -------------------------------------------------------------------------------- /json_data/2024/main/humans_and_ai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/json_data/2024/main/humans_and_ai.json -------------------------------------------------------------------------------- /json_data/2024/main/intelligent_robots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/json_data/2024/main/intelligent_robots.json -------------------------------------------------------------------------------- /json_data/2024/main/knowledge_representation_and_reasoning.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/json_data/2024/main/knowledge_representation_and_reasoning.json -------------------------------------------------------------------------------- /json_data/2024/main/machine_learning.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/json_data/2024/main/machine_learning.json -------------------------------------------------------------------------------- /json_data/2024/main/multiagent_systems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/json_data/2024/main/multiagent_systems.json -------------------------------------------------------------------------------- /json_data/2024/main/natural_language_processing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/json_data/2024/main/natural_language_processing.json -------------------------------------------------------------------------------- /json_data/2024/main/philosophy_and_ethics_of_ai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/json_data/2024/main/philosophy_and_ethics_of_ai.json -------------------------------------------------------------------------------- /json_data/2024/main/planning_routing_and_scheduling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/json_data/2024/main/planning_routing_and_scheduling.json -------------------------------------------------------------------------------- /json_data/2024/main/reasoning_under_uncertainty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/json_data/2024/main/reasoning_under_uncertainty.json -------------------------------------------------------------------------------- /json_data/2024/main/safe_robust_and_responsible_ai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/json_data/2024/main/safe_robust_and_responsible_ai.json -------------------------------------------------------------------------------- /json_data/2024/main/search_and_optimization.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/json_data/2024/main/search_and_optimization.json -------------------------------------------------------------------------------- /json_data/2024/main/сognitive_modeling_and_cognitive_systems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/json_data/2024/main/сognitive_modeling_and_cognitive_systems.json -------------------------------------------------------------------------------- /scripts/compare_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/scripts/compare_files.sh -------------------------------------------------------------------------------- /scripts/show_file_content.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/scripts/show_file_content.sh -------------------------------------------------------------------------------- /scripts/update_repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/scripts/update_repo.sh -------------------------------------------------------------------------------- /sections/2024/main/1001_1200.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/sections/2024/main/1001_1200.md -------------------------------------------------------------------------------- /sections/2024/main/1201_1400.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/sections/2024/main/1201_1400.md -------------------------------------------------------------------------------- /sections/2024/main/1401_1600.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/sections/2024/main/1401_1600.md -------------------------------------------------------------------------------- /sections/2024/main/1601_1800.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/sections/2024/main/1601_1800.md -------------------------------------------------------------------------------- /sections/2024/main/1801_2000.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/sections/2024/main/1801_2000.md -------------------------------------------------------------------------------- /sections/2024/main/1_200.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/sections/2024/main/1_200.md -------------------------------------------------------------------------------- /sections/2024/main/2001_2200.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/sections/2024/main/2001_2200.md -------------------------------------------------------------------------------- /sections/2024/main/201_400.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/sections/2024/main/201_400.md -------------------------------------------------------------------------------- /sections/2024/main/2201_2246.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/sections/2024/main/2201_2246.md -------------------------------------------------------------------------------- /sections/2024/main/401_600.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/sections/2024/main/401_600.md -------------------------------------------------------------------------------- /sections/2024/main/601_800.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/sections/2024/main/601_800.md -------------------------------------------------------------------------------- /sections/2024/main/801_1000.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/sections/2024/main/801_1000.md -------------------------------------------------------------------------------- /sections/2024/main/application_domains.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/sections/2024/main/application_domains.md -------------------------------------------------------------------------------- /sections/2024/main/computer_vision.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/sections/2024/main/computer_vision.md -------------------------------------------------------------------------------- /sections/2024/main/constraint_satisfaction_and_optimization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/sections/2024/main/constraint_satisfaction_and_optimization.md -------------------------------------------------------------------------------- /sections/2024/main/data_mining_and_knowledge_management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/sections/2024/main/data_mining_and_knowledge_management.md -------------------------------------------------------------------------------- /sections/2024/main/game_theory_and_economic_paradigms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/sections/2024/main/game_theory_and_economic_paradigms.md -------------------------------------------------------------------------------- /sections/2024/main/humans_and_ai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/sections/2024/main/humans_and_ai.md -------------------------------------------------------------------------------- /sections/2024/main/intelligent_robots.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/sections/2024/main/intelligent_robots.md -------------------------------------------------------------------------------- /sections/2024/main/knowledge_representation_and_reasoning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/sections/2024/main/knowledge_representation_and_reasoning.md -------------------------------------------------------------------------------- /sections/2024/main/machine_learning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/sections/2024/main/machine_learning.md -------------------------------------------------------------------------------- /sections/2024/main/multiagent_systems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/sections/2024/main/multiagent_systems.md -------------------------------------------------------------------------------- /sections/2024/main/natural_language_processing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/sections/2024/main/natural_language_processing.md -------------------------------------------------------------------------------- /sections/2024/main/philosophy_and_ethics_of_ai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/sections/2024/main/philosophy_and_ethics_of_ai.md -------------------------------------------------------------------------------- /sections/2024/main/planning_routing_and_scheduling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/sections/2024/main/planning_routing_and_scheduling.md -------------------------------------------------------------------------------- /sections/2024/main/reasoning_under_uncertainty.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/sections/2024/main/reasoning_under_uncertainty.md -------------------------------------------------------------------------------- /sections/2024/main/safe_robust_and_responsible_ai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/sections/2024/main/safe_robust_and_responsible_ai.md -------------------------------------------------------------------------------- /sections/2024/main/search_and_optimization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/sections/2024/main/search_and_optimization.md -------------------------------------------------------------------------------- /sections/2024/main/сognitive_modeling_and_cognitive_systems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DmitryRyumin/AAAI-2024-Papers/HEAD/sections/2024/main/сognitive_modeling_and_cognitive_systems.md --------------------------------------------------------------------------------