Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/scalarstop/scalarstop
A Python framework for managing machine learning experiments.
https://github.com/scalarstop/scalarstop
keras machine-learning reproducibility reproducible-research tensorlfow
Last synced: 26 days ago
JSON representation
A Python framework for managing machine learning experiments.
- Host: GitHub
- URL: https://github.com/scalarstop/scalarstop
- Owner: scalarstop
- License: mit
- Created: 2021-04-01T03:20:20.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-03-29T14:46:44.000Z (over 2 years ago)
- Last Synced: 2024-09-30T10:02:30.673Z (about 1 month ago)
- Topics: keras, machine-learning, reproducibility, reproducible-research, tensorlfow
- Language: Python
- Homepage: https://scalarstop.com
- Size: 1.83 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
.. image:: https://static.neocrym.com/images/scalarstop/v1/1x/scalarstop-wordmark-color-black-on-white--1x.png
Keep track of your machine learning experiments with ScalarStop.
================================================================ScalarStop is a Python framework for reproducible machine learning research.
It was written and open-sourced at `Neocrym `_, where it is used to train thousands of models every week.
ScalarStop can help you:
* organize datasets and models with *content-addressable* names.
* save/load datasets and models to/from the filesystem.
* record hyperparameters and metrics to a relational database.System requirements
-------------------
ScalarStop is a Python package that requires Python 3.8 or newer.Currently, ScalarStop only supports tracking
`tf.data.Dataset `_
datasets and `tf.keras.Model `_
models. As such, ScalarStop requires TensorFlow 2.8.0 or newer.We encourage anybody that would like to add support for other
machine learning frameworks to ScalarStop. :)Installation
------------ScalarStop is `available on PyPI `_.
Selecting a TensorFlow package variant
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^If you are using TensorFlow on a CPU, you can install ScalarStop with the command:
.. code:: bash
python3 -m pip install scalarstop[tensorflow]
If you are using TensorFlow with GPUs, you can install ScalarStop with the command:
.. code:: bash
python3 -m pip install scalarstop[tensorflow-gpu]
Selecting a PostgreSQL psycopg2 package variant
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^If you intend to use ScalarStop with PostgreSQL, you should also
install either `psycopg2-binary `_
(`which works out of the box `_)
or `psycopg2 `_ (which you compile from source).Therefore, your installation command could look like either:
.. code:: bash
python3 -m pip install scalarstop[tensorflow,psycopg2]
python3 -m pip install scalarstop[tensorflow,psycopg2-binary]
python3 -m pip install scalarstop[tensorflow-gpu,psycopg2]
python3 -m pip install scalarstop[tensorflow-gpu,psycopg2-binary]Development
-----------If you would like to make changes to ScalarStop, you can `clone the repository `_
from GitHub... code:: bash
git clone https://github.com/scalarstop/scalarstop.git
cd scalarstop
python3 -m pip install .Usage
-----Read the `ScalarStop Tutorial `_ to learn the core concepts behind ScalarStop and how to structure your datasets and models.
Afterwards, you might want to dig deeper into the `ScalarStop Documentation `_. In general, a typical ScalarStop workflow involves four steps:
1. Organize your datasets with `scalarstop.datablob `_.
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2. Describe your machine learning model architectures using `scalarstop.model_template `_.
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3. Load, train, and save machine learning models with `scalarstop.model `_.
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
4. Save hyperparameters and training metrics to a SQLite or PostgreSQL database using `scalarstop.train_store `_.
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^Contributing to ScalarStop
--------------------------We warmly welcome contributions to ScalarStop. Here are the technical details for getting started with adding code to ScalarStop.
Getting started
^^^^^^^^^^^^^^^
First, clone this repository from GitHub. All development happens on the ``main`` branch... code:: bash
git clone https://github.com/scalarstop/scalarstop.git
Then, run ``make install`` to install Python dependencies in a Poetry virtualenv.
You can run ``make help`` to see the other commands that are available.
Checking your code
^^^^^^^^^^^^^^^^^^
Run ``make fmt`` to automatically format code.Run ``make lint`` to run Pylint and MyPy to check for errors.
Generating documentation
^^^^^^^^^^^^^^^^^^^^^^^^
Documentation is important! Here is how to add to it.Generating Sphinx documentation
"""""""""""""""""""""""""""""""You can generate a local copy of our Sphinx documentation at `scalarstop.com `_ with ``make docs``.
The generated documentation can be found at ``docs/_build/dirhtml``. To view it, you should start an HTTP server in this directory, such as:
.. code:: bash
make docs
cd docs/_build/dirhtml
python3 -m http.server 5000Then visit http://localhost:5000 in your browser to preview changes to the documentation.
If you want to use Sphinx's ability to automatically generate hyperlinks to the Sphinx documentation of other Python projects, then you should configure `intersphinx `_ settings at the path docs/conf.py. If you need to download an objects.inv file, make sure to update the ``make update-sphinx`` command in the `Makefile `_.
Editing the tutorial notebook
"""""""""""""""""""""""""""""
The main ScalarStop tutorial is `in a Jupyter notebook `_. If you have made changes to ScalarStop, you should rerun the Jupyter notebook on your machine with your changes to make sure that it still runs without error.Running unit tests
^^^^^^^^^^^^^^^^^^
Run ``make test`` to run all unit tests.If you want to run a specific unit test, try running ``python3 -m poetry run python -m unittest -k {name of your test}``.
Unit tests with SQLite3
"""""""""""""""""""""""
If you are running tests using a Python interpreter that does not have the `SQLite3 JSON1 extension `_, then `TrainStore `_ unit tests involving SQLite3 will be skipped. This is likely to happen if you are using Python 3.8 on Windows. If you suspect that you are missing the SQLite3 JSON1 extension, the `Django documentation has some suggestions `_ for how to fix it.Unit tests with PostgreSQL
""""""""""""""""""""""""""
By default, tests involving PostgreSQL are skipped. To enable PostgreSQL, run ``make test`` in a shell where the environment variable ``TRAIN_STORE_CONNECTION_STRING`` is set to a `SQLAlchemy database connection URL `_--which looks something like ``"postgresql://scalarstop:changeme@localhost:5432/train_store"``. The connection URL should point to a working PostgreSQL database with an existing database and user.The docker-compose.yml file in the root of this directory can set up a PostgreSQL instance on your local machine. If you have `Docker `_ and `Docker Compose `_ installed, you can start the PostgreSQL database by running ``docker-compose up`` in the same directory as the docker-compose.yml file.
Measuring test coverage
"""""""""""""""""""""""
You can run ``make test-with-coverage`` to collect Python line and branch coverage information. Afterwards, run ``make coverage-html`` to generate an HTML report of unit test coverage. You can view the report in a web browser at the path ``htmlcov/index.html``.Credits
-------
ScalarStop's documentation is built with `Sphinx `_ using `@pradyunsg `_'s `Furo `_ theme and is hosted by `Read the Docs `_.