Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 13 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2583,21 +2583,25 @@ dataset_object = client.find_dataset_object(
object_name="brushwood_dog.jpg"
)
```
You can find a object of specified revision by version or revision_id.

You can find a object of specified revision by version or revision_id.

```python
dataset_object = client.find_dataset_object(
dataset_id="YOUR_DATASET_ID",
object_name="brushwood_dog.jpg",
version="YOUR_VERSION_NAME" # default is "latest"
)
)
```

```python
dataset_object = client.find_dataset_object(
dataset_id="YOUR_DATASET_ID",
object_name="brushwood_dog.jpg",
revision_id="YOUR_REVISION_ID" # 8 characters or more
)
)
```

Success response is the same as when created.

### Get Dataset Object
Expand All @@ -2619,12 +2623,14 @@ dataset_objects = client.get_dataset_objects(
tags=["cat"],
)
```

```python
dataset_objects = client.get_dataset_objects(
dataset="YOUR_DATASET_NAME",
revision_id="YOUR_REVISION_ID" # 8 characters or more
)
```

### Download Dataset Objects

Download dataset objects in the dataset to specific directories.
Expand Down Expand Up @@ -3176,7 +3182,10 @@ Execute evaluation jobs.
training_job = client.execute_evaluation_job(
dataset_name="DATASET_NAME",
model_name="fastlabel_object_detection_light",
// If you want to use the built-in model, select the following. "fastlabel_object_detection_light" or "fastlabel_object_detection_high_accuracy"
// If you want to use the built-in model, select the following.
- "fastlabel_object_detection_light"
- "fastlabel_object_detection_high_accuracy"
- "fastlabel_fcn_resnet"
Comment on lines +3185 to +3188
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

こちらの部分のみ修正。ほかは自分の手元でフォーマットされたもの

// If you want to use the custom model, please fill out model name.
use_dataset_test=True,
)
Expand Down