├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE.txt ├── README.md ├── jupyters ├── RUDOLPH-2_7B-fine-tune_rus.ipynb ├── RUDOLPH-2_7B-usage_rus.ipynb ├── RUDOLPH-scp_tokens-350m-usage.ipynb ├── RUDOLPH_i2t.ipynb ├── RUDOLPH_tune_i2t_pl.ipynb └── f1_score.py ├── pics ├── RUDOLPH.png ├── attention_mask_13b.png ├── attention_mask_27b.png ├── attention_masks_1300m.png ├── attention_masks_2700m.png ├── attention_masks_350m.png ├── high_res.png ├── logo │ ├── AIRI_Full_logo.png │ ├── airi-logo.png │ ├── sberai-logo.png │ ├── sbercloud-logo.png │ └── sberdevices-logo.png ├── pipelines │ ├── captioning_dog.png │ ├── captioning_moto.png │ ├── captioning_street.png │ ├── cats_vs_dogs_bs4.json │ ├── example.png │ ├── final_lake_ship.png │ ├── lake.png │ ├── lake_image_prompt.png │ ├── lake_night.png │ ├── lake_ship.png │ ├── lake_winter.png │ └── zs_clf.png ├── rudolph-generated.png ├── rudolph.png ├── rudolph2700m_masks.png ├── scheme-rudolph_1300m.jpg ├── scheme-rudolph_13b.jpg ├── scheme-rudolph_2700m.jpg ├── scheme-rudolph_27B.jpg ├── scheme-rudolph_350m.jpg └── scheme.jpg ├── requirements-dev.txt ├── requirements.txt ├── rudolph ├── __init__.py ├── api.py ├── model │ ├── __init__.py │ ├── fp16.py │ ├── image_attention.py │ ├── model.py │ ├── transformer.py │ └── utils.py └── utils.py ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── conftest.py ├── test_image_attention.py └── test_model.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/README.md -------------------------------------------------------------------------------- /jupyters/RUDOLPH-2_7B-fine-tune_rus.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/jupyters/RUDOLPH-2_7B-fine-tune_rus.ipynb -------------------------------------------------------------------------------- /jupyters/RUDOLPH-2_7B-usage_rus.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/jupyters/RUDOLPH-2_7B-usage_rus.ipynb -------------------------------------------------------------------------------- /jupyters/RUDOLPH-scp_tokens-350m-usage.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/jupyters/RUDOLPH-scp_tokens-350m-usage.ipynb -------------------------------------------------------------------------------- /jupyters/RUDOLPH_i2t.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/jupyters/RUDOLPH_i2t.ipynb -------------------------------------------------------------------------------- /jupyters/RUDOLPH_tune_i2t_pl.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/jupyters/RUDOLPH_tune_i2t_pl.ipynb -------------------------------------------------------------------------------- /jupyters/f1_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/jupyters/f1_score.py -------------------------------------------------------------------------------- /pics/RUDOLPH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/pics/RUDOLPH.png -------------------------------------------------------------------------------- /pics/attention_mask_13b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/pics/attention_mask_13b.png -------------------------------------------------------------------------------- /pics/attention_mask_27b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/pics/attention_mask_27b.png -------------------------------------------------------------------------------- /pics/attention_masks_1300m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/pics/attention_masks_1300m.png -------------------------------------------------------------------------------- /pics/attention_masks_2700m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/pics/attention_masks_2700m.png -------------------------------------------------------------------------------- /pics/attention_masks_350m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/pics/attention_masks_350m.png -------------------------------------------------------------------------------- /pics/high_res.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/pics/high_res.png -------------------------------------------------------------------------------- /pics/logo/AIRI_Full_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/pics/logo/AIRI_Full_logo.png -------------------------------------------------------------------------------- /pics/logo/airi-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/pics/logo/airi-logo.png -------------------------------------------------------------------------------- /pics/logo/sberai-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/pics/logo/sberai-logo.png -------------------------------------------------------------------------------- /pics/logo/sbercloud-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/pics/logo/sbercloud-logo.png -------------------------------------------------------------------------------- /pics/logo/sberdevices-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/pics/logo/sberdevices-logo.png -------------------------------------------------------------------------------- /pics/pipelines/captioning_dog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/pics/pipelines/captioning_dog.png -------------------------------------------------------------------------------- /pics/pipelines/captioning_moto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/pics/pipelines/captioning_moto.png -------------------------------------------------------------------------------- /pics/pipelines/captioning_street.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/pics/pipelines/captioning_street.png -------------------------------------------------------------------------------- /pics/pipelines/cats_vs_dogs_bs4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/pics/pipelines/cats_vs_dogs_bs4.json -------------------------------------------------------------------------------- /pics/pipelines/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/pics/pipelines/example.png -------------------------------------------------------------------------------- /pics/pipelines/final_lake_ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/pics/pipelines/final_lake_ship.png -------------------------------------------------------------------------------- /pics/pipelines/lake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/pics/pipelines/lake.png -------------------------------------------------------------------------------- /pics/pipelines/lake_image_prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/pics/pipelines/lake_image_prompt.png -------------------------------------------------------------------------------- /pics/pipelines/lake_night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/pics/pipelines/lake_night.png -------------------------------------------------------------------------------- /pics/pipelines/lake_ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/pics/pipelines/lake_ship.png -------------------------------------------------------------------------------- /pics/pipelines/lake_winter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/pics/pipelines/lake_winter.png -------------------------------------------------------------------------------- /pics/pipelines/zs_clf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/pics/pipelines/zs_clf.png -------------------------------------------------------------------------------- /pics/rudolph-generated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/pics/rudolph-generated.png -------------------------------------------------------------------------------- /pics/rudolph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/pics/rudolph.png -------------------------------------------------------------------------------- /pics/rudolph2700m_masks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/pics/rudolph2700m_masks.png -------------------------------------------------------------------------------- /pics/scheme-rudolph_1300m.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/pics/scheme-rudolph_1300m.jpg -------------------------------------------------------------------------------- /pics/scheme-rudolph_13b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/pics/scheme-rudolph_13b.jpg -------------------------------------------------------------------------------- /pics/scheme-rudolph_2700m.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/pics/scheme-rudolph_2700m.jpg -------------------------------------------------------------------------------- /pics/scheme-rudolph_27B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/pics/scheme-rudolph_27B.jpg -------------------------------------------------------------------------------- /pics/scheme-rudolph_350m.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/pics/scheme-rudolph_350m.jpg -------------------------------------------------------------------------------- /pics/scheme.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/pics/scheme.jpg -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/requirements-dev.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/requirements.txt -------------------------------------------------------------------------------- /rudolph/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/rudolph/__init__.py -------------------------------------------------------------------------------- /rudolph/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/rudolph/api.py -------------------------------------------------------------------------------- /rudolph/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/rudolph/model/__init__.py -------------------------------------------------------------------------------- /rudolph/model/fp16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/rudolph/model/fp16.py -------------------------------------------------------------------------------- /rudolph/model/image_attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/rudolph/model/image_attention.py -------------------------------------------------------------------------------- /rudolph/model/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/rudolph/model/model.py -------------------------------------------------------------------------------- /rudolph/model/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/rudolph/model/transformer.py -------------------------------------------------------------------------------- /rudolph/model/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/rudolph/model/utils.py -------------------------------------------------------------------------------- /rudolph/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/rudolph/utils.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_image_attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/tests/test_image_attention.py -------------------------------------------------------------------------------- /tests/test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai-forever/ru-dolph/HEAD/tests/test_model.py --------------------------------------------------------------------------------