|
3 | 3 | ## Deprecation Notice |
4 | 4 | | Name | Replacement | Removed After | |
5 | 5 | | ------------------------------------- | ------------------------------------- | ------------- | |
6 | | -| `ModelRun.delete_annotation_groups()` | `ModelRun.delete_model_run_data_rows()`| 3.9 | |
7 | | -| `ModelRun.annotation_groups()` | `ModelRun.model_run_data_rows()` | 3.9 | |
8 | | -| `DataRowMetadataSchema.id` | `DataRowMetadataSchema.uid` | 3.9 | |
| 6 | +| `ModelRun.delete_annotation_groups()` | `ModelRun.delete_model_run_data_rows()`| 2021-12-06 | |
| 7 | +| `ModelRun.annotation_groups()` | `ModelRun.model_run_data_rows()` | 2021-12-06 | |
| 8 | +| `DataRowMetadataSchema.id` | `DataRowMetadataSchema.uid` | 2021-12-06 | |
9 | 9 | ----- |
10 | 10 |
|
| 11 | +# Version 3.10.0 (2021-11-18) |
| 12 | +## Added |
| 13 | +* `AnnotationImport.wait_until_done()` accepts a `show_progress` param. This is set to `False` by default. |
| 14 | + * If enabled, a tqdm progress bar will indicate the import progress. |
| 15 | + * This works for all classes that inherit from AnnotationImport: `LabelImport`, `MALPredictionImport`, `MEAPredictionImport` |
| 16 | + * This is not support for `BulkImportRequest` (which will eventually be replaced by `MALPredictionImport`) |
| 17 | +* `Option.label` and `Option.value` can now be set independently |
| 18 | +* `ClassificationAnswer`s now support a new `keyframe` field for videos |
| 19 | +* New `LBV1Label.media_type field. This is a placeholder for future backend changes. |
| 20 | + |
| 21 | +## Fix |
| 22 | +* Nested checklists can have extra brackets. This would cause the annotation type converter to break. |
| 23 | + |
| 24 | + |
| 25 | +# Version 3.9.0 (2021-11-12) |
| 26 | +## Added |
| 27 | +* New ontology management features |
| 28 | + * Query for ontologies by name with `client.get_ontologies()` or by id using `client.get_ontology()` |
| 29 | + * Query for feature schemas by name with `client.get_feature_schemas()` or id using `client.get_feature_schema()` |
| 30 | + * Create feature schemas with `client.create_feature_schemas()` |
| 31 | + * Create ontologies from normalized ontology data with `client.create_ontology()` |
| 32 | + * Create ontologies from feature schemas with `client.create_ontology_from_feature_schemas()` |
| 33 | + * Set up a project from an existing ontology with `project.setup_edior()` |
| 34 | + * Added new `FeatureSchema` entity |
| 35 | +* Add support for new queue modes |
| 36 | + * Send batches of data directly to a project queue with `project.queue()` |
| 37 | + * Remove items from a project queue with `project.dequeue()` |
| 38 | + * Query for and toggle the queue mode |
| 39 | + |
11 | 40 | # Version 3.8.0 (2021-10-22) |
12 | 41 | ## Added |
13 | 42 | * `ModelRun.upsert_data_rows()` |
|
0 commit comments