From 578851580998a12ed70fd78ef6abebfea1b8dc62 Mon Sep 17 00:00:00 2001 From: ueta-eisuke Date: Fri, 14 May 2021 23:07:26 +0900 Subject: [PATCH] fix readme --- README.md | 2 ++ setup.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f534e67..70daeff 100644 --- a/README.md +++ b/README.md @@ -61,6 +61,7 @@ task_id = client.create_task( name="sample.jpg", file_path="./sample.jpg", annotations=[{ + "type": "bbox", "value": "annotation-value", "attributes": [ { @@ -202,6 +203,7 @@ task = client.create_multi_image_task( name="sample", folder_path="./sample", annotations=[{ + "type": "segmentation", "value": "annotation-value", "attributes": [ { diff --git a/setup.py b/setup.py index 9b477ad..12389b0 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setuptools.setup( name="fastlabel", - version="0.4.2", + version="0.5.0", author="eisuke-ueta", author_email="eisuke.ueta@fastlabel.ai", description="The official Python SDK for FastLabel API, the Data Platform for AI",