-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding ground truth labeling module #252
Conversation
This comment was marked as outdated.
This comment was marked as outdated.
return {"FeatureName": feature_name, "ValueAsString": feature_value} | ||
|
||
|
||
def multi_threaded_batch_delete_message_from_sqs_and_save_to_feature_store( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Decided to multi-thread here due to sagemaker feature store not having a batch put operation. Running single threaded would cause issues at scale with lambda time limits.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
This comment was marked as outdated.
AWS CodeBuild CI Report
Powered by github-codebuild-logs, available on the AWS Serverless Application Repository |
# Conflicts: # CHANGELOG.md
AWS CodeBuild CI Report
Powered by github-codebuild-logs, available on the AWS Serverless Application Repository |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Look good, thank you!
Describe your changes
Added the sagemaker ground truth labeling module. Module provides a workflow to label items using sagemaker ground truth labeling. Users upload the data to a bucket, which is then sent to an SQS queue. A state machine pulls data from the queue, runs a labeling job and a verification job (if the task type supports it), before saving the labels to a sagemaker feature store.
Module currently supports all built in task types for image and text labeling, but could be expanded to video and 3d point in the future.
Checklist before requesting a review
CHANGELOG.MD
with a description of my changesscripts/validate.sh
)seedfarmer apply
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.