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