mirror of
https://github.com/Kladdy/starbun-old
synced 2026-05-21 08:48:07 +02:00
No description
- Python 100%
| logistics | ||
| starbun | ||
| tests | ||
| .gitignore | ||
| LICENCE.txt | ||
| pyproject.toml | ||
| README.md | ||
| setup.cfg | ||
Starbun
A package for running and evaluating simulation experiments
Terminology
- Experiment - An experiment is the highest level in the hierarchy, and is the overarching term for a project. It is a collection of trials, and an example might be an experiment to optimize the hyperparameters of a neural network.
- Trial - A trial is the next level down in the hierarchy. It is a collection of runs, and an example might be a trial to optimize a specific set of hyperparameters of a neural network.
- Run - A run is the lowest level in the hierarchy. It is a single simulation run, and an example might be a run of a neural network with a specific set of hyperparameters.
Installation
TBD
Usage
TBD
For test-publishing
python3 -m pip install --upgrade build
python3 -m build
python3 -m pip install --upgrade twine
python3 -m twine upload --repository testpypi dist/*
with __token__ as the username for twine, and the token as the password.
To then install the package, run
python3 -m pip install --index-url https://test.pypi.org/simple/ --no-deps starbun
For publishing
python3 -m pip install --upgrade build
python3 -m build
python3 -m pip install --upgrade twine
python3 -m twine upload dist/*
with __token__ as the username for twine, and the token as the password.
To then install the package, run
python3 -m pip install starbun