Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Lorenzob
/
astra
like
0
Text Generation
Diffusers
doi:10.57967/hf/2194
llm
Model card
Files
Files and versions
Use this model
main
astra
/
LLaMA-Factory
/
Makefile
Lorenzob
Upload folder using huggingface_hub
9031f04
verified
about 1 year ago
raw
Copy download link
history
blame
161 Bytes
.PHONY
: quality style
check_dirs := src tests
quality:
black --check
$(check_dirs)
ruff
$(check_dirs)
style:
black
$(check_dirs)
ruff
$(check_dirs)
--fix