Machine Learning and Federated Learning Library.
Project description
Table of Contents
Using the Docker images
There is a docker image for running a pod (ghcr.io/bitfount/pod:stable
).
The image requires a config.yaml
file to be provided to them,
by default it will try to load it from /mount/config/config.yaml
inside the docker container.
You can provide this file easily by mounting/binding a volume to the container,
how you do this may vary depending on your platform/environment (Docker/docker-compose/ECS),
if you have any problems doing this then feel free to reach out to us.
Alternative you could copy a config file into a stopped container using docker cp.
If you're using a CSV data source then you'll also need to mount your data to the container, this will need to be mounted at the path specified in your config, for simplicity it's easiest put your config and your CSV in the same directory and then mount it to the container.
Once your container is running you will need to check the logs and complete the login step, allowing your container to authenticate with Bitfount. The process is the same as when running locally (e.g. the tutorials), except that we can't open the login page automatically for you.
Running the Python code
Installation
Where to get it
Binary installers for the latest released version are available at the Python Package Index (PyPI).
pip install bitfount
If you are planning on using the bitfount
package with Jupyter Notebooks, we recommend you install the splinter package bitfount[tutorials]
which will make sure you are running compatible jupyter dependencies.
pip install 'bitfount[tutorials]'
Installation from sources
To install bitfount
from source you need to create a python virtual environment.
In the bitfount
directory (same one where you found this file after cloning the git repo), execute:
pip install -r requirements/requirements.in
These requirements are set to permissive ranges but are not guaranteed to work for all releases, especially the latest versions. For a pinned version of these requirements which are guaranteed to work, run the following command instead:
#!/bin/bash
PYTHON_VERSION=$(python -c "import platform; print(''.join(platform.python_version_tuple()[:2]))")
pip install -r requirements/${PYTHON_VERSION}/requirements.txt
For MacOS you may also need to install libomp
:
brew install libomp
Getting started (Tutorials)
In order to run the tutorials, you also need to install the tutorial requirements:
#!/bin/bash
PYTHON_VERSION=$(python -c "import platform; print(''.join(platform.python_version_tuple()[:2]))")
pip install -r requirements/${PYTHON_VERSION}/requirements-tutorial.txt
To get started using the Bitfount package in a federated setting, we recommend
that you start with our tutorials. Run jupyter notebook
and open up the first
tutorial in the "Connecting Data & Creating Pods folder: running_a_pod.ipynb
Federated training scripts
Some simple scripts have been provided to run a Pod or Modelling job from a config file.
⚠️ If you are running from a source install (such as from
git clone
) you will need to usepython -m scripts.<script_name>
rather than usebitfount <script_name>
directly.
To run a pod:
bitfount run_pod --path_to_config_yaml=<CONFIG_FILE>
To run a modelling job:
bitfount run_modeller --path_to_config_yaml=<CONFIG_FILE>
License
The license for this software is available in the LICENSE
file.
This can be found in the Github Repository, as well as inside the Docker image.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file bitfount-4.1.1.tar.gz
.
File metadata
- Download URL: bitfount-4.1.1.tar.gz
- Upload date:
- Size: 1.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 27309119a1eea8eafede0ac381722772e96d64875564e9b4a85962c495b6e062 |
|
MD5 | 5bdc88a3db887d52dc3f5aae2479e7f9 |
|
BLAKE2b-256 | a97aa81c7bc8cc1f8b405aa54dd7e8bd780a93a21cc432775ef1ef7908c7771b |
File details
Details for the file bitfount-4.1.1-py3-none-any.whl
.
File metadata
- Download URL: bitfount-4.1.1-py3-none-any.whl
- Upload date:
- Size: 1.7 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.1 CPython/3.12.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3ebe716abb1042d52e2697fb6373fde815297f2d5e82a23ae663ab8f8b72c670 |
|
MD5 | 96c604bf5d88c4cbb17909a870ea002c |
|
BLAKE2b-256 | 7b77209f7d415dfa4ffaf4baf63d663adee77b44c6dfc4cbfbc9fee258b81621 |