├── .gitignore ├── .idea ├── .gitignore ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── science_art_at_least_once_a_week.iml └── vcs.xml ├── LICENSE ├── README.md ├── ars_electronica_prizewinners_ru.json ├── core ├── __init__.py ├── artwork_analysis.py └── document_retrieval.py ├── gpt-4-pipeline.py ├── hf-pipeline.py ├── main.py ├── not_posted.txt ├── requirements.txt ├── retrieval.py └── tmp_drafts.ipynb /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreygetmanov/science_art_at_least_once_a_week/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreygetmanov/science_art_at_least_once_a_week/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreygetmanov/science_art_at_least_once_a_week/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/science_art_at_least_once_a_week.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreygetmanov/science_art_at_least_once_a_week/HEAD/.idea/science_art_at_least_once_a_week.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreygetmanov/science_art_at_least_once_a_week/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreygetmanov/science_art_at_least_once_a_week/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreygetmanov/science_art_at_least_once_a_week/HEAD/README.md -------------------------------------------------------------------------------- /ars_electronica_prizewinners_ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreygetmanov/science_art_at_least_once_a_week/HEAD/ars_electronica_prizewinners_ru.json -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/artwork_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreygetmanov/science_art_at_least_once_a_week/HEAD/core/artwork_analysis.py -------------------------------------------------------------------------------- /core/document_retrieval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreygetmanov/science_art_at_least_once_a_week/HEAD/core/document_retrieval.py -------------------------------------------------------------------------------- /gpt-4-pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreygetmanov/science_art_at_least_once_a_week/HEAD/gpt-4-pipeline.py -------------------------------------------------------------------------------- /hf-pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreygetmanov/science_art_at_least_once_a_week/HEAD/hf-pipeline.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreygetmanov/science_art_at_least_once_a_week/HEAD/main.py -------------------------------------------------------------------------------- /not_posted.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreygetmanov/science_art_at_least_once_a_week/HEAD/not_posted.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreygetmanov/science_art_at_least_once_a_week/HEAD/requirements.txt -------------------------------------------------------------------------------- /retrieval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreygetmanov/science_art_at_least_once_a_week/HEAD/retrieval.py -------------------------------------------------------------------------------- /tmp_drafts.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreygetmanov/science_art_at_least_once_a_week/HEAD/tmp_drafts.ipynb --------------------------------------------------------------------------------