New functions
Conveniently inspect your models and training iterations:
py
from encord import EncordUserClient
from encord.utilities.project_utilities import get_all_model_iteration_uids
user_client = EncordUserClient.create_with_ssh_private_key(<your_ssh_key>)
project = user_client.get_project(<project_id>)
model_configurations = project.list_models()
all_model_iteration_uids = get_all_model_iteration_uids(model_configurations)
training_metadata = project.get_training_metadata(
all_model_iteration_uids,
get_model_training_labels=True,
)
Upload single images instead of image groups with:
py
from encord import EncordUserClient
user_client = EncordUserClient.create_with_ssh_private_key(<your_ssh_key>)
dataset = user_client.get_dataset(<dataset_id>)
dataset.upload_image(<image_path>, title="custom_title.jpg")
Read more about images and image groups [here](https://docs.encord.com/docs/annotate/editor/images) and [here](https://docs.encord.com/docs/annotate/editor/videos).
What's Changed
* Add changelog link by denis-cord in https://github.com/encord-team/encord-client-python/pull/174
* DEV-1311 - Add the list_models and get_training_metadata functions by denis-cord in https://github.com/encord-team/encord-client-python/pull/138
* Allow file upload of native single images by denis-cord in https://github.com/encord-team/encord-client-python/pull/172
* Version bump 0.1.45 by denis-cord in https://github.com/encord-team/encord-client-python/pull/175
**Full Changelog**: https://github.com/encord-team/encord-client-python/compare/0.1.44...0.1.45