redbrick-sagemaker
This package is an integration between RedBrick AI and AWS sagemaker to allow end-to-end Active Learning on computer vision datasets.
The objective of Active Learning is to label your data in order of information gain to your model. Following this strategy can drastically reduce the amount of data you have to label by only labeling those images that help your model improve.
This package will help you run a full end-to-end process where you will be able to iteratively label your dataset and train your model in true Active Learning fashion.
Setup
Install the redbrick_sagemaker package:
pip install redbrick_sagemaker
Standard RedBrick AI set up:
api_key="TODO"
org_id="TODO"
project_id="TOOD"
# The bucket where sagemaker will read/write predictions and training input/outputs.
s3_bucket_name="TODO"
s3_bucket_prefix="TODO"
# OPTIONAL: only required if you are not running redbrick_sagemaker in an AWS sagemaker notebook instance. If running outside, you have to create a IAM role with full sagemaker access.
role="TODO"
Create a RedBrick AI Active Learning object:
import redbrick_sagemaker
active_learner = redbrick_sagemaker.ActiveLearner(
api_key, org_id, project_id,
s3_bucket=bucket, s3_bucket_prefix=bucket_prefix,
url=url, iam_role=role
)
Begin an Active Learning cycle. Running this for the first time will start a hyperparameter optimization job to train your model.
active_learner.run()
Check on the status of your hyperparameter job.
active_learner.describe()
Once your hyperparameter job is complete, you can re-run to perform inference and update Active Learning priorities.
active_learning.run()
If your hyperparameter job is still processing, but there is a model job that has completed, you can force run an inference.
active_learning.run(force_run=True)
If you want to run training, and inference in one go synchronously, you can simply do:
active_learning.run(wait=True)
Please see the flowchart below for an explanation of the different states and flows.
Release files for redbrick-sagemaker 0.0.1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| redbrick_sagemaker-0.0.1.tar.gz | 235.6 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| redbrick_sagemaker-0.0.1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 255.4 kB
Release files / redbrick_sagemaker-0.0.1.tar.gz
| Download URL | redbrick_sagemaker-0.0.1.tar.gz |
|---|---|
| Size | 235.6 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
cfb85b7874a42a8ecf1a8209b817ae2ba77c2ce3212ed1b688427250913ff326
|
|
BLAKE2b-256 checksum How to use checksums |
9261489c5b5876017d0bcab083e024797c11596e0577c6baa527a5e8c4d5dbbf
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.6.0 importlib_metadata/4.8.2 pkginfo/1.8.1 requests/2.23.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.6
|
Release files / redbrick_sagemaker-0.0.1-py3-none-any.whl
| Download URL | redbrick_sagemaker-0.0.1-py3-none-any.whl |
|---|---|
| Size | 19.8 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
087f13f7df79f588650e86107cb550b759c7ff1b90039eb66a74e76861a27dd0
|
|
BLAKE2b-256 checksum How to use checksums |
a95eb82cace588a6f357cec7b5d8b870cf1c696839a86ffe7ae75e80920b8efb
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.0
|