├── .gitignore ├── LICENSE ├── README.md ├── config.py ├── download_weights.py ├── images └── image.png ├── kvcache.py ├── main.py ├── model.py ├── prompts.py ├── requirements.txt ├── sampler.py ├── stats.py ├── tokenizer.model ├── tokenizer.py ├── utils.py └── weights.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | venv/ 3 | .env 4 | weights/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smolorg/smoltropix/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smolorg/smoltropix/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smolorg/smoltropix/HEAD/config.py -------------------------------------------------------------------------------- /download_weights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smolorg/smoltropix/HEAD/download_weights.py -------------------------------------------------------------------------------- /images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smolorg/smoltropix/HEAD/images/image.png -------------------------------------------------------------------------------- /kvcache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smolorg/smoltropix/HEAD/kvcache.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smolorg/smoltropix/HEAD/main.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smolorg/smoltropix/HEAD/model.py -------------------------------------------------------------------------------- /prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smolorg/smoltropix/HEAD/prompts.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smolorg/smoltropix/HEAD/requirements.txt -------------------------------------------------------------------------------- /sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smolorg/smoltropix/HEAD/sampler.py -------------------------------------------------------------------------------- /stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smolorg/smoltropix/HEAD/stats.py -------------------------------------------------------------------------------- /tokenizer.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smolorg/smoltropix/HEAD/tokenizer.model -------------------------------------------------------------------------------- /tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smolorg/smoltropix/HEAD/tokenizer.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smolorg/smoltropix/HEAD/utils.py -------------------------------------------------------------------------------- /weights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smolorg/smoltropix/HEAD/weights.py --------------------------------------------------------------------------------