Datasets:
Tasks:
Text Generation
Modalities:
Text
Sub-tasks:
language-modeling
Languages:
Danish
Size:
< 1K
ArXiv:
License:
File size: 721 Bytes
e3f345e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | install:
@echo "--- 🚀 Installing project dependencies ---"
uv sync
test:
@echo "--- 🧪 Running tests ---"
uv run pytest src/tests/ | tee test_results.log
lint:
@echo "--- 🧹 Running linters ---"
ruff format . # running ruff formatting
ruff check . --fix # running ruff linting
bump-version:
@echo "--- 🚀 Bumping patch version ---"
uv run src/dynaword/bump_version.py
update-descriptive-statistics:
@echo "--- 🚀 Recomputing Descriptive statistics ---"
uv run src/dynaword/update_descriptive_statistics.py # compute missing descriptive statistics for all datasets
uv run src/dynaword/update_descriptive_statistics.py --dataset default --force # always ensure default dataset is up to date
|