Welcome to the Flock SDK repository! 🚀 Flock SDK is a powerful software development kit that leverages Federated Learning and Blockchain to enable data and computation resources owners to collaboratively train machine learning models using any source data. With Flock SDK, you can define and start ML training tasks on the Flock platform efficiently. 💪
-
🔗 Federated Learning: Flock SDK harnesses the power of Federated Learning, a distributed approach that allows data owners to train machine learning models collaboratively while keeping their data locally.
-
🤝 Collaborative Training: By sharing source data, Flock enables multiple participants to contribute to the training process, resulting in improved model performance and accuracy.
-
💰 Rewards and Smart Contracts: Flock's ML training participants are incentivized with rewards and penalties specified by pre-defined smart contracts, ensuring fair and transparent compensation.
-
🔒 Secure and Privacy-preserving: Flock SDK prioritizes data privacy and security, allowing data owners to retain control over their sensitive information throughout the training process.
-
🧩 Flexible Integration: The SDK is designed to be easily integrated into your existing workflows and systems, making it a perfect fit for a wide range of applications.
-
🌐🤖 Flock Large Language Model: Visit the
flock_llm
directory for an example usage of Flock SDK with the Flock Large Language Model(LLM). This demonstrates how to finetune a Vicuna-7B using the instruction sets provided by different contributors and train aLoRA
adapeter using federated leaning on chain. -
🛡️💳 Credit Card Fraud Detection: Check out the
credit_card_fraud_detection
directory for an example usage of Flock SDK to train a fraud detection model using a federated learning approach. -
📸🔎 MobileNet Example: Explore the
mobilenet_example
directory for an example implementation of Flock SDK to train a MobileNet model for image classification, leveraging the power of federated learning.
Prerequisites:
You must have docker
and docker compose
installed and set up to run as non-root user.
This step is only required if you want to test invoking the model without the client running it in a docker container.
Installing the SDK as a python package is pretty simple, all you need to do is run pip install flock-sdk
.
- Choose the appropriate example to build from inside the
examples
folder and implement the evaluate, train and aggregate functions as required. - Make sure that IPFS is started by running
docker-compose up
in the client directory - Run
./upload_image.sh
inside the chosen example folder to build and upload the model definition to IPFS - Modify the
MODEL_DEFINITION_HASH
in theMakefile
inside the client repo to match the returned hash - Start the network by running
make chain
inside the client repo - Launch the clients using instructions in the client directory's README.
- Choose the appropriate example to build from inside the
examples
folder and implement the evaluate, train and aggregate functions as required. - Run
./upload_image.sh
inside the chosen example folder to build and upload the model definition to IPFS - Create a new FlockTask with the returned IPFS hash in the Flock frontend