CoolFace
Modelpublic

Codeprocastinator/optimized-tinyllama-covalent

sourceHugging Faceapache-2.0updated 1y agoView on Hugging Face
0likes119downloads
pyproject.toml39 linesDownload Raw Back to gguf-py
1[tool.poetry]2name = "gguf"3version = "0.16.0"4description = "Read and write ML models in GGUF for GGML"5authors = ["GGML <ggml@ggml.ai>"]6packages = [7    {include = "gguf"},8    {include = "gguf/py.typed"},9]10readme = "README.md"11homepage = "https://ggml.ai"12repository = "https://github.com/ggml-org/llama.cpp"13keywords = ["ggml", "gguf", "llama.cpp"]14classifiers = [15    "Programming Language :: Python :: 3",16    "License :: OSI Approved :: MIT License",17    "Operating System :: OS Independent",18]19 20[tool.poetry.dependencies]21python = ">=3.8"22numpy = ">=1.17"23tqdm = ">=4.27"24pyyaml = ">=5.1"25sentencepiece = ">=0.1.98,<=0.2.0"26 27[tool.poetry.dev-dependencies]28pytest = "^5.2"29 30[build-system]31requires = ["poetry-core>=1.0.0"]32build-backend = "poetry.core.masonry.api"33 34[tool.poetry.scripts]35gguf-convert-endian = "gguf.scripts:gguf_convert_endian_entrypoint"36gguf-dump = "gguf.scripts:gguf_dump_entrypoint"37gguf-set-metadata = "gguf.scripts:gguf_set_metadata_entrypoint"38gguf-new-metadata = "gguf.scripts:gguf_new_metadata_entrypoint"39