├── .DS_Store ├── .gitignore ├── LICENSE ├── README.md ├── agorabanner.png ├── cm3 ├── __init__.py ├── model.py └── utils │ ├── __init__.py │ └── stable_adamw.py ├── example.py ├── generate_example.py ├── img_embeds.py ├── pyproject.toml └── requirements.txt /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/CM3Leon/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/CM3Leon/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/CM3Leon/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/CM3Leon/HEAD/README.md -------------------------------------------------------------------------------- /agorabanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/CM3Leon/HEAD/agorabanner.png -------------------------------------------------------------------------------- /cm3/__init__.py: -------------------------------------------------------------------------------- 1 | from cm3.model import CM3 2 | 3 | __all__ = ["CM3"] -------------------------------------------------------------------------------- /cm3/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/CM3Leon/HEAD/cm3/model.py -------------------------------------------------------------------------------- /cm3/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cm3/utils/stable_adamw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/CM3Leon/HEAD/cm3/utils/stable_adamw.py -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/CM3Leon/HEAD/example.py -------------------------------------------------------------------------------- /generate_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/CM3Leon/HEAD/generate_example.py -------------------------------------------------------------------------------- /img_embeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/CM3Leon/HEAD/img_embeds.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/CM3Leon/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyegomez/CM3Leon/HEAD/requirements.txt --------------------------------------------------------------------------------