Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ partial void ProcessTrainDatasetModelResponseContent(

/// <summary>
/// Train a model from a dataset<br/>
/// Start training a custom model from a dataset. The dataset must contain at least 15 images. Returns the model ID and training status.
/// Start training a custom model from a dataset. The dataset must contain at least 10 images and a maximum of 100 images. Returns the model ID and training status.
/// </summary>
/// <param name="datasetId"></param>
/// <param name="request"></param>
Expand Down Expand Up @@ -494,7 +494,7 @@ partial void ProcessTrainDatasetModelResponseContent(
}
/// <summary>
/// Train a model from a dataset<br/>
/// Start training a custom model from a dataset. The dataset must contain at least 15 images. Returns the model ID and training status.
/// Start training a custom model from a dataset. The dataset must contain at least 10 images and a maximum of 100 images. Returns the model ID and training status.
/// </summary>
/// <param name="datasetId"></param>
/// <param name="modelName">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ partial void ProcessUploadDatasetAssetsResponseContent(
/// </summary>
/// <param name="datasetId"></param>
/// <param name="files">
/// Image files (JPEG, PNG, WebP), .txt caption sidecar files, and/or ZIP archives containing images and captions. Caption .txt files are matched to images by filename stem (e.g. sunset.txt provides the caption for sunset.jpg).
/// Image files (JPEG, PNG, WebP), .txt caption sidecar files, and/or ZIP archives containing images and captions. Caption .txt files are matched to images by filename stem (e.g. sunset.txt provides the caption for sunset.jpg). Captions are optional!
/// </param>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ public partial interface IDatasetsClient
{
/// <summary>
/// Train a model from a dataset<br/>
/// Start training a custom model from a dataset. The dataset must contain at least 15 images. Returns the model ID and training status.
/// Start training a custom model from a dataset. The dataset must contain at least 10 images and a maximum of 100 images. Returns the model ID and training status.
/// </summary>
/// <param name="datasetId"></param>
/// <param name="request"></param>
Expand All @@ -21,7 +21,7 @@ public partial interface IDatasetsClient
global::System.Threading.CancellationToken cancellationToken = default);
/// <summary>
/// Train a model from a dataset<br/>
/// Start training a custom model from a dataset. The dataset must contain at least 15 images. Returns the model ID and training status.
/// Start training a custom model from a dataset. The dataset must contain at least 10 images and a maximum of 100 images. Returns the model ID and training status.
/// </summary>
/// <param name="datasetId"></param>
/// <param name="modelName">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public partial interface IDatasetsClient
/// </summary>
/// <param name="datasetId"></param>
/// <param name="files">
/// Image files (JPEG, PNG, WebP), .txt caption sidecar files, and/or ZIP archives containing images and captions. Caption .txt files are matched to images by filename stem (e.g. sunset.txt provides the caption for sunset.jpg).
/// Image files (JPEG, PNG, WebP), .txt caption sidecar files, and/or ZIP archives containing images and captions. Caption .txt files are matched to images by filename stem (e.g. sunset.txt provides the caption for sunset.jpg). Captions are optional!
/// </param>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ public partial interface IModelsClient
{
/// <summary>
/// Get model details<br/>
/// Get detailed information about a specific custom model, including training run history for owned models. The user must either own the model or the model must be shared with the user's organization via the model registry. Returns 404 if the model is not found or not accessible.
/// Get detailed information about a specific custom model. The user must either own the model or the model must be shared with the user's organization via the model registry. Returns 404 if the model is not found or not accessible.
/// </summary>
/// <param name="modelId"></param>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,9 @@ public partial interface IModelsClient
{
/// <summary>
/// List models<br/>
/// Lists custom models for the authenticated user. Use the `scope` parameter to control which models are returned. `owned` (default) returns models created by the user. `shared` returns models shared with the user's organization via the model registry, excluding the user's own models.
/// Lists custom models for the authenticated user. Use the `scope` parameter to control which models are returned. If omitted, returns both owned models and models shared with the user's organization via the model registry. `owned` returns only models created by the user. `shared` returns only models shared via the model registry, excluding the user's own models.
/// </summary>
/// <param name="scope">
/// Default Value: owned
/// </param>
/// <param name="scope"></param>
/// <param name="status"></param>
/// <param name="requestOptions">Per-request overrides such as headers, query parameters, timeout, retries, and response buffering.</param>
/// <param name="cancellationToken">The token to cancel the operation with</param>
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading