Python Library for Nodes which connect to the Zauberzeug Learning Loop
Project description
Learning Loop Node
This Python library helps you to write your own Detection Nodes, Training Nodes and Converter Nodes for the Zauberzeug Learning Loop.
General Usage
You can configure connection to our Learning Loop by specifying the following environment variables before starting:
- LOOP_HOST=learning-loop.ai
- LOOP_USERNAME=<your username>
- LOOP_PASSWORD=<your password>
Detector Node
Detector Nodes are normally deployed on edge devices like robots or machinery but can also run in the cloud to provide backend services for an app or similar. These nodes register themself at the Learning Loop to make model deployments very easy. They also provide REST and Socket.io APIs to run inferences. By default the images will automatically used for active learning: high uncertain predictions will be submitted to the Learning Loop inbox.
Additinal environment variables
- LOOP_ORGANIZATION=<your organization>
- LOOP_PROJECT=<your project>
Trainer Node
Trainers fetch the images and anntoations from the Learning Loop to generate new and improved models.
- if the command line tool "jpeginfo" is installed, the downloader will drop corrupted images automatically
Converter Node
A Conveter Node converts models from one format into another.
How to test the operability?
Assumend there is a Converter Node which converts models of format 'format_a' into 'format_b'.
Upload a model with
curl --request POST -F 'files=@my_model.zip' https://learning-loop.ai/api/zauberzeug/projects/demo/format_a
The model should now be available for the format 'format_a'
curl "https://learning-loop.ai/api/zauberzeug/projects/demo/models?format=format_a"
{
"models": [
{
"id": "3c20d807-f71c-40dc-a996-8a8968aa5431",
"version": "4.0",
"formats": [
"format_a"
],
"created": "2021-06-01T06:28:21.289092",
"comment": "uploaded at 2021-06-01 06:28:21.288442",
...
}
]
}
but not in the format_b
curl "https://learning-loop.ai/api/zauberzeug/projects/demo/models?format=format_b"
{
"models": []
}
Connect the Node to the Learning Loop by simply starting the container.
After a short time the converted model should be available as well.
curl https://learning-loop.ai/api/zauberzeug/projects/demo/models?format=format_b
{
"models": [
{
"id": "3c20d807-f71c-40dc-a996-8a8968aa5431",
"version": "4.0",
"formats": [
"format_a",
"format_b",
],
"created": "2021-06-01T06:28:21.289092",
"comment": "uploaded at 2021-06-01 06:28:21.288442",
...
}
]
}
About Models (the currency between Nodes)
- Models are packed in zips and saved on the Learning Loop (one for each format)
- Nodes and users can upload and download models with which they want to work
- In each zip there is a file called
model.json
which contains the metadata to interpret the other files in the package - for base models (pretrained models from external sources) no
model.json
has to be sent, ie. these models should simply be zipped in such a way that the respective trainer can work with them. - the loop adds or corrects the following properties in the
model.json
after receiving; it also creates the file if it is missing:host
: uri to the looporganization
: the ID of the organizationproject
: the id of the projectversion
: the version number that the loop assigned for this model (e.g. 1.3)id
: the model UUID (currently not needed by anyone, since host, org, project, version clearly identify the model)format
: the format e.g. yolo, tkdnn, yolor etc.
- Nodes add properties to
model.json
, which contains all the information which are needed by subsequent nodes. These are typically the properties:resolution
: resolution in which the model expects images (asint
, since the resolution is mostly square - later,resolution_x`` resolution_y
would also be conceivable orresolutions
to give a list of possible resolutions)categories
: list of categories with name, id, (later also type), in the order in which they are used by the model -- this is neccessary to be robust about renamings
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
Hashes for learning_loop_node-0.7.55.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | e0789da00aa60706bdd46ac056ed193d114fd89af4c9b44d6952a256ceb4518d |
|
MD5 | 1cc96736b19e4d5fb659382f3b2b0393 |
|
BLAKE2b-256 | 490656e0c9a4323099f2136d25df0d39f1a6bf7d31a0a6158369f75994e37ebe |
Hashes for learning_loop_node-0.7.55-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1fb9c7239ac1ef17b10ea5c1bbba6f1a4236416e0721de78870976af6b53736b |
|
MD5 | 1198d12908445c7fb3224ebe75a99d09 |
|
BLAKE2b-256 | fec5839fd8d70b41a672b8a6ce93e2842be5172a9a628c8c25721407b1aadd7e |