-
Notifications
You must be signed in to change notification settings - Fork 4
Add text and audio api #106
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
Conversation
| task = client.find_image_classification_task(task_id="YOUR_TASK_ID") | ||
| ``` | ||
|
|
||
| Find a single task by name. |
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.
name 指定で検索する記述がないものが多かったので、追加しました。
| return None | ||
| return tasks[0] | ||
|
|
||
| def find_video_classification_task_by_name( |
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.
video classification の nama 指定で検索できる機能がなかったので、他に合わせて追加しました
fastlabel/__init__.py
Outdated
| offset is the starting position number to fetch (Optional). | ||
| limit is the max number to fetch (Optional). | ||
| """ | ||
| if limit > 10: |
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.
こちら、get_video_tasks に合わせてこの数字にしていますが、増やした方がよいでしょうか?(ちなみに、image は 1000 です )
fastlabel/__init__.py
Outdated
| offset is the starting position number to fetch (Optional). | ||
| limit is the max number to fetch (Optional). | ||
| """ | ||
| if limit > 10: |
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.
ここも同様です
|
71e168b |
|
@faycute @eisuke-ueta |
修正内容
関連PR
関連Issue