├── .github └── workflows │ ├── build.yml │ └── python-release.yml ├── .gitignore ├── Makefile ├── README.md ├── huggingface_sb3 ├── __init__.py ├── load_from_hub.py ├── naming_schemes.py └── push_to_hub.py ├── notebooks ├── Stable_Baselines_3_x_Hugging_Face_🤗_tutorial.ipynb └── sb3_huggingface.ipynb ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── test_load_from_hub.py ├── test_naming_scheme.py └── test_push_to_hub.py /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/huggingface_sb3/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/python-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/huggingface_sb3/HEAD/.github/workflows/python-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | *.egg-info -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/huggingface_sb3/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/huggingface_sb3/HEAD/README.md -------------------------------------------------------------------------------- /huggingface_sb3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/huggingface_sb3/HEAD/huggingface_sb3/__init__.py -------------------------------------------------------------------------------- /huggingface_sb3/load_from_hub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/huggingface_sb3/HEAD/huggingface_sb3/load_from_hub.py -------------------------------------------------------------------------------- /huggingface_sb3/naming_schemes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/huggingface_sb3/HEAD/huggingface_sb3/naming_schemes.py -------------------------------------------------------------------------------- /huggingface_sb3/push_to_hub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/huggingface_sb3/HEAD/huggingface_sb3/push_to_hub.py -------------------------------------------------------------------------------- /notebooks/Stable_Baselines_3_x_Hugging_Face_🤗_tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/huggingface_sb3/HEAD/notebooks/Stable_Baselines_3_x_Hugging_Face_🤗_tutorial.ipynb -------------------------------------------------------------------------------- /notebooks/sb3_huggingface.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/huggingface_sb3/HEAD/notebooks/sb3_huggingface.ipynb -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/huggingface_sb3/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/huggingface_sb3/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_load_from_hub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/huggingface_sb3/HEAD/tests/test_load_from_hub.py -------------------------------------------------------------------------------- /tests/test_naming_scheme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/huggingface_sb3/HEAD/tests/test_naming_scheme.py -------------------------------------------------------------------------------- /tests/test_push_to_hub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huggingface/huggingface_sb3/HEAD/tests/test_push_to_hub.py --------------------------------------------------------------------------------