diff --git a/cmd/root_cmd/push.go b/cmd/root_cmd/push.go index 2089f9545..14f3fcc28 100644 --- a/cmd/root_cmd/push.go +++ b/cmd/root_cmd/push.go @@ -277,16 +277,7 @@ Examples: analytics.SendEvent(analytics.EventCliProjectsPushSuccess, properties) if runEval { - lastSessionId, versionSessionIds, err := model.WaitForSessionAfterVersionPush(ctx, currentProject.GetCid(), codeSnapshotResponse.VersionId) - if err != nil { - return fmt.Errorf("failed to get last session id: %w", err) - } - sessionRuns, err := model.GetSessionRunsEvaluate(ctx, currentProject.GetCid(), versionSessionIds) - if err != nil { - return fmt.Errorf("failed to get session runs: %w", err) - } - evalName := model.GenerateEvalName(modelVersionName, sessionRuns.GetEvaluateSessionRuns()) - err = model.RunEvaluate(ctx, currentProject.GetCid(), codeSnapshotResponse.VersionId, lastSessionId, evalBatchSize, evalName) + err = model.RunEvaluate(ctx, currentProject.GetCid(), codeSnapshotResponse.VersionId, evalBatchSize) if err != nil { return fmt.Errorf("failed to run evaluation: %w", err) } diff --git a/pkg/.DS_Store b/pkg/.DS_Store index c61b4ab61..9dfccc9ba 100644 Binary files a/pkg/.DS_Store and b/pkg/.DS_Store differ diff --git a/pkg/model/api.go b/pkg/model/api.go index 0ebedf094..ad2d32f00 100644 --- a/pkg/model/api.go +++ b/pkg/model/api.go @@ -6,7 +6,6 @@ import ( "os" "path/filepath" "regexp" - "slices" "time" "github.com/samber/lo" @@ -296,28 +295,3 @@ func GetVersions(ctx context.Context, projectId string) ([]tensorleapapi.SlimVer } return versions.Versions, nil } - -func GetSessionRunsEvaluate(ctx context.Context, projectId string, sessionIds []string) (*tensorleapapi.GetSessionRunsEvaluateResponse, error) { - params := tensorleapapi.GetSessionRunsEvaluateParams{ - ProjectId: projectId, - } - result, res, err := api.ApiClient.GetSessionRunsEvaluate(ctx).GetSessionRunsEvaluateParams(params).Execute() - if err = api.CheckRes(res, err); err != nil { - return nil, err - } - if len(sessionIds) > 0 { - result.EvaluateSessionRuns = filterSessionRunsBySessionId(result.EvaluateSessionRuns, sessionIds) - } - return result, nil -} - -func filterSessionRunsBySessionId(sessionRuns []tensorleapapi.SessionRunData, sessionIds []string) []tensorleapapi.SessionRunData { - var filteredSessionRuns []tensorleapapi.SessionRunData - for _, sessionRun := range sessionRuns { - if slices.Contains(sessionIds, sessionRun.GetSessionId()) { - filteredSessionRuns = append(filteredSessionRuns, sessionRun) - } - } - - return filteredSessionRuns -} diff --git a/pkg/model/evaluate.go b/pkg/model/evaluate.go index 78496b3b7..0635670e3 100644 --- a/pkg/model/evaluate.go +++ b/pkg/model/evaluate.go @@ -2,12 +2,8 @@ package model import ( "context" - "crypto/rand" - "encoding/hex" "fmt" - "regexp" "strconv" - "time" "github.com/AlecAivazis/survey/v2" "github.com/tensorleap/leap-cli/pkg/api" @@ -18,21 +14,21 @@ import ( const DEFAULT_BATCH_SIZE = 1 func GetLatestEvaluateBatchSize(ctx context.Context, projectId string) (int, error) { - sessionRuns, err := GetSessionRunsEvaluate(ctx, projectId, []string{}) + versions, err := GetVersions(ctx, projectId) if err != nil { return 0, err } - var latestSessionRun *tensorleapapi.SessionRunData - for _, sessionRun := range sessionRuns.GetEvaluateSessionRuns() { - if sessionRun.HasEvaluateParams() && (latestSessionRun == nil || latestSessionRun.GetCreatedAt().Before(sessionRun.GetCreatedAt())) { - latestSessionRun = &sessionRun + var latest *tensorleapapi.SlimVersion + for _, v := range versions { + if v.HasEvaluateParams() && (latest == nil || latest.GetCreatedAt().Before(v.GetCreatedAt())) { + latest = &v } } - if latestSessionRun == nil { + if latest == nil { return 0, nil } - return int(latestSessionRun.EvaluateParams.GetBatchSize()), nil + return int(latest.EvaluateParams.GetBatchSize()), nil } func AskForBatchSize(defaultBatchSize int) (int, error) { @@ -69,99 +65,16 @@ func AskForBatchSize(defaultBatchSize int) (int, error) { return batchSize, nil } -func GenerateShortHash() string { - bytes := make([]byte, 2) - _, _ = rand.Read(bytes) - return hex.EncodeToString(bytes) -} - -var evalNameSuffixRegex = regexp.MustCompile(`-(\d+)$`) - -// extractNumberSuffix extracts the trailing number suffix from a name like "eval_3". -// Returns -1 if no suffix is found. -func extractNumberSuffix(name string) int { - matches := evalNameSuffixRegex.FindStringSubmatch(name) - if len(matches) < 2 { - return -1 - } - number, err := strconv.Atoi(matches[1]) - if err != nil { - return -1 - } - return number -} - -func GenerateEvalName(versionName string, sessionRuns []tensorleapapi.SessionRunData) string { - if len(sessionRuns) == 0 { - return versionName - } - - lastNumber := 1 - for _, sessionRun := range sessionRuns { - number := extractNumberSuffix(sessionRun.GetName()) - if number > lastNumber { - lastNumber = number - } - } - return fmt.Sprintf("%s-%v", versionName, lastNumber+1) -} - -func WaitForSessionAfterVersionPush(ctx context.Context, projectId, versionId string) (string, []string, error) { - - sessionIds := []string{} - params := tensorleapapi.SessionVersionIdRequestParams{ - ProjectId: projectId, - VersionId: versionId, - } - - lastSessionId := "" - - waitInterval := 10 * time.Second - waitTimeout := 10 * time.Minute - - err := api.WaitForCondition(ctx, "Waiting for version to be ready...", func() (bool, error) { - - result, res, err := api.ApiClient.GetSessionsByVersionId(ctx).SessionVersionIdRequestParams(params).Execute() - if err = api.CheckRes(res, err); err != nil { - return false, fmt.Errorf("failed to get last session id: %w", err) - } - var lastSession *tensorleapapi.Session - for _, session := range result.GetSessions() { - if lastSession == nil || lastSession.GetCreatedAt().Before(session.GetCreatedAt()) { - lastSession = &session - } - } - if lastSession == nil { - return false, nil - } - for _, session := range result.GetSessions() { - sessionIds = append(sessionIds, session.GetCid()) - } - lastSessionId = lastSession.GetCid() - - return true, nil - }, waitInterval, waitTimeout) - - if err != nil { - return "", nil, fmt.Errorf("failed to wait for session after version push: %w", err) - } - - return lastSessionId, sessionIds, nil -} - -func RunEvaluate(ctx context.Context, projectId, versionId string, sessionId string, batchSize int, evalName string) error { - existingSessionParams := tensorleapapi.NewEvaluateExistingSessionParams( +func RunEvaluate(ctx context.Context, projectId, versionId string, batchSize int) error { + existingVersionParams := tensorleapapi.NewEvaluateExistingVersionParams( versionId, projectId, float64(batchSize), - evalName, - "Evaluation triggered from CLI", 0, - sessionId, ) evaluateParams := tensorleapapi.EvaluateParams{ - EvaluateExistingSessionParams: existingSessionParams, + EvaluateExistingVersionParams: existingVersionParams, } log.Info("Starting evaluation...") diff --git a/pkg/model/evaluate_test.go b/pkg/model/evaluate_test.go deleted file mode 100644 index 9d9680e83..000000000 --- a/pkg/model/evaluate_test.go +++ /dev/null @@ -1,68 +0,0 @@ -package model - -import ( - "testing" - - "github.com/stretchr/testify/assert" -) - -func TestExtractNumberSuffix(t *testing.T) { - tests := []struct { - name string - input string - expected int - }{ - { - name: "simple suffix", - input: "eval-3", - expected: 3, - }, - { - name: "larger number", - input: "myversion-123", - expected: 123, - }, - { - name: "no suffix", - input: "eval", - expected: -1, - }, - { - name: "underscore instead of dash", - input: "eval_3", - expected: -1, - }, - { - name: "number in middle", - input: "eval-3-test", - expected: -1, - }, - { - name: "empty string", - input: "", - expected: -1, - }, - { - name: "only dash and number", - input: "-42", - expected: 42, - }, - { - name: "multiple dashes", - input: "my-version-5", - expected: 5, - }, - { - name: "zero suffix", - input: "eval-0", - expected: 0, - }, - } - - for _, tt := range tests { - t.Run(tt.name, func(t *testing.T) { - result := extractNumberSuffix(tt.input) - assert.Equal(t, tt.expected, result) - }) - } -} diff --git a/pkg/model/utils.go b/pkg/model/utils.go index 22bb01051..fdc8c51fb 100644 --- a/pkg/model/utils.go +++ b/pkg/model/utils.go @@ -230,7 +230,7 @@ func GetRunsStatusesPerVersionId(ctx context.Context, projectId string) (map[str } func CalcVersionStatus(version *tensorleapapi.SlimVersion, jobs []tensorleapapi.RunProcess) (VersionStatus, bool) { - hasModel := len(version.GetSessions()) > 0 + hasModel := version.HasModelId() if jobs == nil { jobs = []tensorleapapi.RunProcess{} } diff --git a/pkg/tensorleapapi/.openapi-generator/FILES b/pkg/tensorleapapi/.openapi-generator/FILES index 375591d11..70a1e2e1a 100644 --- a/pkg/tensorleapapi/.openapi-generator/FILES +++ b/pkg/tensorleapapi/.openapi-generator/FILES @@ -21,6 +21,7 @@ docs/AddSecretManagerParams.md docs/AddSecretManagerResponse.md docs/AggregationMethod.md docs/Aggregations.md +docs/AggressorFixing.md docs/AllSessionsTestResults.md docs/AnalyticsDashlet.md docs/AnalyticsDashletData.md @@ -46,6 +47,8 @@ docs/CodeSnapshotInfo.md docs/CodeSnapshotResult.md docs/CodeSnapshotSetupStatus.md docs/CodeSnapshotUploadUrlResponse.md +docs/CollectionDisplayData.md +docs/CollectionFilterDisplayData.md docs/CompositeVizData.md docs/CompositeVizItem.md docs/ConfusionMatrixLabelsResponse.md @@ -88,8 +91,6 @@ docs/DeleteGeneratedLabelParams.md docs/DeleteIssueParams.md docs/DeleteProjectParams.md docs/DeleteSamplesAnalysisParams.md -docs/DeleteSessionParams.md -docs/DeleteSessionRunParams.md docs/DeleteSessionTestRequest.md docs/DeleteSyntheticDataParams.md docs/DeleteTeamRequest.md @@ -102,7 +103,6 @@ docs/DomainGapInsight.md docs/DuplicationInsight.md docs/ESFilter.md docs/ESFilterValue.md -docs/EarlyStopParams.md docs/EngineSettingKey.md docs/EpochData.md docs/EpochDataExternalData.md @@ -110,8 +110,8 @@ docs/EpochMetricsValue.md docs/EpochMetricsValueAnyOf.md docs/EpochMetricsValueAnyOf1.md docs/EpochMetricsValueAnyOf2.md -docs/EvaluateExistingSessionParams.md -docs/EvaluateNewSessionParams.md +docs/EvaluateExistingVersionParams.md +docs/EvaluateNewVersionParams.md docs/EvaluateParams.md docs/EventsSnapshot.md docs/ExportModelParams.md @@ -133,14 +133,13 @@ docs/FetchSimilarResponse.md docs/FetchSimilarResponseReadyArtifacts.md docs/FilterDisplayData.md docs/FilterOperatorType.md -docs/FilterSessionRun.md +docs/FilterVersion.md docs/GeneralMessageParams.md docs/GenerateDatasetBalancingParams.md docs/GenerateInsightsParams.md docs/GenerateLabelParams.md docs/GenerateStreamingSamplesVisParams.md docs/GenerateSyntheticDataParams.md -docs/GenerateSyntheticDataParamsSourcesInner.md docs/GeneratedLabel.md docs/GeneratedLabelsResponse.md docs/GenericBaseImage.md @@ -154,6 +153,8 @@ docs/GetAuthStatusResponse.md docs/GetCodeSnapshotParams.md docs/GetCodeSnapshotResponse.md docs/GetCodeSnapshotUploadUrlParams.md +docs/GetCollectionDisplayDataParams.md +docs/GetCollectionDisplayDataResponse.md docs/GetConfusionMatrixLabels.md docs/GetConfusionMatrixResultCombinationsParams.md docs/GetCurrentProjectVersionParams.md @@ -166,8 +167,8 @@ docs/GetDatasetBalancingParams.md docs/GetDownloadSignedUrlParams.md docs/GetDownloadSignedUrlResponse.md docs/GetEnvironmentInfoResponse.md -docs/GetExportedSessionRunJobsParams.md -docs/GetExportedSessionRunJobsResponse.md +docs/GetExportedModelJobsParams.md +docs/GetExportedModelJobsResponse.md docs/GetFieldsValuesRequest.md docs/GetFieldsValuesResponse.md docs/GetFieldsValuesResponseResultsInner.md @@ -203,13 +204,7 @@ docs/GetSampleVisualizationsPathsResponse.md docs/GetScatterSampleVisualizationsParams.md docs/GetScatterSampleVisualizationsResponse.md docs/GetSecretManagerListResponse.md -docs/GetSessionEpochsResponse.md -docs/GetSessionRunsEvaluateParams.md -docs/GetSessionRunsEvaluateResponse.md -docs/GetSessionRunsVisualizationsParams.md -docs/GetSessionRunsVisualizationsResponse.md docs/GetSessionTestResultsRequest.md -docs/GetSessionsEpochsRequest.md docs/GetSignedUrlParams.md docs/GetSingleIssueParams.md docs/GetSingleSessionTestRequest.md @@ -225,6 +220,10 @@ docs/GetTeamUsersResponse.md docs/GetTeamsResponse.md docs/GetUploadModelSignedUrlRequest.md docs/GetUploadSignedUrlParams.md +docs/GetVersionEpochsResponse.md +docs/GetVersionsEpochsRequest.md +docs/GetVersionsVisualizationsParams.md +docs/GetVersionsVisualizationsResponse.md docs/GradsAnalysis.md docs/GradsItem.md docs/GraphData.md @@ -274,6 +273,7 @@ docs/JobNotificationBaseContext.md docs/JobNotificationContext.md docs/JobNotificationLeepScriptContext.md docs/JobNotificationModelContext.md +docs/JobNotificationProjectContext.md docs/JobNotificationSampleContext.md docs/JobParams.md docs/JobStatus.md @@ -290,8 +290,8 @@ docs/LeapDataType.md docs/LicenseMetadata.md docs/LicenseType.md docs/LinkedProject.md -docs/LoadSessionParams.md -docs/LoadSessionResponse.md +docs/LoadModelParams.md +docs/LoadModelResponse.md docs/LoadVersionParams.md docs/LoadVersionResponse.md docs/LocalLoginParams.md @@ -299,6 +299,7 @@ docs/LocalLoginResponse.md docs/LogExternalEpochDataRequest.md docs/LoginParams.md docs/LossMessageParams.md +docs/LowPerformanceInsight.md docs/MachineTypeOption.md docs/MaskImageData.md docs/MaskTextData.md @@ -335,6 +336,8 @@ docs/PartialPopulationExplorationArtifacts.md docs/PickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestOrReRunAfterFail.md docs/PodLogs.md docs/PopExploreInfo.md +docs/PopulateCollectionFromFiltersParams.md +docs/PopulateCollectionFromFiltersResponse.md docs/PopulationExplorationDashlet.md docs/PopulationExplorationDashletData.md docs/PopulationExplorationJobParams.md @@ -350,8 +353,6 @@ docs/ProjectStatus.md docs/PushCodeSnapshotParams.md docs/PushCodeSnapshotResponse.md docs/QueryFieldValues.md -docs/RecentSessionsResponse.md -docs/RecentTeamSessionsRequestParams.md docs/ReductionAlgorithm.md docs/RemoveSampleCollectionParams.md docs/RocConfusionMatrixParams.md @@ -381,21 +382,12 @@ docs/SchemaWithKey.md docs/SecretManager.md docs/SendUserMessageParams.md docs/SendUserMessageResponse.md -docs/Session.md -docs/SessionHashRequestParams.md -docs/SessionPopulatedJob.md -docs/SessionRunData.md -docs/SessionRunEvaluateParams.md -docs/SessionRunToEpoch.md docs/SessionTest.md docs/SessionTestData.md docs/SessionTestResult.md docs/SessionTestResultError.md docs/SessionTestResultNotFound.md docs/SessionTestResultSuccess.md -docs/SessionVersionIdRequestParams.md -docs/SessionWeightData.md -docs/SessionsResponse.md docs/SetCodeChallengeRequest.md docs/SetDefaultTeamRequest.md docs/SetExperimentPropertiesRequest.md @@ -423,6 +415,7 @@ docs/StopJobResponse.md docs/StringSchema.md docs/SyntheticData.md docs/SyntheticDataJobParams.md +docs/SyntheticDataJobParamsSourcesInner.md docs/SyntheticDataResponse.md docs/TagModelRequest.md docs/TerminateAllJobsParams.md @@ -433,7 +426,6 @@ docs/TestFilterOperatorType.md docs/TestStatus.md docs/TextData.md docs/TextViz.md -docs/TrainingParams.md docs/TrashSecretManagerParams.md docs/TrashSecretManagerResponse.md docs/UnderRepresentationInsight.md @@ -443,8 +435,6 @@ docs/UpdateProjectMetaRequest.md docs/UpdateSampleCollectionParams.md docs/UpdateSecretManagerParams.md docs/UpdateSecretManagerResponse.md -docs/UpdateSessionNameParams.md -docs/UpdateSessionRunNameParams.md docs/UpdateSessionTestRequest.md docs/UpdateTeamPublicNameRequest.md docs/UpdateUserNameRequest.md @@ -465,6 +455,9 @@ docs/ValidatedLossNode.md docs/ValidatedNode.md docs/ValueWithKey.md docs/Version.md +docs/VersionEvaluateParams.md +docs/VersionPopulatedJob.md +docs/VersionStatus.md docs/VideoData.md docs/VideoHeatmapData.md docs/VisData.md @@ -477,7 +470,6 @@ docs/VisualizerInstance.md docs/VisualizerMessageParams.md docs/VizInfoType.md docs/VizType.md -docs/WeightAssetData.md git_push.sh go.mod go.sum @@ -496,6 +488,7 @@ model_add_secret_manager_params.go model_add_secret_manager_response.go model_aggregation_method.go model_aggregations.go +model_aggressor_fixing.go model_all_sessions_test_results.go model_analytics_dashlet.go model_analytics_dashlet_data.go @@ -521,6 +514,8 @@ model_code_snapshot_info.go model_code_snapshot_result.go model_code_snapshot_setup_status.go model_code_snapshot_upload_url_response.go +model_collection_display_data.go +model_collection_filter_display_data.go model_composite_viz_data.go model_composite_viz_item.go model_confusion_matrix_labels_response.go @@ -562,8 +557,6 @@ model_delete_generated_label_params.go model_delete_issue_params.go model_delete_project_params.go model_delete_samples_analysis_params.go -model_delete_session_params.go -model_delete_session_run_params.go model_delete_session_test_request.go model_delete_synthetic_data_params.go model_delete_team_request.go @@ -574,7 +567,6 @@ model_direction.go model_distinct_agg.go model_domain_gap_insight.go model_duplication_insight.go -model_early_stop_params.go model_engine_setting_key.go model_epoch_data.go model_epoch_data_external_data.go @@ -584,8 +576,8 @@ model_epoch_metrics_value_any_of_1.go model_epoch_metrics_value_any_of_2.go model_es_filter.go model_es_filter_value.go -model_evaluate_existing_session_params.go -model_evaluate_new_session_params.go +model_evaluate_existing_version_params.go +model_evaluate_new_version_params.go model_evaluate_params.go model_events_snapshot.go model_export_model_params.go @@ -607,14 +599,13 @@ model_fetch_similar_response.go model_fetch_similar_response_ready_artifacts.go model_filter_display_data.go model_filter_operator_type.go -model_filter_session_run.go +model_filter_version.go model_general_message_params.go model_generate_dataset_balancing_params.go model_generate_insights_params.go model_generate_label_params.go model_generate_streaming_samples_vis_params.go model_generate_synthetic_data_params.go -model_generate_synthetic_data_params_sources_inner.go model_generated_label.go model_generated_labels_response.go model_generic_base_image.go @@ -628,6 +619,8 @@ model_get_auth_status_response.go model_get_code_snapshot_params.go model_get_code_snapshot_response.go model_get_code_snapshot_upload_url_params.go +model_get_collection_display_data_params.go +model_get_collection_display_data_response.go model_get_confusion_matrix_labels.go model_get_confusion_matrix_result_combinations_params.go model_get_current_project_version_params.go @@ -640,8 +633,8 @@ model_get_dataset_balancing_params.go model_get_download_signed_url_params.go model_get_download_signed_url_response.go model_get_environment_info_response.go -model_get_exported_session_run_jobs_params.go -model_get_exported_session_run_jobs_response.go +model_get_exported_model_jobs_params.go +model_get_exported_model_jobs_response.go model_get_fields_values_request.go model_get_fields_values_response.go model_get_fields_values_response_results_inner.go @@ -677,13 +670,7 @@ model_get_sample_visualizations_paths_response.go model_get_scatter_sample_visualizations_params.go model_get_scatter_sample_visualizations_response.go model_get_secret_manager_list_response.go -model_get_session_epochs_response.go -model_get_session_runs_evaluate_params.go -model_get_session_runs_evaluate_response.go -model_get_session_runs_visualizations_params.go -model_get_session_runs_visualizations_response.go model_get_session_test_results_request.go -model_get_sessions_epochs_request.go model_get_signed_url_params.go model_get_single_issue_params.go model_get_single_session_test_request.go @@ -699,6 +686,10 @@ model_get_team_users_response.go model_get_teams_response.go model_get_upload_model_signed_url_request.go model_get_upload_signed_url_params.go +model_get_version_epochs_response.go +model_get_versions_epochs_request.go +model_get_versions_visualizations_params.go +model_get_versions_visualizations_response.go model_grads_analysis.go model_grads_item.go model_graph_data.go @@ -748,6 +739,7 @@ model_job_notification_base_context.go model_job_notification_context.go model_job_notification_leep_script_context.go model_job_notification_model_context.go +model_job_notification_project_context.go model_job_notification_sample_context.go model_job_params.go model_job_status.go @@ -764,8 +756,8 @@ model_leap_data_type.go model_license_metadata.go model_license_type.go model_linked_project.go -model_load_session_params.go -model_load_session_response.go +model_load_model_params.go +model_load_model_response.go model_load_version_params.go model_load_version_response.go model_local_login_params.go @@ -773,6 +765,7 @@ model_local_login_response.go model_log_external_epoch_data_request.go model_login_params.go model_loss_message_params.go +model_low_performance_insight.go model_machine_type_option.go model_mask_image_data.go model_mask_text_data.go @@ -809,6 +802,8 @@ model_partial_population_exploration_artifacts_.go model_pick_population_exploration_params_exclude_keyof_population_exploration_params_digest_or_re_run_after_fail__.go model_pod_logs.go model_pop_explore_info.go +model_populate_collection_from_filters_params.go +model_populate_collection_from_filters_response.go model_population_exploration_dashlet.go model_population_exploration_dashlet_data.go model_population_exploration_job_params.go @@ -824,8 +819,6 @@ model_project_status.go model_push_code_snapshot_params.go model_push_code_snapshot_response.go model_query_field_values.go -model_recent_sessions_response.go -model_recent_team_sessions_request_params.go model_reduction_algorithm.go model_remove_sample_collection_params.go model_roc_confusion_matrix_params.go @@ -855,21 +848,12 @@ model_schema_with_key.go model_secret_manager.go model_send_user_message_params.go model_send_user_message_response.go -model_session.go -model_session_hash_request_params.go -model_session_populated_job.go -model_session_run_data.go -model_session_run_evaluate_params.go -model_session_run_to_epoch.go model_session_test_.go model_session_test_data.go model_session_test_result.go model_session_test_result_error.go model_session_test_result_not_found.go model_session_test_result_success.go -model_session_version_id_request_params.go -model_session_weight_data.go -model_sessions_response.go model_set_code_challenge_request.go model_set_default_team_request.go model_set_experiment_properties_request.go @@ -897,6 +881,7 @@ model_stop_job_response.go model_string_schema.go model_synthetic_data.go model_synthetic_data_job_params.go +model_synthetic_data_job_params_sources_inner.go model_synthetic_data_response.go model_tag_model_request.go model_terminate_all_jobs_params.go @@ -907,7 +892,6 @@ model_test_filter_operator_type.go model_test_status.go model_text_data.go model_text_viz.go -model_training_params.go model_trash_secret_manager_params.go model_trash_secret_manager_response.go model_under_representation_insight.go @@ -917,8 +901,6 @@ model_update_project_meta_request.go model_update_sample_collection_params.go model_update_secret_manager_params.go model_update_secret_manager_response.go -model_update_session_name_params.go -model_update_session_run_name_params.go model_update_session_test_request.go model_update_team_public_name_request.go model_update_user_name_request.go @@ -939,6 +921,9 @@ model_validated_loss_node.go model_validated_node.go model_value_with_key.go model_version.go +model_version_evaluate_params.go +model_version_populated_job.go +model_version_status.go model_video_data.go model_video_heatmap_data.go model_vis_data.go @@ -951,7 +936,6 @@ model_visualizer_instance.go model_visualizer_message_params.go model_viz_info_type.go model_viz_type.go -model_weight_asset_data.go response.go test/api_default_test.go utils.go diff --git a/pkg/tensorleapapi/README.md b/pkg/tensorleapapi/README.md index a1bc1c4cf..96e46afaf 100644 --- a/pkg/tensorleapapi/README.md +++ b/pkg/tensorleapapi/README.md @@ -5,7 +5,7 @@ No description provided (generated by Openapi Generator https://github.com/opena ## Overview This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client. -- API version: 11.0.7 +- API version: 11.0.23 - Package version: 1.0.0 - Generator version: 7.14.0 - Build package: org.openapitools.codegen.languages.GoClientCodegen @@ -80,7 +80,7 @@ Class | Method | HTTP request | Description ------------ | ------------- | ------------- | ------------- *DefaultAPI* | [**Activate**](docs/DefaultAPI.md#activate) | **Post** /auth/activate | *DefaultAPI* | [**AddDashboard**](docs/DefaultAPI.md#adddashboard) | **Post** /dashboards/addDashboard | -*DefaultAPI* | [**AddExportModelJob**](docs/DefaultAPI.md#addexportmodeljob) | **Post** /exportedsessionruns/addExportModelJob | +*DefaultAPI* | [**AddExportModelJob**](docs/DefaultAPI.md#addexportmodeljob) | **Post** /exportedmodels/addExportModelJob | *DefaultAPI* | [**AddIssue**](docs/DefaultAPI.md#addissue) | **Post** /issues/addIssue | *DefaultAPI* | [**AddProject**](docs/DefaultAPI.md#addproject) | **Post** /projects/addProject | *DefaultAPI* | [**AddSampleCollection**](docs/DefaultAPI.md#addsamplecollection) | **Post** /sample-collection/addSampleCollection | @@ -100,8 +100,6 @@ Class | Method | HTTP request | Description *DefaultAPI* | [**DeleteIssue**](docs/DefaultAPI.md#deleteissue) | **Post** /issues/deleteIssue | *DefaultAPI* | [**DeleteProject**](docs/DefaultAPI.md#deleteproject) | **Post** /projects/deleteProject | *DefaultAPI* | [**DeleteSampleAnalysis**](docs/DefaultAPI.md#deletesampleanalysis) | **Post** /visualizations/deleteSampleAnalysis | -*DefaultAPI* | [**DeleteSession**](docs/DefaultAPI.md#deletesession) | **Post** /sessions/deleteSession | -*DefaultAPI* | [**DeleteSessionRun**](docs/DefaultAPI.md#deletesessionrun) | **Post** /sessions/deleteSessionRun | *DefaultAPI* | [**DeleteSessionTest**](docs/DefaultAPI.md#deletesessiontest) | **Post** /sessions-tests/deleteSessionTest | *DefaultAPI* | [**DeleteSyntheticData**](docs/DefaultAPI.md#deletesyntheticdata) | **Post** /datasetcuration/deleteSyntheticData | *DefaultAPI* | [**DeleteTeam**](docs/DefaultAPI.md#deleteteam) | **Post** /teams/deleteTeam | @@ -126,6 +124,7 @@ Class | Method | HTTP request | Description *DefaultAPI* | [**GetBalancedAccuracy**](docs/DefaultAPI.md#getbalancedaccuracy) | **Post** /sessionmetrics/getBalancedAccuracy | *DefaultAPI* | [**GetCodeSnapshot**](docs/DefaultAPI.md#getcodesnapshot) | **Post** /versions/getCodeSnapshot | *DefaultAPI* | [**GetCodeSnapshotUploadUrl**](docs/DefaultAPI.md#getcodesnapshotuploadurl) | **Post** /versions/getCodeSnapshotUploadUrl | +*DefaultAPI* | [**GetCollectionDisplayData**](docs/DefaultAPI.md#getcollectiondisplaydata) | **Post** /sample-collection/getCollectionDisplayData | *DefaultAPI* | [**GetConfusionMatrixLabels**](docs/DefaultAPI.md#getconfusionmatrixlabels) | **Post** /sessionmetrics/getConfusionMatrixLabels | *DefaultAPI* | [**GetConfusionMatrixResultCombinations**](docs/DefaultAPI.md#getconfusionmatrixresultcombinations) | **Post** /sessionmetrics/getConfusionMatrixResultCombinations | *DefaultAPI* | [**GetConfusionMatrixTable**](docs/DefaultAPI.md#getconfusionmatrixtable) | **Post** /sessionmetrics/getConfusionMatrixTable | @@ -137,7 +136,7 @@ Class | Method | HTTP request | Description *DefaultAPI* | [**GetDownloadSignedUrl**](docs/DefaultAPI.md#getdownloadsignedurl) | **Post** /versions/getDownloadSignedUrl | *DefaultAPI* | [**GetEngineSettings**](docs/DefaultAPI.md#getenginesettings) | **Post** /settings/getEngineSettings | *DefaultAPI* | [**GetEnvironmentInfo**](docs/DefaultAPI.md#getenvironmentinfo) | **Post** /metadata/getEnvironmentInfo | -*DefaultAPI* | [**GetExportedSessionJobs**](docs/DefaultAPI.md#getexportedsessionjobs) | **Post** /exportedsessionruns/getExportedSessionJobs | +*DefaultAPI* | [**GetExportedModelJobs**](docs/DefaultAPI.md#getexportedmodeljobs) | **Post** /exportedmodels/getExportedModelJobs | *DefaultAPI* | [**GetF1Score**](docs/DefaultAPI.md#getf1score) | **Post** /sessionmetrics/getF1Score | *DefaultAPI* | [**GetFetchSimilarStatus**](docs/DefaultAPI.md#getfetchsimilarstatus) | **Post** /visualizations/getFetchSimilarStatus | *DefaultAPI* | [**GetFieldsValues**](docs/DefaultAPI.md#getfieldsvalues) | **Post** /sessionmetrics/getFieldsValues | @@ -161,19 +160,13 @@ Class | Method | HTTP request | Description *DefaultAPI* | [**GetProjectSlimVersions**](docs/DefaultAPI.md#getprojectslimversions) | **Post** /versions/getProjectSlimVersions | *DefaultAPI* | [**GetProjects**](docs/DefaultAPI.md#getprojects) | **Post** /projects/getProjects | *DefaultAPI* | [**GetRecallScore**](docs/DefaultAPI.md#getrecallscore) | **Post** /sessionmetrics/getRecallScore | -*DefaultAPI* | [**GetRecentTeamSessions**](docs/DefaultAPI.md#getrecentteamsessions) | **Post** /sessions/getRecentTeamSessions | *DefaultAPI* | [**GetRoc**](docs/DefaultAPI.md#getroc) | **Post** /sessionmetrics/getRoc | *DefaultAPI* | [**GetSampleCollections**](docs/DefaultAPI.md#getsamplecollections) | **Post** /sample-collection/getSampleCollections | *DefaultAPI* | [**GetSampleEnrichment**](docs/DefaultAPI.md#getsampleenrichment) | **Post** /sessionmetrics/getSampleEnrichment | *DefaultAPI* | [**GetSampleVisualizationsPath**](docs/DefaultAPI.md#getsamplevisualizationspath) | **Post** /visualizations/getSampleVisualizationsPath | *DefaultAPI* | [**GetScatterSampleVisualizations**](docs/DefaultAPI.md#getscattersamplevisualizations) | **Post** /visualizations/getScatterSampleVisualizations | *DefaultAPI* | [**GetSecretManagerList**](docs/DefaultAPI.md#getsecretmanagerlist) | **Post** /secret-manager/getSecretManagerList | -*DefaultAPI* | [**GetSessionRunsEvaluate**](docs/DefaultAPI.md#getsessionrunsevaluate) | **Post** /sessions/getSessionRunsEvaluate | -*DefaultAPI* | [**GetSessionRunsVisualizations**](docs/DefaultAPI.md#getsessionrunsvisualizations) | **Post** /visualizations/getSessionRunsVisualizations | *DefaultAPI* | [**GetSessionTestResult**](docs/DefaultAPI.md#getsessiontestresult) | **Post** /sessions-tests/getSessionTestResult | -*DefaultAPI* | [**GetSessionsByHash**](docs/DefaultAPI.md#getsessionsbyhash) | **Post** /sessions/getSessionsByHash | -*DefaultAPI* | [**GetSessionsByVersionId**](docs/DefaultAPI.md#getsessionsbyversionid) | **Post** /sessions/getSessionsByVersionId | -*DefaultAPI* | [**GetSessionsEpochs**](docs/DefaultAPI.md#getsessionsepochs) | **Post** /versions/getSessionsEpochs | *DefaultAPI* | [**GetSignedUrl**](docs/DefaultAPI.md#getsignedurl) | **Post** /versions/getSignedUrl | *DefaultAPI* | [**GetSingleIssue**](docs/DefaultAPI.md#getsingleissue) | **Post** /issues/getSingleIssue | *DefaultAPI* | [**GetSingleSessionTest**](docs/DefaultAPI.md#getsinglesessiontest) | **Post** /sessions-tests/getSingleSessionTest | @@ -188,6 +181,8 @@ Class | Method | HTTP request | Description *DefaultAPI* | [**GetTeams**](docs/DefaultAPI.md#getteams) | **Post** /teams/getTeams | *DefaultAPI* | [**GetUploadModelSignedUrl**](docs/DefaultAPI.md#getuploadmodelsignedurl) | **Post** /versions/getUploadModelSignedUrl | *DefaultAPI* | [**GetUploadSignedUrl**](docs/DefaultAPI.md#getuploadsignedurl) | **Post** /versions/getUploadSignedUrl | +*DefaultAPI* | [**GetVersionsEpochs**](docs/DefaultAPI.md#getversionsepochs) | **Post** /versions/getVersionsEpochs | +*DefaultAPI* | [**GetVersionsVisualizations**](docs/DefaultAPI.md#getversionsvisualizations) | **Post** /visualizations/getVersionsVisualizations | *DefaultAPI* | [**GetVisualization**](docs/DefaultAPI.md#getvisualization) | **Post** /visualizations/getVisualization | *DefaultAPI* | [**GetXYChart**](docs/DefaultAPI.md#getxychart) | **Post** /sessionmetrics/getXYChart | *DefaultAPI* | [**HealthCheck**](docs/DefaultAPI.md#healthcheck) | **Get** /monitor/healthCheck | @@ -203,6 +198,7 @@ Class | Method | HTTP request | Description *DefaultAPI* | [**Login**](docs/DefaultAPI.md#login) | **Post** /auth/login | *DefaultAPI* | [**Logout**](docs/DefaultAPI.md#logout) | **Post** /auth/logout | *DefaultAPI* | [**OverwriteModel**](docs/DefaultAPI.md#overwritemodel) | **Post** /versions/overwriteModel | +*DefaultAPI* | [**PopulateCollectionFromFilters**](docs/DefaultAPI.md#populatecollectionfromfilters) | **Post** /sample-collection/populateCollectionFromFilters | *DefaultAPI* | [**PopulationExploration**](docs/DefaultAPI.md#populationexploration) | **Post** /visualizations/populationExploration | *DefaultAPI* | [**PushCodeSnapshot**](docs/DefaultAPI.md#pushcodesnapshot) | **Post** /versions/pushCodeSnapshot | *DefaultAPI* | [**RefreshLocalAuth**](docs/DefaultAPI.md#refreshlocalauth) | **Post** /auth/refreshLocalAuth | @@ -229,8 +225,6 @@ Class | Method | HTTP request | Description *DefaultAPI* | [**UpdateProjectMeta**](docs/DefaultAPI.md#updateprojectmeta) | **Post** /projects/updateProjectMeta | *DefaultAPI* | [**UpdateSampleCollection**](docs/DefaultAPI.md#updatesamplecollection) | **Post** /sample-collection/updateSampleCollection | *DefaultAPI* | [**UpdateSecretManager**](docs/DefaultAPI.md#updatesecretmanager) | **Post** /secret-manager/updateSecretManager | -*DefaultAPI* | [**UpdateSessionName**](docs/DefaultAPI.md#updatesessionname) | **Post** /sessions/updateSessionName | -*DefaultAPI* | [**UpdateSessionRun**](docs/DefaultAPI.md#updatesessionrun) | **Post** /sessionsruns/updateSessionRun | *DefaultAPI* | [**UpdateSessionTest**](docs/DefaultAPI.md#updatesessiontest) | **Post** /sessions-tests/updateSessionTest | *DefaultAPI* | [**UpdateTeamPublicName**](docs/DefaultAPI.md#updateteampublicname) | **Post** /teams/updateTeamPublicName | *DefaultAPI* | [**UpdateUserName**](docs/DefaultAPI.md#updateusername) | **Post** /users/updateUserName | @@ -262,6 +256,7 @@ Class | Method | HTTP request | Description - [AddSecretManagerResponse](docs/AddSecretManagerResponse.md) - [AggregationMethod](docs/AggregationMethod.md) - [Aggregations](docs/Aggregations.md) + - [AggressorFixing](docs/AggressorFixing.md) - [AllSessionsTestResults](docs/AllSessionsTestResults.md) - [AnalyticsDashlet](docs/AnalyticsDashlet.md) - [AnalyticsDashletData](docs/AnalyticsDashletData.md) @@ -287,6 +282,8 @@ Class | Method | HTTP request | Description - [CodeSnapshotResult](docs/CodeSnapshotResult.md) - [CodeSnapshotSetupStatus](docs/CodeSnapshotSetupStatus.md) - [CodeSnapshotUploadUrlResponse](docs/CodeSnapshotUploadUrlResponse.md) + - [CollectionDisplayData](docs/CollectionDisplayData.md) + - [CollectionFilterDisplayData](docs/CollectionFilterDisplayData.md) - [CompositeVizData](docs/CompositeVizData.md) - [CompositeVizItem](docs/CompositeVizItem.md) - [ConfusionMatrixLabelsResponse](docs/ConfusionMatrixLabelsResponse.md) @@ -328,8 +325,6 @@ Class | Method | HTTP request | Description - [DeleteIssueParams](docs/DeleteIssueParams.md) - [DeleteProjectParams](docs/DeleteProjectParams.md) - [DeleteSamplesAnalysisParams](docs/DeleteSamplesAnalysisParams.md) - - [DeleteSessionParams](docs/DeleteSessionParams.md) - - [DeleteSessionRunParams](docs/DeleteSessionRunParams.md) - [DeleteSessionTestRequest](docs/DeleteSessionTestRequest.md) - [DeleteSyntheticDataParams](docs/DeleteSyntheticDataParams.md) - [DeleteTeamRequest](docs/DeleteTeamRequest.md) @@ -342,7 +337,6 @@ Class | Method | HTTP request | Description - [DuplicationInsight](docs/DuplicationInsight.md) - [ESFilter](docs/ESFilter.md) - [ESFilterValue](docs/ESFilterValue.md) - - [EarlyStopParams](docs/EarlyStopParams.md) - [EngineSettingKey](docs/EngineSettingKey.md) - [EpochData](docs/EpochData.md) - [EpochDataExternalData](docs/EpochDataExternalData.md) @@ -350,8 +344,8 @@ Class | Method | HTTP request | Description - [EpochMetricsValueAnyOf](docs/EpochMetricsValueAnyOf.md) - [EpochMetricsValueAnyOf1](docs/EpochMetricsValueAnyOf1.md) - [EpochMetricsValueAnyOf2](docs/EpochMetricsValueAnyOf2.md) - - [EvaluateExistingSessionParams](docs/EvaluateExistingSessionParams.md) - - [EvaluateNewSessionParams](docs/EvaluateNewSessionParams.md) + - [EvaluateExistingVersionParams](docs/EvaluateExistingVersionParams.md) + - [EvaluateNewVersionParams](docs/EvaluateNewVersionParams.md) - [EvaluateParams](docs/EvaluateParams.md) - [EventsSnapshot](docs/EventsSnapshot.md) - [ExportModelParams](docs/ExportModelParams.md) @@ -373,14 +367,13 @@ Class | Method | HTTP request | Description - [FetchSimilarResponseReadyArtifacts](docs/FetchSimilarResponseReadyArtifacts.md) - [FilterDisplayData](docs/FilterDisplayData.md) - [FilterOperatorType](docs/FilterOperatorType.md) - - [FilterSessionRun](docs/FilterSessionRun.md) + - [FilterVersion](docs/FilterVersion.md) - [GeneralMessageParams](docs/GeneralMessageParams.md) - [GenerateDatasetBalancingParams](docs/GenerateDatasetBalancingParams.md) - [GenerateInsightsParams](docs/GenerateInsightsParams.md) - [GenerateLabelParams](docs/GenerateLabelParams.md) - [GenerateStreamingSamplesVisParams](docs/GenerateStreamingSamplesVisParams.md) - [GenerateSyntheticDataParams](docs/GenerateSyntheticDataParams.md) - - [GenerateSyntheticDataParamsSourcesInner](docs/GenerateSyntheticDataParamsSourcesInner.md) - [GeneratedLabel](docs/GeneratedLabel.md) - [GeneratedLabelsResponse](docs/GeneratedLabelsResponse.md) - [GenericBaseImage](docs/GenericBaseImage.md) @@ -394,6 +387,8 @@ Class | Method | HTTP request | Description - [GetCodeSnapshotParams](docs/GetCodeSnapshotParams.md) - [GetCodeSnapshotResponse](docs/GetCodeSnapshotResponse.md) - [GetCodeSnapshotUploadUrlParams](docs/GetCodeSnapshotUploadUrlParams.md) + - [GetCollectionDisplayDataParams](docs/GetCollectionDisplayDataParams.md) + - [GetCollectionDisplayDataResponse](docs/GetCollectionDisplayDataResponse.md) - [GetConfusionMatrixLabels](docs/GetConfusionMatrixLabels.md) - [GetConfusionMatrixResultCombinationsParams](docs/GetConfusionMatrixResultCombinationsParams.md) - [GetCurrentProjectVersionParams](docs/GetCurrentProjectVersionParams.md) @@ -406,8 +401,8 @@ Class | Method | HTTP request | Description - [GetDownloadSignedUrlParams](docs/GetDownloadSignedUrlParams.md) - [GetDownloadSignedUrlResponse](docs/GetDownloadSignedUrlResponse.md) - [GetEnvironmentInfoResponse](docs/GetEnvironmentInfoResponse.md) - - [GetExportedSessionRunJobsParams](docs/GetExportedSessionRunJobsParams.md) - - [GetExportedSessionRunJobsResponse](docs/GetExportedSessionRunJobsResponse.md) + - [GetExportedModelJobsParams](docs/GetExportedModelJobsParams.md) + - [GetExportedModelJobsResponse](docs/GetExportedModelJobsResponse.md) - [GetFieldsValuesRequest](docs/GetFieldsValuesRequest.md) - [GetFieldsValuesResponse](docs/GetFieldsValuesResponse.md) - [GetFieldsValuesResponseResultsInner](docs/GetFieldsValuesResponseResultsInner.md) @@ -443,13 +438,7 @@ Class | Method | HTTP request | Description - [GetScatterSampleVisualizationsParams](docs/GetScatterSampleVisualizationsParams.md) - [GetScatterSampleVisualizationsResponse](docs/GetScatterSampleVisualizationsResponse.md) - [GetSecretManagerListResponse](docs/GetSecretManagerListResponse.md) - - [GetSessionEpochsResponse](docs/GetSessionEpochsResponse.md) - - [GetSessionRunsEvaluateParams](docs/GetSessionRunsEvaluateParams.md) - - [GetSessionRunsEvaluateResponse](docs/GetSessionRunsEvaluateResponse.md) - - [GetSessionRunsVisualizationsParams](docs/GetSessionRunsVisualizationsParams.md) - - [GetSessionRunsVisualizationsResponse](docs/GetSessionRunsVisualizationsResponse.md) - [GetSessionTestResultsRequest](docs/GetSessionTestResultsRequest.md) - - [GetSessionsEpochsRequest](docs/GetSessionsEpochsRequest.md) - [GetSignedUrlParams](docs/GetSignedUrlParams.md) - [GetSingleIssueParams](docs/GetSingleIssueParams.md) - [GetSingleSessionTestRequest](docs/GetSingleSessionTestRequest.md) @@ -465,6 +454,10 @@ Class | Method | HTTP request | Description - [GetTeamsResponse](docs/GetTeamsResponse.md) - [GetUploadModelSignedUrlRequest](docs/GetUploadModelSignedUrlRequest.md) - [GetUploadSignedUrlParams](docs/GetUploadSignedUrlParams.md) + - [GetVersionEpochsResponse](docs/GetVersionEpochsResponse.md) + - [GetVersionsEpochsRequest](docs/GetVersionsEpochsRequest.md) + - [GetVersionsVisualizationsParams](docs/GetVersionsVisualizationsParams.md) + - [GetVersionsVisualizationsResponse](docs/GetVersionsVisualizationsResponse.md) - [GradsAnalysis](docs/GradsAnalysis.md) - [GradsItem](docs/GradsItem.md) - [GraphData](docs/GraphData.md) @@ -514,6 +507,7 @@ Class | Method | HTTP request | Description - [JobNotificationContext](docs/JobNotificationContext.md) - [JobNotificationLeepScriptContext](docs/JobNotificationLeepScriptContext.md) - [JobNotificationModelContext](docs/JobNotificationModelContext.md) + - [JobNotificationProjectContext](docs/JobNotificationProjectContext.md) - [JobNotificationSampleContext](docs/JobNotificationSampleContext.md) - [JobParams](docs/JobParams.md) - [JobStatus](docs/JobStatus.md) @@ -530,8 +524,8 @@ Class | Method | HTTP request | Description - [LicenseMetadata](docs/LicenseMetadata.md) - [LicenseType](docs/LicenseType.md) - [LinkedProject](docs/LinkedProject.md) - - [LoadSessionParams](docs/LoadSessionParams.md) - - [LoadSessionResponse](docs/LoadSessionResponse.md) + - [LoadModelParams](docs/LoadModelParams.md) + - [LoadModelResponse](docs/LoadModelResponse.md) - [LoadVersionParams](docs/LoadVersionParams.md) - [LoadVersionResponse](docs/LoadVersionResponse.md) - [LocalLoginParams](docs/LocalLoginParams.md) @@ -539,6 +533,7 @@ Class | Method | HTTP request | Description - [LogExternalEpochDataRequest](docs/LogExternalEpochDataRequest.md) - [LoginParams](docs/LoginParams.md) - [LossMessageParams](docs/LossMessageParams.md) + - [LowPerformanceInsight](docs/LowPerformanceInsight.md) - [MachineTypeOption](docs/MachineTypeOption.md) - [MaskImageData](docs/MaskImageData.md) - [MaskTextData](docs/MaskTextData.md) @@ -575,6 +570,8 @@ Class | Method | HTTP request | Description - [PickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestOrReRunAfterFail](docs/PickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestOrReRunAfterFail.md) - [PodLogs](docs/PodLogs.md) - [PopExploreInfo](docs/PopExploreInfo.md) + - [PopulateCollectionFromFiltersParams](docs/PopulateCollectionFromFiltersParams.md) + - [PopulateCollectionFromFiltersResponse](docs/PopulateCollectionFromFiltersResponse.md) - [PopulationExplorationDashlet](docs/PopulationExplorationDashlet.md) - [PopulationExplorationDashletData](docs/PopulationExplorationDashletData.md) - [PopulationExplorationJobParams](docs/PopulationExplorationJobParams.md) @@ -590,8 +587,6 @@ Class | Method | HTTP request | Description - [PushCodeSnapshotParams](docs/PushCodeSnapshotParams.md) - [PushCodeSnapshotResponse](docs/PushCodeSnapshotResponse.md) - [QueryFieldValues](docs/QueryFieldValues.md) - - [RecentSessionsResponse](docs/RecentSessionsResponse.md) - - [RecentTeamSessionsRequestParams](docs/RecentTeamSessionsRequestParams.md) - [ReductionAlgorithm](docs/ReductionAlgorithm.md) - [RemoveSampleCollectionParams](docs/RemoveSampleCollectionParams.md) - [RocConfusionMatrixParams](docs/RocConfusionMatrixParams.md) @@ -621,21 +616,12 @@ Class | Method | HTTP request | Description - [SecretManager](docs/SecretManager.md) - [SendUserMessageParams](docs/SendUserMessageParams.md) - [SendUserMessageResponse](docs/SendUserMessageResponse.md) - - [Session](docs/Session.md) - - [SessionHashRequestParams](docs/SessionHashRequestParams.md) - - [SessionPopulatedJob](docs/SessionPopulatedJob.md) - - [SessionRunData](docs/SessionRunData.md) - - [SessionRunEvaluateParams](docs/SessionRunEvaluateParams.md) - - [SessionRunToEpoch](docs/SessionRunToEpoch.md) - [SessionTest](docs/SessionTest.md) - [SessionTestData](docs/SessionTestData.md) - [SessionTestResult](docs/SessionTestResult.md) - [SessionTestResultError](docs/SessionTestResultError.md) - [SessionTestResultNotFound](docs/SessionTestResultNotFound.md) - [SessionTestResultSuccess](docs/SessionTestResultSuccess.md) - - [SessionVersionIdRequestParams](docs/SessionVersionIdRequestParams.md) - - [SessionWeightData](docs/SessionWeightData.md) - - [SessionsResponse](docs/SessionsResponse.md) - [SetCodeChallengeRequest](docs/SetCodeChallengeRequest.md) - [SetDefaultTeamRequest](docs/SetDefaultTeamRequest.md) - [SetExperimentPropertiesRequest](docs/SetExperimentPropertiesRequest.md) @@ -663,6 +649,7 @@ Class | Method | HTTP request | Description - [StringSchema](docs/StringSchema.md) - [SyntheticData](docs/SyntheticData.md) - [SyntheticDataJobParams](docs/SyntheticDataJobParams.md) + - [SyntheticDataJobParamsSourcesInner](docs/SyntheticDataJobParamsSourcesInner.md) - [SyntheticDataResponse](docs/SyntheticDataResponse.md) - [TagModelRequest](docs/TagModelRequest.md) - [TerminateAllJobsParams](docs/TerminateAllJobsParams.md) @@ -673,7 +660,6 @@ Class | Method | HTTP request | Description - [TestStatus](docs/TestStatus.md) - [TextData](docs/TextData.md) - [TextViz](docs/TextViz.md) - - [TrainingParams](docs/TrainingParams.md) - [TrashSecretManagerParams](docs/TrashSecretManagerParams.md) - [TrashSecretManagerResponse](docs/TrashSecretManagerResponse.md) - [UnderRepresentationInsight](docs/UnderRepresentationInsight.md) @@ -683,8 +669,6 @@ Class | Method | HTTP request | Description - [UpdateSampleCollectionParams](docs/UpdateSampleCollectionParams.md) - [UpdateSecretManagerParams](docs/UpdateSecretManagerParams.md) - [UpdateSecretManagerResponse](docs/UpdateSecretManagerResponse.md) - - [UpdateSessionNameParams](docs/UpdateSessionNameParams.md) - - [UpdateSessionRunNameParams](docs/UpdateSessionRunNameParams.md) - [UpdateSessionTestRequest](docs/UpdateSessionTestRequest.md) - [UpdateTeamPublicNameRequest](docs/UpdateTeamPublicNameRequest.md) - [UpdateUserNameRequest](docs/UpdateUserNameRequest.md) @@ -705,6 +689,9 @@ Class | Method | HTTP request | Description - [ValidatedNode](docs/ValidatedNode.md) - [ValueWithKey](docs/ValueWithKey.md) - [Version](docs/Version.md) + - [VersionEvaluateParams](docs/VersionEvaluateParams.md) + - [VersionPopulatedJob](docs/VersionPopulatedJob.md) + - [VersionStatus](docs/VersionStatus.md) - [VideoData](docs/VideoData.md) - [VideoHeatmapData](docs/VideoHeatmapData.md) - [VisData](docs/VisData.md) @@ -717,7 +704,6 @@ Class | Method | HTTP request | Description - [VisualizerMessageParams](docs/VisualizerMessageParams.md) - [VizInfoType](docs/VizInfoType.md) - [VizType](docs/VizType.md) - - [WeightAssetData](docs/WeightAssetData.md) ## Documentation For Authorization diff --git a/pkg/tensorleapapi/api/openapi.yaml b/pkg/tensorleapapi/api/openapi.yaml index 01bbca3de..82a070afb 100644 --- a/pkg/tensorleapapi/api/openapi.yaml +++ b/pkg/tensorleapapi/api/openapi.yaml @@ -4,7 +4,7 @@ info: license: name: SEE LICENSE IN LICENSE.md title: node-server - version: 11.0.7 + version: 11.0.23 servers: - url: /api/v2 paths: @@ -506,6 +506,7 @@ paths: security: - jwt: - not-demo + - licensed /evaluate/continueEvaluate: post: operationId: ContinueEvaluate @@ -526,26 +527,26 @@ paths: security: - jwt: - not-demo - /exportedsessionruns/getExportedSessionJobs: + /exportedmodels/getExportedModelJobs: post: - operationId: GetExportedSessionJobs + operationId: GetExportedModelJobs parameters: [] requestBody: content: application/json: schema: - $ref: "#/components/schemas/GetExportedSessionRunJobsParams" + $ref: "#/components/schemas/GetExportedModelJobsParams" required: true responses: "200": content: application/json: schema: - $ref: "#/components/schemas/GetExportedSessionRunJobsResponse" + $ref: "#/components/schemas/GetExportedModelJobsResponse" description: Ok security: - jwt: [] - /exportedsessionruns/addExportModelJob: + /exportedmodels/addExportModelJob: post: operationId: AddExportModelJob parameters: [] @@ -1389,14 +1390,14 @@ paths: content: application/json: schema: - $ref: "#/components/schemas/LoadSessionParams" + $ref: "#/components/schemas/LoadModelParams" required: true responses: "200": content: application/json: schema: - $ref: "#/components/schemas/LoadSessionResponse" + $ref: "#/components/schemas/LoadModelResponse" description: Ok security: - jwt: [] @@ -1604,231 +1605,135 @@ paths: security: - jwt: - not-demo - /sample-collection/generateStreamingSamplesVis: - post: - operationId: GenerateStreamingSamplesVis - parameters: [] - requestBody: - content: - application/json: - schema: - $ref: "#/components/schemas/GenerateStreamingSamplesVisParams" - required: true - responses: - "204": - description: No content - security: - - jwt: - - not-demo - /secret-manager/addSecretManager: + /sample-collection/getCollectionDisplayData: post: - operationId: AddSecretManager + operationId: GetCollectionDisplayData parameters: [] requestBody: content: application/json: schema: - $ref: "#/components/schemas/AddSecretManagerParams" + $ref: "#/components/schemas/GetCollectionDisplayDataParams" required: true responses: "200": content: application/json: schema: - $ref: "#/components/schemas/AddSecretManagerResponse" + $ref: "#/components/schemas/GetCollectionDisplayDataResponse" description: Ok security: - jwt: - not-demo - /secret-manager/trashSecretManager: + /sample-collection/populateCollectionFromFilters: post: - operationId: TrashSecretManager + operationId: PopulateCollectionFromFilters parameters: [] requestBody: content: application/json: schema: - $ref: "#/components/schemas/TrashSecretManagerParams" + $ref: "#/components/schemas/PopulateCollectionFromFiltersParams" required: true responses: "200": content: application/json: schema: - $ref: "#/components/schemas/TrashSecretManagerResponse" + $ref: "#/components/schemas/PopulateCollectionFromFiltersResponse" description: Ok security: - jwt: - not-demo - /secret-manager/getSecretManagerList: - post: - operationId: GetSecretManagerList - parameters: [] - responses: - "200": - content: - application/json: - schema: - $ref: "#/components/schemas/GetSecretManagerListResponse" - description: Ok - security: - - jwt: [] - /secret-manager/updateSecretManager: + /sample-collection/generateStreamingSamplesVis: post: - operationId: UpdateSecretManager + operationId: GenerateStreamingSamplesVis parameters: [] requestBody: content: application/json: schema: - $ref: "#/components/schemas/UpdateSecretManagerParams" + $ref: "#/components/schemas/GenerateStreamingSamplesVisParams" required: true responses: - "200": - content: - application/json: - schema: - $ref: "#/components/schemas/UpdateSecretManagerResponse" - description: Ok + "204": + description: No content security: - jwt: - not-demo - /sessions/getSessionsByHash: + /secret-manager/addSecretManager: post: - operationId: GetSessionsByHash + operationId: AddSecretManager parameters: [] requestBody: content: application/json: schema: - $ref: "#/components/schemas/SessionHashRequestParams" + $ref: "#/components/schemas/AddSecretManagerParams" required: true responses: "200": content: application/json: schema: - $ref: "#/components/schemas/SessionsResponse" + $ref: "#/components/schemas/AddSecretManagerResponse" description: Ok security: - - jwt: [] - /sessions/getSessionsByVersionId: + - jwt: + - not-demo + /secret-manager/trashSecretManager: post: - operationId: GetSessionsByVersionId + operationId: TrashSecretManager parameters: [] requestBody: content: application/json: schema: - $ref: "#/components/schemas/SessionVersionIdRequestParams" + $ref: "#/components/schemas/TrashSecretManagerParams" required: true responses: "200": content: application/json: schema: - $ref: "#/components/schemas/SessionsResponse" + $ref: "#/components/schemas/TrashSecretManagerResponse" description: Ok security: - - jwt: [] - /sessions/getRecentTeamSessions: + - jwt: + - not-demo + /secret-manager/getSecretManagerList: post: - operationId: GetRecentTeamSessions + operationId: GetSecretManagerList parameters: [] - requestBody: - content: - application/json: - schema: - $ref: "#/components/schemas/RecentTeamSessionsRequestParams" - required: true responses: "200": content: application/json: schema: - $ref: "#/components/schemas/RecentSessionsResponse" + $ref: "#/components/schemas/GetSecretManagerListResponse" description: Ok security: - jwt: [] - /sessions/deleteSession: - post: - operationId: DeleteSession - parameters: [] - requestBody: - content: - application/json: - schema: - $ref: "#/components/schemas/DeleteSessionParams" - required: true - responses: - "204": - description: No content - security: - - jwt: [] - /sessions/deleteSessionRun: - post: - operationId: DeleteSessionRun - parameters: [] - requestBody: - content: - application/json: - schema: - $ref: "#/components/schemas/DeleteSessionRunParams" - required: true - responses: - "204": - description: No content - security: - - jwt: [] - /sessions/updateSessionName: - post: - operationId: UpdateSessionName - parameters: [] - requestBody: - content: - application/json: - schema: - $ref: "#/components/schemas/UpdateSessionNameParams" - required: true - responses: - "204": - description: No content - security: - - jwt: [] - /sessions/getSessionRunsEvaluate: + /secret-manager/updateSecretManager: post: - operationId: GetSessionRunsEvaluate + operationId: UpdateSecretManager parameters: [] requestBody: content: application/json: schema: - $ref: "#/components/schemas/GetSessionRunsEvaluateParams" + $ref: "#/components/schemas/UpdateSecretManagerParams" required: true responses: "200": content: application/json: schema: - $ref: "#/components/schemas/GetSessionRunsEvaluateResponse" + $ref: "#/components/schemas/UpdateSecretManagerResponse" description: Ok security: - - jwt: [] - /sessionsruns/updateSessionRun: - post: - operationId: UpdateSessionRun - parameters: [] - requestBody: - content: - application/json: - schema: - $ref: "#/components/schemas/UpdateSessionRunNameParams" - required: true - responses: - "204": - description: No content - security: - - jwt: [] + - jwt: + - not-demo /sessions-tests/createSessionTest: post: operationId: CreateSessionTest @@ -2483,22 +2388,22 @@ paths: security: - jwt: - not-demo - /versions/getSessionsEpochs: + /versions/getVersionsEpochs: post: - operationId: GetSessionsEpochs + operationId: GetVersionsEpochs parameters: [] requestBody: content: application/json: schema: - $ref: "#/components/schemas/GetSessionsEpochsRequest" + $ref: "#/components/schemas/GetVersionsEpochsRequest" required: true responses: "200": content: application/json: schema: - $ref: "#/components/schemas/GetSessionEpochsResponse" + $ref: "#/components/schemas/GetVersionEpochsResponse" description: Ok security: - jwt: @@ -2630,22 +2535,22 @@ paths: description: Ok security: - jwt: [] - /visualizations/getSessionRunsVisualizations: + /visualizations/getVersionsVisualizations: post: - operationId: GetSessionRunsVisualizations + operationId: GetVersionsVisualizations parameters: [] requestBody: content: application/json: schema: - $ref: "#/components/schemas/GetSessionRunsVisualizationsParams" + $ref: "#/components/schemas/GetVersionsVisualizationsParams" required: true responses: "200": content: application/json: schema: - $ref: "#/components/schemas/GetSessionRunsVisualizationsResponse" + $ref: "#/components/schemas/GetVersionsVisualizationsResponse" description: Ok security: - jwt: [] @@ -3360,37 +3265,40 @@ components: type: string type: array type: object - FilterSessionRun: + FilterVersion: additionalProperties: true example: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId properties: name: type: string id: type: string - sessionId: - type: string - epoch: - format: double - type: number required: - - epoch - id - name - - sessionId type: object - DataStateType: - enum: - - training - - validation - - test - - unlabeled - - additional - type: string + AggressorFixing: + additionalProperties: true + example: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + properties: + num_of_samples_to_label: + format: double + type: number + num_of_samples_to_acquire: + format: double + type: number + csv_path: + type: string + required: + - csv_path + - num_of_samples_to_acquire + - num_of_samples_to_label + type: object ScatterInsightType: enum: - low_performance @@ -3547,12 +3455,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -3566,7 +3469,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -3586,6 +3488,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -3615,7 +3521,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -3623,7 +3528,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -3636,13 +3540,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -3656,7 +3562,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -3676,6 +3581,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -3705,7 +3614,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -3713,7 +3621,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -3726,7 +3633,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -3790,7 +3704,7 @@ components: - operator - test_name type: object - UnderRepresentationInsight: + LowPerformanceInsight: additionalProperties: true example: severity: 4.145608029883936 @@ -3805,7 +3719,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -3825,6 +3738,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -3854,7 +3771,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -3862,7 +3778,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -3875,7 +3790,11 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true properties: id_: type: string @@ -3924,81 +3843,15 @@ components: items: $ref: "#/components/schemas/ESFilter" type: array - under_representation_dataset: - $ref: "#/components/schemas/DataStateType" - under_representation_n_samples: - format: double - type: number - over_representation_dataset: - $ref: "#/components/schemas/DataStateType" - over_representation_n_samples: - format: double - type: number - required: - - auto_generated - - blob_path - - id_ - - metrics_info - - min_hash - - mutual_info_elements - - n_samples - - over_representation_dataset - - over_representation_n_samples - - severity - - severity_metrics - - type - - under_representation_dataset - - under_representation_n_samples - type: object - ScatterInsightBase: - additionalProperties: true - properties: - id_: - type: string - parent_id: - type: string - type: - $ref: "#/components/schemas/ScatterInsightType" - display_filters: - items: - $ref: "#/components/schemas/ScatterFilter" - type: array - n_samples: - format: double - type: number - mutual_info_elements: - items: - $ref: "#/components/schemas/MutualInformationElement" - type: array - blob_path: + latent_space: type: string - severity: - format: double - type: number - severity_metrics: - items: - $ref: "#/components/schemas/SeverityMetricElement" - type: array - metrics_info: - items: - $ref: "#/components/schemas/InsightMetricInfo" - type: array - min_hash: - items: - format: double - type: number - type: array - csv_path: - type: string - automatic_tests: - items: - $ref: "#/components/schemas/InsightAutomaticTest" - type: array - auto_generated: + aggressor_fixing: + $ref: "#/components/schemas/AggressorFixing" + is_train_aggressor: type: boolean - es_filters_used_in_analysis: + overfitting_metrics: items: - $ref: "#/components/schemas/ESFilter" + type: string type: array required: - auto_generated @@ -4012,7 +3865,15 @@ components: - severity_metrics - type type: object - DuplicationInsight: + DataStateType: + enum: + - training + - validation + - test + - unlabeled + - additional + type: string + UnderRepresentationInsight: additionalProperties: true properties: id_: @@ -4062,8 +3923,18 @@ components: items: $ref: "#/components/schemas/ESFilter" type: array - subset: + latent_space: + type: string + under_representation_dataset: + $ref: "#/components/schemas/DataStateType" + under_representation_n_samples: + format: double + type: number + over_representation_dataset: $ref: "#/components/schemas/DataStateType" + over_representation_n_samples: + format: double + type: number required: - auto_generated - blob_path @@ -4072,12 +3943,15 @@ components: - min_hash - mutual_info_elements - n_samples + - over_representation_dataset + - over_representation_n_samples - severity - severity_metrics - - subset - type + - under_representation_dataset + - under_representation_n_samples type: object - DataLeakageInsight: + ScatterInsightBase: additionalProperties: true properties: id_: @@ -4127,6 +4001,139 @@ components: items: $ref: "#/components/schemas/ESFilter" type: array + latent_space: + type: string + required: + - auto_generated + - blob_path + - id_ + - metrics_info + - min_hash + - mutual_info_elements + - n_samples + - severity + - severity_metrics + - type + type: object + DuplicationInsight: + additionalProperties: true + properties: + id_: + type: string + parent_id: + type: string + type: + $ref: "#/components/schemas/ScatterInsightType" + display_filters: + items: + $ref: "#/components/schemas/ScatterFilter" + type: array + n_samples: + format: double + type: number + mutual_info_elements: + items: + $ref: "#/components/schemas/MutualInformationElement" + type: array + blob_path: + type: string + severity: + format: double + type: number + severity_metrics: + items: + $ref: "#/components/schemas/SeverityMetricElement" + type: array + metrics_info: + items: + $ref: "#/components/schemas/InsightMetricInfo" + type: array + min_hash: + items: + format: double + type: number + type: array + csv_path: + type: string + automatic_tests: + items: + $ref: "#/components/schemas/InsightAutomaticTest" + type: array + auto_generated: + type: boolean + es_filters_used_in_analysis: + items: + $ref: "#/components/schemas/ESFilter" + type: array + latent_space: + type: string + subset: + $ref: "#/components/schemas/DataStateType" + required: + - auto_generated + - blob_path + - id_ + - metrics_info + - min_hash + - mutual_info_elements + - n_samples + - severity + - severity_metrics + - subset + - type + type: object + DataLeakageInsight: + additionalProperties: true + properties: + id_: + type: string + parent_id: + type: string + type: + $ref: "#/components/schemas/ScatterInsightType" + display_filters: + items: + $ref: "#/components/schemas/ScatterFilter" + type: array + n_samples: + format: double + type: number + mutual_info_elements: + items: + $ref: "#/components/schemas/MutualInformationElement" + type: array + blob_path: + type: string + severity: + format: double + type: number + severity_metrics: + items: + $ref: "#/components/schemas/SeverityMetricElement" + type: array + metrics_info: + items: + $ref: "#/components/schemas/InsightMetricInfo" + type: array + min_hash: + items: + format: double + type: number + type: array + csv_path: + type: string + automatic_tests: + items: + $ref: "#/components/schemas/InsightAutomaticTest" + type: array + auto_generated: + type: boolean + es_filters_used_in_analysis: + items: + $ref: "#/components/schemas/ESFilter" + type: array + latent_space: + type: string first_subset: $ref: "#/components/schemas/DataStateType" second_subset: @@ -4195,6 +4202,8 @@ components: items: $ref: "#/components/schemas/ESFilter" type: array + latent_space: + type: string metadata_name: type: string domain_gap_score: @@ -4270,6 +4279,8 @@ components: items: $ref: "#/components/schemas/ESFilter" type: array + latent_space: + type: string subset: $ref: "#/components/schemas/DataStateType" required: @@ -4287,6 +4298,7 @@ components: type: object InsightType: anyOf: + - $ref: "#/components/schemas/LowPerformanceInsight" - $ref: "#/components/schemas/UnderRepresentationInsight" - $ref: "#/components/schemas/ScatterInsightBase" - $ref: "#/components/schemas/DuplicationInsight" @@ -4297,12 +4309,7 @@ components: additionalProperties: true example: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -4316,7 +4323,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -4336,6 +4342,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -4365,7 +4375,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -4373,7 +4382,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -4386,13 +4394,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -4406,7 +4416,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -4426,6 +4435,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -4455,7 +4468,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -4463,7 +4475,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -4476,7 +4487,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight properties: type: @@ -4529,27 +4547,41 @@ components: items: $ref: "#/components/schemas/SampleIdentity" type: array - epoch: - format: double - type: number filtersUsed: items: type: string type: array - sessionRun: - $ref: "#/components/schemas/FilterSessionRun" + version: + $ref: "#/components/schemas/FilterVersion" required: - - epoch - filtersUsed - limit - sampleIds - - sessionRun + - type + - version + type: object + CollectionFilterDisplayData: + additionalProperties: true + properties: + type: + enum: + - collection + nullable: false + type: string + collectionId: + type: string + projectId: + type: string + required: + - collectionId + - projectId - type type: object FilterDisplayData: anyOf: - $ref: "#/components/schemas/InsightFilterDisplayData" - $ref: "#/components/schemas/FetchSimilarFilterDisplayData" + - $ref: "#/components/schemas/CollectionFilterDisplayData" AnalyticsDashlet: additionalProperties: true example: @@ -4583,12 +4615,100 @@ components: disable: true displayData: insights: - - sessionRun: + - index: 2.3021358869347655 + insightType: + severity: 4.145608029883936 + automatic_tests: + - filter: null + metric_name: metric_name + metric_value: 6.84685269835264 + test_name: test_name + operator: equal + - filter: null + metric_name: metric_name + metric_value: 6.84685269835264 + test_name: test_name + operator: equal + id_: id_ + es_filters_used_in_analysis: + - null + - null + n_samples: 7.061401241503109 + metrics_info: + - metric_name: metric_name + metric_statistics: + - name: name + value: 1.0246457001441578 + - name: name + value: 1.0246457001441578 + - metric_name: metric_name + metric_statistics: + - name: name + value: 1.0246457001441578 + - name: name + value: 1.0246457001441578 + blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics + mutual_info_elements: + - features: + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + score: 2.027123023002322 + value_in_cluster: 9.301444243932576 + value_outside_cluster: 3.616076749251911 + is_unique: true + - features: + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + score: 2.027123023002322 + value_in_cluster: 9.301444243932576 + value_outside_cluster: 3.616076749251911 + is_unique: true + type: low_performance + auto_generated: true + severity_metrics: + - metric_name: metric_name + value: 7.386281948385884 + normalized_value: 1.2315135367772556 + - metric_name: metric_name + value: 7.386281948385884 + normalized_value: 1.2315135367772556 + min_hash: + - 1.4894159098541704 + - 1.4894159098541704 + csv_path: csv_path + parent_id: parent_id + display_filters: + - metric: metric + value: ScatterFilter_value + operator: smaller_than + - metric: metric + value: ScatterFilter_value + operator: smaller_than + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -4602,7 +4722,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -4622,6 +4741,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -4651,7 +4774,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -4659,7 +4781,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -4672,13 +4793,33 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + type: insight + value: + lt: null + gte: null + blob_paths: + - blob_paths + - blob_paths + lte: null + eq: null + lst: + - null + - null + gt: 5.637376656633329 + operator: between + - field: field + disable: true + displayData: + insights: + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -4692,7 +4833,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -4712,6 +4852,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -4741,7 +4885,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -4749,7 +4892,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -4762,31 +4904,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - type: insight - value: - lt: null - gte: null - blob_paths: - - blob_paths - - blob_paths - lte: null - eq: null - lst: - - null - - null - gt: 5.637376656633329 - operator: between - - field: field - disable: true - displayData: - insights: - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -4800,7 +4926,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -4820,6 +4945,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -4849,7 +4978,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -4857,7 +4985,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -4870,97 +4997,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 - insightType: - severity: 4.145608029883936 - automatic_tests: - - filter: null - metric_name: metric_name - metric_value: 6.84685269835264 - test_name: test_name - operator: equal - - filter: null - metric_name: metric_name - metric_value: 6.84685269835264 - test_name: test_name - operator: equal - under_representation_n_samples: 7.457744773683766 - id_: id_ - es_filters_used_in_analysis: - - null - - null - n_samples: 7.061401241503109 - metrics_info: - - metric_name: metric_name - metric_statistics: - - name: name - value: 1.0246457001441578 - - name: name - value: 1.0246457001441578 - - metric_name: metric_name - metric_statistics: - - name: name - value: 1.0246457001441578 - - name: name - value: 1.0246457001441578 - blob_path: blob_path - mutual_info_elements: - - features: - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - score: 2.027123023002322 - value_in_cluster: 9.301444243932576 - value_outside_cluster: 3.616076749251911 - is_unique: true - - features: - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - score: 2.027123023002322 - value_in_cluster: 9.301444243932576 - value_outside_cluster: 3.616076749251911 - is_unique: true - type: low_performance - auto_generated: true - over_representation_n_samples: 1.1730742509559433 - severity_metrics: - - metric_name: metric_name - value: 7.386281948385884 - normalized_value: 1.2315135367772556 - - metric_name: metric_name - value: 7.386281948385884 - normalized_value: 1.2315135367772556 - over_representation_dataset: null - min_hash: - - 1.4894159098541704 - - 1.4894159098541704 - csv_path: csv_path - parent_id: parent_id - display_filters: - - metric: metric - value: ScatterFilter_value - operator: smaller_than - - metric: metric - value: ScatterFilter_value - operator: smaller_than - under_representation_dataset: training type: insight value: lt: null @@ -5135,12 +5179,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -5154,7 +5193,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -5174,6 +5212,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -5203,7 +5245,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -5211,7 +5252,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -5224,13 +5264,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -5244,7 +5286,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -5264,6 +5305,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -5293,7 +5338,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -5301,7 +5345,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -5314,7 +5357,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -5333,12 +5383,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -5352,7 +5397,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -5372,6 +5416,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -5401,7 +5449,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -5409,7 +5456,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -5422,13 +5468,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -5442,7 +5490,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -5462,6 +5509,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -5491,7 +5542,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -5499,7 +5549,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -5512,7 +5561,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -5559,12 +5615,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -5578,7 +5629,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -5598,6 +5648,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -5627,7 +5681,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -5635,7 +5688,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -5648,13 +5700,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -5668,7 +5722,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -5688,6 +5741,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -5717,7 +5774,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -5725,7 +5781,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -5738,7 +5793,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -5757,12 +5819,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -5776,7 +5833,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -5796,6 +5852,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -5825,7 +5885,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -5833,7 +5892,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -5846,13 +5904,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -5866,7 +5926,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -5886,6 +5945,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -5915,7 +5978,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -5923,7 +5985,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -5936,7 +5997,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -6025,12 +6093,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -6044,7 +6107,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -6064,6 +6126,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -6093,7 +6159,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -6101,7 +6166,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -6114,13 +6178,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -6134,7 +6200,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -6154,6 +6219,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -6183,7 +6252,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -6191,7 +6259,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -6204,7 +6271,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -6223,12 +6297,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -6242,7 +6311,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -6262,6 +6330,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -6291,7 +6363,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -6299,7 +6370,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -6312,13 +6382,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -6332,7 +6404,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -6352,6 +6423,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -6381,7 +6456,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -6389,7 +6463,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -6402,7 +6475,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -6449,12 +6529,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -6468,7 +6543,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -6488,6 +6562,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -6517,7 +6595,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -6525,7 +6602,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -6538,13 +6614,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -6558,7 +6636,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -6578,6 +6655,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -6607,7 +6688,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -6615,7 +6695,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -6628,7 +6707,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -6647,12 +6733,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -6666,7 +6747,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -6686,6 +6766,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -6715,7 +6799,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -6723,7 +6806,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -6736,13 +6818,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -6756,7 +6840,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -6776,6 +6859,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -6805,7 +6892,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -6813,7 +6899,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -6826,7 +6911,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -6881,12 +6973,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -6900,7 +6987,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -6920,6 +7006,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -6949,7 +7039,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -6957,7 +7046,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -6970,13 +7058,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -6990,7 +7080,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -7010,6 +7099,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -7039,7 +7132,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -7047,7 +7139,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -7060,7 +7151,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -7079,12 +7177,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -7098,7 +7191,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -7118,6 +7210,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -7147,7 +7243,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -7155,7 +7250,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -7168,13 +7262,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -7188,7 +7284,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -7208,6 +7303,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -7237,7 +7336,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -7245,7 +7343,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -7258,7 +7355,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -7305,12 +7409,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -7324,7 +7423,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -7344,6 +7442,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -7373,7 +7475,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -7381,7 +7482,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -7394,13 +7494,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -7414,7 +7516,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -7434,6 +7535,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -7463,7 +7568,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -7471,7 +7575,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -7484,7 +7587,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -7503,12 +7613,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -7522,7 +7627,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -7542,6 +7646,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -7571,7 +7679,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -7579,7 +7686,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -7592,13 +7698,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -7612,7 +7720,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -7632,6 +7739,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -7661,7 +7772,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -7669,7 +7779,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -7682,7 +7791,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -7759,12 +7875,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -7778,7 +7889,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -7798,6 +7908,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -7827,7 +7941,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -7835,7 +7948,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -7848,13 +7960,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -7868,7 +7982,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -7888,6 +8001,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -7917,7 +8034,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -7925,7 +8041,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -7938,7 +8053,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -7957,12 +8079,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -7976,7 +8093,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -7996,6 +8112,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -8025,7 +8145,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -8033,7 +8152,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -8046,13 +8164,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -8066,7 +8186,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -8086,6 +8205,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -8115,7 +8238,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -8123,7 +8245,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -8136,7 +8257,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -8183,12 +8311,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -8202,7 +8325,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -8222,6 +8344,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -8251,7 +8377,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -8259,7 +8384,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -8272,13 +8396,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -8292,7 +8418,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -8312,6 +8437,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -8341,7 +8470,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -8349,7 +8477,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -8362,7 +8489,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -8381,12 +8515,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -8400,7 +8529,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -8420,6 +8548,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -8449,7 +8581,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -8457,7 +8588,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -8470,13 +8600,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -8490,7 +8622,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -8510,6 +8641,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -8539,7 +8674,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -8547,7 +8681,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -8560,7 +8693,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -8646,12 +8786,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -8665,7 +8800,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -8685,6 +8819,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -8714,7 +8852,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -8722,7 +8859,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -8735,13 +8871,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -8755,7 +8893,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -8775,6 +8912,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -8804,7 +8945,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -8812,7 +8952,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -8825,7 +8964,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -8844,12 +8990,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -8863,7 +9004,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -8883,6 +9023,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -8912,7 +9056,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -8920,7 +9063,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -8933,13 +9075,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -8953,7 +9097,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -8973,6 +9116,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -9002,7 +9149,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -9010,7 +9156,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -9023,7 +9168,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -9070,12 +9222,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -9089,7 +9236,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -9109,6 +9255,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -9138,7 +9288,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -9146,7 +9295,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -9159,13 +9307,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -9179,7 +9329,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -9199,6 +9348,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -9228,7 +9381,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -9236,7 +9388,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -9249,7 +9400,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -9268,12 +9426,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -9287,7 +9440,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -9307,6 +9459,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -9336,7 +9492,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -9344,7 +9499,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -9357,13 +9511,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -9377,7 +9533,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -9397,6 +9552,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -9426,7 +9585,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -9434,7 +9592,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -9447,7 +9604,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -9531,12 +9695,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -9550,7 +9709,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -9570,6 +9728,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -9599,7 +9761,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -9607,7 +9768,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -9620,13 +9780,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -9640,7 +9802,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -9660,6 +9821,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -9689,7 +9854,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -9697,7 +9861,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -9710,7 +9873,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -9729,12 +9899,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -9748,7 +9913,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -9768,6 +9932,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -9797,7 +9965,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -9805,7 +9972,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -9818,13 +9984,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -9838,7 +10006,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -9858,6 +10025,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -9887,7 +10058,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -9895,7 +10065,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -9908,7 +10077,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -9955,12 +10131,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -9974,7 +10145,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -9994,6 +10164,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -10023,7 +10197,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -10031,7 +10204,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -10044,13 +10216,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -10064,7 +10238,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -10084,6 +10257,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -10113,7 +10290,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -10121,7 +10297,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -10134,7 +10309,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -10153,12 +10335,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -10172,7 +10349,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -10192,6 +10368,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -10221,7 +10401,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -10229,7 +10408,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -10242,13 +10420,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -10262,7 +10442,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -10282,6 +10461,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -10311,7 +10494,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -10319,7 +10501,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -10332,7 +10513,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -10384,6 +10572,9 @@ components: stringFields: - stringFields - stringFields + booleanFields: + - booleanFields + - booleanFields properties: aggregatableFields: items: @@ -10397,12 +10588,17 @@ components: items: type: string type: array + booleanFields: + items: + type: string + type: array dateFields: items: type: string type: array required: - aggregatableFields + - booleanFields - dateFields - numericFields - stringFields @@ -10410,20 +10606,20 @@ components: GetDashletFieldsParams: additionalProperties: true example: + inferenceArtifactIds: + - inferenceArtifactIds + - inferenceArtifactIds projectId: projectId - sessionRunIds: - - sessionRunIds - - sessionRunIds properties: projectId: type: string - sessionRunIds: + inferenceArtifactIds: items: type: string type: array required: + - inferenceArtifactIds - projectId - - sessionRunIds type: object CalcPopulationExplorationDigestResponse: additionalProperties: true @@ -10444,7 +10640,7 @@ components: Pick_PopulationExplorationParams.Exclude_keyofPopulationExplorationParams.digest-or-reRunAfterFail__: description: "From T, pick a set of properties whose keys are in the union K" example: - fromEpoch: 6.027456183070403 + inferenceArtifactId: inferenceArtifactId elementInstance: true reductionAlgorithm: TSNE latentSpaceType: latentSpaceType @@ -10454,12 +10650,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -10473,7 +10664,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -10493,6 +10683,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -10522,7 +10716,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -10530,7 +10723,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -10543,13 +10735,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -10563,7 +10757,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -10583,6 +10776,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -10612,7 +10809,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -10620,7 +10816,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -10633,7 +10828,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -10652,12 +10854,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -10671,7 +10868,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -10691,6 +10887,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -10720,7 +10920,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -10728,7 +10927,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -10741,13 +10939,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -10761,7 +10961,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -10781,6 +10980,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -10810,7 +11013,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -10818,7 +11020,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -10831,7 +11032,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -10848,8 +11056,8 @@ components: operator: between useCustomLatentSpace: true forceExecute: true - sessionRunId: sessionRunId - numOfSamples: 1.4658129805029452 + versionId: versionId + numOfSamples: 6.027456183070403 notApplyTimeFilterOnUnlabeledOnly: true balanceBy: - balanceBy @@ -10861,12 +11069,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -10880,7 +11083,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -10900,6 +11102,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -10929,7 +11135,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -10937,7 +11142,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -10950,13 +11154,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -10970,7 +11176,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -10990,6 +11195,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -11019,7 +11228,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -11027,7 +11235,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -11040,7 +11247,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -11056,16 +11270,15 @@ components: gt: 5.637376656633329 operator: between properties: - sessionRunId: + versionId: + type: string + inferenceArtifactId: type: string projectId: type: string batchSize: format: double type: number - fromEpoch: - format: double - type: number filters: items: $ref: "#/components/schemas/ESFilter" @@ -11096,12 +11309,12 @@ components: required: - balanceBy - batchSize - - fromEpoch + - inferenceArtifactId - numOfSamples - projectId - reductionAlgorithm - - sessionRunId - shouldFillRemainingWithUnbalanced + - versionId type: object Omit_PopulationExplorationParams.digest-or-reRunAfterFail_: $ref: "#/components/schemas/Pick_PopulationExplorationParams.Exclude_keyofPopulationExplorationParams.digest-or-reRunAfterFail__" @@ -11109,7 +11322,7 @@ components: additionalProperties: true example: populationParams: - fromEpoch: 6.027456183070403 + inferenceArtifactId: inferenceArtifactId elementInstance: true reductionAlgorithm: TSNE latentSpaceType: latentSpaceType @@ -11119,12 +11332,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -11138,7 +11346,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -11158,6 +11365,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -11187,7 +11398,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -11195,7 +11405,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -11208,13 +11417,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -11228,7 +11439,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -11248,6 +11458,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -11277,7 +11491,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -11285,7 +11498,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -11298,7 +11510,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -11317,12 +11536,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -11336,7 +11550,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -11356,6 +11569,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -11385,7 +11602,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -11393,7 +11609,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -11406,13 +11621,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -11426,7 +11643,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -11446,6 +11662,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -11475,7 +11695,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -11483,7 +11702,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -11496,7 +11714,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -11513,8 +11738,8 @@ components: operator: between useCustomLatentSpace: true forceExecute: true - sessionRunId: sessionRunId - numOfSamples: 1.4658129805029452 + versionId: versionId + numOfSamples: 6.027456183070403 notApplyTimeFilterOnUnlabeledOnly: true balanceBy: - balanceBy @@ -11526,12 +11751,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -11545,7 +11765,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -11565,6 +11784,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -11594,7 +11817,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -11602,7 +11824,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -11615,13 +11836,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -11635,7 +11858,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -11655,6 +11877,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -11684,7 +11910,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -11692,7 +11917,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -11705,7 +11929,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -11729,20 +11960,14 @@ components: GenerateLabelParams: additionalProperties: true example: - sessionRunId: sessionRunId - numOfSamplesToLabel: 6.027456183070403 - epoch: 0.8008281904610115 + versionId: versionId + numOfSamplesToLabel: 0.8008281904610115 filters: - field: field disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -11756,7 +11981,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -11776,6 +12000,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -11805,7 +12033,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -11813,7 +12040,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -11826,13 +12052,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -11846,7 +12074,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -11866,6 +12093,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -11895,7 +12126,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -11903,7 +12133,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -11916,7 +12145,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -11935,12 +12171,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -11954,7 +12185,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -11974,6 +12204,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -12003,7 +12237,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -12011,7 +12244,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -12024,13 +12256,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -12044,7 +12278,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -12064,6 +12297,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -12093,7 +12330,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -12101,7 +12337,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -12114,7 +12349,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -12133,11 +12375,8 @@ components: properties: projectId: type: string - sessionRunId: + versionId: type: string - epoch: - format: double - type: number numOfSamplesToLabel: format: double type: number @@ -12146,9 +12385,8 @@ components: $ref: "#/components/schemas/ESFilter" type: array required: - - epoch - projectId - - sessionRunId + - versionId type: object JobStatus: enum: @@ -12160,519 +12398,1945 @@ components: - FINISHED - FAILED type: string - GeneratedLabel: + StatusEnum: + enum: + - UNSTARTED + - FAILED + - STARTED + - FINISHED + type: string + JobEventProgress: additionalProperties: true example: - sessionRunName: sessionRunName - filePath: filePath - filterFileUrl: filterFileUrl - epoch: 0.8008281904610115 - filters: - - field: field - disable: true - displayData: - insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 - insightType: - severity: 4.145608029883936 - automatic_tests: - - filter: null - metric_name: metric_name - metric_value: 6.84685269835264 - test_name: test_name - operator: equal - - filter: null - metric_name: metric_name - metric_value: 6.84685269835264 - test_name: test_name - operator: equal - under_representation_n_samples: 7.457744773683766 - id_: id_ - es_filters_used_in_analysis: - - null - - null - n_samples: 7.061401241503109 - metrics_info: - - metric_name: metric_name - metric_statistics: - - name: name - value: 1.0246457001441578 - - name: name - value: 1.0246457001441578 - - metric_name: metric_name - metric_statistics: - - name: name - value: 1.0246457001441578 - - name: name - value: 1.0246457001441578 - blob_path: blob_path - mutual_info_elements: - - features: - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - score: 2.027123023002322 - value_in_cluster: 9.301444243932576 - value_outside_cluster: 3.616076749251911 - is_unique: true - - features: - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - score: 2.027123023002322 - value_in_cluster: 9.301444243932576 - value_outside_cluster: 3.616076749251911 - is_unique: true - type: low_performance - auto_generated: true - over_representation_n_samples: 1.1730742509559433 - severity_metrics: - - metric_name: metric_name - value: 7.386281948385884 - normalized_value: 1.2315135367772556 - - metric_name: metric_name - value: 7.386281948385884 - normalized_value: 1.2315135367772556 - over_representation_dataset: null - min_hash: - - 1.4894159098541704 - - 1.4894159098541704 - csv_path: csv_path - parent_id: parent_id - display_filters: - - metric: metric - value: ScatterFilter_value - operator: smaller_than - - metric: metric - value: ScatterFilter_value - operator: smaller_than - under_representation_dataset: training - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 - insightType: - severity: 4.145608029883936 - automatic_tests: - - filter: null - metric_name: metric_name - metric_value: 6.84685269835264 - test_name: test_name - operator: equal - - filter: null - metric_name: metric_name - metric_value: 6.84685269835264 - test_name: test_name - operator: equal - under_representation_n_samples: 7.457744773683766 - id_: id_ - es_filters_used_in_analysis: - - null - - null - n_samples: 7.061401241503109 - metrics_info: - - metric_name: metric_name - metric_statistics: - - name: name - value: 1.0246457001441578 - - name: name - value: 1.0246457001441578 - - metric_name: metric_name - metric_statistics: - - name: name - value: 1.0246457001441578 - - name: name - value: 1.0246457001441578 - blob_path: blob_path - mutual_info_elements: - - features: - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - score: 2.027123023002322 - value_in_cluster: 9.301444243932576 - value_outside_cluster: 3.616076749251911 - is_unique: true - - features: - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - score: 2.027123023002322 - value_in_cluster: 9.301444243932576 - value_outside_cluster: 3.616076749251911 - is_unique: true - type: low_performance - auto_generated: true - over_representation_n_samples: 1.1730742509559433 - severity_metrics: - - metric_name: metric_name - value: 7.386281948385884 - normalized_value: 1.2315135367772556 - - metric_name: metric_name - value: 7.386281948385884 - normalized_value: 1.2315135367772556 - over_representation_dataset: null - min_hash: - - 1.4894159098541704 - - 1.4894159098541704 - csv_path: csv_path - parent_id: parent_id - display_filters: - - metric: metric - value: ScatterFilter_value - operator: smaller_than - - metric: metric - value: ScatterFilter_value - operator: smaller_than - under_representation_dataset: training - type: insight - value: - lt: null - gte: null - blob_paths: - - blob_paths - - blob_paths - lte: null - eq: null - lst: - - null - - null - gt: 5.637376656633329 - operator: between - - field: field - disable: true - displayData: - insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 - insightType: - severity: 4.145608029883936 - automatic_tests: - - filter: null - metric_name: metric_name - metric_value: 6.84685269835264 - test_name: test_name - operator: equal - - filter: null - metric_name: metric_name - metric_value: 6.84685269835264 - test_name: test_name - operator: equal - under_representation_n_samples: 7.457744773683766 - id_: id_ - es_filters_used_in_analysis: - - null - - null - n_samples: 7.061401241503109 - metrics_info: - - metric_name: metric_name - metric_statistics: - - name: name - value: 1.0246457001441578 - - name: name - value: 1.0246457001441578 - - metric_name: metric_name - metric_statistics: - - name: name - value: 1.0246457001441578 - - name: name - value: 1.0246457001441578 - blob_path: blob_path - mutual_info_elements: - - features: - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - score: 2.027123023002322 - value_in_cluster: 9.301444243932576 - value_outside_cluster: 3.616076749251911 - is_unique: true - - features: - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - score: 2.027123023002322 - value_in_cluster: 9.301444243932576 - value_outside_cluster: 3.616076749251911 - is_unique: true - type: low_performance - auto_generated: true - over_representation_n_samples: 1.1730742509559433 - severity_metrics: - - metric_name: metric_name - value: 7.386281948385884 - normalized_value: 1.2315135367772556 - - metric_name: metric_name - value: 7.386281948385884 - normalized_value: 1.2315135367772556 - over_representation_dataset: null - min_hash: - - 1.4894159098541704 - - 1.4894159098541704 - csv_path: csv_path - parent_id: parent_id - display_filters: - - metric: metric - value: ScatterFilter_value - operator: smaller_than - - metric: metric - value: ScatterFilter_value - operator: smaller_than - under_representation_dataset: training - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 - insightType: - severity: 4.145608029883936 - automatic_tests: - - filter: null - metric_name: metric_name - metric_value: 6.84685269835264 - test_name: test_name - operator: equal - - filter: null - metric_name: metric_name - metric_value: 6.84685269835264 - test_name: test_name - operator: equal - under_representation_n_samples: 7.457744773683766 - id_: id_ - es_filters_used_in_analysis: - - null - - null - n_samples: 7.061401241503109 - metrics_info: - - metric_name: metric_name - metric_statistics: - - name: name - value: 1.0246457001441578 - - name: name - value: 1.0246457001441578 - - metric_name: metric_name - metric_statistics: - - name: name - value: 1.0246457001441578 - - name: name - value: 1.0246457001441578 - blob_path: blob_path - mutual_info_elements: - - features: - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - score: 2.027123023002322 - value_in_cluster: 9.301444243932576 - value_outside_cluster: 3.616076749251911 - is_unique: true - - features: - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - score: 2.027123023002322 - value_in_cluster: 9.301444243932576 - value_outside_cluster: 3.616076749251911 - is_unique: true - type: low_performance - auto_generated: true - over_representation_n_samples: 1.1730742509559433 - severity_metrics: - - metric_name: metric_name - value: 7.386281948385884 - normalized_value: 1.2315135367772556 - - metric_name: metric_name - value: 7.386281948385884 - normalized_value: 1.2315135367772556 - over_representation_dataset: null - min_hash: - - 1.4894159098541704 - - 1.4894159098541704 - csv_path: csv_path - parent_id: parent_id - display_filters: - - metric: metric - value: ScatterFilter_value - operator: smaller_than - - metric: metric - value: ScatterFilter_value - operator: smaller_than - under_representation_dataset: training - type: insight - value: - lt: null - gte: null - blob_paths: - - blob_paths - - blob_paths - lte: null - eq: null - lst: - - null - - null - gt: 5.637376656633329 - operator: between - jobId: jobId - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - isDeleted: true - createdBy: createdBy - numOfSamples: 6.027456183070403 - fileUrl: fileUrl - id: id - status: UNSTARTED + total: 6.027456183070403 + current: 1.4658129805029452 properties: - id: - type: string - jobId: - type: string - sessionRunId: - type: string - sessionRunName: - type: string - epoch: + total: format: double type: number - numOfSamples: + current: format: double type: number - createdAt: - format: date-time - type: string - createdBy: - type: string - filePath: - type: string - fileUrl: + required: + - current + - total + type: object + JobEvent: + additionalProperties: true + example: + name: name + progress: + total: 6.027456183070403 + current: 1.4658129805029452 + id: id + status: UNSTARTED + properties: + id: type: string - filterFileUrl: + name: type: string status: - $ref: "#/components/schemas/JobStatus" - isDeleted: - type: boolean - filters: - items: - $ref: "#/components/schemas/ESFilter" - type: array + $ref: "#/components/schemas/StatusEnum" + progress: + $ref: "#/components/schemas/JobEventProgress" required: - - createdAt - - createdBy - - epoch - - filePath - id - - isDeleted - - jobId - - sessionRunId - - sessionRunName + - name - status type: object - GeneratedLabelsResponse: + EvaluateNewVersionParams: additionalProperties: true example: - labels: - - sessionRunName: sessionRunName - filePath: filePath - filterFileUrl: filterFileUrl - epoch: 0.8008281904610115 - filters: - - field: field - disable: true - displayData: - insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 - insightType: - severity: 4.145608029883936 - automatic_tests: - - filter: null - metric_name: metric_name - metric_value: 6.84685269835264 - test_name: test_name - operator: equal - - filter: null - metric_name: metric_name - metric_value: 6.84685269835264 - test_name: test_name - operator: equal - under_representation_n_samples: 7.457744773683766 - id_: id_ - es_filters_used_in_analysis: - - null - - null - n_samples: 7.061401241503109 - metrics_info: - - metric_name: metric_name - metric_statistics: - - name: name - value: 1.0246457001441578 - - name: name - value: 1.0246457001441578 - - metric_name: metric_name - metric_statistics: - - name: name - value: 1.0246457001441578 - - name: name - value: 1.0246457001441578 - blob_path: blob_path - mutual_info_elements: - - features: + inferenceArtifactId: inferenceArtifactId + versionId: versionId + monitor: true + batchSize: 5.962133916683182 + projectId: projectId + properties: + versionId: + type: string + inferenceArtifactId: + type: string + projectId: + type: string + batchSize: + format: double + type: number + monitor: + type: boolean + required: + - batchSize + - projectId + - versionId + type: object + EvaluateExistingVersionParams: + allOf: + - $ref: "#/components/schemas/EvaluateNewVersionParams" + - properties: + evaluatedEpoch: + format: double + type: number + required: + - evaluatedEpoch + type: object + EvaluateParams: + anyOf: + - $ref: "#/components/schemas/EvaluateNewVersionParams" + - $ref: "#/components/schemas/EvaluateExistingVersionParams" + AnalyzeTypeEnum: + enum: + - population_exploration + - sample_analysis + - visualizers_calculation + type: string + AnalyzeParams: + additionalProperties: true + properties: + type: + $ref: "#/components/schemas/AnalyzeTypeEnum" + inferenceArtifactId: + type: string + batchSize: + format: double + type: number + sampleIdentity: + $ref: "#/components/schemas/SampleIdentity" + fromDatasetSlice: + $ref: "#/components/schemas/DataStateType" + extId: + type: string + required: + - extId + - type + type: object + ExportModelTypeEnum: + enum: + - JSON_TF2 + - H5_TF2 + - ONNX + - SavedModel_TF2 + type: string + ExportModelParams: + additionalProperties: true + properties: + type: + $ref: "#/components/schemas/ExportModelTypeEnum" + title: + type: string + epoch: + format: double + type: number + required: + - epoch + - title + - type + type: object + FetchSimilarJobParams: + properties: + digest: + type: string + filters: + items: + $ref: "#/components/schemas/ESFilter" + type: array + sampleIds: + items: + $ref: "#/components/schemas/SampleIdentity" + type: array + limit: + format: double + type: number + inferenceArtifactId: + type: string + versionId: + type: string + type: + enum: + - fetch_similar + nullable: false + type: string + required: + - digest + - inferenceArtifactId + - limit + - sampleIds + - type + - versionId + type: object + OptionalAnalysis: + enum: + - representation all + - duplication insight + type: string + PopulationExplorationJobParams: + properties: + latentSpaceType: + type: string + forceExecute: + type: boolean + elementInstance: + type: boolean + useCustomLatentSpace: + type: boolean + optionalAnalysis: + items: + $ref: "#/components/schemas/OptionalAnalysis" + type: array + reductionAlgorithm: + $ref: "#/components/schemas/ReductionAlgorithm" + shouldFillRemainingWithUnbalanced: + type: boolean + balanceBy: + items: + type: string + type: array + numOfSamples: + format: double + type: number + domainGapMetadata: + type: string + projectionMetric: + type: string + digest: + type: string + filters: + items: + $ref: "#/components/schemas/ESFilter" + type: array + batchSize: + format: double + type: number + inferenceArtifactId: + type: string + versionId: + type: string + type: + enum: + - population_exploration + nullable: false + type: string + required: + - balanceBy + - batchSize + - digest + - inferenceArtifactId + - numOfSamples + - reductionAlgorithm + - shouldFillRemainingWithUnbalanced + - type + - versionId + type: object + LabelingAlgorithm: + enum: + - CORESET + nullable: false + type: string + LabelingJobParams: + properties: + useCustomLatentSpace: + type: boolean + digest: + type: string + filters: + items: + $ref: "#/components/schemas/ESFilter" + type: array + labelingAlgorithm: + $ref: "#/components/schemas/LabelingAlgorithm" + numOfSamplesToLabel: + format: double + type: number + inferenceArtifactId: + type: string + versionId: + type: string + type: + enum: + - labeling_recommendation + nullable: false + type: string + required: + - digest + - inferenceArtifactId + - labelingAlgorithm + - type + - versionId + type: object + SyntheticDataJobParams: + properties: + digest: + type: string + targetFilters: + items: + $ref: "#/components/schemas/ESFilter" + type: array + sources: + items: + $ref: "#/components/schemas/SyntheticDataJobParams_sources_inner" + type: array + inferenceArtifactId: + type: string + versionId: + type: string + type: + enum: + - synthetic_data_generation + nullable: false + type: string + required: + - digest + - inferenceArtifactId + - sources + - targetFilters + - type + - versionId + type: object + DatasetBalancingJobParams: + properties: + digest: + type: string + percentageOfSamplesToPrune: + format: double + type: number + prioritizedMetadataTags: + items: + type: string + type: array + metadataTags: + items: + type: string + type: array + filters: + items: + $ref: "#/components/schemas/ESFilter" + type: array + inferenceArtifactId: + type: string + versionId: + type: string + type: + enum: + - dataset_balancing + nullable: false + type: string + required: + - digest + - inferenceArtifactId + - metadataTags + - type + - versionId + type: object + InsightsJobParams: + properties: + filters: + items: + $ref: "#/components/schemas/ESFilter" + type: array + inferenceArtifactId: + type: string + versionId: + type: string + type: + enum: + - generate_insights + nullable: false + type: string + required: + - type + type: object + ExportOptions: + example: + excludeCalculatedFiles: true + properties: + excludeCalculatedFiles: + type: boolean + type: object + Record_string.string-or-string-Array_: + description: Construct a type with a set of properties K of type T + properties: {} + type: object + ExportProjectMeta: + additionalProperties: true + properties: + name: + type: string + description: + type: string + tags: + items: + type: string + type: array + categories: + description: Construct a type with a set of properties K of type T + properties: {} + type: object + bgImagePath: + type: string + schemaVersion: + format: double + type: number + sourceProjectId: + type: string + required: + - bgImagePath + - categories + - name + - schemaVersion + - sourceProjectId + - tags + type: object + ExportProjectParams: + additionalProperties: true + properties: + exportUrl: + type: string + projectVersion: + format: double + type: number + exportOptions: + $ref: "#/components/schemas/ExportOptions" + alreadyExported: + type: boolean + projectExportMeta: + $ref: "#/components/schemas/ExportProjectMeta" + copyToUrl: + type: string + required: + - alreadyExported + - exportOptions + - exportUrl + - projectExportMeta + - projectVersion + type: object + HubPublishPolicy: + enum: + - public + - alpha + - no_publish + type: string + ProjectMeta: + additionalProperties: true + example: + hubPublishPolicy: public + name: name + description: description + bgImageUrl: bgImageUrl + categories: "{}" + tags: + - tags + - tags + properties: + name: + type: string + description: + type: string + tags: + items: + type: string + type: array + hubPublishPolicy: + $ref: "#/components/schemas/HubPublishPolicy" + bgImageUrl: + type: string + categories: + description: Construct a type with a set of properties K of type T + properties: {} + type: object + required: + - description + - hubPublishPolicy + - name + - tags + type: object + ImportProjectParams: + additionalProperties: true + properties: + importUrl: + type: string + projectMeta: + $ref: "#/components/schemas/ProjectMeta" + required: + - importUrl + - projectMeta + type: object + ParesCodeSnapshotParams: + additionalProperties: true + properties: + projectId: + type: string + secretManagerId: + type: string + codeUrl: + type: string + codeEntryFile: + type: string + genericBaseImageType: + type: string + required: + - codeEntryFile + - codeUrl + - projectId + type: object + PushCodeSnapshotParams: + additionalProperties: true + example: + codeUrl: codeUrl + overwriteVersionId: overwriteVersionId + genericBaseImageType: genericBaseImageType + secretManagerId: secretManagerId + branchName: branchName + codeEntryFile: codeEntryFile + versionName: versionName + projectId: projectId + properties: + projectId: + type: string + secretManagerId: + type: string + codeUrl: + type: string + codeEntryFile: + type: string + genericBaseImageType: + type: string + versionName: + type: string + branchName: + type: string + overwriteVersionId: + type: string + required: + - codeEntryFile + - codeUrl + - projectId + - versionName + type: object + JobParams: + anyOf: + - $ref: "#/components/schemas/EvaluateParams" + - $ref: "#/components/schemas/AnalyzeParams" + - $ref: "#/components/schemas/ExportModelParams" + - $ref: "#/components/schemas/FetchSimilarJobParams" + - $ref: "#/components/schemas/PopulationExplorationJobParams" + - $ref: "#/components/schemas/LabelingJobParams" + - $ref: "#/components/schemas/SyntheticDataJobParams" + - $ref: "#/components/schemas/DatasetBalancingJobParams" + - $ref: "#/components/schemas/InsightsJobParams" + - $ref: "#/components/schemas/ExportProjectParams" + - $ref: "#/components/schemas/ImportProjectParams" + - $ref: "#/components/schemas/ParesCodeSnapshotParams" + - $ref: "#/components/schemas/PushCodeSnapshotParams" + CodeSnapshotInfo: + additionalProperties: true + example: + name: name + codeSnapshotId: codeSnapshotId + properties: + codeSnapshotId: + type: string + name: + type: string + required: + - codeSnapshotId + - name + type: object + MessageLevel: + enum: + - Error + - Warning + - Info + - Verbose + type: string + Module: + enum: + - General + - Node + - Dataset + - Visualizers + - Loss + - Metric + - ImportModel + type: string + GeneralMessageParams: + additionalProperties: true + example: + message_code: message_code + module: General + message: message + properties: + message: + type: string + message_code: + type: string + module: + $ref: "#/components/schemas/Module" + required: + - message + - module + type: object + NodeType: + enum: + - Activation + - ActivityRegularization + - Add + - AdditiveAttention + - AlphaDropout + - Average + - AveragePooling1D + - AveragePooling2D + - AveragePooling3D + - BatchNormalization + - Bidirectional + - CategoryEncoding + - CenterCrop + - Concatenate + - Conv1D + - Conv1DTranspose + - Conv2D + - Conv2DTranspose + - Conv3D + - Conv3DTranspose + - ConvLSTM1D + - ConvLSTM2D + - ConvLSTM3D + - Cropping1D + - Cropping2D + - Cropping3D + - CuDNNGRU + - CuDNNLSTM + - Dense + - DepthwiseConv1D + - DepthwiseConv2D + - Discretization + - Dot + - Dropout + - ELU + - Embedding + - Flatten + - GRU + - GRUCell + - GRUCellV1 + - GRUCellV2 + - GRUV1 + - GRUV2 + - GaussianDropout + - GaussianNoise + - GlobalAveragePooling1D + - GlobalAveragePooling2D + - GlobalAveragePooling3D + - GlobalMaxPooling1D + - GlobalMaxPooling2D + - GlobalMaxPooling3D + - GroupNormalization + - IntegerLookup + - LSTM + - LSTMCell + - LSTMCellV1 + - LSTMCellV2 + - LSTMV1 + - LSTMV2 + - LayerNormalization + - LeakyReLU + - LocallyConnected1D + - LocallyConnected2D + - Masking + - MaxPooling1D + - MaxPooling2D + - MaxPooling3D + - Maximum + - Minimum + - MultiHeadAttention + - Multiply + - Normalization + - PReLU + - Permute + - RandomBrightness + - RandomContrast + - RandomCrop + - RandomFlip + - RandomFourierFeatures + - RandomHeight + - RandomRotation + - RandomTranslation + - RandomWidth + - RandomZoom + - ReLU + - RepeatVector + - Reshape + - Resizing + - SeparableConv1D + - SeparableConv2D + - SimpleRNN + - SimpleRNNCell + - Softmax + - SpatialDropout1D + - SpatialDropout2D + - SpatialDropout3D + - StringLookup + - Subtract + - SyncBatchNormalization + - TextVectorization + - ThresholdedReLU + - TimeDistributed + - UnitNormalization + - UpSampling1D + - UpSampling2D + - UpSampling3D + - ZeroPadding1D + - ZeroPadding2D + - ZeroPadding3D + - BinaryCrossentropy + - BinaryFocalCrossentropy + - CategoricalCrossentropy + - CategoricalHinge + - CosineSimilarity + - Hinge + - Huber + - KLDivergence + - LogCosh + - MeanAbsoluteError + - MeanAbsolutePercentageError + - MeanSquaredError + - MeanSquaredLogarithmicError + - Poisson + - SquaredHinge + - Adadelta + - Adagrad + - Adam + - Adamax + - Ftrl + - Nadam + - RMSprop + - SGD + - OnnxAbs + - OnnxErf + - OnnxHardSigmoid + - OnnxLSTM + - OnnxReduceMean + - OnnxSqrt + - Dataset + - Input + - RepresentationBlock + - GroundTruth + - CustomLayer + - CustomLoss + - Visualizer + - Metric + - Lambda + - TFOpLambda + - SlicingOpLambda + - Repeat + - Variable + - Gather + - FixedDropout + type: string + NodeMessageParams: + additionalProperties: true + properties: + message: + type: string + message_code: + type: string + layer_name: + type: string + layer_type: + $ref: "#/components/schemas/NodeType" + module: + $ref: "#/components/schemas/Module" + required: + - layer_name + - layer_type + - message + - module + type: object + VisualizerMessageParams: + additionalProperties: true + properties: + message: + type: string + message_code: + type: string + visualizer_name: + type: string + node_id: + type: string + line_number: + format: double + type: number + module: + $ref: "#/components/schemas/Module" + required: + - message + - module + - node_id + - visualizer_name + type: object + DatasetMessageParams: + additionalProperties: true + properties: + message: + type: string + message_code: + type: string + line: + format: double + type: number + func_name: + type: string + module: + $ref: "#/components/schemas/Module" + required: + - func_name + - line + - message + - module + type: object + LossMessageParams: + additionalProperties: true + properties: + message: + type: string + message_code: + type: string + loss_name: + type: string + node_id: + type: string + module: + $ref: "#/components/schemas/Module" + required: + - loss_name + - message + - module + - node_id + type: object + MetricMessageParams: + additionalProperties: true + properties: + message: + type: string + message_code: + type: string + metric_name: + type: string + loss_node_id: + type: string + loss_name: + type: string + module: + $ref: "#/components/schemas/Module" + node_id: + type: string + line_number: + format: double + type: number + required: + - message + - metric_name + - module + type: object + ModuleMessageData: + anyOf: + - $ref: "#/components/schemas/GeneralMessageParams" + - $ref: "#/components/schemas/NodeMessageParams" + - $ref: "#/components/schemas/VisualizerMessageParams" + - $ref: "#/components/schemas/DatasetMessageParams" + - $ref: "#/components/schemas/LossMessageParams" + - $ref: "#/components/schemas/MetricMessageParams" + EngineSettingKey: + enum: + - PROCESS_REQUIRED_CPU + - PROCESS_LIMIT_CPU + - PROCESS_REQUIRED_MEMORY + - PROCESS_LIMIT_MEMORY + - N_GPUS_PER_PROCESS + - N_VISUALIZERS_PROCESSES + - KEEP_VISUALIZATION_RESOLUTION + - WARMUP + - PRIORITIZE_AUTO_SETTINGS_GENERIC_WORKERS + - GENERIC_CPU_REQUEST + - GENERIC_CPU_LIMIT + - GENERIC_MEMORY_REQUEST + - GENERIC_MEMORY_LIMIT + - N_GENERIC_PROCESS_PROCESSES + - PRIORITIZE_AUTO_SETTINGS + - SLIM_JOB_CPU_REQUEST + - SLIM_JOB_CPU_LIMIT + - SLIM_JOB_REQUIRED_MEMORY + - SLIM_JOB_LIMIT_MEMORY + - PIP_INDEX_URL + - PIP_EXTRA_INDEX_URL + - WARMUP_TIMEOUT_MINUTES + - WARMUP_MAX_JOBS + nullable: false + type: string + FailureInfo: + additionalProperties: true + properties: + message: + type: string + engineSettingKey: + $ref: "#/components/schemas/EngineSettingKey" + extraFailureData: + type: string + required: + - message + type: object + JobMessageParams: + properties: + failureInfo: + $ref: "#/components/schemas/FailureInfo" + module: + enum: + - JobStatus + nullable: false + type: string + jobStatus: + $ref: "#/components/schemas/JobStatus" + required: + - jobStatus + - module + type: object + CustomMessageDataParams: + anyOf: + - $ref: "#/components/schemas/ModuleMessageData" + - $ref: "#/components/schemas/JobMessageParams" + CustomMessageData: + additionalProperties: true + example: + level: Error + params: + message_code: message_code + module: General + message: message + properties: + level: + $ref: "#/components/schemas/MessageLevel" + params: + $ref: "#/components/schemas/CustomMessageDataParams" + required: + - level + - params + type: object + JobType: + enum: + - WARMUP + - TRAINING + - IMPORT_MODEL + - ANALYZE + - TEST_STUB_FUNCTION + - TEST_CUSTOM_LOSS + - EXPORT_MODEL + - DATASET_PARSE + - ANALYZE_GRAPH + - DRY_RUN_GRAPH + - SLIM_LS + - STREAMING_HANDLER + - STREAMING_SAMPLES_VIS + - EXPORT_PROJECT + - IMPORT_PROJECT + type: string + JobNotificationBaseContext: + additionalProperties: true + example: + jobId: jobId + jobType: WARMUP + properties: + jobId: + type: string + jobType: + $ref: "#/components/schemas/JobType" + required: + - jobId + - jobType + type: object + JobNotificationLeepScriptContext: + additionalProperties: true + properties: + jobId: + type: string + jobType: + $ref: "#/components/schemas/JobType" + codeSnapshotId: + type: string + versionId: + type: string + versionName: + type: string + required: + - codeSnapshotId + - jobId + - jobType + - versionId + - versionName + type: object + JobNotificationModelContext: + additionalProperties: true + properties: + jobId: + type: string + jobType: + $ref: "#/components/schemas/JobType" + projectName: + type: string + projectId: + type: string + modelName: + type: string + modelExtId: + type: string + isOverwrite: + type: boolean + versionId: + type: string + sessionId: + type: string + epoch: + format: double + type: number + required: + - isOverwrite + - jobId + - jobType + - modelExtId + - modelName + - projectId + - projectName + - versionId + type: object + JobNotificationAnalyzeContext: + additionalProperties: true + properties: + jobId: + type: string + jobType: + $ref: "#/components/schemas/JobType" + projectName: + type: string + projectId: + type: string + modelName: + type: string + modelExtId: + type: string + isOverwrite: + type: boolean + versionId: + type: string + sessionId: + type: string + epoch: + format: double + type: number + required: + - isOverwrite + - jobId + - jobType + - modelExtId + - modelName + - projectId + - projectName + - versionId + type: object + JobNotificationSampleContext: + additionalProperties: true + properties: + jobId: + type: string + jobType: + $ref: "#/components/schemas/JobType" + projectName: + type: string + projectId: + type: string + modelName: + type: string + modelExtId: + type: string + isOverwrite: + type: boolean + versionId: + type: string + sessionId: + type: string + epoch: + format: double + type: number + sample: + $ref: "#/components/schemas/SampleIdentity" + required: + - isOverwrite + - jobId + - jobType + - modelExtId + - modelName + - projectId + - projectName + - sample + - versionId + type: object + JobNotificationProjectContext: + additionalProperties: true + properties: + jobId: + type: string + jobType: + $ref: "#/components/schemas/JobType" + projectName: + type: string + required: + - jobId + - jobType + - projectName + type: object + JobNotificationContext: + anyOf: + - $ref: "#/components/schemas/JobNotificationBaseContext" + - $ref: "#/components/schemas/JobNotificationLeepScriptContext" + - $ref: "#/components/schemas/JobNotificationModelContext" + - $ref: "#/components/schemas/JobNotificationAnalyzeContext" + - $ref: "#/components/schemas/JobNotificationSampleContext" + - $ref: "#/components/schemas/JobNotificationProjectContext" + Notification: + additionalProperties: true + example: + identifier: identifier + createdAt: 2000-01-23T04:56:07.000+00:00 + teamId: teamId + context: + jobId: jobId + jobType: WARMUP + isRead: true + title: title + projectId: projectId + user: user + cid: cid + messageData: + level: Error + params: + message_code: message_code + module: General + message: message + properties: + projectId: + type: string + cid: + type: string + teamId: + type: string + user: + type: string + title: + type: string + messageData: + $ref: "#/components/schemas/CustomMessageData" + identifier: + type: string + context: + $ref: "#/components/schemas/JobNotificationContext" + createdAt: + format: date-time + type: string + isRead: + type: boolean + required: + - cid + - context + - createdAt + - identifier + - isRead + - messageData + - teamId + - title + - user + type: object + RunProcess: + additionalProperties: true + example: + datasetName: datasetName + versionName: versionName + params: + inferenceArtifactId: inferenceArtifactId + versionId: versionId + monitor: true + batchSize: 5.962133916683182 + projectId: projectId + jobId: jobId + createdAt: createdAt + versionId: versionId + processId: processId + projectName: projectName + jobType: jobType + batchSize: 5.637376656633329 + projectId: projectId + events: + - name: name + progress: + total: 6.027456183070403 + current: 1.4658129805029452 + id: id + status: UNSTARTED + - name: name + progress: + total: 6.027456183070403 + current: 1.4658129805029452 + id: id + status: UNSTARTED + machineType: machineType + notifications: + - identifier: identifier + createdAt: 2000-01-23T04:56:07.000+00:00 + teamId: teamId + context: + jobId: jobId + jobType: WARMUP + isRead: true + title: title + projectId: projectId + user: user + cid: cid + messageData: + level: Error + params: + message_code: message_code + module: General + message: message + - identifier: identifier + createdAt: 2000-01-23T04:56:07.000+00:00 + teamId: teamId + context: + jobId: jobId + jobType: WARMUP + isRead: true + title: title + projectId: projectId + user: user + cid: cid + messageData: + level: Error + params: + message_code: message_code + module: General + message: message + status: null + updatedAt: updatedAt + codeSnapshotInfo: + name: name + codeSnapshotId: codeSnapshotId + logsBlobName: logsBlobName + properties: + jobId: + type: string + processId: + type: string + versionName: + type: string + versionId: + type: string + projectId: + type: string + projectName: + type: string + datasetName: + type: string + jobType: + type: string + status: + $ref: "#/components/schemas/JobStatus" + createdAt: + type: string + updatedAt: + type: string + events: + items: + $ref: "#/components/schemas/JobEvent" + type: array + params: + $ref: "#/components/schemas/JobParams" + machineType: + type: string + batchSize: + format: double + type: number + codeSnapshotInfo: + $ref: "#/components/schemas/CodeSnapshotInfo" + logsBlobName: + type: string + notifications: + items: + $ref: "#/components/schemas/Notification" + type: array + required: + - createdAt + - events + - jobId + - jobType + - processId + - status + - updatedAt + type: object + GeneratedLabel: + additionalProperties: true + example: + runProcess: + datasetName: datasetName + versionName: versionName + params: + inferenceArtifactId: inferenceArtifactId + versionId: versionId + monitor: true + batchSize: 5.962133916683182 + projectId: projectId + jobId: jobId + createdAt: createdAt + versionId: versionId + processId: processId + projectName: projectName + jobType: jobType + batchSize: 5.637376656633329 + projectId: projectId + events: + - name: name + progress: + total: 6.027456183070403 + current: 1.4658129805029452 + id: id + status: UNSTARTED + - name: name + progress: + total: 6.027456183070403 + current: 1.4658129805029452 + id: id + status: UNSTARTED + machineType: machineType + notifications: + - identifier: identifier + createdAt: 2000-01-23T04:56:07.000+00:00 + teamId: teamId + context: + jobId: jobId + jobType: WARMUP + isRead: true + title: title + projectId: projectId + user: user + cid: cid + messageData: + level: Error + params: + message_code: message_code + module: General + message: message + - identifier: identifier + createdAt: 2000-01-23T04:56:07.000+00:00 + teamId: teamId + context: + jobId: jobId + jobType: WARMUP + isRead: true + title: title + projectId: projectId + user: user + cid: cid + messageData: + level: Error + params: + message_code: message_code + module: General + message: message + status: null + updatedAt: updatedAt + codeSnapshotInfo: + name: name + codeSnapshotId: codeSnapshotId + logsBlobName: logsBlobName + filePath: filePath + filterFileUrl: filterFileUrl + filters: + - field: field + disable: true + displayData: + insights: + - index: 2.3021358869347655 + insightType: + severity: 4.145608029883936 + automatic_tests: + - filter: null + metric_name: metric_name + metric_value: 6.84685269835264 + test_name: test_name + operator: equal + - filter: null + metric_name: metric_name + metric_value: 6.84685269835264 + test_name: test_name + operator: equal + id_: id_ + es_filters_used_in_analysis: + - null + - null + n_samples: 7.061401241503109 + metrics_info: + - metric_name: metric_name + metric_statistics: + - name: name + value: 1.0246457001441578 + - name: name + value: 1.0246457001441578 + - metric_name: metric_name + metric_statistics: + - name: name + value: 1.0246457001441578 + - name: name + value: 1.0246457001441578 + blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics + mutual_info_elements: + - features: + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + score: 2.027123023002322 + value_in_cluster: 9.301444243932576 + value_outside_cluster: 3.616076749251911 + is_unique: true + - features: + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + score: 2.027123023002322 + value_in_cluster: 9.301444243932576 + value_outside_cluster: 3.616076749251911 + is_unique: true + type: low_performance + auto_generated: true + severity_metrics: + - metric_name: metric_name + value: 7.386281948385884 + normalized_value: 1.2315135367772556 + - metric_name: metric_name + value: 7.386281948385884 + normalized_value: 1.2315135367772556 + min_hash: + - 1.4894159098541704 + - 1.4894159098541704 + csv_path: csv_path + parent_id: parent_id + display_filters: + - metric: metric + value: ScatterFilter_value + operator: smaller_than + - metric: metric + value: ScatterFilter_value + operator: smaller_than + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id + - index: 2.3021358869347655 + insightType: + severity: 4.145608029883936 + automatic_tests: + - filter: null + metric_name: metric_name + metric_value: 6.84685269835264 + test_name: test_name + operator: equal + - filter: null + metric_name: metric_name + metric_value: 6.84685269835264 + test_name: test_name + operator: equal + id_: id_ + es_filters_used_in_analysis: + - null + - null + n_samples: 7.061401241503109 + metrics_info: + - metric_name: metric_name + metric_statistics: + - name: name + value: 1.0246457001441578 + - name: name + value: 1.0246457001441578 + - metric_name: metric_name + metric_statistics: + - name: name + value: 1.0246457001441578 + - name: name + value: 1.0246457001441578 + blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics + mutual_info_elements: + - features: + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + score: 2.027123023002322 + value_in_cluster: 9.301444243932576 + value_outside_cluster: 3.616076749251911 + is_unique: true + - features: + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + score: 2.027123023002322 + value_in_cluster: 9.301444243932576 + value_outside_cluster: 3.616076749251911 + is_unique: true + type: low_performance + auto_generated: true + severity_metrics: + - metric_name: metric_name + value: 7.386281948385884 + normalized_value: 1.2315135367772556 + - metric_name: metric_name + value: 7.386281948385884 + normalized_value: 1.2315135367772556 + min_hash: + - 1.4894159098541704 + - 1.4894159098541704 + csv_path: csv_path + parent_id: parent_id + display_filters: + - metric: metric + value: ScatterFilter_value + operator: smaller_than + - metric: metric + value: ScatterFilter_value + operator: smaller_than + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id + type: insight + value: + lt: null + gte: null + blob_paths: + - blob_paths + - blob_paths + lte: null + eq: null + lst: + - null + - null + gt: 5.637376656633329 + operator: between + - field: field + disable: true + displayData: + insights: + - index: 2.3021358869347655 + insightType: + severity: 4.145608029883936 + automatic_tests: + - filter: null + metric_name: metric_name + metric_value: 6.84685269835264 + test_name: test_name + operator: equal + - filter: null + metric_name: metric_name + metric_value: 6.84685269835264 + test_name: test_name + operator: equal + id_: id_ + es_filters_used_in_analysis: + - null + - null + n_samples: 7.061401241503109 + metrics_info: + - metric_name: metric_name + metric_statistics: + - name: name + value: 1.0246457001441578 + - name: name + value: 1.0246457001441578 + - metric_name: metric_name + metric_statistics: + - name: name + value: 1.0246457001441578 + - name: name + value: 1.0246457001441578 + blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics + mutual_info_elements: + - features: + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + score: 2.027123023002322 + value_in_cluster: 9.301444243932576 + value_outside_cluster: 3.616076749251911 + is_unique: true + - features: + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + score: 2.027123023002322 + value_in_cluster: 9.301444243932576 + value_outside_cluster: 3.616076749251911 + is_unique: true + type: low_performance + auto_generated: true + severity_metrics: + - metric_name: metric_name + value: 7.386281948385884 + normalized_value: 1.2315135367772556 + - metric_name: metric_name + value: 7.386281948385884 + normalized_value: 1.2315135367772556 + min_hash: + - 1.4894159098541704 + - 1.4894159098541704 + csv_path: csv_path + parent_id: parent_id + display_filters: + - metric: metric + value: ScatterFilter_value + operator: smaller_than + - metric: metric + value: ScatterFilter_value + operator: smaller_than + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id + - index: 2.3021358869347655 + insightType: + severity: 4.145608029883936 + automatic_tests: + - filter: null + metric_name: metric_name + metric_value: 6.84685269835264 + test_name: test_name + operator: equal + - filter: null + metric_name: metric_name + metric_value: 6.84685269835264 + test_name: test_name + operator: equal + id_: id_ + es_filters_used_in_analysis: + - null + - null + n_samples: 7.061401241503109 + metrics_info: + - metric_name: metric_name + metric_statistics: + - name: name + value: 1.0246457001441578 + - name: name + value: 1.0246457001441578 + - metric_name: metric_name + metric_statistics: + - name: name + value: 1.0246457001441578 + - name: name + value: 1.0246457001441578 + blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics + mutual_info_elements: + - features: + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + score: 2.027123023002322 + value_in_cluster: 9.301444243932576 + value_outside_cluster: 3.616076749251911 + is_unique: true + - features: + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + score: 2.027123023002322 + value_in_cluster: 9.301444243932576 + value_outside_cluster: 3.616076749251911 + is_unique: true + type: low_performance + auto_generated: true + severity_metrics: + - metric_name: metric_name + value: 7.386281948385884 + normalized_value: 1.2315135367772556 + - metric_name: metric_name + value: 7.386281948385884 + normalized_value: 1.2315135367772556 + min_hash: + - 1.4894159098541704 + - 1.4894159098541704 + csv_path: csv_path + parent_id: parent_id + display_filters: + - metric: metric + value: ScatterFilter_value + operator: smaller_than + - metric: metric + value: ScatterFilter_value + operator: smaller_than + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id + type: insight + value: + lt: null + gte: null + blob_paths: + - blob_paths + - blob_paths + lte: null + eq: null + lst: + - null + - null + gt: 5.637376656633329 + operator: between + versionName: versionName + jobId: jobId + createdAt: 2000-01-23T04:56:07.000+00:00 + versionId: versionId + isDeleted: true + createdBy: createdBy + numOfSamples: 0.8008281904610115 + fileUrl: fileUrl + id: id + status: UNSTARTED + properties: + id: + type: string + jobId: + type: string + versionId: + type: string + versionName: + type: string + numOfSamples: + format: double + type: number + createdAt: + format: date-time + type: string + createdBy: + type: string + filePath: + type: string + fileUrl: + type: string + filterFileUrl: + type: string + status: + $ref: "#/components/schemas/JobStatus" + isDeleted: + type: boolean + filters: + items: + $ref: "#/components/schemas/ESFilter" + type: array + runProcess: + $ref: "#/components/schemas/RunProcess" + required: + - createdAt + - createdBy + - filePath + - id + - isDeleted + - jobId + - status + - versionId + - versionName + type: object + GeneratedLabelsResponse: + additionalProperties: true + example: + labels: + - runProcess: + datasetName: datasetName + versionName: versionName + params: + inferenceArtifactId: inferenceArtifactId + versionId: versionId + monitor: true + batchSize: 5.962133916683182 + projectId: projectId + jobId: jobId + createdAt: createdAt + versionId: versionId + processId: processId + projectName: projectName + jobType: jobType + batchSize: 5.637376656633329 + projectId: projectId + events: + - name: name + progress: + total: 6.027456183070403 + current: 1.4658129805029452 + id: id + status: UNSTARTED + - name: name + progress: + total: 6.027456183070403 + current: 1.4658129805029452 + id: id + status: UNSTARTED + machineType: machineType + notifications: + - identifier: identifier + createdAt: 2000-01-23T04:56:07.000+00:00 + teamId: teamId + context: + jobId: jobId + jobType: WARMUP + isRead: true + title: title + projectId: projectId + user: user + cid: cid + messageData: + level: Error + params: + message_code: message_code + module: General + message: message + - identifier: identifier + createdAt: 2000-01-23T04:56:07.000+00:00 + teamId: teamId + context: + jobId: jobId + jobType: WARMUP + isRead: true + title: title + projectId: projectId + user: user + cid: cid + messageData: + level: Error + params: + message_code: message_code + module: General + message: message + status: null + updatedAt: updatedAt + codeSnapshotInfo: + name: name + codeSnapshotId: codeSnapshotId + logsBlobName: logsBlobName + filePath: filePath + filterFileUrl: filterFileUrl + filters: + - field: field + disable: true + displayData: + insights: + - index: 2.3021358869347655 + insightType: + severity: 4.145608029883936 + automatic_tests: + - filter: null + metric_name: metric_name + metric_value: 6.84685269835264 + test_name: test_name + operator: equal + - filter: null + metric_name: metric_name + metric_value: 6.84685269835264 + test_name: test_name + operator: equal + id_: id_ + es_filters_used_in_analysis: + - null + - null + n_samples: 7.061401241503109 + metrics_info: + - metric_name: metric_name + metric_statistics: + - name: name + value: 1.0246457001441578 + - name: name + value: 1.0246457001441578 + - metric_name: metric_name + metric_statistics: + - name: name + value: 1.0246457001441578 + - name: name + value: 1.0246457001441578 + blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics + mutual_info_elements: + - features: - feature_name: feature_name is_categorical: true feature_value: feature_value @@ -12700,7 +14364,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -12708,7 +14371,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -12721,13 +14383,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -12741,7 +14405,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -12761,6 +14424,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -12790,7 +14457,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -12798,7 +14464,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -12811,7 +14476,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -12830,12 +14502,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -12849,7 +14516,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -12869,6 +14535,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -12898,7 +14568,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -12906,7 +14575,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -12919,13 +14587,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -12939,7 +14609,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -12959,6 +14628,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -12988,7 +14661,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -12996,7 +14668,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -13009,7 +14680,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -13024,30 +14702,96 @@ components: - null gt: 5.637376656633329 operator: between + versionName: versionName jobId: jobId createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId + versionId: versionId isDeleted: true createdBy: createdBy - numOfSamples: 6.027456183070403 + numOfSamples: 0.8008281904610115 fileUrl: fileUrl id: id status: UNSTARTED - - sessionRunName: sessionRunName + - runProcess: + datasetName: datasetName + versionName: versionName + params: + inferenceArtifactId: inferenceArtifactId + versionId: versionId + monitor: true + batchSize: 5.962133916683182 + projectId: projectId + jobId: jobId + createdAt: createdAt + versionId: versionId + processId: processId + projectName: projectName + jobType: jobType + batchSize: 5.637376656633329 + projectId: projectId + events: + - name: name + progress: + total: 6.027456183070403 + current: 1.4658129805029452 + id: id + status: UNSTARTED + - name: name + progress: + total: 6.027456183070403 + current: 1.4658129805029452 + id: id + status: UNSTARTED + machineType: machineType + notifications: + - identifier: identifier + createdAt: 2000-01-23T04:56:07.000+00:00 + teamId: teamId + context: + jobId: jobId + jobType: WARMUP + isRead: true + title: title + projectId: projectId + user: user + cid: cid + messageData: + level: Error + params: + message_code: message_code + module: General + message: message + - identifier: identifier + createdAt: 2000-01-23T04:56:07.000+00:00 + teamId: teamId + context: + jobId: jobId + jobType: WARMUP + isRead: true + title: title + projectId: projectId + user: user + cid: cid + messageData: + level: Error + params: + message_code: message_code + module: General + message: message + status: null + updatedAt: updatedAt + codeSnapshotInfo: + name: name + codeSnapshotId: codeSnapshotId + logsBlobName: logsBlobName filePath: filePath filterFileUrl: filterFileUrl - epoch: 0.8008281904610115 filters: - field: field disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -13061,7 +14805,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -13081,6 +14824,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -13110,7 +14857,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -13118,7 +14864,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -13131,13 +14876,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -13151,7 +14898,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -13171,6 +14917,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -13200,7 +14950,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -13208,7 +14957,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -13221,7 +14969,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -13240,12 +14995,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -13259,7 +15009,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -13279,6 +15028,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -13308,7 +15061,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -13316,7 +15068,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -13329,13 +15080,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -13349,7 +15102,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -13369,6 +15121,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -13398,7 +15154,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -13406,7 +15161,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -13419,7 +15173,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -13434,12 +15195,13 @@ components: - null gt: 5.637376656633329 operator: between + versionName: versionName jobId: jobId createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId + versionId: versionId isDeleted: true createdBy: createdBy - numOfSamples: 6.027456183070403 + numOfSamples: 0.8008281904610115 fileUrl: fileUrl id: id status: UNSTARTED @@ -13478,7 +15240,7 @@ components: GenerateSyntheticDataParams: additionalProperties: true example: - sessionRunId: sessionRunId + versionId: versionId sources: - metadataKeys: - metadataKeys @@ -13488,12 +15250,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -13507,7 +15264,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -13527,6 +15283,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -13556,7 +15316,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -13564,7 +15323,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -13577,13 +15335,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -13597,7 +15357,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -13617,6 +15376,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -13646,7 +15409,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -13654,7 +15416,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -13667,7 +15428,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -13686,12 +15454,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -13705,7 +15468,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -13725,6 +15487,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -13754,7 +15520,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -13762,7 +15527,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -13775,13 +15539,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -13795,7 +15561,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -13815,6 +15580,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -13844,7 +15613,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -13852,7 +15620,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -13865,7 +15632,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -13888,12 +15662,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -13907,7 +15676,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -13927,6 +15695,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -13956,7 +15728,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -13964,7 +15735,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -13977,13 +15747,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -13997,7 +15769,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -14017,6 +15788,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -14046,7 +15821,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -14054,7 +15828,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -14067,7 +15840,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -14086,12 +15866,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -14105,7 +15880,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -14125,6 +15899,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -14154,7 +15932,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -14162,7 +15939,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -14175,13 +15951,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -14195,7 +15973,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -14215,6 +15992,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -14244,7 +16025,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -14252,7 +16032,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -14265,7 +16044,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -14280,19 +16066,13 @@ components: - null gt: 5.637376656633329 operator: between - epoch: 0.8008281904610115 projectId: projectId targetFilters: - field: field disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -14306,7 +16086,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -14326,6 +16105,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -14355,7 +16138,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -14363,7 +16145,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -14376,13 +16157,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -14396,7 +16179,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -14416,6 +16198,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -14445,7 +16231,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -14453,7 +16238,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -14466,7 +16250,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -14485,12 +16276,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -14504,7 +16290,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -14524,6 +16309,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -14553,7 +16342,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -14561,7 +16349,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -14574,13 +16361,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -14594,7 +16383,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -14614,6 +16402,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -14643,7 +16435,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -14651,7 +16442,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -14664,7 +16454,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -14682,33 +16479,28 @@ components: properties: projectId: type: string - sessionRunId: + versionId: type: string - epoch: - format: double - type: number sources: items: - $ref: "#/components/schemas/GenerateSyntheticDataParams_sources_inner" + $ref: "#/components/schemas/SyntheticDataJobParams_sources_inner" type: array targetFilters: items: $ref: "#/components/schemas/ESFilter" type: array required: - - epoch - projectId - - sessionRunId - sources - targetFilters + - versionId type: object SyntheticData: additionalProperties: true example: jobId: jobId createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - sessionRunName: sessionRunName + versionId: versionId bestTrialsFileUrl: bestTrialsFileUrl sources: - metadataKeys: @@ -14719,12 +16511,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -14738,7 +16525,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -14758,6 +16544,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -14787,7 +16577,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -14795,7 +16584,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -14808,13 +16596,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -14828,7 +16618,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -14848,6 +16637,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -14877,7 +16670,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -14885,7 +16677,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -14898,7 +16689,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -14917,12 +16715,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -14936,7 +16729,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -14956,6 +16748,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -14985,7 +16781,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -14993,7 +16788,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -15006,13 +16800,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -15026,7 +16822,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -15046,6 +16841,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -15075,7 +16874,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -15083,7 +16881,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -15096,7 +16893,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -15119,12 +16923,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -15138,7 +16937,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -15158,6 +16956,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -15187,7 +16989,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -15195,7 +16996,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -15208,13 +17008,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -15228,7 +17030,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -15248,6 +17049,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -15277,7 +17082,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -15285,7 +17089,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -15298,7 +17101,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -15317,12 +17127,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -15336,7 +17141,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -15356,6 +17160,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -15385,7 +17193,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -15393,7 +17200,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -15406,13 +17212,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -15426,7 +17234,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -15446,6 +17253,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -15475,7 +17286,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -15483,7 +17293,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -15496,7 +17305,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -15513,19 +17329,86 @@ components: operator: between createdBy: createdBy nextTrialsFileUrl: nextTrialsFileUrl - epoch: 0.8008281904610115 + runProcess: + datasetName: datasetName + versionName: versionName + params: + inferenceArtifactId: inferenceArtifactId + versionId: versionId + monitor: true + batchSize: 5.962133916683182 + projectId: projectId + jobId: jobId + createdAt: createdAt + versionId: versionId + processId: processId + projectName: projectName + jobType: jobType + batchSize: 5.637376656633329 + projectId: projectId + events: + - name: name + progress: + total: 6.027456183070403 + current: 1.4658129805029452 + id: id + status: UNSTARTED + - name: name + progress: + total: 6.027456183070403 + current: 1.4658129805029452 + id: id + status: UNSTARTED + machineType: machineType + notifications: + - identifier: identifier + createdAt: 2000-01-23T04:56:07.000+00:00 + teamId: teamId + context: + jobId: jobId + jobType: WARMUP + isRead: true + title: title + projectId: projectId + user: user + cid: cid + messageData: + level: Error + params: + message_code: message_code + module: General + message: message + - identifier: identifier + createdAt: 2000-01-23T04:56:07.000+00:00 + teamId: teamId + context: + jobId: jobId + jobType: WARMUP + isRead: true + title: title + projectId: projectId + user: user + cid: cid + messageData: + level: Error + params: + message_code: message_code + module: General + message: message + status: null + updatedAt: updatedAt + codeSnapshotInfo: + name: name + codeSnapshotId: codeSnapshotId + logsBlobName: logsBlobName id: id + versionName: versionName targetFilters: - field: field disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -15539,7 +17422,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -15559,6 +17441,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -15588,7 +17474,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -15596,7 +17481,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -15609,13 +17493,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -15629,7 +17515,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -15649,6 +17534,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -15678,7 +17567,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -15686,7 +17574,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -15699,7 +17586,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -15718,12 +17612,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -15737,7 +17626,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -15757,6 +17645,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -15786,7 +17678,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -15794,7 +17685,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -15807,13 +17697,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -15827,7 +17719,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -15847,6 +17738,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -15876,7 +17771,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -15884,7 +17778,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -15897,7 +17790,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -15918,13 +17818,10 @@ components: type: string jobId: type: string - sessionRunId: + versionId: type: string - sessionRunName: + versionName: type: string - epoch: - format: double - type: number createdAt: format: date-time type: string @@ -15938,23 +17835,24 @@ components: $ref: "#/components/schemas/JobStatus" sources: items: - $ref: "#/components/schemas/GenerateSyntheticDataParams_sources_inner" + $ref: "#/components/schemas/SyntheticDataJobParams_sources_inner" type: array targetFilters: items: $ref: "#/components/schemas/ESFilter" type: array + runProcess: + $ref: "#/components/schemas/RunProcess" required: - createdAt - createdBy - - epoch - id - jobId - - sessionRunId - - sessionRunName - sources - status - targetFilters + - versionId + - versionName type: object SyntheticDataResponse: additionalProperties: true @@ -15962,8 +17860,7 @@ components: syntheticData: - jobId: jobId createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - sessionRunName: sessionRunName + versionId: versionId bestTrialsFileUrl: bestTrialsFileUrl sources: - metadataKeys: @@ -15974,12 +17871,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -15993,7 +17885,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -16013,6 +17904,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -16042,7 +17937,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -16050,7 +17944,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -16063,13 +17956,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -16083,7 +17978,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -16103,6 +17997,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -16132,7 +18030,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -16140,7 +18037,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -16153,7 +18049,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -16172,12 +18075,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -16191,7 +18089,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -16211,6 +18108,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -16240,7 +18141,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -16248,7 +18148,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -16261,13 +18160,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -16281,7 +18182,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -16301,6 +18201,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -16330,7 +18234,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -16338,7 +18241,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -16351,7 +18253,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -16374,12 +18283,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -16393,7 +18297,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -16413,6 +18316,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -16442,7 +18349,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -16450,7 +18356,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -16463,13 +18368,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -16483,7 +18390,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -16503,6 +18409,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -16532,7 +18442,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -16540,7 +18449,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -16553,7 +18461,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -16572,12 +18487,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -16591,7 +18501,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -16611,6 +18520,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -16640,7 +18553,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -16648,7 +18560,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -16661,13 +18572,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -16681,7 +18594,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -16701,6 +18613,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -16730,7 +18646,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -16738,7 +18653,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -16751,7 +18665,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -16768,19 +18689,86 @@ components: operator: between createdBy: createdBy nextTrialsFileUrl: nextTrialsFileUrl - epoch: 0.8008281904610115 + runProcess: + datasetName: datasetName + versionName: versionName + params: + inferenceArtifactId: inferenceArtifactId + versionId: versionId + monitor: true + batchSize: 5.962133916683182 + projectId: projectId + jobId: jobId + createdAt: createdAt + versionId: versionId + processId: processId + projectName: projectName + jobType: jobType + batchSize: 5.637376656633329 + projectId: projectId + events: + - name: name + progress: + total: 6.027456183070403 + current: 1.4658129805029452 + id: id + status: UNSTARTED + - name: name + progress: + total: 6.027456183070403 + current: 1.4658129805029452 + id: id + status: UNSTARTED + machineType: machineType + notifications: + - identifier: identifier + createdAt: 2000-01-23T04:56:07.000+00:00 + teamId: teamId + context: + jobId: jobId + jobType: WARMUP + isRead: true + title: title + projectId: projectId + user: user + cid: cid + messageData: + level: Error + params: + message_code: message_code + module: General + message: message + - identifier: identifier + createdAt: 2000-01-23T04:56:07.000+00:00 + teamId: teamId + context: + jobId: jobId + jobType: WARMUP + isRead: true + title: title + projectId: projectId + user: user + cid: cid + messageData: + level: Error + params: + message_code: message_code + module: General + message: message + status: null + updatedAt: updatedAt + codeSnapshotInfo: + name: name + codeSnapshotId: codeSnapshotId + logsBlobName: logsBlobName id: id + versionName: versionName targetFilters: - field: field disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -16794,7 +18782,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -16814,6 +18801,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -16843,7 +18834,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -16851,7 +18841,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -16864,13 +18853,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -16884,7 +18875,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -16904,6 +18894,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -16933,7 +18927,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -16941,7 +18934,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -16954,7 +18946,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -16973,12 +18972,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -16992,7 +18986,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -17012,6 +19005,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -17041,7 +19038,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -17049,7 +19045,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -17062,13 +19057,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -17082,7 +19079,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -17102,6 +19098,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -17131,7 +19131,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -17139,7 +19138,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -17152,7 +19150,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -17170,8 +19175,7 @@ components: status: UNSTARTED - jobId: jobId createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - sessionRunName: sessionRunName + versionId: versionId bestTrialsFileUrl: bestTrialsFileUrl sources: - metadataKeys: @@ -17182,12 +19186,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -17201,7 +19200,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -17221,6 +19219,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -17250,7 +19252,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -17258,7 +19259,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -17271,13 +19271,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -17291,7 +19293,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -17311,6 +19312,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -17340,7 +19345,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -17348,7 +19352,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -17361,7 +19364,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -17380,12 +19390,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -17399,7 +19404,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -17419,6 +19423,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -17448,7 +19456,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -17456,7 +19463,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -17469,13 +19475,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -17489,7 +19497,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -17509,6 +19516,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -17538,7 +19549,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -17546,7 +19556,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -17559,7 +19568,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -17582,12 +19598,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -17601,7 +19612,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -17621,6 +19631,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -17650,7 +19664,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -17658,7 +19671,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -17671,13 +19683,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -17691,7 +19705,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -17711,6 +19724,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -17740,7 +19757,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -17748,7 +19764,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -17761,7 +19776,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -17780,12 +19802,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -17799,7 +19816,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -17819,6 +19835,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -17848,7 +19868,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -17856,7 +19875,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -17869,13 +19887,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -17889,7 +19909,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -17909,6 +19928,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -17938,7 +19961,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -17946,7 +19968,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -17959,7 +19980,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -17976,19 +20004,86 @@ components: operator: between createdBy: createdBy nextTrialsFileUrl: nextTrialsFileUrl - epoch: 0.8008281904610115 + runProcess: + datasetName: datasetName + versionName: versionName + params: + inferenceArtifactId: inferenceArtifactId + versionId: versionId + monitor: true + batchSize: 5.962133916683182 + projectId: projectId + jobId: jobId + createdAt: createdAt + versionId: versionId + processId: processId + projectName: projectName + jobType: jobType + batchSize: 5.637376656633329 + projectId: projectId + events: + - name: name + progress: + total: 6.027456183070403 + current: 1.4658129805029452 + id: id + status: UNSTARTED + - name: name + progress: + total: 6.027456183070403 + current: 1.4658129805029452 + id: id + status: UNSTARTED + machineType: machineType + notifications: + - identifier: identifier + createdAt: 2000-01-23T04:56:07.000+00:00 + teamId: teamId + context: + jobId: jobId + jobType: WARMUP + isRead: true + title: title + projectId: projectId + user: user + cid: cid + messageData: + level: Error + params: + message_code: message_code + module: General + message: message + - identifier: identifier + createdAt: 2000-01-23T04:56:07.000+00:00 + teamId: teamId + context: + jobId: jobId + jobType: WARMUP + isRead: true + title: title + projectId: projectId + user: user + cid: cid + messageData: + level: Error + params: + message_code: message_code + module: General + message: message + status: null + updatedAt: updatedAt + codeSnapshotInfo: + name: name + codeSnapshotId: codeSnapshotId + logsBlobName: logsBlobName id: id + versionName: versionName targetFilters: - field: field disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -18002,7 +20097,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -18022,6 +20116,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -18051,7 +20149,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -18059,7 +20156,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -18072,13 +20168,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -18092,7 +20190,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -18112,6 +20209,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -18141,7 +20242,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -18149,7 +20249,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -18162,7 +20261,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -18181,12 +20287,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -18200,7 +20301,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -18220,6 +20320,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -18249,7 +20353,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -18257,7 +20360,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -18270,13 +20372,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -18290,7 +20394,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -18310,6 +20413,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -18339,7 +20446,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -18347,7 +20453,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -18360,7 +20465,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -18411,23 +20523,17 @@ components: GenerateDatasetBalancingParams: additionalProperties: true example: - sessionRunId: sessionRunId + versionId: versionId prioritizedMetadataTags: - prioritizedMetadataTags - prioritizedMetadataTags - epoch: 0.8008281904610115 - percentageOfSamplesToPrune: 6.027456183070403 + percentageOfSamplesToPrune: 0.8008281904610115 filters: - field: field disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -18441,7 +20547,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -18461,6 +20566,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -18490,7 +20599,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -18498,7 +20606,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -18511,13 +20618,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -18531,7 +20640,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -18551,6 +20659,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -18580,7 +20692,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -18588,7 +20699,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -18601,7 +20711,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -18620,12 +20737,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -18639,7 +20751,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -18659,6 +20770,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -18688,7 +20803,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -18696,7 +20810,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -18709,13 +20822,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -18729,7 +20844,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -18749,6 +20863,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -18778,7 +20896,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -18786,7 +20903,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -18799,7 +20915,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -18821,11 +20944,8 @@ components: properties: projectId: type: string - sessionRunId: + versionId: type: string - epoch: - format: double - type: number filters: items: $ref: "#/components/schemas/ESFilter" @@ -18842,32 +20962,96 @@ components: format: double type: number required: - - epoch - metadataTags - projectId - - sessionRunId + - versionId type: object DatasetBalancing: additionalProperties: true example: - sessionRunName: sessionRunName prioritizedMetadataTags: - prioritizedMetadataTags - prioritizedMetadataTags + runProcess: + datasetName: datasetName + versionName: versionName + params: + inferenceArtifactId: inferenceArtifactId + versionId: versionId + monitor: true + batchSize: 5.962133916683182 + projectId: projectId + jobId: jobId + createdAt: createdAt + versionId: versionId + processId: processId + projectName: projectName + jobType: jobType + batchSize: 5.637376656633329 + projectId: projectId + events: + - name: name + progress: + total: 6.027456183070403 + current: 1.4658129805029452 + id: id + status: UNSTARTED + - name: name + progress: + total: 6.027456183070403 + current: 1.4658129805029452 + id: id + status: UNSTARTED + machineType: machineType + notifications: + - identifier: identifier + createdAt: 2000-01-23T04:56:07.000+00:00 + teamId: teamId + context: + jobId: jobId + jobType: WARMUP + isRead: true + title: title + projectId: projectId + user: user + cid: cid + messageData: + level: Error + params: + message_code: message_code + module: General + message: message + - identifier: identifier + createdAt: 2000-01-23T04:56:07.000+00:00 + teamId: teamId + context: + jobId: jobId + jobType: WARMUP + isRead: true + title: title + projectId: projectId + user: user + cid: cid + messageData: + level: Error + params: + message_code: message_code + module: General + message: message + status: null + updatedAt: updatedAt + codeSnapshotInfo: + name: name + codeSnapshotId: codeSnapshotId + logsBlobName: logsBlobName filterFileUrl: filterFileUrl - epoch: 0.8008281904610115 - percentageOfSamplesToPrune: 6.027456183070403 + percentageOfSamplesToPrune: 0.8008281904610115 filters: - field: field disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -18881,7 +21065,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -18901,6 +21084,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -18930,7 +21117,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -18938,7 +21124,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -18951,13 +21136,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -18971,7 +21158,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -18991,6 +21177,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -19020,7 +21210,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -19028,7 +21217,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -19041,7 +21229,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -19060,12 +21255,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -19079,7 +21269,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -19099,6 +21288,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -19128,7 +21321,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -19136,7 +21328,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -19149,13 +21340,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -19169,7 +21362,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -19189,6 +21381,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -19218,7 +21414,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -19226,7 +21421,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -19239,7 +21433,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -19254,9 +21455,10 @@ components: - null gt: 5.637376656633329 operator: between + versionName: versionName jobId: jobId createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId + versionId: versionId isDeleted: true createdBy: createdBy fileUrl: fileUrl @@ -19270,13 +21472,10 @@ components: type: string jobId: type: string - sessionRunId: + versionId: type: string - sessionRunName: + versionName: type: string - epoch: - format: double - type: number createdAt: format: date-time type: string @@ -19305,238 +21504,106 @@ components: percentageOfSamplesToPrune: format: double type: number + runProcess: + $ref: "#/components/schemas/RunProcess" required: - createdAt - createdBy - - epoch - id - isDeleted - jobId - metadataTags - - sessionRunId - - sessionRunName - status + - versionId + - versionName type: object DatasetBalancingResponse: additionalProperties: true example: datasetBalancingList: - - sessionRunName: sessionRunName - prioritizedMetadataTags: + - prioritizedMetadataTags: - prioritizedMetadataTags - prioritizedMetadataTags + runProcess: + datasetName: datasetName + versionName: versionName + params: + inferenceArtifactId: inferenceArtifactId + versionId: versionId + monitor: true + batchSize: 5.962133916683182 + projectId: projectId + jobId: jobId + createdAt: createdAt + versionId: versionId + processId: processId + projectName: projectName + jobType: jobType + batchSize: 5.637376656633329 + projectId: projectId + events: + - name: name + progress: + total: 6.027456183070403 + current: 1.4658129805029452 + id: id + status: UNSTARTED + - name: name + progress: + total: 6.027456183070403 + current: 1.4658129805029452 + id: id + status: UNSTARTED + machineType: machineType + notifications: + - identifier: identifier + createdAt: 2000-01-23T04:56:07.000+00:00 + teamId: teamId + context: + jobId: jobId + jobType: WARMUP + isRead: true + title: title + projectId: projectId + user: user + cid: cid + messageData: + level: Error + params: + message_code: message_code + module: General + message: message + - identifier: identifier + createdAt: 2000-01-23T04:56:07.000+00:00 + teamId: teamId + context: + jobId: jobId + jobType: WARMUP + isRead: true + title: title + projectId: projectId + user: user + cid: cid + messageData: + level: Error + params: + message_code: message_code + module: General + message: message + status: null + updatedAt: updatedAt + codeSnapshotInfo: + name: name + codeSnapshotId: codeSnapshotId + logsBlobName: logsBlobName filterFileUrl: filterFileUrl - epoch: 0.8008281904610115 - percentageOfSamplesToPrune: 6.027456183070403 - filters: - - field: field - disable: true - displayData: - insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 - insightType: - severity: 4.145608029883936 - automatic_tests: - - filter: null - metric_name: metric_name - metric_value: 6.84685269835264 - test_name: test_name - operator: equal - - filter: null - metric_name: metric_name - metric_value: 6.84685269835264 - test_name: test_name - operator: equal - under_representation_n_samples: 7.457744773683766 - id_: id_ - es_filters_used_in_analysis: - - null - - null - n_samples: 7.061401241503109 - metrics_info: - - metric_name: metric_name - metric_statistics: - - name: name - value: 1.0246457001441578 - - name: name - value: 1.0246457001441578 - - metric_name: metric_name - metric_statistics: - - name: name - value: 1.0246457001441578 - - name: name - value: 1.0246457001441578 - blob_path: blob_path - mutual_info_elements: - - features: - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - score: 2.027123023002322 - value_in_cluster: 9.301444243932576 - value_outside_cluster: 3.616076749251911 - is_unique: true - - features: - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - score: 2.027123023002322 - value_in_cluster: 9.301444243932576 - value_outside_cluster: 3.616076749251911 - is_unique: true - type: low_performance - auto_generated: true - over_representation_n_samples: 1.1730742509559433 - severity_metrics: - - metric_name: metric_name - value: 7.386281948385884 - normalized_value: 1.2315135367772556 - - metric_name: metric_name - value: 7.386281948385884 - normalized_value: 1.2315135367772556 - over_representation_dataset: null - min_hash: - - 1.4894159098541704 - - 1.4894159098541704 - csv_path: csv_path - parent_id: parent_id - display_filters: - - metric: metric - value: ScatterFilter_value - operator: smaller_than - - metric: metric - value: ScatterFilter_value - operator: smaller_than - under_representation_dataset: training - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 - insightType: - severity: 4.145608029883936 - automatic_tests: - - filter: null - metric_name: metric_name - metric_value: 6.84685269835264 - test_name: test_name - operator: equal - - filter: null - metric_name: metric_name - metric_value: 6.84685269835264 - test_name: test_name - operator: equal - under_representation_n_samples: 7.457744773683766 - id_: id_ - es_filters_used_in_analysis: - - null - - null - n_samples: 7.061401241503109 - metrics_info: - - metric_name: metric_name - metric_statistics: - - name: name - value: 1.0246457001441578 - - name: name - value: 1.0246457001441578 - - metric_name: metric_name - metric_statistics: - - name: name - value: 1.0246457001441578 - - name: name - value: 1.0246457001441578 - blob_path: blob_path - mutual_info_elements: - - features: - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - score: 2.027123023002322 - value_in_cluster: 9.301444243932576 - value_outside_cluster: 3.616076749251911 - is_unique: true - - features: - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - score: 2.027123023002322 - value_in_cluster: 9.301444243932576 - value_outside_cluster: 3.616076749251911 - is_unique: true - type: low_performance - auto_generated: true - over_representation_n_samples: 1.1730742509559433 - severity_metrics: - - metric_name: metric_name - value: 7.386281948385884 - normalized_value: 1.2315135367772556 - - metric_name: metric_name - value: 7.386281948385884 - normalized_value: 1.2315135367772556 - over_representation_dataset: null - min_hash: - - 1.4894159098541704 - - 1.4894159098541704 - csv_path: csv_path - parent_id: parent_id - display_filters: - - metric: metric - value: ScatterFilter_value - operator: smaller_than - - metric: metric - value: ScatterFilter_value - operator: smaller_than - under_representation_dataset: training - type: insight - value: - lt: null - gte: null - blob_paths: - - blob_paths - - blob_paths - lte: null - eq: null - lst: - - null - - null - gt: 5.637376656633329 - operator: between + percentageOfSamplesToPrune: 0.8008281904610115 + filters: - field: field disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -19550,7 +21617,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -19570,6 +21636,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -19599,7 +21669,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -19607,7 +21676,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -19620,13 +21688,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -19640,7 +21710,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -19660,6 +21729,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -19689,7 +21762,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -19697,7 +21769,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -19710,7 +21781,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -19725,35 +21803,11 @@ components: - null gt: 5.637376656633329 operator: between - jobId: jobId - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - isDeleted: true - createdBy: createdBy - fileUrl: fileUrl - id: id - metadataTags: - - metadataTags - - metadataTags - status: UNSTARTED - - sessionRunName: sessionRunName - prioritizedMetadataTags: - - prioritizedMetadataTags - - prioritizedMetadataTags - filterFileUrl: filterFileUrl - epoch: 0.8008281904610115 - percentageOfSamplesToPrune: 6.027456183070403 - filters: - field: field disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -19767,7 +21821,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -19787,6 +21840,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -19816,7 +21873,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -19824,7 +21880,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -19837,13 +21892,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -19857,7 +21914,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -19877,6 +21933,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -19906,7 +21966,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -19914,7 +21973,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -19927,7 +21985,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -19942,16 +22007,101 @@ components: - null gt: 5.637376656633329 operator: between + versionName: versionName + jobId: jobId + createdAt: 2000-01-23T04:56:07.000+00:00 + versionId: versionId + isDeleted: true + createdBy: createdBy + fileUrl: fileUrl + id: id + metadataTags: + - metadataTags + - metadataTags + status: UNSTARTED + - prioritizedMetadataTags: + - prioritizedMetadataTags + - prioritizedMetadataTags + runProcess: + datasetName: datasetName + versionName: versionName + params: + inferenceArtifactId: inferenceArtifactId + versionId: versionId + monitor: true + batchSize: 5.962133916683182 + projectId: projectId + jobId: jobId + createdAt: createdAt + versionId: versionId + processId: processId + projectName: projectName + jobType: jobType + batchSize: 5.637376656633329 + projectId: projectId + events: + - name: name + progress: + total: 6.027456183070403 + current: 1.4658129805029452 + id: id + status: UNSTARTED + - name: name + progress: + total: 6.027456183070403 + current: 1.4658129805029452 + id: id + status: UNSTARTED + machineType: machineType + notifications: + - identifier: identifier + createdAt: 2000-01-23T04:56:07.000+00:00 + teamId: teamId + context: + jobId: jobId + jobType: WARMUP + isRead: true + title: title + projectId: projectId + user: user + cid: cid + messageData: + level: Error + params: + message_code: message_code + module: General + message: message + - identifier: identifier + createdAt: 2000-01-23T04:56:07.000+00:00 + teamId: teamId + context: + jobId: jobId + jobType: WARMUP + isRead: true + title: title + projectId: projectId + user: user + cid: cid + messageData: + level: Error + params: + message_code: message_code + module: General + message: message + status: null + updatedAt: updatedAt + codeSnapshotInfo: + name: name + codeSnapshotId: codeSnapshotId + logsBlobName: logsBlobName + filterFileUrl: filterFileUrl + percentageOfSamplesToPrune: 0.8008281904610115 + filters: - field: field disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -19965,7 +22115,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -19985,6 +22134,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -20014,7 +22167,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -20022,7 +22174,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -20035,13 +22186,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -20055,7 +22208,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -20075,6 +22227,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -20095,736 +22251,340 @@ components: feature_value: feature_value direction: up - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - score: 2.027123023002322 - value_in_cluster: 9.301444243932576 - value_outside_cluster: 3.616076749251911 - is_unique: true - type: low_performance - auto_generated: true - over_representation_n_samples: 1.1730742509559433 - severity_metrics: - - metric_name: metric_name - value: 7.386281948385884 - normalized_value: 1.2315135367772556 - - metric_name: metric_name - value: 7.386281948385884 - normalized_value: 1.2315135367772556 - over_representation_dataset: null - min_hash: - - 1.4894159098541704 - - 1.4894159098541704 - csv_path: csv_path - parent_id: parent_id - display_filters: - - metric: metric - value: ScatterFilter_value - operator: smaller_than - - metric: metric - value: ScatterFilter_value - operator: smaller_than - under_representation_dataset: training - type: insight - value: - lt: null - gte: null - blob_paths: - - blob_paths - - blob_paths - lte: null - eq: null - lst: - - null - - null - gt: 5.637376656633329 - operator: between - jobId: jobId - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - isDeleted: true - createdBy: createdBy - fileUrl: fileUrl - id: id - metadataTags: - - metadataTags - - metadataTags - status: UNSTARTED - properties: - datasetBalancingList: - items: - $ref: "#/components/schemas/DatasetBalancing" - type: array - required: - - datasetBalancingList - type: object - GetDatasetBalancingParams: - additionalProperties: true - example: - projectId: projectId - properties: - projectId: - type: string - required: - - projectId - type: object - DeleteDatasetBalancingParams: - additionalProperties: true - example: - datasetBalancingId: datasetBalancingId - projectId: projectId - properties: - projectId: - type: string - datasetBalancingId: - type: string - required: - - datasetBalancingId - - projectId - type: object - JobType: - enum: - - TRAINING - - IMPORT_MODEL - - ANALYZE - - WARMUP - - TEST_STUB_FUNCTION - - TEST_CUSTOM_LOSS - - EXPORT_MODEL - - DATASET_PARSE - - ANALYZE_GRAPH - - DRY_RUN_GRAPH - - SLIM_LS - - STREAMING_HANDLER - - STREAMING_SAMPLES_VIS - - EXPORT_PROJECT - - IMPORT_PROJECT - type: string - JobSubType: - enum: - - Evaluate - - Population Exploration - - Labeling Recommendation - - Synthetic Data Generation - - Dataset Balancing - - Visualizers Calculation - - Sample Analysis - - Graph Validate - - Fetch Similar - - Export Project - - Copy Project - - Import Project - - Code Parse - - Import Model - - Generate Insights - - Streaming Samples Vis - type: string - EarlyStopParams: - additionalProperties: true - example: - patience: 1.4658129805029452 - properties: - patience: - format: double - type: number - required: - - patience - type: object - TrainingParams: - additionalProperties: true - example: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - properties: - epochs: - format: double - type: number - batch_size: - format: double - type: number - early_stop_params: - $ref: "#/components/schemas/EarlyStopParams" - required: - - batch_size - - epochs - type: object - EvaluateNewSessionParams: - additionalProperties: true - example: - versionId: versionId - name: name - description: description - monitor: true - batchSize: 0.8008281904610115 - projectId: projectId - properties: - versionId: - type: string - projectId: - type: string - batchSize: - format: double - type: number - name: - type: string - description: - type: string - monitor: - type: boolean - required: - - batchSize - - description - - name - - projectId - - versionId - type: object - EvaluateExistingSessionParams: - allOf: - - $ref: "#/components/schemas/EvaluateNewSessionParams" - - properties: - evaluatedEpoch: - format: double - type: number - sessionId: - type: string - required: - - evaluatedEpoch - - sessionId - type: object - EvaluateParams: - anyOf: - - $ref: "#/components/schemas/EvaluateNewSessionParams" - - $ref: "#/components/schemas/EvaluateExistingSessionParams" - AnalyzeTypeEnum: - enum: - - population_exploration - - sample_analysis - - visualizers_calculation - type: string - AnalyzeParams: - additionalProperties: true - properties: - type: - $ref: "#/components/schemas/AnalyzeTypeEnum" - fromEpoch: - format: double - type: number - batchSize: - format: double - type: number - sampleIdentity: - $ref: "#/components/schemas/SampleIdentity" - fromDatasetSlice: - $ref: "#/components/schemas/DataStateType" - extId: - type: string - required: - - extId - - fromEpoch - - type - type: object - ExportModelTypeEnum: - enum: - - JSON_TF2 - - H5_TF2 - - ONNX - - SavedModel_TF2 - type: string - ExportModelParams: - additionalProperties: true - properties: - type: - $ref: "#/components/schemas/ExportModelTypeEnum" - title: - type: string - epoch: - format: double - type: number - required: - - epoch - - title - - type - type: object - FetchSimilarJobParams: - properties: - digest: - type: string - filters: - items: - $ref: "#/components/schemas/ESFilter" - type: array - epoch: - format: double - type: number - sampleIds: - items: - $ref: "#/components/schemas/SampleIdentity" - type: array - limit: - format: double - type: number - sessionRunId: - type: string - type: - enum: - - fetch_similar - nullable: false - type: string - required: - - digest - - epoch - - limit - - sampleIds - - sessionRunId - - type - type: object - OptionalAnalysis: - enum: - - representation all - - duplication insight - type: string - PopulationExplorationJobParams: - properties: - latentSpaceType: - type: string - forceExecute: - type: boolean - elementInstance: - type: boolean - useCustomLatentSpace: - type: boolean - optionalAnalysis: - items: - $ref: "#/components/schemas/OptionalAnalysis" - type: array - reductionAlgorithm: - $ref: "#/components/schemas/ReductionAlgorithm" - shouldFillRemainingWithUnbalanced: - type: boolean - balanceBy: - items: - type: string - type: array - numOfSamples: - format: double - type: number - domainGapMetadata: - type: string - projectionMetric: - type: string - digest: - type: string - filters: - items: - $ref: "#/components/schemas/ESFilter" - type: array - fromEpoch: - format: double - type: number - batchSize: - format: double - type: number - sessionRunId: - type: string - type: - enum: - - population_exploration - nullable: false - type: string - required: - - balanceBy - - batchSize - - digest - - fromEpoch - - numOfSamples - - reductionAlgorithm - - sessionRunId - - shouldFillRemainingWithUnbalanced - - type - type: object - LabelingAlgorithm: - enum: - - CORESET - nullable: false - type: string - LabelingJobParams: - properties: - useCustomLatentSpace: - type: boolean - digest: - type: string - filters: - items: - $ref: "#/components/schemas/ESFilter" - type: array - labelingAlgorithm: - $ref: "#/components/schemas/LabelingAlgorithm" - numOfSamplesToLabel: - format: double - type: number - fromEpoch: - format: double - type: number - sessionRunId: - type: string - type: - enum: - - labeling_recommendation - nullable: false - type: string - required: - - digest - - fromEpoch - - labelingAlgorithm - - sessionRunId - - type - type: object - SyntheticDataJobParams: - properties: - digest: - type: string - targetFilters: - items: - $ref: "#/components/schemas/ESFilter" - type: array - sources: - items: - $ref: "#/components/schemas/GenerateSyntheticDataParams_sources_inner" - type: array - fromEpoch: - format: double - type: number - sessionRunId: - type: string - type: - enum: - - synthetic_data_generation - nullable: false - type: string - required: - - digest - - fromEpoch - - sessionRunId - - sources - - targetFilters - - type - type: object - DatasetBalancingJobParams: - properties: - digest: - type: string - percentageOfSamplesToPrune: - format: double - type: number - prioritizedMetadataTags: - items: - type: string - type: array - metadataTags: - items: - type: string - type: array - filters: - items: - $ref: "#/components/schemas/ESFilter" - type: array - fromEpoch: - format: double - type: number - sessionRunId: - type: string - type: - enum: - - dataset_balancing - nullable: false - type: string - required: - - digest - - fromEpoch - - metadataTags - - sessionRunId - - type - type: object - InsightsJobParams: - properties: - filters: - items: - $ref: "#/components/schemas/ESFilter" - type: array - sessionRunId: - type: string - type: - enum: - - generate_insights - nullable: false - type: string - required: - - sessionRunId - - type - type: object - ExportOptions: - example: - excludeCalculatedFiles: true - properties: - excludeCalculatedFiles: - type: boolean - type: object - Record_string.string-or-string-Array_: - description: Construct a type with a set of properties K of type T - properties: {} - type: object - ExportProjectMeta: - additionalProperties: true + is_categorical: true + feature_value: feature_value + direction: up + score: 2.027123023002322 + value_in_cluster: 9.301444243932576 + value_outside_cluster: 3.616076749251911 + is_unique: true + type: low_performance + auto_generated: true + severity_metrics: + - metric_name: metric_name + value: 7.386281948385884 + normalized_value: 1.2315135367772556 + - metric_name: metric_name + value: 7.386281948385884 + normalized_value: 1.2315135367772556 + min_hash: + - 1.4894159098541704 + - 1.4894159098541704 + csv_path: csv_path + parent_id: parent_id + display_filters: + - metric: metric + value: ScatterFilter_value + operator: smaller_than + - metric: metric + value: ScatterFilter_value + operator: smaller_than + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id + type: insight + value: + lt: null + gte: null + blob_paths: + - blob_paths + - blob_paths + lte: null + eq: null + lst: + - null + - null + gt: 5.637376656633329 + operator: between + - field: field + disable: true + displayData: + insights: + - index: 2.3021358869347655 + insightType: + severity: 4.145608029883936 + automatic_tests: + - filter: null + metric_name: metric_name + metric_value: 6.84685269835264 + test_name: test_name + operator: equal + - filter: null + metric_name: metric_name + metric_value: 6.84685269835264 + test_name: test_name + operator: equal + id_: id_ + es_filters_used_in_analysis: + - null + - null + n_samples: 7.061401241503109 + metrics_info: + - metric_name: metric_name + metric_statistics: + - name: name + value: 1.0246457001441578 + - name: name + value: 1.0246457001441578 + - metric_name: metric_name + metric_statistics: + - name: name + value: 1.0246457001441578 + - name: name + value: 1.0246457001441578 + blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics + mutual_info_elements: + - features: + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + score: 2.027123023002322 + value_in_cluster: 9.301444243932576 + value_outside_cluster: 3.616076749251911 + is_unique: true + - features: + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + score: 2.027123023002322 + value_in_cluster: 9.301444243932576 + value_outside_cluster: 3.616076749251911 + is_unique: true + type: low_performance + auto_generated: true + severity_metrics: + - metric_name: metric_name + value: 7.386281948385884 + normalized_value: 1.2315135367772556 + - metric_name: metric_name + value: 7.386281948385884 + normalized_value: 1.2315135367772556 + min_hash: + - 1.4894159098541704 + - 1.4894159098541704 + csv_path: csv_path + parent_id: parent_id + display_filters: + - metric: metric + value: ScatterFilter_value + operator: smaller_than + - metric: metric + value: ScatterFilter_value + operator: smaller_than + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id + - index: 2.3021358869347655 + insightType: + severity: 4.145608029883936 + automatic_tests: + - filter: null + metric_name: metric_name + metric_value: 6.84685269835264 + test_name: test_name + operator: equal + - filter: null + metric_name: metric_name + metric_value: 6.84685269835264 + test_name: test_name + operator: equal + id_: id_ + es_filters_used_in_analysis: + - null + - null + n_samples: 7.061401241503109 + metrics_info: + - metric_name: metric_name + metric_statistics: + - name: name + value: 1.0246457001441578 + - name: name + value: 1.0246457001441578 + - metric_name: metric_name + metric_statistics: + - name: name + value: 1.0246457001441578 + - name: name + value: 1.0246457001441578 + blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics + mutual_info_elements: + - features: + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + score: 2.027123023002322 + value_in_cluster: 9.301444243932576 + value_outside_cluster: 3.616076749251911 + is_unique: true + - features: + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + score: 2.027123023002322 + value_in_cluster: 9.301444243932576 + value_outside_cluster: 3.616076749251911 + is_unique: true + type: low_performance + auto_generated: true + severity_metrics: + - metric_name: metric_name + value: 7.386281948385884 + normalized_value: 1.2315135367772556 + - metric_name: metric_name + value: 7.386281948385884 + normalized_value: 1.2315135367772556 + min_hash: + - 1.4894159098541704 + - 1.4894159098541704 + csv_path: csv_path + parent_id: parent_id + display_filters: + - metric: metric + value: ScatterFilter_value + operator: smaller_than + - metric: metric + value: ScatterFilter_value + operator: smaller_than + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id + type: insight + value: + lt: null + gte: null + blob_paths: + - blob_paths + - blob_paths + lte: null + eq: null + lst: + - null + - null + gt: 5.637376656633329 + operator: between + versionName: versionName + jobId: jobId + createdAt: 2000-01-23T04:56:07.000+00:00 + versionId: versionId + isDeleted: true + createdBy: createdBy + fileUrl: fileUrl + id: id + metadataTags: + - metadataTags + - metadataTags + status: UNSTARTED properties: - name: - type: string - description: - type: string - tags: + datasetBalancingList: items: - type: string + $ref: "#/components/schemas/DatasetBalancing" type: array - categories: - description: Construct a type with a set of properties K of type T - properties: {} - type: object - bgImagePath: - type: string - schemaVersion: - format: double - type: number - sourceProjectId: - type: string - required: - - bgImagePath - - categories - - name - - schemaVersion - - sourceProjectId - - tags - type: object - ExportProjectParams: - additionalProperties: true - properties: - exportUrl: - type: string - projectVersion: - format: double - type: number - exportOptions: - $ref: "#/components/schemas/ExportOptions" - alreadyExported: - type: boolean - projectExportMeta: - $ref: "#/components/schemas/ExportProjectMeta" - copyToUrl: - type: string required: - - alreadyExported - - exportOptions - - exportUrl - - projectExportMeta - - projectVersion + - datasetBalancingList type: object - HubPublishPolicy: - enum: - - public - - alpha - - no_publish - type: string - ProjectMeta: + GetDatasetBalancingParams: additionalProperties: true example: - hubPublishPolicy: public - name: name - description: description - bgImageUrl: bgImageUrl - categories: "{}" - tags: - - tags - - tags - properties: - name: - type: string - description: - type: string - tags: - items: - type: string - type: array - hubPublishPolicy: - $ref: "#/components/schemas/HubPublishPolicy" - bgImageUrl: - type: string - categories: - description: Construct a type with a set of properties K of type T - properties: {} - type: object - required: - - description - - hubPublishPolicy - - name - - tags - type: object - ImportProjectParams: - additionalProperties: true - properties: - importUrl: - type: string - projectMeta: - $ref: "#/components/schemas/ProjectMeta" - required: - - importUrl - - projectMeta - type: object - ParesCodeSnapshotParams: - additionalProperties: true + projectId: projectId properties: projectId: type: string - secretManagerId: - type: string - codeUrl: - type: string - codeEntryFile: - type: string - genericBaseImageType: - type: string required: - - codeEntryFile - - codeUrl - projectId type: object - PushCodeSnapshotParams: + DeleteDatasetBalancingParams: additionalProperties: true example: - codeUrl: codeUrl - overwriteVersionId: overwriteVersionId - genericBaseImageType: genericBaseImageType - secretManagerId: secretManagerId - branchName: branchName - codeEntryFile: codeEntryFile - versionName: versionName + datasetBalancingId: datasetBalancingId projectId: projectId properties: projectId: type: string - secretManagerId: - type: string - codeUrl: - type: string - codeEntryFile: - type: string - genericBaseImageType: - type: string - versionName: - type: string - branchName: - type: string - overwriteVersionId: + datasetBalancingId: type: string required: - - codeEntryFile - - codeUrl + - datasetBalancingId - projectId - - versionName - type: object - JobParams: - anyOf: - - $ref: "#/components/schemas/TrainingParams" - - $ref: "#/components/schemas/EvaluateParams" - - $ref: "#/components/schemas/AnalyzeParams" - - $ref: "#/components/schemas/ExportModelParams" - - $ref: "#/components/schemas/FetchSimilarJobParams" - - $ref: "#/components/schemas/PopulationExplorationJobParams" - - $ref: "#/components/schemas/LabelingJobParams" - - $ref: "#/components/schemas/SyntheticDataJobParams" - - $ref: "#/components/schemas/DatasetBalancingJobParams" - - $ref: "#/components/schemas/InsightsJobParams" - - $ref: "#/components/schemas/ExportProjectParams" - - $ref: "#/components/schemas/ImportProjectParams" - - $ref: "#/components/schemas/ParesCodeSnapshotParams" - - $ref: "#/components/schemas/PushCodeSnapshotParams" - CodeSnapshotInfo: - additionalProperties: true - example: - name: name - codeSnapshotId: codeSnapshotId - properties: - codeSnapshotId: - type: string - name: - type: string - required: - - codeSnapshotId - - name type: object - StatusEnum: + JobSubType: enum: - - UNSTARTED - - FAILED - - STARTED - - FINISHED + - Evaluate + - Population Exploration + - Labeling Recommendation + - Synthetic Data Generation + - Dataset Balancing + - Visualizers Calculation + - Sample Analysis + - Graph Validate + - Fetch Similar + - Export Project + - Copy Project + - Import Project + - Code Parse + - Import Model + - Generate Insights + - Streaming Samples Vis type: string - JobEventProgress: - additionalProperties: true - example: - total: 5.962133916683182 - current: 5.637376656633329 - properties: - total: - format: double - type: number - current: - format: double - type: number - required: - - current - - total - type: object - JobEvent: - additionalProperties: true - example: - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - properties: - id: - type: string - name: - type: string - status: - $ref: "#/components/schemas/StatusEnum" - progress: - $ref: "#/components/schemas/JobEventProgress" - required: - - id - - name - - status - type: object EventsSnapshot: additionalProperties: true example: events: - name: name progress: - total: 5.962133916683182 - current: 5.637376656633329 + total: 6.027456183070403 + current: 1.4658129805029452 id: id status: UNSTARTED - name: name progress: - total: 5.962133916683182 - current: 5.637376656633329 + total: 6.027456183070403 + current: 1.4658129805029452 id: id status: UNSTARTED - snapshotIndex: 2.3021358869347655 + snapshotIndex: 0.8008281904610115 properties: events: items: @@ -20844,26 +22604,27 @@ components: events: - name: name progress: - total: 5.962133916683182 - current: 5.637376656633329 + total: 6.027456183070403 + current: 1.4658129805029452 id: id status: UNSTARTED - name: name progress: - total: 5.962133916683182 - current: 5.637376656633329 + total: 6.027456183070403 + current: 1.4658129805029452 id: id status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING + snapshotIndex: 0.8008281904610115 + type: WARMUP params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 + inferenceArtifactId: inferenceArtifactId + versionId: versionId + monitor: true + batchSize: 5.962133916683182 + projectId: projectId version: version createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId + versionId: versionId createdBy: createdBy teamId: teamId subType: Evaluate @@ -20898,7 +22659,7 @@ components: type: string params: $ref: "#/components/schemas/JobParams" - sessionRunId: + versionId: type: string teamId: type: string @@ -20921,14 +22682,17 @@ components: additionalProperties: true description: |- Params for continuing an evaluate job. - If evaluateParams are not stored on the sessionRun (backward compatibility), + If evaluateParams are not stored on the version (backward compatibility), the user must provide dataStates and batchSize. example: - sessionRunId: sessionRunId + inferenceArtifactId: inferenceArtifactId + versionId: versionId batchSize: 0.8008281904610115 projectId: projectId properties: - sessionRunId: + versionId: + type: string + inferenceArtifactId: type: string projectId: type: string @@ -20937,17 +22701,17 @@ components: type: number required: - projectId - - sessionRunId + - versionId type: object ExportedModelData: additionalProperties: true example: jobId: jobId createdAt: 2000-01-23T04:56:07.000+00:00 + versionId: versionId blob: blob - sessionWeightId: sessionWeightId + modelId: modelId createdBy: createdBy - sessionId: sessionId title: title fileType: fileType cid: cid @@ -20958,13 +22722,13 @@ components: type: string jobId: type: string - sessionWeightId: + modelId: type: string blob: type: string status: type: string - sessionId: + versionId: type: string title: type: string @@ -20985,22 +22749,22 @@ components: - createdBy - fileType - jobId - - sessionId - - sessionWeightId + - modelId - status - title - updatedAt + - versionId type: object - GetExportedSessionRunJobsResponse: + GetExportedModelJobsResponse: additionalProperties: true example: exportedModelData: - jobId: jobId createdAt: 2000-01-23T04:56:07.000+00:00 + versionId: versionId blob: blob - sessionWeightId: sessionWeightId + modelId: modelId createdBy: createdBy - sessionId: sessionId title: title fileType: fileType cid: cid @@ -21008,10 +22772,10 @@ components: updatedAt: 2000-01-23T04:56:07.000+00:00 - jobId: jobId createdAt: 2000-01-23T04:56:07.000+00:00 + versionId: versionId blob: blob - sessionWeightId: sessionWeightId + modelId: modelId createdBy: createdBy - sessionId: sessionId title: title fileType: fileType cid: cid @@ -21025,32 +22789,32 @@ components: required: - exportedModelData type: object - GetExportedSessionRunJobsParams: + GetExportedModelJobsParams: additionalProperties: true example: - sessionId: sessionId + versionId: versionId projectId: projectId properties: - sessionId: + versionId: type: string projectId: type: string required: - projectId - - sessionId + - versionId type: object AddExportModelJobParams: additionalProperties: true example: pruneModel: true - sessionWeightId: sessionWeightId + modelId: modelId exportModelType: JSON_TF2 title: title projectId: projectId properties: projectId: type: string - sessionWeightId: + modelId: type: string exportModelType: $ref: "#/components/schemas/ExportModelTypeEnum" @@ -21060,9 +22824,9 @@ components: type: boolean required: - exportModelType + - modelId - projectId - pruneModel - - sessionWeightId - title type: object EpochMetricsValue: @@ -21116,8 +22880,8 @@ components: Insight: additionalProperties: true example: + inferenceArtifactId: inferenceArtifactId createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId index: 0.8008281904610115 insightType: severity: 4.145608029883936 @@ -21132,7 +22896,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -21152,6 +22915,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -21181,7 +22948,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -21189,7 +22955,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -21202,14 +22967,18 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true cid: cid status: InReview updatedAt: 2000-01-23T04:56:07.000+00:00 properties: cid: type: string - sessionRunId: + inferenceArtifactId: type: string insightType: $ref: "#/components/schemas/InsightType" @@ -21229,7 +22998,6 @@ components: - createdAt - index - insightType - - sessionRunId - status - updatedAt type: object @@ -21237,8 +23005,8 @@ components: additionalProperties: true example: insights: - - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId + - inferenceArtifactId: inferenceArtifactId + createdAt: 2000-01-23T04:56:07.000+00:00 index: 0.8008281904610115 insightType: severity: 4.145608029883936 @@ -21253,7 +23021,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -21273,6 +23040,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -21302,7 +23073,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -21310,7 +23080,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -21323,12 +23092,16 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true cid: cid status: InReview updatedAt: 2000-01-23T04:56:07.000+00:00 - - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId + - inferenceArtifactId: inferenceArtifactId + createdAt: 2000-01-23T04:56:07.000+00:00 index: 0.8008281904610115 insightType: severity: 4.145608029883936 @@ -21343,7 +23116,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -21363,6 +23135,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -21392,7 +23168,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -21400,7 +23175,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -21413,7 +23187,11 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true cid: cid status: InReview updatedAt: 2000-01-23T04:56:07.000+00:00 @@ -21428,16 +23206,15 @@ components: GetInsightsParams: additionalProperties: true example: - sessionRunId: sessionRunId + versionId: versionId projectId: projectId properties: - sessionRunId: + versionId: type: string projectId: type: string required: - projectId - - sessionRunId type: object ApplyInsightsStatusParams: additionalProperties: true @@ -21460,19 +23237,14 @@ components: GenerateInsightsParams: additionalProperties: true example: - sessionRunId: sessionRunId + versionId: versionId refresh: true filters: - field: field disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -21486,7 +23258,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -21506,6 +23277,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -21535,7 +23310,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -21543,7 +23317,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -21556,13 +23329,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -21576,7 +23351,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -21596,6 +23370,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -21625,7 +23403,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -21633,7 +23410,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -21646,7 +23422,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -21665,12 +23448,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -21684,7 +23462,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -21704,6 +23481,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -21733,7 +23514,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -21741,7 +23521,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -21754,13 +23533,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -21774,7 +23555,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -21794,6 +23574,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -21823,7 +23607,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -21831,7 +23614,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -21844,7 +23626,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -21863,7 +23652,7 @@ components: properties: projectId: type: string - sessionRunId: + versionId: type: string filters: items: @@ -21873,7 +23662,6 @@ components: type: boolean required: - projectId - - sessionRunId type: object IssueStatus: enum: @@ -22361,175 +24149,147 @@ components: - issueId - projectId type: object - RunProcess: - additionalProperties: true - example: - sessionRunName: sessionRunName - sessionName: sessionName - datasetName: datasetName - versionName: versionName - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - jobId: jobId - createdAt: createdAt - versionId: versionId - sessionRunId: sessionRunId - processId: processId - projectName: projectName - jobType: jobType - batchSize: 0.8008281904610115 - projectId: projectId - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - machineType: machineType - status: UNSTARTED - updatedAt: updatedAt - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - properties: - jobId: - type: string - processId: - type: string - versionName: - type: string - versionId: - type: string - projectId: - type: string - projectName: - type: string - datasetName: - type: string - jobType: - type: string - status: - $ref: "#/components/schemas/JobStatus" - createdAt: - type: string - updatedAt: - type: string - sessionName: - type: string - sessionRunName: - type: string - sessionRunId: - type: string - events: - items: - $ref: "#/components/schemas/JobEvent" - type: array - params: - $ref: "#/components/schemas/JobParams" - machineType: - type: string - batchSize: - format: double - type: number - codeSnapshotInfo: - $ref: "#/components/schemas/CodeSnapshotInfo" - logsBlobName: - type: string - required: - - createdAt - - events - - jobId - - jobType - - processId - - status - - updatedAt - type: object GetJobsResponse: additionalProperties: true example: processes: - - sessionRunName: sessionRunName - sessionName: sessionName - datasetName: datasetName + - datasetName: datasetName versionName: versionName params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 + inferenceArtifactId: inferenceArtifactId + versionId: versionId + monitor: true + batchSize: 5.962133916683182 + projectId: projectId jobId: jobId createdAt: createdAt versionId: versionId - sessionRunId: sessionRunId processId: processId projectName: projectName jobType: jobType - batchSize: 0.8008281904610115 + batchSize: 5.637376656633329 projectId: projectId events: - name: name progress: - total: 5.962133916683182 - current: 5.637376656633329 + total: 6.027456183070403 + current: 1.4658129805029452 id: id status: UNSTARTED - name: name progress: - total: 5.962133916683182 - current: 5.637376656633329 + total: 6.027456183070403 + current: 1.4658129805029452 id: id status: UNSTARTED machineType: machineType - status: UNSTARTED + notifications: + - identifier: identifier + createdAt: 2000-01-23T04:56:07.000+00:00 + teamId: teamId + context: + jobId: jobId + jobType: WARMUP + isRead: true + title: title + projectId: projectId + user: user + cid: cid + messageData: + level: Error + params: + message_code: message_code + module: General + message: message + - identifier: identifier + createdAt: 2000-01-23T04:56:07.000+00:00 + teamId: teamId + context: + jobId: jobId + jobType: WARMUP + isRead: true + title: title + projectId: projectId + user: user + cid: cid + messageData: + level: Error + params: + message_code: message_code + module: General + message: message + status: null updatedAt: updatedAt codeSnapshotInfo: name: name codeSnapshotId: codeSnapshotId logsBlobName: logsBlobName - - sessionRunName: sessionRunName - sessionName: sessionName - datasetName: datasetName + - datasetName: datasetName versionName: versionName params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 + inferenceArtifactId: inferenceArtifactId + versionId: versionId + monitor: true + batchSize: 5.962133916683182 + projectId: projectId jobId: jobId createdAt: createdAt versionId: versionId - sessionRunId: sessionRunId processId: processId projectName: projectName jobType: jobType - batchSize: 0.8008281904610115 + batchSize: 5.637376656633329 projectId: projectId events: - name: name progress: - total: 5.962133916683182 - current: 5.637376656633329 + total: 6.027456183070403 + current: 1.4658129805029452 id: id status: UNSTARTED - name: name progress: - total: 5.962133916683182 - current: 5.637376656633329 + total: 6.027456183070403 + current: 1.4658129805029452 id: id status: UNSTARTED machineType: machineType - status: UNSTARTED + notifications: + - identifier: identifier + createdAt: 2000-01-23T04:56:07.000+00:00 + teamId: teamId + context: + jobId: jobId + jobType: WARMUP + isRead: true + title: title + projectId: projectId + user: user + cid: cid + messageData: + level: Error + params: + message_code: message_code + module: General + message: message + - identifier: identifier + createdAt: 2000-01-23T04:56:07.000+00:00 + teamId: teamId + context: + jobId: jobId + jobType: WARMUP + isRead: true + title: title + projectId: projectId + user: user + cid: cid + messageData: + level: Error + params: + message_code: message_code + module: General + message: message + status: null updatedAt: updatedAt codeSnapshotInfo: name: name @@ -22553,16 +24313,16 @@ components: example: lastUpdated: 2000-01-23T04:56:07.000+00:00 types: - - TRAINING - - TRAINING + - WARMUP + - WARMUP showJobsFromDate: 2000-01-23T04:56:07.000+00:00 + versionIds: + - versionIds + - versionIds subTypes: - Evaluate - Evaluate trigger: Manual - sessionRunIds: - - sessionRunIds - - sessionRunIds projectId: projectId codeSnapshotId: codeSnapshotId status: @@ -22575,7 +24335,7 @@ components: lastUpdated: format: date-time type: string - sessionRunIds: + versionIds: items: type: string type: array @@ -22613,26 +24373,27 @@ components: events: - name: name progress: - total: 5.962133916683182 - current: 5.637376656633329 + total: 6.027456183070403 + current: 1.4658129805029452 id: id status: UNSTARTED - name: name progress: - total: 5.962133916683182 - current: 5.637376656633329 + total: 6.027456183070403 + current: 1.4658129805029452 id: id status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING + snapshotIndex: 0.8008281904610115 + type: WARMUP params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 + inferenceArtifactId: inferenceArtifactId + versionId: versionId + monitor: true + batchSize: 5.962133916683182 + projectId: projectId version: version createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId + versionId: versionId createdBy: createdBy teamId: teamId subType: Evaluate @@ -22648,26 +24409,27 @@ components: events: - name: name progress: - total: 5.962133916683182 - current: 5.637376656633329 + total: 6.027456183070403 + current: 1.4658129805029452 id: id status: UNSTARTED - name: name progress: - total: 5.962133916683182 - current: 5.637376656633329 + total: 6.027456183070403 + current: 1.4658129805029452 id: id status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING + snapshotIndex: 0.8008281904610115 + type: WARMUP params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 + inferenceArtifactId: inferenceArtifactId + versionId: versionId + monitor: true + batchSize: 5.962133916683182 + projectId: projectId version: version createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId + versionId: versionId createdBy: createdBy teamId: teamId subType: Evaluate @@ -22824,9 +24586,9 @@ components: GetStatisticsResponse: additionalProperties: true example: - sessions: 2.3021358869347655 tests: 1.4658129805029452 projects: 5.962133916683182 + versions: 2.3021358869347655 activeUsers: 0.8008281904610115 networks: 5.637376656633329 openIssues: 6.027456183070403 @@ -22846,7 +24608,7 @@ components: networks: format: double type: number - sessions: + versions: format: double type: number required: @@ -22854,8 +24616,8 @@ components: - networks - openIssues - projects - - sessions - tests + - versions type: object GetStatisticsParams: additionalProperties: true @@ -23123,25 +24885,13 @@ components: - aggregation - field type: object - SessionRunToEpoch: - additionalProperties: true - example: - sessionRunId: sessionRunId - epoch: 1.4658129805029452 - properties: - sessionRunId: - type: string - epoch: - format: double - type: number - required: - - epoch - - sessionRunId - type: object MultiChartsParams: additionalProperties: true example: horizontalSplit: null + inferenceArtifactIds: + - inferenceArtifactIds + - inferenceArtifactIds elementInstance: true x: field: field @@ -23160,12 +24910,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -23179,7 +24924,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -23199,6 +24943,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -23228,7 +24976,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -23236,7 +24983,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -23249,13 +24995,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -23269,7 +25017,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -23289,6 +25036,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -23318,7 +25069,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -23326,7 +25076,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -23339,7 +25088,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -23358,12 +25114,266 @@ components: disable: true displayData: insights: - - sessionRun: + - index: 2.3021358869347655 + insightType: + severity: 4.145608029883936 + automatic_tests: + - filter: null + metric_name: metric_name + metric_value: 6.84685269835264 + test_name: test_name + operator: equal + - filter: null + metric_name: metric_name + metric_value: 6.84685269835264 + test_name: test_name + operator: equal + id_: id_ + es_filters_used_in_analysis: + - null + - null + n_samples: 7.061401241503109 + metrics_info: + - metric_name: metric_name + metric_statistics: + - name: name + value: 1.0246457001441578 + - name: name + value: 1.0246457001441578 + - metric_name: metric_name + metric_statistics: + - name: name + value: 1.0246457001441578 + - name: name + value: 1.0246457001441578 + blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics + mutual_info_elements: + - features: + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + score: 2.027123023002322 + value_in_cluster: 9.301444243932576 + value_outside_cluster: 3.616076749251911 + is_unique: true + - features: + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + score: 2.027123023002322 + value_in_cluster: 9.301444243932576 + value_outside_cluster: 3.616076749251911 + is_unique: true + type: low_performance + auto_generated: true + severity_metrics: + - metric_name: metric_name + value: 7.386281948385884 + normalized_value: 1.2315135367772556 + - metric_name: metric_name + value: 7.386281948385884 + normalized_value: 1.2315135367772556 + min_hash: + - 1.4894159098541704 + - 1.4894159098541704 + csv_path: csv_path + parent_id: parent_id + display_filters: + - metric: metric + value: ScatterFilter_value + operator: smaller_than + - metric: metric + value: ScatterFilter_value + operator: smaller_than + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 + insightType: + severity: 4.145608029883936 + automatic_tests: + - filter: null + metric_name: metric_name + metric_value: 6.84685269835264 + test_name: test_name + operator: equal + - filter: null + metric_name: metric_name + metric_value: 6.84685269835264 + test_name: test_name + operator: equal + id_: id_ + es_filters_used_in_analysis: + - null + - null + n_samples: 7.061401241503109 + metrics_info: + - metric_name: metric_name + metric_statistics: + - name: name + value: 1.0246457001441578 + - name: name + value: 1.0246457001441578 + - metric_name: metric_name + metric_statistics: + - name: name + value: 1.0246457001441578 + - name: name + value: 1.0246457001441578 + blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics + mutual_info_elements: + - features: + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + score: 2.027123023002322 + value_in_cluster: 9.301444243932576 + value_outside_cluster: 3.616076749251911 + is_unique: true + - features: + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + score: 2.027123023002322 + value_in_cluster: 9.301444243932576 + value_outside_cluster: 3.616076749251911 + is_unique: true + type: low_performance + auto_generated: true + severity_metrics: + - metric_name: metric_name + value: 7.386281948385884 + normalized_value: 1.2315135367772556 + - metric_name: metric_name + value: 7.386281948385884 + normalized_value: 1.2315135367772556 + min_hash: + - 1.4894159098541704 + - 1.4894159098541704 + csv_path: csv_path + parent_id: parent_id + display_filters: + - metric: metric + value: ScatterFilter_value + operator: smaller_than + - metric: metric + value: ScatterFilter_value + operator: smaller_than + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id + type: insight + value: + lt: null + gte: null + blob_paths: + - blob_paths + - blob_paths + lte: null + eq: null + lst: + - null + - null + gt: 5.637376656633329 + operator: between + projectId: projectId + showAllEpochs: true + properties: + projectId: + type: string + x: + $ref: "#/components/schemas/SplitAgg" + "y": + $ref: "#/components/schemas/Aggregations" + verticalSplit: + $ref: "#/components/schemas/SplitAgg" + horizontalSplit: + $ref: "#/components/schemas/SplitAgg" + innerSplit: + $ref: "#/components/schemas/SplitAgg" + filters: + items: + $ref: "#/components/schemas/ESFilter" + type: array + inferenceArtifactIds: + items: + type: string + type: array + showAllEpochs: + type: boolean + elementInstance: + type: boolean + required: + - inferenceArtifactIds + - projectId + - showAllEpochs + - x + - "y" + type: object + HeatmapChartsParams: + additionalProperties: true + example: + inferenceArtifactIds: + - inferenceArtifactIds + - inferenceArtifactIds + horizontalSplit: null + elementInstance: true + color: + field: field + aggregation: Average + x: + field: field + limit: 0.8008281904610115 + interval: 6.027456183070403 + orderField: orderField + distribution: continuous + order: desc + "y": null + verticalSplit: null + filters: + - field: field + disable: true + displayData: + insights: + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -23377,7 +25387,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -23397,6 +25406,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -23426,7 +25439,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -23434,7 +25446,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -23447,178 +25458,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 - insightType: - severity: 4.145608029883936 - automatic_tests: - - filter: null - metric_name: metric_name - metric_value: 6.84685269835264 - test_name: test_name - operator: equal - - filter: null - metric_name: metric_name - metric_value: 6.84685269835264 - test_name: test_name - operator: equal - under_representation_n_samples: 7.457744773683766 - id_: id_ - es_filters_used_in_analysis: - - null - - null - n_samples: 7.061401241503109 - metrics_info: - - metric_name: metric_name - metric_statistics: - - name: name - value: 1.0246457001441578 - - name: name - value: 1.0246457001441578 - - metric_name: metric_name - metric_statistics: - - name: name - value: 1.0246457001441578 - - name: name - value: 1.0246457001441578 - blob_path: blob_path - mutual_info_elements: - - features: - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - score: 2.027123023002322 - value_in_cluster: 9.301444243932576 - value_outside_cluster: 3.616076749251911 - is_unique: true - - features: - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - score: 2.027123023002322 - value_in_cluster: 9.301444243932576 - value_outside_cluster: 3.616076749251911 - is_unique: true - type: low_performance - auto_generated: true - over_representation_n_samples: 1.1730742509559433 - severity_metrics: - - metric_name: metric_name - value: 7.386281948385884 - normalized_value: 1.2315135367772556 - - metric_name: metric_name - value: 7.386281948385884 - normalized_value: 1.2315135367772556 - over_representation_dataset: null - min_hash: - - 1.4894159098541704 - - 1.4894159098541704 - csv_path: csv_path - parent_id: parent_id - display_filters: - - metric: metric - value: ScatterFilter_value - operator: smaller_than - - metric: metric - value: ScatterFilter_value - operator: smaller_than - under_representation_dataset: training - type: insight - value: - lt: null - gte: null - blob_paths: - - blob_paths - - blob_paths - lte: null - eq: null - lst: - - null - - null - gt: 5.637376656633329 - operator: between - sessionRunsToEpochs: - - sessionRunId: sessionRunId - epoch: 1.4658129805029452 - - sessionRunId: sessionRunId - epoch: 1.4658129805029452 - projectId: projectId - showAllEpochs: true - properties: - projectId: - type: string - x: - $ref: "#/components/schemas/SplitAgg" - "y": - $ref: "#/components/schemas/Aggregations" - verticalSplit: - $ref: "#/components/schemas/SplitAgg" - horizontalSplit: - $ref: "#/components/schemas/SplitAgg" - innerSplit: - $ref: "#/components/schemas/SplitAgg" - filters: - items: - $ref: "#/components/schemas/ESFilter" - type: array - sessionRunsToEpochs: - items: - $ref: "#/components/schemas/SessionRunToEpoch" - type: array - showAllEpochs: - type: boolean - elementInstance: - type: boolean - required: - - projectId - - sessionRunsToEpochs - - showAllEpochs - - x - - "y" - type: object - HeatmapChartsParams: - additionalProperties: true - example: - horizontalSplit: null - elementInstance: true - color: - field: field - aggregation: Average - x: - field: field - limit: 0.8008281904610115 - interval: 6.027456183070403 - orderField: orderField - distribution: continuous - order: desc - "y": null - verticalSplit: null - filters: - - field: field - disable: true - displayData: - insights: - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -23632,7 +25480,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -23652,6 +25499,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -23681,7 +25532,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -23689,7 +25539,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -23702,97 +25551,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 - insightType: - severity: 4.145608029883936 - automatic_tests: - - filter: null - metric_name: metric_name - metric_value: 6.84685269835264 - test_name: test_name - operator: equal - - filter: null - metric_name: metric_name - metric_value: 6.84685269835264 - test_name: test_name - operator: equal - under_representation_n_samples: 7.457744773683766 - id_: id_ - es_filters_used_in_analysis: - - null - - null - n_samples: 7.061401241503109 - metrics_info: - - metric_name: metric_name - metric_statistics: - - name: name - value: 1.0246457001441578 - - name: name - value: 1.0246457001441578 - - metric_name: metric_name - metric_statistics: - - name: name - value: 1.0246457001441578 - - name: name - value: 1.0246457001441578 - blob_path: blob_path - mutual_info_elements: - - features: - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - score: 2.027123023002322 - value_in_cluster: 9.301444243932576 - value_outside_cluster: 3.616076749251911 - is_unique: true - - features: - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - score: 2.027123023002322 - value_in_cluster: 9.301444243932576 - value_outside_cluster: 3.616076749251911 - is_unique: true - type: low_performance - auto_generated: true - over_representation_n_samples: 1.1730742509559433 - severity_metrics: - - metric_name: metric_name - value: 7.386281948385884 - normalized_value: 1.2315135367772556 - - metric_name: metric_name - value: 7.386281948385884 - normalized_value: 1.2315135367772556 - over_representation_dataset: null - min_hash: - - 1.4894159098541704 - - 1.4894159098541704 - csv_path: csv_path - parent_id: parent_id - display_filters: - - metric: metric - value: ScatterFilter_value - operator: smaller_than - - metric: metric - value: ScatterFilter_value - operator: smaller_than - under_representation_dataset: training type: insight value: lt: null @@ -23811,12 +25577,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -23830,7 +25591,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -23850,6 +25610,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -23879,7 +25643,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -23887,7 +25650,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -23900,13 +25662,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -23920,7 +25684,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -23940,6 +25703,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -23969,7 +25736,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -23977,7 +25743,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -23990,7 +25755,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -24005,11 +25777,6 @@ components: - null gt: 5.637376656633329 operator: between - sessionRunsToEpochs: - - sessionRunId: sessionRunId - epoch: 1.4658129805029452 - - sessionRunId: sessionRunId - epoch: 1.4658129805029452 projectId: projectId showAllEpochs: true properties: @@ -24021,9 +25788,9 @@ components: $ref: "#/components/schemas/SplitAgg" color: $ref: "#/components/schemas/Aggregations" - sessionRunsToEpochs: + inferenceArtifactIds: items: - $ref: "#/components/schemas/SessionRunToEpoch" + type: string type: array showAllEpochs: type: boolean @@ -24039,8 +25806,8 @@ components: type: boolean required: - color + - inferenceArtifactIds - projectId - - sessionRunsToEpochs - showAllEpochs - x - "y" @@ -24048,6 +25815,9 @@ components: GenericDataQueryParams: additionalProperties: true example: + inferenceArtifactIds: + - inferenceArtifactIds + - inferenceArtifactIds horizontalSplit: null elementInstance: true buckets: @@ -24066,12 +25836,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -24085,7 +25850,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -24105,6 +25869,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -24134,7 +25902,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -24142,7 +25909,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -24155,13 +25921,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -24175,7 +25943,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -24195,6 +25962,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -24224,7 +25995,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -24232,7 +26002,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -24245,7 +26014,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -24264,12 +26040,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -24283,7 +26054,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -24303,6 +26073,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -24332,7 +26106,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -24340,7 +26113,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -24353,13 +26125,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -24373,7 +26147,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -24393,6 +26166,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -24422,7 +26199,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -24430,7 +26206,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -24443,7 +26218,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -24458,11 +26240,6 @@ components: - null gt: 5.637376656633329 operator: between - sessionRunsToEpochs: - - sessionRunId: sessionRunId - epoch: 1.4658129805029452 - - sessionRunId: sessionRunId - epoch: 1.4658129805029452 projectId: projectId aggregations: - field: field @@ -24473,9 +26250,9 @@ components: properties: projectId: type: string - sessionRunsToEpochs: + inferenceArtifactIds: items: - $ref: "#/components/schemas/SessionRunToEpoch" + type: string type: array showAllEpochs: type: boolean @@ -24502,8 +26279,8 @@ components: required: - aggregations - buckets + - inferenceArtifactIds - projectId - - sessionRunsToEpochs - showAllEpochs type: object ConfusionMetricNamesResponse: @@ -24521,24 +26298,27 @@ components: type: object ConfusionMetricNamesParams: example: - sessionRunIds: - - sessionRunIds - - sessionRunIds + inferenceArtifactIds: + - inferenceArtifactIds + - inferenceArtifactIds projectId: projectId properties: - sessionRunIds: + inferenceArtifactIds: items: type: string type: array projectId: type: string required: + - inferenceArtifactIds - projectId - - sessionRunIds type: object ConfusionMatrixParams: additionalProperties: true example: + inferenceArtifactIds: + - inferenceArtifactIds + - inferenceArtifactIds horizontalSplit: null x: field: field @@ -24555,12 +26335,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -24574,7 +26349,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -24594,6 +26368,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -24623,7 +26401,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -24631,7 +26408,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -24644,13 +26420,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -24664,7 +26442,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -24684,6 +26461,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -24713,7 +26494,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -24721,7 +26501,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -24734,7 +26513,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -24753,12 +26539,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -24772,7 +26553,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -24792,6 +26572,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -24821,7 +26605,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -24829,7 +26612,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -24842,13 +26624,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -24862,7 +26646,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -24882,6 +26665,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -24911,7 +26698,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -24919,7 +26705,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -24932,7 +26717,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -24947,19 +26739,14 @@ components: - null gt: 5.637376656633329 operator: between - sessionRunsToEpochs: - - sessionRunId: sessionRunId - epoch: 1.4658129805029452 - - sessionRunId: sessionRunId - epoch: 1.4658129805029452 projectId: projectId customMetricName: customMetricName properties: projectId: type: string - sessionRunsToEpochs: + inferenceArtifactIds: items: - $ref: "#/components/schemas/SessionRunToEpoch" + type: string type: array x: $ref: "#/components/schemas/SplitAgg" @@ -24980,8 +26767,8 @@ components: type: array required: - customMetricName + - inferenceArtifactIds - projectId - - sessionRunsToEpochs - x type: object GetBalancedAccuracyParams: @@ -24995,6 +26782,9 @@ components: MultiThresholdConfusionMatrixParams: additionalProperties: true example: + inferenceArtifactIds: + - inferenceArtifactIds + - inferenceArtifactIds horizontalSplit: null elementInstance: true verticalSplit: @@ -25009,12 +26799,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -25028,7 +26813,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -25048,6 +26832,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -25077,7 +26865,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -25085,7 +26872,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -25098,13 +26884,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -25118,7 +26906,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -25138,6 +26925,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -25167,7 +26958,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -25175,7 +26965,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -25188,7 +26977,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -25207,12 +27003,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -25226,7 +27017,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -25246,6 +27036,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -25275,7 +27069,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -25283,7 +27076,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -25296,13 +27088,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -25316,7 +27110,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -25336,6 +27129,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -25365,7 +27162,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -25373,7 +27169,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -25386,7 +27181,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -25401,17 +27203,12 @@ components: - null gt: 5.637376656633329 operator: between - sessionRunsToEpochs: - - sessionRunId: sessionRunId - epoch: 1.4658129805029452 - - sessionRunId: sessionRunId - epoch: 1.4658129805029452 projectId: projectId customMetricName: customMetricName properties: - sessionRunsToEpochs: + inferenceArtifactIds: items: - $ref: "#/components/schemas/SessionRunToEpoch" + type: string type: array projectId: type: string @@ -25429,14 +27226,17 @@ components: type: boolean required: - customMetricName + - inferenceArtifactIds - projectId - - sessionRunsToEpochs type: object GetPrCurveParams: $ref: "#/components/schemas/MultiThresholdConfusionMatrixParams" RocConfusionMatrixParams: additionalProperties: true example: + inferenceArtifactIds: + - inferenceArtifactIds + - inferenceArtifactIds horizontalSplit: null elementInstance: true absAxis: true @@ -25452,12 +27252,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -25471,7 +27266,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -25491,6 +27285,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -25520,7 +27318,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -25528,7 +27325,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -25541,13 +27337,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -25561,7 +27359,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -25581,6 +27378,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -25610,7 +27411,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -25618,7 +27418,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -25631,7 +27430,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -25650,12 +27456,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -25669,7 +27470,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -25689,6 +27489,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -25718,7 +27522,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -25726,7 +27529,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -25739,13 +27541,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -25759,7 +27563,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -25779,6 +27582,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -25808,7 +27615,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -25816,7 +27622,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -25829,7 +27634,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -25844,17 +27656,12 @@ components: - null gt: 5.637376656633329 operator: between - sessionRunsToEpochs: - - sessionRunId: sessionRunId - epoch: 1.4658129805029452 - - sessionRunId: sessionRunId - epoch: 1.4658129805029452 projectId: projectId customMetricName: customMetricName properties: - sessionRunsToEpochs: + inferenceArtifactIds: items: - $ref: "#/components/schemas/SessionRunToEpoch" + type: string type: array projectId: type: string @@ -25874,8 +27681,8 @@ components: type: boolean required: - customMetricName + - inferenceArtifactIds - projectId - - sessionRunsToEpochs type: object GetRocParams: $ref: "#/components/schemas/RocConfusionMatrixParams" @@ -25898,6 +27705,9 @@ components: - splitByLabel type: object example: + inferenceArtifactIds: + - inferenceArtifactIds + - inferenceArtifactIds horizontalSplit: null splitByLabel: true splitByLabelOrder: desc @@ -25918,12 +27728,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -25937,7 +27742,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -25957,6 +27761,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -25986,7 +27794,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -25994,7 +27801,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -26007,13 +27813,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -26027,7 +27835,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -26047,6 +27854,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -26076,7 +27887,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -26084,7 +27894,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -26097,7 +27906,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -26116,12 +27932,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -26135,7 +27946,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -26155,6 +27965,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -26184,7 +27998,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -26192,7 +28005,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -26205,13 +28017,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -26225,7 +28039,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -26245,6 +28058,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -26274,7 +28091,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -26282,7 +28098,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -26295,7 +28110,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -26310,11 +28132,6 @@ components: - null gt: 5.637376656633329 operator: between - sessionRunsToEpochs: - - sessionRunId: sessionRunId - epoch: 1.4658129805029452 - - sessionRunId: sessionRunId - epoch: 1.4658129805029452 projectId: projectId customMetricName: customMetricName GetConfusionMatrixResultCombinationsParams: @@ -26327,6 +28144,9 @@ components: type: array type: object example: + inferenceArtifactIds: + - inferenceArtifactIds + - inferenceArtifactIds horizontalSplit: null filterLabels: - filterLabels @@ -26346,12 +28166,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -26365,7 +28180,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -26385,6 +28199,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -26414,7 +28232,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -26422,7 +28239,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -26435,13 +28251,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -26455,7 +28273,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -26475,6 +28292,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -26504,7 +28325,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -26512,7 +28332,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -26525,7 +28344,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -26544,12 +28370,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -26563,7 +28384,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -26583,6 +28403,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -26612,7 +28436,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -26620,7 +28443,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -26633,13 +28455,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -26653,7 +28477,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -26673,6 +28496,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -26702,7 +28529,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -26710,7 +28536,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -26723,7 +28548,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -26738,11 +28570,6 @@ components: - null gt: 5.637376656633329 operator: between - sessionRunsToEpochs: - - sessionRunId: sessionRunId - epoch: 1.4658129805029452 - - sessionRunId: sessionRunId - epoch: 1.4658129805029452 projectId: projectId customMetricName: customMetricName PredictionLabels: @@ -26786,20 +28613,20 @@ components: GetConfusionMatrixLabels: additionalProperties: true example: + inferenceArtifactIds: + - inferenceArtifactIds + - inferenceArtifactIds projectId: projectId - sessionRunIds: - - sessionRunIds - - sessionRunIds properties: projectId: type: string - sessionRunIds: + inferenceArtifactIds: items: type: string type: array required: + - inferenceArtifactIds - projectId - - sessionRunIds type: object GetFieldsValuesResponse: example: @@ -26838,226 +28665,26 @@ components: enum: - string - number - type: string - query: - $ref: "#/components/schemas/NumberOrString" - field: - type: string - required: - - field - - type - type: object - GetFieldsValuesRequest: - example: - filters: - - field: field - disable: true - displayData: - insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 - insightType: - severity: 4.145608029883936 - automatic_tests: - - filter: null - metric_name: metric_name - metric_value: 6.84685269835264 - test_name: test_name - operator: equal - - filter: null - metric_name: metric_name - metric_value: 6.84685269835264 - test_name: test_name - operator: equal - under_representation_n_samples: 7.457744773683766 - id_: id_ - es_filters_used_in_analysis: - - null - - null - n_samples: 7.061401241503109 - metrics_info: - - metric_name: metric_name - metric_statistics: - - name: name - value: 1.0246457001441578 - - name: name - value: 1.0246457001441578 - - metric_name: metric_name - metric_statistics: - - name: name - value: 1.0246457001441578 - - name: name - value: 1.0246457001441578 - blob_path: blob_path - mutual_info_elements: - - features: - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - score: 2.027123023002322 - value_in_cluster: 9.301444243932576 - value_outside_cluster: 3.616076749251911 - is_unique: true - - features: - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - score: 2.027123023002322 - value_in_cluster: 9.301444243932576 - value_outside_cluster: 3.616076749251911 - is_unique: true - type: low_performance - auto_generated: true - over_representation_n_samples: 1.1730742509559433 - severity_metrics: - - metric_name: metric_name - value: 7.386281948385884 - normalized_value: 1.2315135367772556 - - metric_name: metric_name - value: 7.386281948385884 - normalized_value: 1.2315135367772556 - over_representation_dataset: null - min_hash: - - 1.4894159098541704 - - 1.4894159098541704 - csv_path: csv_path - parent_id: parent_id - display_filters: - - metric: metric - value: ScatterFilter_value - operator: smaller_than - - metric: metric - value: ScatterFilter_value - operator: smaller_than - under_representation_dataset: training - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 - insightType: - severity: 4.145608029883936 - automatic_tests: - - filter: null - metric_name: metric_name - metric_value: 6.84685269835264 - test_name: test_name - operator: equal - - filter: null - metric_name: metric_name - metric_value: 6.84685269835264 - test_name: test_name - operator: equal - under_representation_n_samples: 7.457744773683766 - id_: id_ - es_filters_used_in_analysis: - - null - - null - n_samples: 7.061401241503109 - metrics_info: - - metric_name: metric_name - metric_statistics: - - name: name - value: 1.0246457001441578 - - name: name - value: 1.0246457001441578 - - metric_name: metric_name - metric_statistics: - - name: name - value: 1.0246457001441578 - - name: name - value: 1.0246457001441578 - blob_path: blob_path - mutual_info_elements: - - features: - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - score: 2.027123023002322 - value_in_cluster: 9.301444243932576 - value_outside_cluster: 3.616076749251911 - is_unique: true - - features: - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - score: 2.027123023002322 - value_in_cluster: 9.301444243932576 - value_outside_cluster: 3.616076749251911 - is_unique: true - type: low_performance - auto_generated: true - over_representation_n_samples: 1.1730742509559433 - severity_metrics: - - metric_name: metric_name - value: 7.386281948385884 - normalized_value: 1.2315135367772556 - - metric_name: metric_name - value: 7.386281948385884 - normalized_value: 1.2315135367772556 - over_representation_dataset: null - min_hash: - - 1.4894159098541704 - - 1.4894159098541704 - csv_path: csv_path - parent_id: parent_id - display_filters: - - metric: metric - value: ScatterFilter_value - operator: smaller_than - - metric: metric - value: ScatterFilter_value - operator: smaller_than - under_representation_dataset: training - type: insight - value: - lt: null - gte: null - blob_paths: - - blob_paths - - blob_paths - lte: null - eq: null - lst: - - null - - null - gt: 5.637376656633329 - operator: between + type: string + query: + $ref: "#/components/schemas/NumberOrString" + field: + type: string + required: + - field + - type + type: object + GetFieldsValuesRequest: + example: + inferenceArtifactIds: + - inferenceArtifactIds + - inferenceArtifactIds + filters: - field: field disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -27071,7 +28698,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -27091,6 +28717,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -27120,7 +28750,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -27128,7 +28757,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -27141,13 +28769,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -27161,7 +28791,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -27181,6 +28810,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -27207,762 +28840,387 @@ components: score: 2.027123023002322 value_in_cluster: 9.301444243932576 value_outside_cluster: 3.616076749251911 - is_unique: true - type: low_performance - auto_generated: true - over_representation_n_samples: 1.1730742509559433 - severity_metrics: - - metric_name: metric_name - value: 7.386281948385884 - normalized_value: 1.2315135367772556 - - metric_name: metric_name - value: 7.386281948385884 - normalized_value: 1.2315135367772556 - over_representation_dataset: null - min_hash: - - 1.4894159098541704 - - 1.4894159098541704 - csv_path: csv_path - parent_id: parent_id - display_filters: - - metric: metric - value: ScatterFilter_value - operator: smaller_than - - metric: metric - value: ScatterFilter_value - operator: smaller_than - under_representation_dataset: training - type: insight - value: - lt: null - gte: null - blob_paths: - - blob_paths - - blob_paths - lte: null - eq: null - lst: - - null - - null - gt: 5.637376656633329 - operator: between - fields: - - size: 6.027456183070403 - field: field - query: 1.4658129805029452 - page: 0.8008281904610115 - type: string - - size: 6.027456183070403 - field: field - query: 1.4658129805029452 - page: 0.8008281904610115 - type: string - sessionRunIds: - - sessionRunIds - - sessionRunIds - projectId: projectId - properties: - filters: - items: - $ref: "#/components/schemas/ESFilter" - type: array - sessionRunIds: - items: - type: string - type: array - fields: - items: - $ref: "#/components/schemas/QueryFieldValues" - type: array - projectId: - type: string - required: - - fields - - filters - - projectId - - sessionRunIds - type: object - GetSampleEnrichmentResponse: - example: - samples: - - data: "{}" - sampleId: sampleId - - data: "{}" - sampleId: sampleId - properties: - samples: - description: "One entry per matched ES document, keyed by sample_id (\"\ - {state}_{index}\")." - items: - $ref: "#/components/schemas/GetSampleEnrichmentResponse_samples_inner" - type: array - required: - - samples - type: object - GetSampleEnrichmentParams: - example: - epoch: 6.027456183070403 - sessionRunIds: - - sessionRunIds - - sessionRunIds - projectId: projectId - samples: - - index: 0.8008281904610115 - state: training - hashed_index: hashed_index - - index: 0.8008281904610115 - state: training - hashed_index: hashed_index - properties: - samples: - description: Visible / batch samples to fetch data for. - items: - $ref: "#/components/schemas/SampleIdentity" - type: array - epoch: - format: double - type: number - sessionRunIds: - items: - type: string - type: array - projectId: - type: string - required: - - epoch - - projectId - - samples - - sessionRunIds - type: object - HealthStatus: - additionalProperties: true - properties: - status: - type: boolean - error: - type: string - required: - - status - type: object - MonitoredModuleType: - enum: - - mongo - - rabbitmq - - elastic - type: string - ModuleStatusAllModules: - properties: - name: - $ref: "#/components/schemas/MonitoredModuleType" - required: - - name - type: object - ModuleStatus: - allOf: - - $ref: "#/components/schemas/HealthStatus" - - $ref: "#/components/schemas/ModuleStatusAllModules" - example: - name: mongo - error: error - status: true - HealthCheckResponse: - additionalProperties: true - example: - allModules: - - name: mongo - error: error - status: true - - name: mongo - error: error - status: true - properties: - allModules: - items: - $ref: "#/components/schemas/ModuleStatus" - type: array - required: - - allModules - type: object - MessageLevel: - enum: - - Error - - Warning - - Info - - Verbose - type: string - Module: - enum: - - General - - Node - - Dataset - - Visualizers - - Loss - - Metric - - ImportModel - type: string - GeneralMessageParams: - additionalProperties: true - example: - message_code: message_code - module: General - message: message - properties: - message: - type: string - message_code: - type: string - module: - $ref: "#/components/schemas/Module" - required: - - message - - module - type: object - NodeType: - enum: - - Activation - - ActivityRegularization - - Add - - AdditiveAttention - - AlphaDropout - - Average - - AveragePooling1D - - AveragePooling2D - - AveragePooling3D - - BatchNormalization - - Bidirectional - - CategoryEncoding - - CenterCrop - - Concatenate - - Conv1D - - Conv1DTranspose - - Conv2D - - Conv2DTranspose - - Conv3D - - Conv3DTranspose - - ConvLSTM1D - - ConvLSTM2D - - ConvLSTM3D - - Cropping1D - - Cropping2D - - Cropping3D - - CuDNNGRU - - CuDNNLSTM - - Dense - - DepthwiseConv1D - - DepthwiseConv2D - - Discretization - - Dot - - Dropout - - ELU - - Embedding - - Flatten - - GRU - - GRUCell - - GRUCellV1 - - GRUCellV2 - - GRUV1 - - GRUV2 - - GaussianDropout - - GaussianNoise - - GlobalAveragePooling1D - - GlobalAveragePooling2D - - GlobalAveragePooling3D - - GlobalMaxPooling1D - - GlobalMaxPooling2D - - GlobalMaxPooling3D - - GroupNormalization - - IntegerLookup - - LSTM - - LSTMCell - - LSTMCellV1 - - LSTMCellV2 - - LSTMV1 - - LSTMV2 - - LayerNormalization - - LeakyReLU - - LocallyConnected1D - - LocallyConnected2D - - Masking - - MaxPooling1D - - MaxPooling2D - - MaxPooling3D - - Maximum - - Minimum - - MultiHeadAttention - - Multiply - - Normalization - - PReLU - - Permute - - RandomBrightness - - RandomContrast - - RandomCrop - - RandomFlip - - RandomFourierFeatures - - RandomHeight - - RandomRotation - - RandomTranslation - - RandomWidth - - RandomZoom - - ReLU - - RepeatVector - - Reshape - - Resizing - - SeparableConv1D - - SeparableConv2D - - SimpleRNN - - SimpleRNNCell - - Softmax - - SpatialDropout1D - - SpatialDropout2D - - SpatialDropout3D - - StringLookup - - Subtract - - SyncBatchNormalization - - TextVectorization - - ThresholdedReLU - - TimeDistributed - - UnitNormalization - - UpSampling1D - - UpSampling2D - - UpSampling3D - - ZeroPadding1D - - ZeroPadding2D - - ZeroPadding3D - - BinaryCrossentropy - - BinaryFocalCrossentropy - - CategoricalCrossentropy - - CategoricalHinge - - CosineSimilarity - - Hinge - - Huber - - KLDivergence - - LogCosh - - MeanAbsoluteError - - MeanAbsolutePercentageError - - MeanSquaredError - - MeanSquaredLogarithmicError - - Poisson - - SquaredHinge - - Adadelta - - Adagrad - - Adam - - Adamax - - Ftrl - - Nadam - - RMSprop - - SGD - - OnnxAbs - - OnnxErf - - OnnxHardSigmoid - - OnnxLSTM - - OnnxReduceMean - - OnnxSqrt - - Dataset - - Input - - RepresentationBlock - - GroundTruth - - CustomLayer - - CustomLoss - - Visualizer - - Metric - - Lambda - - TFOpLambda - - SlicingOpLambda - - Repeat - - Variable - - Gather - - FixedDropout - type: string - NodeMessageParams: - additionalProperties: true - properties: - message: - type: string - message_code: - type: string - layer_name: - type: string - layer_type: - $ref: "#/components/schemas/NodeType" - module: - $ref: "#/components/schemas/Module" - required: - - layer_name - - layer_type - - message - - module - type: object - VisualizerMessageParams: - additionalProperties: true - properties: - message: - type: string - message_code: - type: string - visualizer_name: - type: string - node_id: - type: string - line_number: - format: double - type: number - module: - $ref: "#/components/schemas/Module" - required: - - message - - module - - node_id - - visualizer_name - type: object - DatasetMessageParams: - additionalProperties: true - properties: - message: - type: string - message_code: - type: string - line: - format: double - type: number - func_name: - type: string - module: - $ref: "#/components/schemas/Module" - required: - - func_name - - line - - message - - module - type: object - LossMessageParams: - additionalProperties: true - properties: - message: - type: string - message_code: - type: string - loss_name: - type: string - node_id: - type: string - module: - $ref: "#/components/schemas/Module" - required: - - loss_name - - message - - module - - node_id - type: object - MetricMessageParams: - additionalProperties: true - properties: - message: - type: string - message_code: - type: string - metric_name: - type: string - loss_node_id: - type: string - loss_name: - type: string - module: - $ref: "#/components/schemas/Module" - node_id: - type: string - line_number: - format: double - type: number - required: - - message - - metric_name - - module - type: object - ModuleMessageData: - anyOf: - - $ref: "#/components/schemas/GeneralMessageParams" - - $ref: "#/components/schemas/NodeMessageParams" - - $ref: "#/components/schemas/VisualizerMessageParams" - - $ref: "#/components/schemas/DatasetMessageParams" - - $ref: "#/components/schemas/LossMessageParams" - - $ref: "#/components/schemas/MetricMessageParams" - EngineSettingKey: - enum: - - PROCESS_REQUIRED_CPU - - PROCESS_LIMIT_CPU - - PROCESS_REQUIRED_MEMORY - - PROCESS_LIMIT_MEMORY - - N_GPUS_PER_PROCESS - - N_VISUALIZERS_PROCESSES - - KEEP_VISUALIZATION_RESOLUTION - - WARMUP - - PRIORITIZE_AUTO_SETTINGS_GENERIC_WORKERS - - GENERIC_CPU_REQUEST - - GENERIC_CPU_LIMIT - - GENERIC_MEMORY_REQUEST - - GENERIC_MEMORY_LIMIT - - N_GENERIC_PROCESS_PROCESSES - - PRIORITIZE_AUTO_SETTINGS - - SLIM_JOB_CPU_REQUEST - - SLIM_JOB_CPU_LIMIT - - SLIM_JOB_REQUIRED_MEMORY - - SLIM_JOB_LIMIT_MEMORY - - SLIM_JOB_TIME_TO_LIVE - - PIP_INDEX_URL - - PIP_EXTRA_INDEX_URL - - WARMUP_TIMEOUT_MINUTES - - WARMUP_MAX_JOBS - nullable: false - type: string - FailureInfo: - additionalProperties: true - properties: - message: + is_unique: true + type: low_performance + auto_generated: true + severity_metrics: + - metric_name: metric_name + value: 7.386281948385884 + normalized_value: 1.2315135367772556 + - metric_name: metric_name + value: 7.386281948385884 + normalized_value: 1.2315135367772556 + min_hash: + - 1.4894159098541704 + - 1.4894159098541704 + csv_path: csv_path + parent_id: parent_id + display_filters: + - metric: metric + value: ScatterFilter_value + operator: smaller_than + - metric: metric + value: ScatterFilter_value + operator: smaller_than + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id + type: insight + value: + lt: null + gte: null + blob_paths: + - blob_paths + - blob_paths + lte: null + eq: null + lst: + - null + - null + gt: 5.637376656633329 + operator: between + - field: field + disable: true + displayData: + insights: + - index: 2.3021358869347655 + insightType: + severity: 4.145608029883936 + automatic_tests: + - filter: null + metric_name: metric_name + metric_value: 6.84685269835264 + test_name: test_name + operator: equal + - filter: null + metric_name: metric_name + metric_value: 6.84685269835264 + test_name: test_name + operator: equal + id_: id_ + es_filters_used_in_analysis: + - null + - null + n_samples: 7.061401241503109 + metrics_info: + - metric_name: metric_name + metric_statistics: + - name: name + value: 1.0246457001441578 + - name: name + value: 1.0246457001441578 + - metric_name: metric_name + metric_statistics: + - name: name + value: 1.0246457001441578 + - name: name + value: 1.0246457001441578 + blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics + mutual_info_elements: + - features: + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + score: 2.027123023002322 + value_in_cluster: 9.301444243932576 + value_outside_cluster: 3.616076749251911 + is_unique: true + - features: + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + score: 2.027123023002322 + value_in_cluster: 9.301444243932576 + value_outside_cluster: 3.616076749251911 + is_unique: true + type: low_performance + auto_generated: true + severity_metrics: + - metric_name: metric_name + value: 7.386281948385884 + normalized_value: 1.2315135367772556 + - metric_name: metric_name + value: 7.386281948385884 + normalized_value: 1.2315135367772556 + min_hash: + - 1.4894159098541704 + - 1.4894159098541704 + csv_path: csv_path + parent_id: parent_id + display_filters: + - metric: metric + value: ScatterFilter_value + operator: smaller_than + - metric: metric + value: ScatterFilter_value + operator: smaller_than + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id + - index: 2.3021358869347655 + insightType: + severity: 4.145608029883936 + automatic_tests: + - filter: null + metric_name: metric_name + metric_value: 6.84685269835264 + test_name: test_name + operator: equal + - filter: null + metric_name: metric_name + metric_value: 6.84685269835264 + test_name: test_name + operator: equal + id_: id_ + es_filters_used_in_analysis: + - null + - null + n_samples: 7.061401241503109 + metrics_info: + - metric_name: metric_name + metric_statistics: + - name: name + value: 1.0246457001441578 + - name: name + value: 1.0246457001441578 + - metric_name: metric_name + metric_statistics: + - name: name + value: 1.0246457001441578 + - name: name + value: 1.0246457001441578 + blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics + mutual_info_elements: + - features: + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + score: 2.027123023002322 + value_in_cluster: 9.301444243932576 + value_outside_cluster: 3.616076749251911 + is_unique: true + - features: + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + score: 2.027123023002322 + value_in_cluster: 9.301444243932576 + value_outside_cluster: 3.616076749251911 + is_unique: true + type: low_performance + auto_generated: true + severity_metrics: + - metric_name: metric_name + value: 7.386281948385884 + normalized_value: 1.2315135367772556 + - metric_name: metric_name + value: 7.386281948385884 + normalized_value: 1.2315135367772556 + min_hash: + - 1.4894159098541704 + - 1.4894159098541704 + csv_path: csv_path + parent_id: parent_id + display_filters: + - metric: metric + value: ScatterFilter_value + operator: smaller_than + - metric: metric + value: ScatterFilter_value + operator: smaller_than + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id + type: insight + value: + lt: null + gte: null + blob_paths: + - blob_paths + - blob_paths + lte: null + eq: null + lst: + - null + - null + gt: 5.637376656633329 + operator: between + fields: + - size: 6.027456183070403 + field: field + query: 1.4658129805029452 + page: 0.8008281904610115 type: string - engineSettingKey: - $ref: "#/components/schemas/EngineSettingKey" - extraFailureData: + - size: 6.027456183070403 + field: field + query: 1.4658129805029452 + page: 0.8008281904610115 type: string - required: - - message - type: object - JobMessageParams: + projectId: projectId properties: - failureInfo: - $ref: "#/components/schemas/FailureInfo" - module: - enum: - - JobStatus - nullable: false + filters: + items: + $ref: "#/components/schemas/ESFilter" + type: array + inferenceArtifactIds: + items: + type: string + type: array + fields: + items: + $ref: "#/components/schemas/QueryFieldValues" + type: array + projectId: type: string - jobStatus: - $ref: "#/components/schemas/JobStatus" required: - - jobStatus - - module + - fields + - filters + - inferenceArtifactIds + - projectId type: object - CustomMessageDataParams: - anyOf: - - $ref: "#/components/schemas/ModuleMessageData" - - $ref: "#/components/schemas/JobMessageParams" - CustomMessageData: - additionalProperties: true + GetSampleEnrichmentResponse: example: - level: Error - params: - message_code: message_code - module: General - message: message + samples: + - data: "{}" + sampleId: sampleId + - data: "{}" + sampleId: sampleId properties: - level: - $ref: "#/components/schemas/MessageLevel" - params: - $ref: "#/components/schemas/CustomMessageDataParams" + samples: + description: "One entry per matched ES document, keyed by sample_id (\"\ + {state}_{index}\")." + items: + $ref: "#/components/schemas/GetSampleEnrichmentResponse_samples_inner" + type: array required: - - level - - params + - samples type: object - JobNotificationBaseContext: - additionalProperties: true + GetSampleEnrichmentParams: example: - jobId: jobId - jobType: TRAINING - properties: - jobId: - type: string - jobType: - $ref: "#/components/schemas/JobType" - required: - - jobId - - jobType - type: object - JobNotificationLeepScriptContext: - additionalProperties: true - properties: - jobId: - type: string - jobType: - $ref: "#/components/schemas/JobType" - codeSnapshotId: - type: string - versionId: - type: string - versionName: - type: string - required: - - codeSnapshotId - - jobId - - jobType - - versionId - - versionName - type: object - JobNotificationModelContext: - additionalProperties: true + inferenceArtifactIds: + - inferenceArtifactIds + - inferenceArtifactIds + epoch: 6.027456183070403 + projectId: projectId + samples: + - index: 0.8008281904610115 + state: training + hashed_index: hashed_index + - index: 0.8008281904610115 + state: training + hashed_index: hashed_index properties: - jobId: - type: string - jobType: - $ref: "#/components/schemas/JobType" - projectName: - type: string - projectId: - type: string - modelName: - type: string - modelExtId: - type: string - isOverwrite: - type: boolean - versionId: - type: string - sessionId: - type: string + samples: + description: Visible / batch samples to fetch data for. + items: + $ref: "#/components/schemas/SampleIdentity" + type: array epoch: format: double type: number + inferenceArtifactIds: + items: + type: string + type: array + projectId: + type: string required: - - isOverwrite - - jobId - - jobType - - modelExtId - - modelName + - epoch + - inferenceArtifactIds - projectId - - projectName - - versionId + - samples type: object - JobNotificationAnalyzeContext: + HealthStatus: additionalProperties: true properties: - jobId: - type: string - jobType: - $ref: "#/components/schemas/JobType" - projectName: - type: string - projectId: - type: string - modelName: - type: string - modelExtId: - type: string - isOverwrite: + status: type: boolean - versionId: - type: string - sessionId: - type: string - epoch: - format: double - type: number - sessionRunId: + error: type: string required: - - isOverwrite - - jobId - - jobType - - modelExtId - - modelName - - projectId - - projectName - - sessionRunId - - versionId + - status type: object - JobNotificationSampleContext: - additionalProperties: true + MonitoredModuleType: + enum: + - mongo + - rabbitmq + - elastic + type: string + ModuleStatusAllModules: properties: - jobId: - type: string - jobType: - $ref: "#/components/schemas/JobType" - projectName: - type: string - projectId: - type: string - modelName: - type: string - modelExtId: - type: string - isOverwrite: - type: boolean - versionId: - type: string - sessionId: - type: string - epoch: - format: double - type: number - sample: - $ref: "#/components/schemas/SampleIdentity" + name: + $ref: "#/components/schemas/MonitoredModuleType" required: - - isOverwrite - - jobId - - jobType - - modelExtId - - modelName - - projectId - - projectName - - sample - - versionId + - name type: object - JobNotificationContext: - anyOf: - - $ref: "#/components/schemas/JobNotificationBaseContext" - - $ref: "#/components/schemas/JobNotificationLeepScriptContext" - - $ref: "#/components/schemas/JobNotificationModelContext" - - $ref: "#/components/schemas/JobNotificationAnalyzeContext" - - $ref: "#/components/schemas/JobNotificationSampleContext" - Notification: + ModuleStatus: + allOf: + - $ref: "#/components/schemas/HealthStatus" + - $ref: "#/components/schemas/ModuleStatusAllModules" + example: + name: mongo + error: error + status: true + HealthCheckResponse: additionalProperties: true example: - identifier: identifier - createdAt: 2000-01-23T04:56:07.000+00:00 - teamId: teamId - context: - jobId: jobId - jobType: TRAINING - isRead: true - title: title - projectId: projectId - user: user - cid: cid - messageData: - level: Error - params: - message_code: message_code - module: General - message: message - properties: - projectId: - type: string - cid: - type: string - teamId: - type: string - user: - type: string - title: - type: string - messageData: - $ref: "#/components/schemas/CustomMessageData" - identifier: - type: string - context: - $ref: "#/components/schemas/JobNotificationContext" - createdAt: - format: date-time - type: string - isRead: - type: boolean + allModules: + - name: mongo + error: error + status: true + - name: mongo + error: error + status: true + properties: + allModules: + items: + $ref: "#/components/schemas/ModuleStatus" + type: array required: - - cid - - context - - createdAt - - identifier - - isRead - - messageData - - teamId - - title - - user + - allModules type: object GetNotificationsResponse: additionalProperties: true @@ -27973,7 +29231,7 @@ components: teamId: teamId context: jobId: jobId - jobType: TRAINING + jobType: WARMUP isRead: true title: title projectId: projectId @@ -27990,7 +29248,7 @@ components: teamId: teamId context: jobId: jobId - jobType: TRAINING + jobType: WARMUP isRead: true title: title projectId: projectId @@ -28019,7 +29277,7 @@ components: teamId: teamId context: jobId: jobId - jobType: TRAINING + jobType: WARMUP isRead: true title: title projectId: projectId @@ -28036,7 +29294,7 @@ components: teamId: teamId context: jobId: jobId - jobType: TRAINING + jobType: WARMUP isRead: true title: title projectId: projectId @@ -28359,445 +29617,15 @@ components: required: - data type: object - WeightAssetData: - additionalProperties: true - example: - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - properties: - sessionWeightId: - type: string - esMetricIndex: - type: string - required: - - esMetricIndex - - sessionWeightId - type: object - SessionRunEvaluateParams: - additionalProperties: true - example: - dataStates: - - training - - training - batchSize: 0.8008281904610115 - evaluatedEpoch: 6.027456183070403 - properties: - dataStates: - items: - $ref: "#/components/schemas/DataStateType" - type: array - batchSize: - format: double - type: number - evaluatedEpoch: - format: double - type: number - required: - - batchSize - - dataStates - - evaluatedEpoch - type: object - SessionRunData: - additionalProperties: true - example: - weightAssets: - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - evaluateParams: - dataStates: - - training - - training - batchSize: 0.8008281904610115 - evaluatedEpoch: 6.027456183070403 - canContinueEvaluate: true - jobs: - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - description: description - sessionId: sessionId - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - csvBlobPath: csvBlobPath - teamId: teamId - name: name - projectId: projectId - cid: cid - isEvaluate: true - properties: - projectId: - type: string - cid: - type: string - sessionId: - type: string - name: - type: string - teamId: - type: string - isEvaluate: - type: boolean - createdAt: - format: date-time - type: string - createdBy: - type: string - weightAssets: - items: - $ref: "#/components/schemas/WeightAssetData" - type: array - jobs: - items: - $ref: "#/components/schemas/Job" - type: array - description: - type: string - evaluateParams: - $ref: "#/components/schemas/SessionRunEvaluateParams" - canContinueEvaluate: - type: boolean - csvBlobPath: - type: string - required: - - cid - - createdAt - - createdBy - - description - - isEvaluate - - jobs - - name - - projectId - - sessionId - - teamId - - weightAssets - type: object - SessionWeightData: - additionalProperties: true - example: - globalStep: 5.962133916683182 - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - teamId: teamId - epoch: 1.4658129805029452 - sessionId: sessionId - cid: cid - status: UNSTARTED - properties: - cid: - type: string - sessionId: - type: string - epoch: - format: double - type: number - globalStep: - format: double - type: number - status: - $ref: "#/components/schemas/StatusEnum" - teamId: - type: string - createdAt: - format: date-time - type: string - createdBy: - type: string - required: - - cid - - createdAt - - createdBy - - epoch - - globalStep - - sessionId - - status - - teamId - type: object - SessionPopulatedJob: + VersionPopulatedJob: additionalProperties: true + deprecated: true example: modelName: modelName createdAt: 2000-01-23T04:56:07.000+00:00 createdBy: createdBy - sessionRuns: - - weightAssets: - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - evaluateParams: - dataStates: - - training - - training - batchSize: 0.8008281904610115 - evaluatedEpoch: 6.027456183070403 - canContinueEvaluate: true - jobs: - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - description: description - sessionId: sessionId - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - csvBlobPath: csvBlobPath - teamId: teamId - name: name - projectId: projectId - cid: cid - isEvaluate: true - - weightAssets: - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - evaluateParams: - dataStates: - - training - - training - batchSize: 0.8008281904610115 - evaluatedEpoch: 6.027456183070403 - canContinueEvaluate: true - jobs: - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - description: description - sessionId: sessionId - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - csvBlobPath: csvBlobPath - teamId: teamId - name: name - projectId: projectId - cid: cid - isEvaluate: true teamId: teamId - trainingParams: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 extId: extId - sessionWeights: - - globalStep: 5.962133916683182 - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - teamId: teamId - epoch: 1.4658129805029452 - sessionId: sessionId - cid: cid - status: UNSTARTED - - globalStep: 5.962133916683182 - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - teamId: teamId - epoch: 1.4658129805029452 - sessionId: sessionId - cid: cid - status: UNSTARTED hash: hash cid: cid properties: @@ -28817,261 +29645,42 @@ components: hash: nullable: true type: string - trainingParams: - $ref: "#/components/schemas/TrainingParams" - sessionRuns: - items: - $ref: "#/components/schemas/SessionRunData" - type: array - sessionWeights: - items: - $ref: "#/components/schemas/SessionWeightData" - type: array required: - cid - createdAt - modelName - teamId type: object - LoadSessionResponse: + LoadModelResponse: additionalProperties: true example: - session: + version: modelName: modelName createdAt: 2000-01-23T04:56:07.000+00:00 createdBy: createdBy - sessionRuns: - - weightAssets: - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - evaluateParams: - dataStates: - - training - - training - batchSize: 0.8008281904610115 - evaluatedEpoch: 6.027456183070403 - canContinueEvaluate: true - jobs: - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - description: description - sessionId: sessionId - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - csvBlobPath: csvBlobPath - teamId: teamId - name: name - projectId: projectId - cid: cid - isEvaluate: true - - weightAssets: - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - evaluateParams: - dataStates: - - training - - training - batchSize: 0.8008281904610115 - evaluatedEpoch: 6.027456183070403 - canContinueEvaluate: true - jobs: - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - description: description - sessionId: sessionId - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - csvBlobPath: csvBlobPath - teamId: teamId - name: name - projectId: projectId - cid: cid - isEvaluate: true teamId: teamId - trainingParams: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 extId: extId - sessionWeights: - - globalStep: 5.962133916683182 - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - teamId: teamId - epoch: 1.4658129805029452 - sessionId: sessionId - cid: cid - status: UNSTARTED - - globalStep: 5.962133916683182 - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - teamId: teamId - epoch: 1.4658129805029452 - sessionId: sessionId - cid: cid - status: UNSTARTED hash: hash cid: cid properties: - session: - $ref: "#/components/schemas/SessionPopulatedJob" + version: + $ref: "#/components/schemas/VersionPopulatedJob" required: - - session + - version type: object - LoadSessionParams: + LoadModelParams: additionalProperties: true example: - sessionId: sessionId + versionId: versionId projectId: projectId properties: - sessionId: + versionId: type: string projectId: type: string required: - projectId - - sessionId + - versionId type: object DeleteProjectParams: additionalProperties: true @@ -29343,1691 +29952,724 @@ components: - projectId - sampleCollectionId type: object - CreateStreamingSamplesVisJobResponse: - example: - jobId: jobId - alreadyExists: true - properties: - alreadyExists: - type: boolean - jobId: - type: string - required: - - alreadyExists - - jobId - type: object - CreateStreamingSamplesVisJobParams: - example: - sessionRunId: sessionRunId - projectId: projectId - properties: - sessionRunId: - type: string - projectId: - type: string - required: - - projectId - - sessionRunId - type: object - GenerateStreamingSamplesVisParams: - example: - sessionRunId: sessionRunId - visualizationType: visualizationType - projectId: projectId - sampleIdentities: - - index: 0.8008281904610115 - state: training - hashed_index: hashed_index - - index: 0.8008281904610115 - state: training - hashed_index: hashed_index - properties: - visualizationType: - type: string - sampleIdentities: - items: - $ref: "#/components/schemas/SampleIdentity" - type: array - sessionRunId: - type: string - projectId: - type: string - required: - - projectId - - sampleIdentities - - sessionRunId - - visualizationType - type: object - AddSecretManagerResponse: - additionalProperties: true - example: - success: true - cid: cid - properties: - cid: - type: string - success: - nullable: false - type: boolean - required: - - cid - - success - type: object - AddSecretManagerParams: - additionalProperties: true - example: - authData: authData - name: name - properties: - name: - type: string - authData: - type: string - required: - - authData - - name - type: object - TrashSecretManagerResponse: - additionalProperties: true - example: - success: true - properties: - success: - nullable: false - type: boolean - required: - - success - type: object - TrashSecretManagerParams: - additionalProperties: true + CreateStreamingSamplesVisJobResponse: example: - secretManagerId: secretManagerId + jobId: jobId + alreadyExists: true properties: - secretManagerId: + alreadyExists: + type: boolean + jobId: type: string required: - - secretManagerId + - alreadyExists + - jobId type: object - LinkedProject: - additionalProperties: true + CreateStreamingSamplesVisJobParams: example: - projectName: projectName + versionId: versionId projectId: projectId properties: - projectId: + versionId: type: string - projectName: + projectId: type: string required: - projectId - - projectName + - versionId type: object - SecretManager: - additionalProperties: true + CollectionDisplayData: example: - createdAt: 2000-01-23T04:56:07.000+00:00 - linkedProjects: - - projectName: projectName - projectId: projectId - - projectName: projectName - projectId: projectId + samplesCount: 0.8008281904610115 name: name - cid: cid + description: description + sampleIdentitiesPreview: + - index: 0.8008281904610115 + state: training + hashed_index: hashed_index + - index: 0.8008281904610115 + state: training + hashed_index: hashed_index properties: - cid: + sampleIdentitiesPreview: + items: + $ref: "#/components/schemas/SampleIdentity" + type: array + samplesCount: + format: double + type: number + description: type: string name: type: string - createdAt: - format: date-time - type: string - linkedProjects: - items: - $ref: "#/components/schemas/LinkedProject" - type: array required: - - cid - - createdAt - - linkedProjects - name + - sampleIdentitiesPreview + - samplesCount type: object - GetSecretManagerListResponse: - additionalProperties: true + GetCollectionDisplayDataResponse: example: - results: - - createdAt: 2000-01-23T04:56:07.000+00:00 - linkedProjects: - - projectName: projectName - projectId: projectId - - projectName: projectName - projectId: projectId - name: name - cid: cid - - createdAt: 2000-01-23T04:56:07.000+00:00 - linkedProjects: - - projectName: projectName - projectId: projectId - - projectName: projectName - projectId: projectId + data: + samplesCount: 0.8008281904610115 name: name - cid: cid + description: description + sampleIdentitiesPreview: + - index: 0.8008281904610115 + state: training + hashed_index: hashed_index + - index: 0.8008281904610115 + state: training + hashed_index: hashed_index properties: - results: - items: - $ref: "#/components/schemas/SecretManager" - type: array + data: + $ref: "#/components/schemas/CollectionDisplayData" required: - - results + - data type: object - UpdateSecretManagerResponse: - additionalProperties: true + GetCollectionDisplayDataParams: example: - success: true + collectionId: collectionId + projectId: projectId properties: - success: - nullable: false - type: boolean + collectionId: + type: string + projectId: + type: string required: - - success + - collectionId + - projectId type: object - UpdateSecretManagerParams: - additionalProperties: true + PopulateCollectionFromFiltersResponse: example: - authData: authData - name: name - cid: cid + numOfAddedSamples: 0.8008281904610115 + collectionId: collectionId properties: - cid: - type: string - name: - type: string - authData: + numOfAddedSamples: + format: double + type: number + collectionId: type: string required: - - cid - - name - type: object - Record_string.any_: - description: Construct a type with a set of properties K of type T - properties: {} + - collectionId + - numOfAddedSamples type: object - Session: - additionalProperties: true + PopulateCollectionFromFiltersParams: example: - trainingParams: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - modelName: modelName - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - sessionRuns: - - weightAssets: - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - evaluateParams: - dataStates: - - training - - training - batchSize: 0.8008281904610115 - evaluatedEpoch: 6.027456183070403 - canContinueEvaluate: true - jobs: - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - description: description - sessionId: sessionId - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - csvBlobPath: csvBlobPath - teamId: teamId - name: name - projectId: projectId - cid: cid - isEvaluate: true - - weightAssets: - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - evaluateParams: - dataStates: - - training - - training - batchSize: 0.8008281904610115 - evaluatedEpoch: 6.027456183070403 - canContinueEvaluate: true - jobs: - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 + inferenceArtifactIds: + - inferenceArtifactIds + - inferenceArtifactIds + name: name + description: description + filters: + - field: field + disable: true + displayData: + insights: + - index: 2.3021358869347655 + insightType: + severity: 4.145608029883936 + automatic_tests: + - filter: null + metric_name: metric_name + metric_value: 6.84685269835264 + test_name: test_name + operator: equal + - filter: null + metric_name: metric_name + metric_value: 6.84685269835264 + test_name: test_name + operator: equal + id_: id_ + es_filters_used_in_analysis: + - null + - null + n_samples: 7.061401241503109 + metrics_info: + - metric_name: metric_name + metric_statistics: + - name: name + value: 1.0246457001441578 + - name: name + value: 1.0246457001441578 + - metric_name: metric_name + metric_statistics: + - name: name + value: 1.0246457001441578 + - name: name + value: 1.0246457001441578 + blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics + mutual_info_elements: + - features: + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + score: 2.027123023002322 + value_in_cluster: 9.301444243932576 + value_outside_cluster: 3.616076749251911 + is_unique: true + - features: + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + score: 2.027123023002322 + value_in_cluster: 9.301444243932576 + value_outside_cluster: 3.616076749251911 + is_unique: true + type: low_performance + auto_generated: true + severity_metrics: + - metric_name: metric_name + value: 7.386281948385884 + normalized_value: 1.2315135367772556 + - metric_name: metric_name + value: 7.386281948385884 + normalized_value: 1.2315135367772556 + min_hash: + - 1.4894159098541704 + - 1.4894159098541704 + csv_path: csv_path + parent_id: parent_id + display_filters: + - metric: metric + value: ScatterFilter_value + operator: smaller_than + - metric: metric + value: ScatterFilter_value + operator: smaller_than + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 + - index: 2.3021358869347655 + insightType: + severity: 4.145608029883936 + automatic_tests: + - filter: null + metric_name: metric_name + metric_value: 6.84685269835264 + test_name: test_name + operator: equal + - filter: null + metric_name: metric_name + metric_value: 6.84685269835264 + test_name: test_name + operator: equal + id_: id_ + es_filters_used_in_analysis: + - null + - null + n_samples: 7.061401241503109 + metrics_info: + - metric_name: metric_name + metric_statistics: + - name: name + value: 1.0246457001441578 + - name: name + value: 1.0246457001441578 + - metric_name: metric_name + metric_statistics: + - name: name + value: 1.0246457001441578 + - name: name + value: 1.0246457001441578 + blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics + mutual_info_elements: + - features: + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + score: 2.027123023002322 + value_in_cluster: 9.301444243932576 + value_outside_cluster: 3.616076749251911 + is_unique: true + - features: + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + score: 2.027123023002322 + value_in_cluster: 9.301444243932576 + value_outside_cluster: 3.616076749251911 + is_unique: true + type: low_performance + auto_generated: true + severity_metrics: + - metric_name: metric_name + value: 7.386281948385884 + normalized_value: 1.2315135367772556 + - metric_name: metric_name + value: 7.386281948385884 + normalized_value: 1.2315135367772556 + min_hash: + - 1.4894159098541704 + - 1.4894159098541704 + csv_path: csv_path + parent_id: parent_id + display_filters: + - metric: metric + value: ScatterFilter_value + operator: smaller_than + - metric: metric + value: ScatterFilter_value + operator: smaller_than + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 + type: insight + value: + lt: null + gte: null + blob_paths: + - blob_paths + - blob_paths + lte: null + eq: null + lst: + - null + - null + gt: 5.637376656633329 + operator: between + - field: field + disable: true + displayData: + insights: + - index: 2.3021358869347655 + insightType: + severity: 4.145608029883936 + automatic_tests: + - filter: null + metric_name: metric_name + metric_value: 6.84685269835264 + test_name: test_name + operator: equal + - filter: null + metric_name: metric_name + metric_value: 6.84685269835264 + test_name: test_name + operator: equal + id_: id_ + es_filters_used_in_analysis: + - null + - null + n_samples: 7.061401241503109 + metrics_info: + - metric_name: metric_name + metric_statistics: + - name: name + value: 1.0246457001441578 + - name: name + value: 1.0246457001441578 + - metric_name: metric_name + metric_statistics: + - name: name + value: 1.0246457001441578 + - name: name + value: 1.0246457001441578 + blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics + mutual_info_elements: + - features: + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + score: 2.027123023002322 + value_in_cluster: 9.301444243932576 + value_outside_cluster: 3.616076749251911 + is_unique: true + - features: + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + score: 2.027123023002322 + value_in_cluster: 9.301444243932576 + value_outside_cluster: 3.616076749251911 + is_unique: true + type: low_performance + auto_generated: true + severity_metrics: + - metric_name: metric_name + value: 7.386281948385884 + normalized_value: 1.2315135367772556 + - metric_name: metric_name + value: 7.386281948385884 + normalized_value: 1.2315135367772556 + min_hash: + - 1.4894159098541704 + - 1.4894159098541704 + csv_path: csv_path + parent_id: parent_id + display_filters: + - metric: metric + value: ScatterFilter_value + operator: smaller_than + - metric: metric + value: ScatterFilter_value + operator: smaller_than + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 + - index: 2.3021358869347655 + insightType: + severity: 4.145608029883936 + automatic_tests: + - filter: null + metric_name: metric_name + metric_value: 6.84685269835264 + test_name: test_name + operator: equal + - filter: null + metric_name: metric_name + metric_value: 6.84685269835264 + test_name: test_name + operator: equal + id_: id_ + es_filters_used_in_analysis: + - null + - null + n_samples: 7.061401241503109 + metrics_info: + - metric_name: metric_name + metric_statistics: + - name: name + value: 1.0246457001441578 + - name: name + value: 1.0246457001441578 + - metric_name: metric_name + metric_statistics: + - name: name + value: 1.0246457001441578 + - name: name + value: 1.0246457001441578 + blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics + mutual_info_elements: + - features: + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + score: 2.027123023002322 + value_in_cluster: 9.301444243932576 + value_outside_cluster: 3.616076749251911 + is_unique: true + - features: + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + score: 2.027123023002322 + value_in_cluster: 9.301444243932576 + value_outside_cluster: 3.616076749251911 + is_unique: true + type: low_performance + auto_generated: true + severity_metrics: + - metric_name: metric_name + value: 7.386281948385884 + normalized_value: 1.2315135367772556 + - metric_name: metric_name + value: 7.386281948385884 + normalized_value: 1.2315135367772556 + min_hash: + - 1.4894159098541704 + - 1.4894159098541704 + csv_path: csv_path + parent_id: parent_id + display_filters: + - metric: metric + value: ScatterFilter_value + operator: smaller_than + - metric: metric + value: ScatterFilter_value + operator: smaller_than + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - description: description - sessionId: sessionId - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - csvBlobPath: csvBlobPath - teamId: teamId - name: name - projectId: projectId - cid: cid - isEvaluate: true - teamId: teamId - extId: extId - sessionWeights: - - globalStep: 5.962133916683182 - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - teamId: teamId - epoch: 1.4658129805029452 - sessionId: sessionId - cid: cid - status: UNSTARTED - - globalStep: 5.962133916683182 - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - teamId: teamId - epoch: 1.4658129805029452 - sessionId: sessionId - cid: cid - status: UNSTARTED + type: insight + value: + lt: null + gte: null + blob_paths: + - blob_paths + - blob_paths + lte: null + eq: null + lst: + - null + - null + gt: 5.637376656633329 + operator: between + collectionId: collectionId projectId: projectId - hash: hash - properties: "{}" - cid: cid - hasExternalEpoch: true properties: - projectId: - type: string - cid: - type: string - extId: - type: string - modelName: - type: string - createdAt: - format: date-time - type: string - createdBy: + description: type: string - teamId: + name: type: string - hash: - nullable: true + collectionId: type: string - trainingParams: - $ref: "#/components/schemas/TrainingParams" - sessionRuns: - items: - $ref: "#/components/schemas/SessionRunData" - type: array - sessionWeights: + filters: items: - $ref: "#/components/schemas/SessionWeightData" + $ref: "#/components/schemas/ESFilter" type: array - properties: - description: Construct a type with a set of properties K of type T - properties: {} - type: object - hasExternalEpoch: - type: boolean - required: - - cid - - createdAt - - hasExternalEpoch - - modelName - - projectId - - teamId - type: object - SessionsResponse: - additionalProperties: true - example: - sessions: - - trainingParams: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - modelName: modelName - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - sessionRuns: - - weightAssets: - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - evaluateParams: - dataStates: - - training - - training - batchSize: 0.8008281904610115 - evaluatedEpoch: 6.027456183070403 - canContinueEvaluate: true - jobs: - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - description: description - sessionId: sessionId - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - csvBlobPath: csvBlobPath - teamId: teamId - name: name - projectId: projectId - cid: cid - isEvaluate: true - - weightAssets: - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - evaluateParams: - dataStates: - - training - - training - batchSize: 0.8008281904610115 - evaluatedEpoch: 6.027456183070403 - canContinueEvaluate: true - jobs: - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - description: description - sessionId: sessionId - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - csvBlobPath: csvBlobPath - teamId: teamId - name: name - projectId: projectId - cid: cid - isEvaluate: true - teamId: teamId - extId: extId - sessionWeights: - - globalStep: 5.962133916683182 - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - teamId: teamId - epoch: 1.4658129805029452 - sessionId: sessionId - cid: cid - status: UNSTARTED - - globalStep: 5.962133916683182 - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - teamId: teamId - epoch: 1.4658129805029452 - sessionId: sessionId - cid: cid - status: UNSTARTED - projectId: projectId - hash: hash - properties: "{}" - cid: cid - hasExternalEpoch: true - - trainingParams: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - modelName: modelName - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - sessionRuns: - - weightAssets: - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - evaluateParams: - dataStates: - - training - - training - batchSize: 0.8008281904610115 - evaluatedEpoch: 6.027456183070403 - canContinueEvaluate: true - jobs: - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - description: description - sessionId: sessionId - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - csvBlobPath: csvBlobPath - teamId: teamId - name: name - projectId: projectId - cid: cid - isEvaluate: true - - weightAssets: - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - evaluateParams: - dataStates: - - training - - training - batchSize: 0.8008281904610115 - evaluatedEpoch: 6.027456183070403 - canContinueEvaluate: true - jobs: - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - description: description - sessionId: sessionId - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - csvBlobPath: csvBlobPath - teamId: teamId - name: name - projectId: projectId - cid: cid - isEvaluate: true - teamId: teamId - extId: extId - sessionWeights: - - globalStep: 5.962133916683182 - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - teamId: teamId - epoch: 1.4658129805029452 - sessionId: sessionId - cid: cid - status: UNSTARTED - - globalStep: 5.962133916683182 - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - teamId: teamId - epoch: 1.4658129805029452 - sessionId: sessionId - cid: cid - status: UNSTARTED - projectId: projectId - hash: hash - properties: "{}" - cid: cid - hasExternalEpoch: true - properties: - sessions: + inferenceArtifactIds: items: - $ref: "#/components/schemas/Session" + type: string type: array - required: - - sessions - type: object - SessionHashRequestParams: - additionalProperties: true - example: - projectId: projectId - hash: hash - properties: - hash: - type: string projectId: type: string required: - - hash + - filters + - inferenceArtifactIds - projectId type: object - SessionVersionIdRequestParams: - additionalProperties: true + GenerateStreamingSamplesVisParams: example: - versionId: versionId + visualizationType: visualizationType + visArtifactId: visArtifactId projectId: projectId + sampleIdentities: + - index: 0.8008281904610115 + state: training + hashed_index: hashed_index + - index: 0.8008281904610115 + state: training + hashed_index: hashed_index properties: - versionId: + visualizationType: + type: string + sampleIdentities: + items: + $ref: "#/components/schemas/SampleIdentity" + type: array + visArtifactId: type: string projectId: type: string required: - projectId - - versionId + - sampleIdentities + - visArtifactId + - visualizationType type: object - RecentSessionsResponse: + AddSecretManagerResponse: additionalProperties: true example: - sessions: - - modelName: modelName - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - sessionRuns: - - weightAssets: - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - evaluateParams: - dataStates: - - training - - training - batchSize: 0.8008281904610115 - evaluatedEpoch: 6.027456183070403 - canContinueEvaluate: true - jobs: - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - description: description - sessionId: sessionId - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - csvBlobPath: csvBlobPath - teamId: teamId - name: name - projectId: projectId - cid: cid - isEvaluate: true - - weightAssets: - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - evaluateParams: - dataStates: - - training - - training - batchSize: 0.8008281904610115 - evaluatedEpoch: 6.027456183070403 - canContinueEvaluate: true - jobs: - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - description: description - sessionId: sessionId - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - csvBlobPath: csvBlobPath - teamId: teamId - name: name - projectId: projectId - cid: cid - isEvaluate: true - teamId: teamId - trainingParams: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - extId: extId - sessionWeights: - - globalStep: 5.962133916683182 - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - teamId: teamId - epoch: 1.4658129805029452 - sessionId: sessionId - cid: cid - status: UNSTARTED - - globalStep: 5.962133916683182 - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - teamId: teamId - epoch: 1.4658129805029452 - sessionId: sessionId - cid: cid - status: UNSTARTED - hash: hash - cid: cid - - modelName: modelName - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - sessionRuns: - - weightAssets: - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - evaluateParams: - dataStates: - - training - - training - batchSize: 0.8008281904610115 - evaluatedEpoch: 6.027456183070403 - canContinueEvaluate: true - jobs: - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - description: description - sessionId: sessionId - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - csvBlobPath: csvBlobPath - teamId: teamId - name: name - projectId: projectId - cid: cid - isEvaluate: true - - weightAssets: - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - evaluateParams: - dataStates: - - training - - training - batchSize: 0.8008281904610115 - evaluatedEpoch: 6.027456183070403 - canContinueEvaluate: true - jobs: - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - description: description - sessionId: sessionId - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - csvBlobPath: csvBlobPath - teamId: teamId - name: name - projectId: projectId - cid: cid - isEvaluate: true - teamId: teamId - trainingParams: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - extId: extId - sessionWeights: - - globalStep: 5.962133916683182 - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - teamId: teamId - epoch: 1.4658129805029452 - sessionId: sessionId - cid: cid - status: UNSTARTED - - globalStep: 5.962133916683182 - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - teamId: teamId - epoch: 1.4658129805029452 - sessionId: sessionId - cid: cid - status: UNSTARTED - hash: hash - cid: cid + success: true + cid: cid properties: - sessions: - items: - $ref: "#/components/schemas/SessionPopulatedJob" - type: array + cid: + type: string + success: + nullable: false + type: boolean required: - - sessions + - cid + - success type: object - RecentTeamSessionsRequestParams: + AddSecretManagerParams: additionalProperties: true example: - topSessions: 0.8008281904610115 - projectId: projectId + authData: authData + name: name properties: - topSessions: - format: double - type: number - projectId: + name: + type: string + authData: type: string required: - - projectId - - topSessions + - authData + - name type: object - DeleteSessionParams: + TrashSecretManagerResponse: additionalProperties: true example: - sessionId: sessionId - projectId: projectId + success: true properties: - sessionId: - type: string - projectId: + success: + nullable: false + type: boolean + required: + - success + type: object + TrashSecretManagerParams: + additionalProperties: true + example: + secretManagerId: secretManagerId + properties: + secretManagerId: type: string required: - - projectId - - sessionId + - secretManagerId type: object - DeleteSessionRunParams: + LinkedProject: additionalProperties: true example: - sessionRunId: sessionRunId + projectName: projectName projectId: projectId properties: - sessionRunId: - type: string projectId: type: string + projectName: + type: string required: - projectId - - sessionRunId + - projectName type: object - UpdateSessionNameParams: + SecretManager: additionalProperties: true example: + createdAt: 2000-01-23T04:56:07.000+00:00 + linkedProjects: + - projectName: projectName + projectId: projectId + - projectName: projectName + projectId: projectId name: name - projectId: projectId cid: cid properties: cid: type: string - projectId: - type: string name: type: string + createdAt: + format: date-time + type: string + linkedProjects: + items: + $ref: "#/components/schemas/LinkedProject" + type: array required: - cid + - createdAt + - linkedProjects - name - - projectId type: object - GetSessionRunsEvaluateResponse: + GetSecretManagerListResponse: additionalProperties: true example: - evaluateSessionRuns: - - weightAssets: - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - evaluateParams: - dataStates: - - training - - training - batchSize: 0.8008281904610115 - evaluatedEpoch: 6.027456183070403 - canContinueEvaluate: true - jobs: - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate + results: + - createdAt: 2000-01-23T04:56:07.000+00:00 + linkedProjects: + - projectName: projectName projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate + - projectName: projectName projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - description: description - sessionId: sessionId - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - csvBlobPath: csvBlobPath - teamId: teamId name: name - projectId: projectId cid: cid - isEvaluate: true - - weightAssets: - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - evaluateParams: - dataStates: - - training - - training - batchSize: 0.8008281904610115 - evaluatedEpoch: 6.027456183070403 - canContinueEvaluate: true - jobs: - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate + - createdAt: 2000-01-23T04:56:07.000+00:00 + linkedProjects: + - projectName: projectName projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate + - projectName: projectName projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - description: description - sessionId: sessionId - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - csvBlobPath: csvBlobPath - teamId: teamId name: name - projectId: projectId cid: cid - isEvaluate: true properties: - evaluateSessionRuns: + results: items: - $ref: "#/components/schemas/SessionRunData" + $ref: "#/components/schemas/SecretManager" type: array required: - - evaluateSessionRuns + - results type: object - GetSessionRunsEvaluateParams: + UpdateSecretManagerResponse: additionalProperties: true example: - projectId: projectId + success: true properties: - projectId: - type: string + success: + nullable: false + type: boolean required: - - projectId + - success type: object - UpdateSessionRunNameParams: + UpdateSecretManagerParams: additionalProperties: true example: + authData: authData name: name - description: description - projectId: projectId cid: cid properties: cid: type: string name: type: string - description: - type: string - projectId: + authData: type: string required: - cid - - description - name - - projectId type: object ClientFilterParams: additionalProperties: true @@ -31065,12 +30707,211 @@ components: disable: true displayData: insights: - - sessionRun: + - index: 2.3021358869347655 + insightType: + severity: 4.145608029883936 + automatic_tests: + - filter: null + metric_name: metric_name + metric_value: 6.84685269835264 + test_name: test_name + operator: equal + - filter: null + metric_name: metric_name + metric_value: 6.84685269835264 + test_name: test_name + operator: equal + id_: id_ + es_filters_used_in_analysis: + - null + - null + n_samples: 7.061401241503109 + metrics_info: + - metric_name: metric_name + metric_statistics: + - name: name + value: 1.0246457001441578 + - name: name + value: 1.0246457001441578 + - metric_name: metric_name + metric_statistics: + - name: name + value: 1.0246457001441578 + - name: name + value: 1.0246457001441578 + blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics + mutual_info_elements: + - features: + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + score: 2.027123023002322 + value_in_cluster: 9.301444243932576 + value_outside_cluster: 3.616076749251911 + is_unique: true + - features: + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + score: 2.027123023002322 + value_in_cluster: 9.301444243932576 + value_outside_cluster: 3.616076749251911 + is_unique: true + type: low_performance + auto_generated: true + severity_metrics: + - metric_name: metric_name + value: 7.386281948385884 + normalized_value: 1.2315135367772556 + - metric_name: metric_name + value: 7.386281948385884 + normalized_value: 1.2315135367772556 + min_hash: + - 1.4894159098541704 + - 1.4894159098541704 + csv_path: csv_path + parent_id: parent_id + display_filters: + - metric: metric + value: ScatterFilter_value + operator: smaller_than + - metric: metric + value: ScatterFilter_value + operator: smaller_than + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id + - index: 2.3021358869347655 + insightType: + severity: 4.145608029883936 + automatic_tests: + - filter: null + metric_name: metric_name + metric_value: 6.84685269835264 + test_name: test_name + operator: equal + - filter: null + metric_name: metric_name + metric_value: 6.84685269835264 + test_name: test_name + operator: equal + id_: id_ + es_filters_used_in_analysis: + - null + - null + n_samples: 7.061401241503109 + metrics_info: + - metric_name: metric_name + metric_statistics: + - name: name + value: 1.0246457001441578 + - name: name + value: 1.0246457001441578 + - metric_name: metric_name + metric_statistics: + - name: name + value: 1.0246457001441578 + - name: name + value: 1.0246457001441578 + blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics + mutual_info_elements: + - features: + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + score: 2.027123023002322 + value_in_cluster: 9.301444243932576 + value_outside_cluster: 3.616076749251911 + is_unique: true + - features: + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + score: 2.027123023002322 + value_in_cluster: 9.301444243932576 + value_outside_cluster: 3.616076749251911 + is_unique: true + type: low_performance + auto_generated: true + severity_metrics: + - metric_name: metric_name + value: 7.386281948385884 + normalized_value: 1.2315135367772556 + - metric_name: metric_name + value: 7.386281948385884 + normalized_value: 1.2315135367772556 + min_hash: + - 1.4894159098541704 + - 1.4894159098541704 + csv_path: csv_path + parent_id: parent_id + display_filters: + - metric: metric + value: ScatterFilter_value + operator: smaller_than + - metric: metric + value: ScatterFilter_value + operator: smaller_than + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + type: insight + value: + lt: null + gte: null + blob_paths: + - blob_paths + - blob_paths + lte: null + eq: null + lst: + - null + - null + gt: 5.637376656633329 + operator: between + - field: field + disable: true + displayData: + insights: + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -31084,7 +30925,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -31104,6 +30944,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -31133,7 +30977,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -31141,7 +30984,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -31154,13 +30996,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -31174,7 +31018,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -31194,6 +31037,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -31223,7 +31070,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -31231,7 +31077,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -31244,7 +31089,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -31259,16 +31111,131 @@ components: - null gt: 5.637376656633329 operator: between + projectId: projectId + properties: + projectId: + type: string + name: + type: string + testFilter: + $ref: "#/components/schemas/ClientFilterParams" + datasetFilter: + items: + $ref: "#/components/schemas/ESFilter" + type: array + required: + - name + - projectId + - testFilter + type: object + UpdateSessionTestRequest: + additionalProperties: true + example: + testFilter: + field: field + disable: true + value: 0.8008281904610115 + operator: between + name: name + datasetFilter: - field: field disable: true displayData: insights: - - sessionRun: + - index: 2.3021358869347655 + insightType: + severity: 4.145608029883936 + automatic_tests: + - filter: null + metric_name: metric_name + metric_value: 6.84685269835264 + test_name: test_name + operator: equal + - filter: null + metric_name: metric_name + metric_value: 6.84685269835264 + test_name: test_name + operator: equal + id_: id_ + es_filters_used_in_analysis: + - null + - null + n_samples: 7.061401241503109 + metrics_info: + - metric_name: metric_name + metric_statistics: + - name: name + value: 1.0246457001441578 + - name: name + value: 1.0246457001441578 + - metric_name: metric_name + metric_statistics: + - name: name + value: 1.0246457001441578 + - name: name + value: 1.0246457001441578 + blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics + mutual_info_elements: + - features: + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + score: 2.027123023002322 + value_in_cluster: 9.301444243932576 + value_outside_cluster: 3.616076749251911 + is_unique: true + - features: + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + score: 2.027123023002322 + value_in_cluster: 9.301444243932576 + value_outside_cluster: 3.616076749251911 + is_unique: true + type: low_performance + auto_generated: true + severity_metrics: + - metric_name: metric_name + value: 7.386281948385884 + normalized_value: 1.2315135367772556 + - metric_name: metric_name + value: 7.386281948385884 + normalized_value: 1.2315135367772556 + min_hash: + - 1.4894159098541704 + - 1.4894159098541704 + csv_path: csv_path + parent_id: parent_id + display_filters: + - metric: metric + value: ScatterFilter_value + operator: smaller_than + - metric: metric + value: ScatterFilter_value + operator: smaller_than + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -31282,7 +31249,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -31302,6 +31268,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -31331,7 +31301,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -31339,7 +31308,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -31352,97 +31320,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 - insightType: - severity: 4.145608029883936 - automatic_tests: - - filter: null - metric_name: metric_name - metric_value: 6.84685269835264 - test_name: test_name - operator: equal - - filter: null - metric_name: metric_name - metric_value: 6.84685269835264 - test_name: test_name - operator: equal - under_representation_n_samples: 7.457744773683766 - id_: id_ - es_filters_used_in_analysis: - - null - - null - n_samples: 7.061401241503109 - metrics_info: - - metric_name: metric_name - metric_statistics: - - name: name - value: 1.0246457001441578 - - name: name - value: 1.0246457001441578 - - metric_name: metric_name - metric_statistics: - - name: name - value: 1.0246457001441578 - - name: name - value: 1.0246457001441578 - blob_path: blob_path - mutual_info_elements: - - features: - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - score: 2.027123023002322 - value_in_cluster: 9.301444243932576 - value_outside_cluster: 3.616076749251911 - is_unique: true - - features: - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - score: 2.027123023002322 - value_in_cluster: 9.301444243932576 - value_outside_cluster: 3.616076749251911 - is_unique: true - type: low_performance - auto_generated: true - over_representation_n_samples: 1.1730742509559433 - severity_metrics: - - metric_name: metric_name - value: 7.386281948385884 - normalized_value: 1.2315135367772556 - - metric_name: metric_name - value: 7.386281948385884 - normalized_value: 1.2315135367772556 - over_representation_dataset: null - min_hash: - - 1.4894159098541704 - - 1.4894159098541704 - csv_path: csv_path - parent_id: parent_id - display_filters: - - metric: metric - value: ScatterFilter_value - operator: smaller_than - - metric: metric - value: ScatterFilter_value - operator: smaller_than - under_representation_dataset: training type: insight value: lt: null @@ -31457,133 +31342,11 @@ components: - null gt: 5.637376656633329 operator: between - projectId: projectId - properties: - projectId: - type: string - name: - type: string - testFilter: - $ref: "#/components/schemas/ClientFilterParams" - datasetFilter: - items: - $ref: "#/components/schemas/ESFilter" - type: array - required: - - name - - projectId - - testFilter - type: object - UpdateSessionTestRequest: - additionalProperties: true - example: - testFilter: - field: field - disable: true - value: 0.8008281904610115 - operator: between - name: name - datasetFilter: - field: field disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 - insightType: - severity: 4.145608029883936 - automatic_tests: - - filter: null - metric_name: metric_name - metric_value: 6.84685269835264 - test_name: test_name - operator: equal - - filter: null - metric_name: metric_name - metric_value: 6.84685269835264 - test_name: test_name - operator: equal - under_representation_n_samples: 7.457744773683766 - id_: id_ - es_filters_used_in_analysis: - - null - - null - n_samples: 7.061401241503109 - metrics_info: - - metric_name: metric_name - metric_statistics: - - name: name - value: 1.0246457001441578 - - name: name - value: 1.0246457001441578 - - metric_name: metric_name - metric_statistics: - - name: name - value: 1.0246457001441578 - - name: name - value: 1.0246457001441578 - blob_path: blob_path - mutual_info_elements: - - features: - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - score: 2.027123023002322 - value_in_cluster: 9.301444243932576 - value_outside_cluster: 3.616076749251911 - is_unique: true - - features: - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - score: 2.027123023002322 - value_in_cluster: 9.301444243932576 - value_outside_cluster: 3.616076749251911 - is_unique: true - type: low_performance - auto_generated: true - over_representation_n_samples: 1.1730742509559433 - severity_metrics: - - metric_name: metric_name - value: 7.386281948385884 - normalized_value: 1.2315135367772556 - - metric_name: metric_name - value: 7.386281948385884 - normalized_value: 1.2315135367772556 - over_representation_dataset: null - min_hash: - - 1.4894159098541704 - - 1.4894159098541704 - csv_path: csv_path - parent_id: parent_id - display_filters: - - metric: metric - value: ScatterFilter_value - operator: smaller_than - - metric: metric - value: ScatterFilter_value - operator: smaller_than - under_representation_dataset: training - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -31597,7 +31360,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -31617,6 +31379,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -31646,7 +31412,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -31654,7 +31419,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -31667,31 +31431,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - type: insight - value: - lt: null - gte: null - blob_paths: - - blob_paths - - blob_paths - lte: null - eq: null - lst: - - null - - null - gt: 5.637376656633329 - operator: between - - field: field - disable: true - displayData: - insights: - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -31705,7 +31453,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -31725,6 +31472,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -31754,7 +31505,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -31762,7 +31512,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -31775,97 +31524,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 - insightType: - severity: 4.145608029883936 - automatic_tests: - - filter: null - metric_name: metric_name - metric_value: 6.84685269835264 - test_name: test_name - operator: equal - - filter: null - metric_name: metric_name - metric_value: 6.84685269835264 - test_name: test_name - operator: equal - under_representation_n_samples: 7.457744773683766 - id_: id_ - es_filters_used_in_analysis: - - null - - null - n_samples: 7.061401241503109 - metrics_info: - - metric_name: metric_name - metric_statistics: - - name: name - value: 1.0246457001441578 - - name: name - value: 1.0246457001441578 - - metric_name: metric_name - metric_statistics: - - name: name - value: 1.0246457001441578 - - name: name - value: 1.0246457001441578 - blob_path: blob_path - mutual_info_elements: - - features: - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - score: 2.027123023002322 - value_in_cluster: 9.301444243932576 - value_outside_cluster: 3.616076749251911 - is_unique: true - - features: - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - score: 2.027123023002322 - value_in_cluster: 9.301444243932576 - value_outside_cluster: 3.616076749251911 - is_unique: true - type: low_performance - auto_generated: true - over_representation_n_samples: 1.1730742509559433 - severity_metrics: - - metric_name: metric_name - value: 7.386281948385884 - normalized_value: 1.2315135367772556 - - metric_name: metric_name - value: 7.386281948385884 - normalized_value: 1.2315135367772556 - over_representation_dataset: null - min_hash: - - 1.4894159098541704 - - 1.4894159098541704 - csv_path: csv_path - parent_id: parent_id - display_filters: - - metric: metric - value: ScatterFilter_value - operator: smaller_than - - metric: metric - value: ScatterFilter_value - operator: smaller_than - under_representation_dataset: training type: insight value: lt: null @@ -31916,12 +31582,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -31935,7 +31596,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -31955,6 +31615,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -31984,7 +31648,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -31992,7 +31655,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -32005,13 +31667,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -32025,7 +31689,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -32045,6 +31708,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -32074,7 +31741,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -32082,7 +31748,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -32095,7 +31760,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -32114,12 +31786,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -32133,7 +31800,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -32153,6 +31819,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -32182,7 +31852,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -32190,7 +31859,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -32203,13 +31871,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -32223,7 +31893,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -32243,6 +31912,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -32272,7 +31945,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -32280,7 +31952,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -32293,7 +31964,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -32386,7 +32064,7 @@ components: SessionTestResultSuccess: additionalProperties: true example: - sessionRunId: sessionRunId + versionId: versionId queryStatus: success succefullSamples: 6.027456183070403 testSucceeded: true @@ -32396,7 +32074,7 @@ components: properties: testSucceeded: type: boolean - sessionRunId: + versionId: type: string aggregation: format: double @@ -32420,14 +32098,14 @@ components: - allSamples - epoch - queryStatus - - sessionRunId - succefullSamples - testSucceeded + - versionId type: object SessionTestResultError: additionalProperties: true properties: - sessionRunId: + versionId: type: string queryStatus: enum: @@ -32436,12 +32114,12 @@ components: type: string required: - queryStatus - - sessionRunId + - versionId type: object SessionTestResultNotFound: additionalProperties: true properties: - sessionRunId: + versionId: type: string queryStatus: enum: @@ -32450,7 +32128,7 @@ components: type: string required: - queryStatus - - sessionRunId + - versionId type: object SessionTestResult: anyOf: @@ -32462,14 +32140,14 @@ components: example: testId: testId sessionsResults: - - sessionRunId: sessionRunId + - versionId: versionId queryStatus: success succefullSamples: 6.027456183070403 testSucceeded: true allSamples: 1.4658129805029452 aggregation: 0.8008281904610115 epoch: 5.962133916683182 - - sessionRunId: sessionRunId + - versionId: versionId queryStatus: success succefullSamples: 6.027456183070403 testSucceeded: true @@ -32490,11 +32168,11 @@ components: SessionTestData: additionalProperties: true example: - sessionRunId: sessionRunId + versionId: versionId epoch: 0.8008281904610115 projectId: projectId properties: - sessionRunId: + versionId: type: string projectId: type: string @@ -32504,16 +32182,16 @@ components: required: - epoch - projectId - - sessionRunId + - versionId type: object GetSessionTestResultsRequest: additionalProperties: true example: sessionsTestData: - - sessionRunId: sessionRunId + - versionId: versionId epoch: 0.8008281904610115 projectId: projectId - - sessionRunId: sessionRunId + - versionId: versionId epoch: 0.8008281904610115 projectId: projectId projectId: projectId @@ -33244,6 +32922,14 @@ components: - id - nodes type: object + VersionStatus: + enum: + - draft + - valid + - invalid + - trash + - visible + type: string ValidatedNode: additionalProperties: true example: @@ -33409,16 +33095,29 @@ components: - prediction_types - visualizers type: object + EpochTags: + additionalProperties: + format: double + type: number + properties: {} + type: object Version: additionalProperties: true example: + inferenceArtifactId: inferenceArtifactId notes: notes data: nodes: "{}" id: id + modelId: modelId + epochTags: + key: 0.8008281904610115 + visArtifactId: visArtifactId branch: branch + esInspectionIndex: esInspectionIndex codeSnapshotId: codeSnapshotId createdAt: 2000-01-23T04:56:07.000+00:00 + esMetricIndex: esMetricIndex createdBy: createdBy teamId: teamId graphValidationData: @@ -33503,7 +33202,7 @@ components: hash: hash cid: cid updatedAt: 2000-01-23T04:56:07.000+00:00 - status: visible + status: draft properties: cid: type: string @@ -33528,10 +33227,7 @@ components: notes: type: string status: - enum: - - visible - - trash - type: string + $ref: "#/components/schemas/VersionStatus" isFavourite: type: boolean codeSnapshotId: @@ -33540,6 +33236,22 @@ components: type: string graphValidationData: $ref: "#/components/schemas/GraphValidatorData" + modelId: + type: string + epochTags: + additionalProperties: + format: double + type: number + properties: {} + type: object + visArtifactId: + type: string + inferenceArtifactId: + type: string + esMetricIndex: + type: string + esInspectionIndex: + type: string required: - branch - cid @@ -33574,13 +33286,20 @@ components: updatedAt: 2000-01-23T04:56:07.000+00:00 status: visible version: + inferenceArtifactId: inferenceArtifactId notes: notes data: nodes: "{}" id: id + modelId: modelId + epochTags: + key: 0.8008281904610115 + visArtifactId: visArtifactId branch: branch + esInspectionIndex: esInspectionIndex codeSnapshotId: codeSnapshotId createdAt: 2000-01-23T04:56:07.000+00:00 + esMetricIndex: esMetricIndex createdBy: createdBy teamId: teamId graphValidationData: @@ -33665,7 +33384,7 @@ components: hash: hash cid: cid updatedAt: 2000-01-23T04:56:07.000+00:00 - status: visible + status: draft properties: project: $ref: "#/components/schemas/Project" @@ -33678,515 +33397,104 @@ components: LoadVersionParams: additionalProperties: true example: - versionId: versionId - projectId: projectId - properties: - versionId: - type: string - projectId: - type: string - required: - - projectId - - versionId - type: object - DeleteVersionParams: - additionalProperties: true - example: - versionId: versionId - projectId: projectId - properties: - versionId: - type: string - projectId: - type: string - required: - - projectId - - versionId - type: object - UpdateVersionResponse: - additionalProperties: true - example: - versionId: versionId - properties: - versionId: - type: string - required: - - versionId - type: object - UpdateVersionParams: - additionalProperties: true - example: - versionId: versionId - data: - nodes: "{}" - id: id - projectId: projectId - codeSnapshotId: codeSnapshotId - hash: hash - properties: - versionId: - type: string - projectId: - type: string - data: - $ref: "#/components/schemas/ModelGraph" - codeSnapshotId: - type: string - hash: - type: string - required: - - data - - projectId - - versionId - type: object - SlimVersion: - additionalProperties: true - example: - sessions: - - trainingParams: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - modelName: modelName - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - sessionRuns: - - weightAssets: - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - evaluateParams: - dataStates: - - training - - training - batchSize: 0.8008281904610115 - evaluatedEpoch: 6.027456183070403 - canContinueEvaluate: true - jobs: - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - description: description - sessionId: sessionId - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - csvBlobPath: csvBlobPath - teamId: teamId - name: name - projectId: projectId - cid: cid - isEvaluate: true - - weightAssets: - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - evaluateParams: - dataStates: - - training - - training - batchSize: 0.8008281904610115 - evaluatedEpoch: 6.027456183070403 - canContinueEvaluate: true - jobs: - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - description: description - sessionId: sessionId - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - csvBlobPath: csvBlobPath - teamId: teamId - name: name - projectId: projectId - cid: cid - isEvaluate: true - teamId: teamId - extId: extId - sessionWeights: - - globalStep: 5.962133916683182 - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - teamId: teamId - epoch: 1.4658129805029452 - sessionId: sessionId - cid: cid - status: UNSTARTED - - globalStep: 5.962133916683182 - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - teamId: teamId - epoch: 1.4658129805029452 - sessionId: sessionId - cid: cid - status: UNSTARTED - projectId: projectId - hash: hash - properties: "{}" - cid: cid - hasExternalEpoch: true - - trainingParams: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - modelName: modelName - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - sessionRuns: - - weightAssets: - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - evaluateParams: - dataStates: - - training - - training - batchSize: 0.8008281904610115 - evaluatedEpoch: 6.027456183070403 - canContinueEvaluate: true - jobs: - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - description: description - sessionId: sessionId - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - csvBlobPath: csvBlobPath - teamId: teamId - name: name - projectId: projectId - cid: cid - isEvaluate: true - - weightAssets: - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - evaluateParams: - dataStates: - - training - - training - batchSize: 0.8008281904610115 - evaluatedEpoch: 6.027456183070403 - canContinueEvaluate: true - jobs: - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - description: description - sessionId: sessionId - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - csvBlobPath: csvBlobPath - teamId: teamId - name: name - projectId: projectId - cid: cid - isEvaluate: true - teamId: teamId - extId: extId - sessionWeights: - - globalStep: 5.962133916683182 - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - teamId: teamId - epoch: 1.4658129805029452 - sessionId: sessionId - cid: cid - status: UNSTARTED - - globalStep: 5.962133916683182 - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - teamId: teamId - epoch: 1.4658129805029452 - sessionId: sessionId - cid: cid - status: UNSTARTED - projectId: projectId - hash: hash - properties: "{}" - cid: cid - hasExternalEpoch: true - notes: notes - branchName: branchName + versionId: versionId + projectId: projectId + properties: + versionId: + type: string + projectId: + type: string + required: + - projectId + - versionId + type: object + DeleteVersionParams: + additionalProperties: true + example: + versionId: versionId + projectId: projectId + properties: + versionId: + type: string + projectId: + type: string + required: + - projectId + - versionId + type: object + UpdateVersionResponse: + additionalProperties: true + example: + versionId: versionId + properties: + versionId: + type: string + required: + - versionId + type: object + UpdateVersionParams: + additionalProperties: true + example: + versionId: versionId + data: + nodes: "{}" + id: id + projectId: projectId codeSnapshotId: codeSnapshotId - tags: tags + hash: hash + properties: + versionId: + type: string + projectId: + type: string + data: + $ref: "#/components/schemas/ModelGraph" + codeSnapshotId: + type: string + hash: + type: string + required: + - data + - projectId + - versionId + type: object + Record_string.any_: + description: Construct a type with a set of properties K of type T + properties: {} + type: object + VersionEvaluateParams: + additionalProperties: true + example: + dataStates: + - training + - training + batchSize: 0.8008281904610115 + evaluatedEpoch: 6.027456183070403 + properties: + dataStates: + items: + $ref: "#/components/schemas/DataStateType" + type: array + batchSize: + format: double + type: number + evaluatedEpoch: + format: double + type: number + required: + - batchSize + - dataStates + - evaluatedEpoch + type: object + SlimVersion: + additionalProperties: true + example: + notes: notes + canContinueEvaluate: true + modelId: modelId createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy + esMetricIndex: esMetricIndex + csvBlobPath: csvBlobPath graphValidationData: metadata: - connection_name: connection_name @@ -34263,11 +33571,102 @@ components: name: name error: error node_id: node_id - projectId: projectId isFavourite: true + updatedAt: 2000-01-23T04:56:07.000+00:00 + inferenceArtifactId: inferenceArtifactId + evaluateParams: + dataStates: + - training + - training + batchSize: 0.8008281904610115 + evaluatedEpoch: 6.027456183070403 + jobs: + - eventsSnapshot: + events: + - name: name + progress: + total: 6.027456183070403 + current: 1.4658129805029452 + id: id + status: UNSTARTED + - name: name + progress: + total: 6.027456183070403 + current: 1.4658129805029452 + id: id + status: UNSTARTED + snapshotIndex: 0.8008281904610115 + type: WARMUP + params: + inferenceArtifactId: inferenceArtifactId + versionId: versionId + monitor: true + batchSize: 5.962133916683182 + projectId: projectId + version: version + createdAt: 2000-01-23T04:56:07.000+00:00 + versionId: versionId + createdBy: createdBy + teamId: teamId + subType: Evaluate + projectId: projectId + cid: cid + status: UNSTARTED + updatedAt: 2000-01-23T04:56:07.000+00:00 + codeSnapshotInfo: + name: name + codeSnapshotId: codeSnapshotId + logsBlobName: logsBlobName + - eventsSnapshot: + events: + - name: name + progress: + total: 6.027456183070403 + current: 1.4658129805029452 + id: id + status: UNSTARTED + - name: name + progress: + total: 6.027456183070403 + current: 1.4658129805029452 + id: id + status: UNSTARTED + snapshotIndex: 0.8008281904610115 + type: WARMUP + params: + inferenceArtifactId: inferenceArtifactId + versionId: versionId + monitor: true + batchSize: 5.962133916683182 + projectId: projectId + version: version + createdAt: 2000-01-23T04:56:07.000+00:00 + versionId: versionId + createdBy: createdBy + teamId: teamId + subType: Evaluate + projectId: projectId + cid: cid + status: UNSTARTED + updatedAt: 2000-01-23T04:56:07.000+00:00 + codeSnapshotInfo: + name: name + codeSnapshotId: codeSnapshotId + logsBlobName: logsBlobName + branchName: branchName + visArtifactId: visArtifactId + epochTags: + key: 1.4658129805029452 + codeSnapshotId: codeSnapshotId + tags: tags + createdBy: createdBy + teamId: teamId + projectId: projectId hash: hash + properties: "{}" cid: cid - updatedAt: 2000-01-23T04:56:07.000+00:00 + hasExternalEpoch: true + isEvaluate: true properties: cid: type: string @@ -34294,473 +33693,67 @@ components: hash: nullable: true type: string - sessions: - items: - $ref: "#/components/schemas/Session" - type: array graphValidationData: $ref: "#/components/schemas/GraphValidatorData" + teamId: + type: string + properties: + description: Construct a type with a set of properties K of type T + properties: {} + type: object + hasExternalEpoch: + type: boolean + isEvaluate: + type: boolean + evaluateParams: + $ref: "#/components/schemas/VersionEvaluateParams" + canContinueEvaluate: + type: boolean + csvBlobPath: + type: string + jobs: + items: + $ref: "#/components/schemas/Job" + type: array + modelId: + type: string + visArtifactId: + type: string + inferenceArtifactId: + type: string + esMetricIndex: + type: string + epochTags: + additionalProperties: + format: double + type: number + properties: {} + type: object required: - branchName - cid - createdAt - createdBy + - hasExternalEpoch + - isEvaluate - isFavourite + - jobs - notes - projectId - - sessions - tags + - teamId - updatedAt type: object GetProjectSlimVersionsResponse: additionalProperties: true example: versions: - - sessions: - - trainingParams: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - modelName: modelName - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - sessionRuns: - - weightAssets: - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - evaluateParams: - dataStates: - - training - - training - batchSize: 0.8008281904610115 - evaluatedEpoch: 6.027456183070403 - canContinueEvaluate: true - jobs: - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - description: description - sessionId: sessionId - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - csvBlobPath: csvBlobPath - teamId: teamId - name: name - projectId: projectId - cid: cid - isEvaluate: true - - weightAssets: - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - evaluateParams: - dataStates: - - training - - training - batchSize: 0.8008281904610115 - evaluatedEpoch: 6.027456183070403 - canContinueEvaluate: true - jobs: - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - description: description - sessionId: sessionId - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - csvBlobPath: csvBlobPath - teamId: teamId - name: name - projectId: projectId - cid: cid - isEvaluate: true - teamId: teamId - extId: extId - sessionWeights: - - globalStep: 5.962133916683182 - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - teamId: teamId - epoch: 1.4658129805029452 - sessionId: sessionId - cid: cid - status: UNSTARTED - - globalStep: 5.962133916683182 - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - teamId: teamId - epoch: 1.4658129805029452 - sessionId: sessionId - cid: cid - status: UNSTARTED - projectId: projectId - hash: hash - properties: "{}" - cid: cid - hasExternalEpoch: true - - trainingParams: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - modelName: modelName - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - sessionRuns: - - weightAssets: - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - evaluateParams: - dataStates: - - training - - training - batchSize: 0.8008281904610115 - evaluatedEpoch: 6.027456183070403 - canContinueEvaluate: true - jobs: - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - description: description - sessionId: sessionId - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - csvBlobPath: csvBlobPath - teamId: teamId - name: name - projectId: projectId - cid: cid - isEvaluate: true - - weightAssets: - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - evaluateParams: - dataStates: - - training - - training - batchSize: 0.8008281904610115 - evaluatedEpoch: 6.027456183070403 - canContinueEvaluate: true - jobs: - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - description: description - sessionId: sessionId - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - csvBlobPath: csvBlobPath - teamId: teamId - name: name - projectId: projectId - cid: cid - isEvaluate: true - teamId: teamId - extId: extId - sessionWeights: - - globalStep: 5.962133916683182 - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - teamId: teamId - epoch: 1.4658129805029452 - sessionId: sessionId - cid: cid - status: UNSTARTED - - globalStep: 5.962133916683182 - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - teamId: teamId - epoch: 1.4658129805029452 - sessionId: sessionId - cid: cid - status: UNSTARTED - projectId: projectId - hash: hash - properties: "{}" - cid: cid - hasExternalEpoch: true - notes: notes - branchName: branchName - codeSnapshotId: codeSnapshotId - tags: tags + - notes: notes + canContinueEvaluate: true + modelId: modelId createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy + esMetricIndex: esMetricIndex + csvBlobPath: csvBlobPath graphValidationData: metadata: - connection_name: connection_name @@ -34837,456 +33830,108 @@ components: name: name error: error node_id: node_id - projectId: projectId isFavourite: true - hash: hash - cid: cid updatedAt: 2000-01-23T04:56:07.000+00:00 - - sessions: - - trainingParams: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - modelName: modelName - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - sessionRuns: - - weightAssets: - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - evaluateParams: - dataStates: - - training - - training - batchSize: 0.8008281904610115 - evaluatedEpoch: 6.027456183070403 - canContinueEvaluate: true - jobs: - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - description: description - sessionId: sessionId - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - csvBlobPath: csvBlobPath - teamId: teamId - name: name - projectId: projectId - cid: cid - isEvaluate: true - - weightAssets: - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - evaluateParams: - dataStates: - - training - - training - batchSize: 0.8008281904610115 - evaluatedEpoch: 6.027456183070403 - canContinueEvaluate: true - jobs: - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid + inferenceArtifactId: inferenceArtifactId + evaluateParams: + dataStates: + - training + - training + batchSize: 0.8008281904610115 + evaluatedEpoch: 6.027456183070403 + jobs: + - eventsSnapshot: + events: + - name: name + progress: + total: 6.027456183070403 + current: 1.4658129805029452 + id: id status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid + - name: name + progress: + total: 6.027456183070403 + current: 1.4658129805029452 + id: id status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - description: description - sessionId: sessionId - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - csvBlobPath: csvBlobPath - teamId: teamId - name: name + snapshotIndex: 0.8008281904610115 + type: WARMUP + params: + inferenceArtifactId: inferenceArtifactId + versionId: versionId + monitor: true + batchSize: 5.962133916683182 projectId: projectId - cid: cid - isEvaluate: true + version: version + createdAt: 2000-01-23T04:56:07.000+00:00 + versionId: versionId + createdBy: createdBy teamId: teamId - extId: extId - sessionWeights: - - globalStep: 5.962133916683182 - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - teamId: teamId - epoch: 1.4658129805029452 - sessionId: sessionId - cid: cid - status: UNSTARTED - - globalStep: 5.962133916683182 - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - teamId: teamId - epoch: 1.4658129805029452 - sessionId: sessionId - cid: cid - status: UNSTARTED + subType: Evaluate projectId: projectId - hash: hash - properties: "{}" cid: cid - hasExternalEpoch: true - - trainingParams: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - modelName: modelName - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - sessionRuns: - - weightAssets: - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - evaluateParams: - dataStates: - - training - - training - batchSize: 0.8008281904610115 - evaluatedEpoch: 6.027456183070403 - canContinueEvaluate: true - jobs: - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - description: description - sessionId: sessionId - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - csvBlobPath: csvBlobPath - teamId: teamId + status: UNSTARTED + updatedAt: 2000-01-23T04:56:07.000+00:00 + codeSnapshotInfo: name: name - projectId: projectId - cid: cid - isEvaluate: true - - weightAssets: - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - evaluateParams: - dataStates: - - training - - training - batchSize: 0.8008281904610115 - evaluatedEpoch: 6.027456183070403 - canContinueEvaluate: true - jobs: - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid + codeSnapshotId: codeSnapshotId + logsBlobName: logsBlobName + - eventsSnapshot: + events: + - name: name + progress: + total: 6.027456183070403 + current: 1.4658129805029452 + id: id status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid + - name: name + progress: + total: 6.027456183070403 + current: 1.4658129805029452 + id: id status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - description: description - sessionId: sessionId - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - csvBlobPath: csvBlobPath - teamId: teamId - name: name + snapshotIndex: 0.8008281904610115 + type: WARMUP + params: + inferenceArtifactId: inferenceArtifactId + versionId: versionId + monitor: true + batchSize: 5.962133916683182 projectId: projectId - cid: cid - isEvaluate: true + version: version + createdAt: 2000-01-23T04:56:07.000+00:00 + versionId: versionId + createdBy: createdBy teamId: teamId - extId: extId - sessionWeights: - - globalStep: 5.962133916683182 - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - teamId: teamId - epoch: 1.4658129805029452 - sessionId: sessionId - cid: cid - status: UNSTARTED - - globalStep: 5.962133916683182 - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - teamId: teamId - epoch: 1.4658129805029452 - sessionId: sessionId - cid: cid - status: UNSTARTED + subType: Evaluate projectId: projectId - hash: hash - properties: "{}" cid: cid - hasExternalEpoch: true - notes: notes + status: UNSTARTED + updatedAt: 2000-01-23T04:56:07.000+00:00 + codeSnapshotInfo: + name: name + codeSnapshotId: codeSnapshotId + logsBlobName: logsBlobName branchName: branchName + visArtifactId: visArtifactId + epochTags: + key: 1.4658129805029452 codeSnapshotId: codeSnapshotId tags: tags - createdAt: 2000-01-23T04:56:07.000+00:00 createdBy: createdBy + teamId: teamId + projectId: projectId + hash: hash + properties: "{}" + cid: cid + hasExternalEpoch: true + isEvaluate: true + - notes: notes + canContinueEvaluate: true + modelId: modelId + createdAt: 2000-01-23T04:56:07.000+00:00 + esMetricIndex: esMetricIndex + csvBlobPath: csvBlobPath graphValidationData: metadata: - connection_name: connection_name @@ -35363,11 +34008,102 @@ components: name: name error: error node_id: node_id - projectId: projectId isFavourite: true + updatedAt: 2000-01-23T04:56:07.000+00:00 + inferenceArtifactId: inferenceArtifactId + evaluateParams: + dataStates: + - training + - training + batchSize: 0.8008281904610115 + evaluatedEpoch: 6.027456183070403 + jobs: + - eventsSnapshot: + events: + - name: name + progress: + total: 6.027456183070403 + current: 1.4658129805029452 + id: id + status: UNSTARTED + - name: name + progress: + total: 6.027456183070403 + current: 1.4658129805029452 + id: id + status: UNSTARTED + snapshotIndex: 0.8008281904610115 + type: WARMUP + params: + inferenceArtifactId: inferenceArtifactId + versionId: versionId + monitor: true + batchSize: 5.962133916683182 + projectId: projectId + version: version + createdAt: 2000-01-23T04:56:07.000+00:00 + versionId: versionId + createdBy: createdBy + teamId: teamId + subType: Evaluate + projectId: projectId + cid: cid + status: UNSTARTED + updatedAt: 2000-01-23T04:56:07.000+00:00 + codeSnapshotInfo: + name: name + codeSnapshotId: codeSnapshotId + logsBlobName: logsBlobName + - eventsSnapshot: + events: + - name: name + progress: + total: 6.027456183070403 + current: 1.4658129805029452 + id: id + status: UNSTARTED + - name: name + progress: + total: 6.027456183070403 + current: 1.4658129805029452 + id: id + status: UNSTARTED + snapshotIndex: 0.8008281904610115 + type: WARMUP + params: + inferenceArtifactId: inferenceArtifactId + versionId: versionId + monitor: true + batchSize: 5.962133916683182 + projectId: projectId + version: version + createdAt: 2000-01-23T04:56:07.000+00:00 + versionId: versionId + createdBy: createdBy + teamId: teamId + subType: Evaluate + projectId: projectId + cid: cid + status: UNSTARTED + updatedAt: 2000-01-23T04:56:07.000+00:00 + codeSnapshotInfo: + name: name + codeSnapshotId: codeSnapshotId + logsBlobName: logsBlobName + branchName: branchName + visArtifactId: visArtifactId + epochTags: + key: 1.4658129805029452 + codeSnapshotId: codeSnapshotId + tags: tags + createdBy: createdBy + teamId: teamId + projectId: projectId hash: hash + properties: "{}" cid: cid - updatedAt: 2000-01-23T04:56:07.000+00:00 + hasExternalEpoch: true + isEvaluate: true properties: versions: items: @@ -35551,15 +34287,7 @@ components: EpochData: additionalProperties: true example: - weightsData: - globalStep: 5.962133916683182 - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - teamId: teamId - epoch: 1.4658129805029452 - sessionId: sessionId - cid: cid - status: UNSTARTED + versionId: versionId uploadedModelFilePath: uploadedModelFilePath externalData: metrics: @@ -35567,199 +34295,11 @@ components: type: string value: value epoch: 0.8008281904610115 - sessionId: sessionId - runs: - - weightAssets: - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - evaluateParams: - dataStates: - - training - - training - batchSize: 0.8008281904610115 - evaluatedEpoch: 6.027456183070403 - canContinueEvaluate: true - jobs: - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - description: description - sessionId: sessionId - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - csvBlobPath: csvBlobPath - teamId: teamId - name: name - projectId: projectId - cid: cid - isEvaluate: true - - weightAssets: - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - evaluateParams: - dataStates: - - training - - training - batchSize: 0.8008281904610115 - evaluatedEpoch: 6.027456183070403 - canContinueEvaluate: true - jobs: - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - description: description - sessionId: sessionId - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - csvBlobPath: csvBlobPath - teamId: teamId - name: name - projectId: projectId - cid: cid - isEvaluate: true tags: - tags - tags properties: - sessionId: + versionId: type: string epoch: format: double @@ -35768,35 +34308,20 @@ components: items: type: string type: array - weightsData: - $ref: "#/components/schemas/SessionWeightData" uploadedModelFilePath: type: string - runs: - items: - $ref: "#/components/schemas/SessionRunData" - type: array externalData: $ref: "#/components/schemas/EpochData_externalData" required: - epoch - - runs - - sessionId - tags + - versionId type: object - GetSessionEpochsResponse: + GetVersionEpochsResponse: additionalProperties: true example: epochs: - - weightsData: - globalStep: 5.962133916683182 - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - teamId: teamId - epoch: 1.4658129805029452 - sessionId: sessionId - cid: cid - status: UNSTARTED + - versionId: versionId uploadedModelFilePath: uploadedModelFilePath externalData: metrics: @@ -35804,206 +34329,10 @@ components: type: string value: value epoch: 0.8008281904610115 - sessionId: sessionId - runs: - - weightAssets: - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - evaluateParams: - dataStates: - - training - - training - batchSize: 0.8008281904610115 - evaluatedEpoch: 6.027456183070403 - canContinueEvaluate: true - jobs: - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - description: description - sessionId: sessionId - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - csvBlobPath: csvBlobPath - teamId: teamId - name: name - projectId: projectId - cid: cid - isEvaluate: true - - weightAssets: - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - evaluateParams: - dataStates: - - training - - training - batchSize: 0.8008281904610115 - evaluatedEpoch: 6.027456183070403 - canContinueEvaluate: true - jobs: - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - description: description - sessionId: sessionId - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - csvBlobPath: csvBlobPath - teamId: teamId - name: name - projectId: projectId - cid: cid - isEvaluate: true tags: - tags - tags - - weightsData: - globalStep: 5.962133916683182 - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - teamId: teamId - epoch: 1.4658129805029452 - sessionId: sessionId - cid: cid - status: UNSTARTED + - versionId: versionId uploadedModelFilePath: uploadedModelFilePath externalData: metrics: @@ -36011,194 +34340,6 @@ components: type: string value: value epoch: 0.8008281904610115 - sessionId: sessionId - runs: - - weightAssets: - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - evaluateParams: - dataStates: - - training - - training - batchSize: 0.8008281904610115 - evaluatedEpoch: 6.027456183070403 - canContinueEvaluate: true - jobs: - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - description: description - sessionId: sessionId - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - csvBlobPath: csvBlobPath - teamId: teamId - name: name - projectId: projectId - cid: cid - isEvaluate: true - - weightAssets: - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - - esMetricIndex: esMetricIndex - sessionWeightId: sessionWeightId - evaluateParams: - dataStates: - - training - - training - batchSize: 0.8008281904610115 - evaluatedEpoch: 6.027456183070403 - canContinueEvaluate: true - jobs: - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - - eventsSnapshot: - events: - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - - name: name - progress: - total: 5.962133916683182 - current: 5.637376656633329 - id: id - status: UNSTARTED - snapshotIndex: 2.3021358869347655 - type: TRAINING - params: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 - version: version - createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId - createdBy: createdBy - teamId: teamId - subType: Evaluate - projectId: projectId - cid: cid - status: UNSTARTED - updatedAt: 2000-01-23T04:56:07.000+00:00 - codeSnapshotInfo: - name: name - codeSnapshotId: codeSnapshotId - logsBlobName: logsBlobName - description: description - sessionId: sessionId - createdAt: 2000-01-23T04:56:07.000+00:00 - createdBy: createdBy - csvBlobPath: csvBlobPath - teamId: teamId - name: name - projectId: projectId - cid: cid - isEvaluate: true tags: - tags - tags @@ -36210,23 +34351,23 @@ components: required: - epochs type: object - GetSessionsEpochsRequest: + GetVersionsEpochsRequest: additionalProperties: true example: + versionIds: + - versionIds + - versionIds projectId: projectId - sessionIds: - - sessionIds - - sessionIds properties: projectId: type: string - sessionIds: + versionIds: items: type: string type: array required: - projectId - - sessionIds + - versionIds type: object InitExperimentResponse: additionalProperties: true @@ -37526,6 +35667,10 @@ components: items: type: string type: array + available_latent_spaces: + items: + type: string + type: array required: - metadata - samples @@ -38182,6 +36327,7 @@ components: Visualization: additionalProperties: true example: + inferenceArtifactId: inferenceArtifactId data: data: payload: @@ -38212,10 +36358,11 @@ components: csvBlob: csvBlob visualizationUuid: visualizationUuid jobParms: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 + inferenceArtifactId: inferenceArtifactId + versionId: versionId + monitor: true + batchSize: 5.962133916683182 + projectId: projectId epoch: 0.8008281904610115 type: population_exploration layout: @@ -38241,7 +36388,6 @@ components: "y": 6.027456183070403 jobId: jobId createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId blob: blob projectId: projectId cid: cid @@ -38252,7 +36398,7 @@ components: type: string jobId: type: string - sessionRunId: + inferenceArtifactId: type: string jobParms: $ref: "#/components/schemas/JobParams" @@ -38284,9 +36430,9 @@ components: - csvBlob - data - epoch + - inferenceArtifactId - jobId - projectId - - sessionRunId - type - visualizationUuid type: object @@ -38307,14 +36453,16 @@ components: SlimVisualization: additionalProperties: true example: + inferenceArtifactId: inferenceArtifactId sampleId: 6.027456183070403 csvBlob: csvBlob visualizationUuid: visualizationUuid jobParms: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 + inferenceArtifactId: inferenceArtifactId + versionId: versionId + monitor: true + batchSize: 5.962133916683182 + projectId: projectId epoch: 0.8008281904610115 type: population_exploration layout: @@ -38340,7 +36488,6 @@ components: "y": 6.027456183070403 jobId: jobId createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId blob: blob projectId: projectId cid: cid @@ -38351,7 +36498,7 @@ components: type: string jobId: type: string - sessionRunId: + inferenceArtifactId: type: string jobParms: $ref: "#/components/schemas/JobParams" @@ -38380,24 +36527,26 @@ components: - createdAt - csvBlob - epoch + - inferenceArtifactId - jobId - projectId - - sessionRunId - type - visualizationUuid type: object - GetSessionRunsVisualizationsResponse: + GetVersionsVisualizationsResponse: additionalProperties: true example: slimVisualizations: - - sampleId: 6.027456183070403 + - inferenceArtifactId: inferenceArtifactId + sampleId: 6.027456183070403 csvBlob: csvBlob visualizationUuid: visualizationUuid jobParms: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 + inferenceArtifactId: inferenceArtifactId + versionId: versionId + monitor: true + batchSize: 5.962133916683182 + projectId: projectId epoch: 0.8008281904610115 type: population_exploration layout: @@ -38423,18 +36572,19 @@ components: "y": 6.027456183070403 jobId: jobId createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId blob: blob projectId: projectId cid: cid - - sampleId: 6.027456183070403 + - inferenceArtifactId: inferenceArtifactId + sampleId: 6.027456183070403 csvBlob: csvBlob visualizationUuid: visualizationUuid jobParms: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 + inferenceArtifactId: inferenceArtifactId + versionId: versionId + monitor: true + batchSize: 5.962133916683182 + projectId: projectId epoch: 0.8008281904610115 type: population_exploration layout: @@ -38460,7 +36610,6 @@ components: "y": 6.027456183070403 jobId: jobId createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId blob: blob projectId: projectId cid: cid @@ -38472,15 +36621,15 @@ components: required: - slimVisualizations type: object - GetSessionRunsVisualizationsParams: + GetVersionsVisualizationsParams: additionalProperties: true example: - sessionRunIds: - - sessionRunIds - - sessionRunIds + versionIds: + - versionIds + - versionIds projectId: projectId properties: - sessionRunIds: + versionIds: items: type: string type: array @@ -38488,7 +36637,7 @@ components: type: string required: - projectId - - sessionRunIds + - versionIds type: object GetScatterSampleVisualizationsResponse: additionalProperties: true @@ -38511,21 +36660,16 @@ components: GetScatterSampleVisualizationsParams: additionalProperties: true example: - sessionRunId: sessionRunId - epoch: 0.8008281904610115 + versionId: versionId projectId: projectId properties: - sessionRunId: + versionId: type: string projectId: type: string - epoch: - format: double - type: number required: - - epoch - projectId - - sessionRunId + - versionId type: object GetSampleVisualizationsPathsResponse: additionalProperties: true @@ -38563,14 +36707,16 @@ components: additionalProperties: true example: slimVisualization: + inferenceArtifactId: inferenceArtifactId sampleId: 6.027456183070403 csvBlob: csvBlob visualizationUuid: visualizationUuid jobParms: - batch_size: 6.027456183070403 - epochs: 0.8008281904610115 - early_stop_params: - patience: 1.4658129805029452 + inferenceArtifactId: inferenceArtifactId + versionId: versionId + monitor: true + batchSize: 5.962133916683182 + projectId: projectId epoch: 0.8008281904610115 type: population_exploration layout: @@ -38596,7 +36742,6 @@ components: "y": 6.027456183070403 jobId: jobId createdAt: 2000-01-23T04:56:07.000+00:00 - sessionRunId: sessionRunId blob: blob projectId: projectId cid: cid @@ -38721,8 +36866,7 @@ components: SampleAnalysisParams: additionalProperties: true example: - fromEpoch: 0.8008281904610115 - sessionRunId: sessionRunId + versionId: versionId projectId: projectId algo: focus_layer_cam sampleIdentity: @@ -38730,23 +36874,19 @@ components: state: training hashed_index: hashed_index properties: - sessionRunId: + versionId: type: string projectId: type: string sampleIdentity: $ref: "#/components/schemas/SampleIdentity" - fromEpoch: - format: double - type: number algo: $ref: "#/components/schemas/SampleAnalysisAlgo" required: - algo - - fromEpoch - projectId - sampleIdentity - - sessionRunId + - versionId type: object Partial_PopulationExplorationArtifacts_: description: Make all properties in T optional @@ -38777,7 +36917,7 @@ components: PopulationExplorationParams: additionalProperties: true example: - fromEpoch: 6.027456183070403 + inferenceArtifactId: inferenceArtifactId elementInstance: true reductionAlgorithm: TSNE latentSpaceType: latentSpaceType @@ -38787,12 +36927,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -38806,7 +36941,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -38826,6 +36960,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -38855,7 +36993,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -38863,7 +37000,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -38876,13 +37012,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -38896,7 +37034,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -38916,6 +37053,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -38945,7 +37086,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -38953,7 +37093,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -38966,7 +37105,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -38985,12 +37131,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -39004,7 +37145,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -39024,6 +37164,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -39053,7 +37197,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -39061,7 +37204,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -39074,13 +37216,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -39094,7 +37238,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -39114,6 +37257,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -39143,7 +37290,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -39151,7 +37297,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -39164,7 +37309,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -39181,9 +37333,9 @@ components: operator: between useCustomLatentSpace: true forceExecute: true - sessionRunId: sessionRunId + versionId: versionId digest: digest - numOfSamples: 1.4658129805029452 + numOfSamples: 6.027456183070403 notApplyTimeFilterOnUnlabeledOnly: true balanceBy: - balanceBy @@ -39195,297 +37347,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 - insightType: - severity: 4.145608029883936 - automatic_tests: - - filter: null - metric_name: metric_name - metric_value: 6.84685269835264 - test_name: test_name - operator: equal - - filter: null - metric_name: metric_name - metric_value: 6.84685269835264 - test_name: test_name - operator: equal - under_representation_n_samples: 7.457744773683766 - id_: id_ - es_filters_used_in_analysis: - - null - - null - n_samples: 7.061401241503109 - metrics_info: - - metric_name: metric_name - metric_statistics: - - name: name - value: 1.0246457001441578 - - name: name - value: 1.0246457001441578 - - metric_name: metric_name - metric_statistics: - - name: name - value: 1.0246457001441578 - - name: name - value: 1.0246457001441578 - blob_path: blob_path - mutual_info_elements: - - features: - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - score: 2.027123023002322 - value_in_cluster: 9.301444243932576 - value_outside_cluster: 3.616076749251911 - is_unique: true - - features: - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - score: 2.027123023002322 - value_in_cluster: 9.301444243932576 - value_outside_cluster: 3.616076749251911 - is_unique: true - type: low_performance - auto_generated: true - over_representation_n_samples: 1.1730742509559433 - severity_metrics: - - metric_name: metric_name - value: 7.386281948385884 - normalized_value: 1.2315135367772556 - - metric_name: metric_name - value: 7.386281948385884 - normalized_value: 1.2315135367772556 - over_representation_dataset: null - min_hash: - - 1.4894159098541704 - - 1.4894159098541704 - csv_path: csv_path - parent_id: parent_id - display_filters: - - metric: metric - value: ScatterFilter_value - operator: smaller_than - - metric: metric - value: ScatterFilter_value - operator: smaller_than - under_representation_dataset: training - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 - insightType: - severity: 4.145608029883936 - automatic_tests: - - filter: null - metric_name: metric_name - metric_value: 6.84685269835264 - test_name: test_name - operator: equal - - filter: null - metric_name: metric_name - metric_value: 6.84685269835264 - test_name: test_name - operator: equal - under_representation_n_samples: 7.457744773683766 - id_: id_ - es_filters_used_in_analysis: - - null - - null - n_samples: 7.061401241503109 - metrics_info: - - metric_name: metric_name - metric_statistics: - - name: name - value: 1.0246457001441578 - - name: name - value: 1.0246457001441578 - - metric_name: metric_name - metric_statistics: - - name: name - value: 1.0246457001441578 - - name: name - value: 1.0246457001441578 - blob_path: blob_path - mutual_info_elements: - - features: - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - score: 2.027123023002322 - value_in_cluster: 9.301444243932576 - value_outside_cluster: 3.616076749251911 - is_unique: true - - features: - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - - feature_name: feature_name - is_categorical: true - feature_value: feature_value - direction: up - score: 2.027123023002322 - value_in_cluster: 9.301444243932576 - value_outside_cluster: 3.616076749251911 - is_unique: true - type: low_performance - auto_generated: true - over_representation_n_samples: 1.1730742509559433 - severity_metrics: - - metric_name: metric_name - value: 7.386281948385884 - normalized_value: 1.2315135367772556 - - metric_name: metric_name - value: 7.386281948385884 - normalized_value: 1.2315135367772556 - over_representation_dataset: null - min_hash: - - 1.4894159098541704 - - 1.4894159098541704 - csv_path: csv_path - parent_id: parent_id - display_filters: - - metric: metric - value: ScatterFilter_value - operator: smaller_than - - metric: metric - value: ScatterFilter_value - operator: smaller_than - under_representation_dataset: training - type: insight - value: - lt: null - gte: null - blob_paths: - - blob_paths - - blob_paths - lte: null - eq: null - lst: - - null - - null - gt: 5.637376656633329 - operator: between - reRunAfterFail: true - properties: - sessionRunId: - type: string - projectId: - type: string - batchSize: - format: double - type: number - fromEpoch: - format: double - type: number - filters: - items: - $ref: "#/components/schemas/ESFilter" - type: array - timeFilter: - $ref: "#/components/schemas/ESFilter" - notApplyTimeFilterOnUnlabeledOnly: - type: boolean - digest: - type: string - numOfSamples: - format: double - type: number - balanceBy: - items: - type: string - type: array - shouldFillRemainingWithUnbalanced: - type: boolean - reductionAlgorithm: - $ref: "#/components/schemas/ReductionAlgorithm" - reRunAfterFail: - type: boolean - useCustomLatentSpace: - type: boolean - elementInstance: - type: boolean - forceExecute: - type: boolean - latentSpaceType: - type: string - required: - - balanceBy - - batchSize - - digest - - fromEpoch - - numOfSamples - - projectId - - reductionAlgorithm - - sessionRunId - - shouldFillRemainingWithUnbalanced - type: object - FetchSimilarResponse: - additionalProperties: true - example: - jobId: jobId - readyArtifacts: - clusterPath: clusterPath - status: UNSTARTED - properties: - status: - $ref: "#/components/schemas/JobStatus" - jobId: - type: string - readyArtifacts: - $ref: "#/components/schemas/FetchSimilarResponse_readyArtifacts" - required: - - readyArtifacts - - status - type: object - FetchSimilarRequestParams: - additionalProperties: true - example: - sessionRunId: sessionRunId - limit: 0.8008281904610115 - sampleIds: - - index: 0.8008281904610115 - state: training - hashed_index: hashed_index - - index: 0.8008281904610115 - state: training - hashed_index: hashed_index - digest: digest - epoch: 6.027456183070403 - filters: - - field: field - disable: true - displayData: - insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -39499,7 +37361,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -39519,6 +37380,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -39548,7 +37413,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -39556,7 +37420,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -39569,13 +37432,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -39589,7 +37454,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -39609,6 +37473,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -39638,7 +37506,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -39646,7 +37513,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -39659,7 +37525,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -39674,16 +37547,300 @@ components: - null gt: 5.637376656633329 operator: between + reRunAfterFail: true + properties: + versionId: + type: string + inferenceArtifactId: + type: string + projectId: + type: string + batchSize: + format: double + type: number + filters: + items: + $ref: "#/components/schemas/ESFilter" + type: array + timeFilter: + $ref: "#/components/schemas/ESFilter" + notApplyTimeFilterOnUnlabeledOnly: + type: boolean + digest: + type: string + numOfSamples: + format: double + type: number + balanceBy: + items: + type: string + type: array + shouldFillRemainingWithUnbalanced: + type: boolean + reductionAlgorithm: + $ref: "#/components/schemas/ReductionAlgorithm" + reRunAfterFail: + type: boolean + useCustomLatentSpace: + type: boolean + elementInstance: + type: boolean + forceExecute: + type: boolean + latentSpaceType: + type: string + required: + - balanceBy + - batchSize + - digest + - inferenceArtifactId + - numOfSamples + - projectId + - reductionAlgorithm + - shouldFillRemainingWithUnbalanced + - versionId + type: object + FetchSimilarResponse: + additionalProperties: true + example: + jobId: jobId + readyArtifacts: + clusterPath: clusterPath + status: UNSTARTED + properties: + status: + $ref: "#/components/schemas/JobStatus" + jobId: + type: string + readyArtifacts: + $ref: "#/components/schemas/FetchSimilarResponse_readyArtifacts" + required: + - readyArtifacts + - status + type: object + FetchSimilarRequestParams: + additionalProperties: true + example: + versionId: versionId + limit: 0.8008281904610115 + sampleIds: + - index: 0.8008281904610115 + state: training + hashed_index: hashed_index + - index: 0.8008281904610115 + state: training + hashed_index: hashed_index + digest: digest + filters: - field: field disable: true displayData: insights: - - sessionRun: + - index: 2.3021358869347655 + insightType: + severity: 4.145608029883936 + automatic_tests: + - filter: null + metric_name: metric_name + metric_value: 6.84685269835264 + test_name: test_name + operator: equal + - filter: null + metric_name: metric_name + metric_value: 6.84685269835264 + test_name: test_name + operator: equal + id_: id_ + es_filters_used_in_analysis: + - null + - null + n_samples: 7.061401241503109 + metrics_info: + - metric_name: metric_name + metric_statistics: + - name: name + value: 1.0246457001441578 + - name: name + value: 1.0246457001441578 + - metric_name: metric_name + metric_statistics: + - name: name + value: 1.0246457001441578 + - name: name + value: 1.0246457001441578 + blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics + mutual_info_elements: + - features: + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + score: 2.027123023002322 + value_in_cluster: 9.301444243932576 + value_outside_cluster: 3.616076749251911 + is_unique: true + - features: + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + score: 2.027123023002322 + value_in_cluster: 9.301444243932576 + value_outside_cluster: 3.616076749251911 + is_unique: true + type: low_performance + auto_generated: true + severity_metrics: + - metric_name: metric_name + value: 7.386281948385884 + normalized_value: 1.2315135367772556 + - metric_name: metric_name + value: 7.386281948385884 + normalized_value: 1.2315135367772556 + min_hash: + - 1.4894159098541704 + - 1.4894159098541704 + csv_path: csv_path + parent_id: parent_id + display_filters: + - metric: metric + value: ScatterFilter_value + operator: smaller_than + - metric: metric + value: ScatterFilter_value + operator: smaller_than + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id + - index: 2.3021358869347655 + insightType: + severity: 4.145608029883936 + automatic_tests: + - filter: null + metric_name: metric_name + metric_value: 6.84685269835264 + test_name: test_name + operator: equal + - filter: null + metric_name: metric_name + metric_value: 6.84685269835264 + test_name: test_name + operator: equal + id_: id_ + es_filters_used_in_analysis: + - null + - null + n_samples: 7.061401241503109 + metrics_info: + - metric_name: metric_name + metric_statistics: + - name: name + value: 1.0246457001441578 + - name: name + value: 1.0246457001441578 + - metric_name: metric_name + metric_statistics: + - name: name + value: 1.0246457001441578 + - name: name + value: 1.0246457001441578 + blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics + mutual_info_elements: + - features: + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + score: 2.027123023002322 + value_in_cluster: 9.301444243932576 + value_outside_cluster: 3.616076749251911 + is_unique: true + - features: + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + - feature_name: feature_name + is_categorical: true + feature_value: feature_value + direction: up + score: 2.027123023002322 + value_in_cluster: 9.301444243932576 + value_outside_cluster: 3.616076749251911 + is_unique: true + type: low_performance + auto_generated: true + severity_metrics: + - metric_name: metric_name + value: 7.386281948385884 + normalized_value: 1.2315135367772556 + - metric_name: metric_name + value: 7.386281948385884 + normalized_value: 1.2315135367772556 + min_hash: + - 1.4894159098541704 + - 1.4894159098541704 + csv_path: csv_path + parent_id: parent_id + display_filters: + - metric: metric + value: ScatterFilter_value + operator: smaller_than + - metric: metric + value: ScatterFilter_value + operator: smaller_than + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + type: insight + value: + lt: null + gte: null + blob_paths: + - blob_paths + - blob_paths + lte: null + eq: null + lst: + - null + - null + gt: 5.637376656633329 + operator: between + - field: field + disable: true + displayData: + insights: + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -39697,7 +37854,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -39717,6 +37873,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -39746,7 +37906,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -39754,7 +37913,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -39767,13 +37925,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -39787,7 +37947,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -39807,6 +37966,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -39836,7 +37999,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -39844,7 +38006,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -39857,7 +38018,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -39874,7 +38042,7 @@ components: operator: between projectId: projectId properties: - sessionRunId: + versionId: type: string projectId: type: string @@ -39885,9 +38053,6 @@ components: items: $ref: "#/components/schemas/SampleIdentity" type: array - epoch: - format: double - type: number filters: items: $ref: "#/components/schemas/ESFilter" @@ -39896,19 +38061,17 @@ components: type: string required: - digest - - epoch - limit - projectId - sampleIds - - sessionRunId + - versionId type: object CreateSampleVisualizationsParams: additionalProperties: true example: - sessionRunId: sessionRunId + versionId: versionId digest: digest refresh: true - epoch: 0.8008281904610115 trigger: Manual projectId: projectId sampleIdentities: @@ -39921,11 +38084,8 @@ components: properties: projectId: type: string - sessionRunId: + versionId: type: string - epoch: - format: double - type: number sampleIdentities: items: $ref: "#/components/schemas/SampleIdentity" @@ -39938,23 +38098,22 @@ components: $ref: "#/components/schemas/JobTrigger" required: - digest - - epoch - projectId - - sessionRunId + - versionId type: object SamplesVisualizationsRefreshParams: additionalProperties: true example: - sessionRunId: sessionRunId + versionId: versionId projectId: projectId properties: projectId: type: string - sessionRunId: + versionId: type: string required: - projectId - - sessionRunId + - versionId type: object DeleteSamplesAnalysisParams: additionalProperties: true @@ -39966,14 +38125,14 @@ components: - index: 0.8008281904610115 state: training hashed_index: hashed_index + versionIds: + - versionIds + - versionIds projectId: projectId - sessionRunIds: - - sessionRunIds - - sessionRunIds properties: projectId: type: string - sessionRunIds: + versionIds: items: type: string type: array @@ -39984,7 +38143,7 @@ components: required: - projectId - samplesIdentities - - sessionRunIds + - versionIds type: object SetUserNotificationsAsRead_200_response: example: @@ -40015,11 +38174,6 @@ components: - type: string InsightFilterDisplayData_insights_inner: example: - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId index: 2.3021358869347655 insightType: severity: 4.145608029883936 @@ -40034,7 +38188,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -40054,6 +38207,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -40083,7 +38240,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -40091,7 +38247,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -40104,21 +38259,28 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id properties: index: format: double type: number insightType: $ref: "#/components/schemas/InsightType" - sessionRun: - $ref: "#/components/schemas/FilterSessionRun" + version: + $ref: "#/components/schemas/FilterVersion" required: - index - insightType - - sessionRun + - version type: object - GenerateSyntheticDataParams_sources_inner: + SyntheticDataJobParams_sources_inner: example: metadataKeys: - metadataKeys @@ -40128,12 +38290,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -40147,7 +38304,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -40167,6 +38323,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -40196,7 +38356,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -40204,7 +38363,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -40217,13 +38375,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -40237,7 +38397,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -40257,6 +38416,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -40286,7 +38449,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -40294,7 +38456,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -40307,7 +38468,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null @@ -40326,12 +38494,7 @@ components: disable: true displayData: insights: - - sessionRun: - name: name - epoch: 4.965218492984954 - id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -40345,7 +38508,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -40365,6 +38527,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -40394,7 +38560,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -40402,7 +38567,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -40415,13 +38579,15 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training - - sessionRun: + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: name: name - epoch: 4.965218492984954 id: id - sessionId: sessionId - index: 2.3021358869347655 + - index: 2.3021358869347655 insightType: severity: 4.145608029883936 automatic_tests: @@ -40435,7 +38601,6 @@ components: metric_value: 6.84685269835264 test_name: test_name operator: equal - under_representation_n_samples: 7.457744773683766 id_: id_ es_filters_used_in_analysis: - null @@ -40455,6 +38620,10 @@ components: - name: name value: 1.0246457001441578 blob_path: blob_path + latent_space: latent_space + overfitting_metrics: + - overfitting_metrics + - overfitting_metrics mutual_info_elements: - features: - feature_name: feature_name @@ -40484,7 +38653,6 @@ components: is_unique: true type: low_performance auto_generated: true - over_representation_n_samples: 1.1730742509559433 severity_metrics: - metric_name: metric_name value: 7.386281948385884 @@ -40492,7 +38660,6 @@ components: - metric_name: metric_name value: 7.386281948385884 normalized_value: 1.2315135367772556 - over_representation_dataset: null min_hash: - 1.4894159098541704 - 1.4894159098541704 @@ -40505,7 +38672,14 @@ components: - metric: metric value: ScatterFilter_value operator: smaller_than - under_representation_dataset: training + aggressor_fixing: + csv_path: csv_path + num_of_samples_to_label: 7.457744773683766 + num_of_samples_to_acquire: 1.1730742509559433 + is_train_aggressor: true + version: + name: name + id: id type: insight value: lt: null diff --git a/pkg/tensorleapapi/api_default.go b/pkg/tensorleapapi/api_default.go index 5f4716190..f013eed3f 100644 --- a/pkg/tensorleapapi/api_default.go +++ b/pkg/tensorleapapi/api_default.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -284,7 +284,7 @@ func (a *DefaultAPIService) AddExportModelJobExecute(r ApiAddExportModelJobReque return localVarReturnValue, nil, &GenericOpenAPIError{error: err.Error()} } - localVarPath := localBasePath + "/exportedsessionruns/addExportModelJob" + localVarPath := localBasePath + "/exportedmodels/addExportModelJob" localVarHeaderParams := make(map[string]string) localVarQueryParams := url.Values{} @@ -2290,200 +2290,6 @@ func (a *DefaultAPIService) DeleteSampleAnalysisExecute(r ApiDeleteSampleAnalysi return localVarHTTPResponse, nil } -type ApiDeleteSessionRequest struct { - ctx context.Context - ApiService *DefaultAPIService - deleteSessionParams *DeleteSessionParams -} - -func (r ApiDeleteSessionRequest) DeleteSessionParams(deleteSessionParams DeleteSessionParams) ApiDeleteSessionRequest { - r.deleteSessionParams = &deleteSessionParams - return r -} - -func (r ApiDeleteSessionRequest) Execute() (*http.Response, error) { - return r.ApiService.DeleteSessionExecute(r) -} - -/* -DeleteSession Method for DeleteSession - - @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - @return ApiDeleteSessionRequest -*/ -func (a *DefaultAPIService) DeleteSession(ctx context.Context) ApiDeleteSessionRequest { - return ApiDeleteSessionRequest{ - ApiService: a, - ctx: ctx, - } -} - -// Execute executes the request -func (a *DefaultAPIService) DeleteSessionExecute(r ApiDeleteSessionRequest) (*http.Response, error) { - var ( - localVarHTTPMethod = http.MethodPost - localVarPostBody interface{} - formFiles []formFile - ) - - localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx, "DefaultAPIService.DeleteSession") - if err != nil { - return nil, &GenericOpenAPIError{error: err.Error()} - } - - localVarPath := localBasePath + "/sessions/deleteSession" - - localVarHeaderParams := make(map[string]string) - localVarQueryParams := url.Values{} - localVarFormParams := url.Values{} - if r.deleteSessionParams == nil { - return nil, reportError("deleteSessionParams is required and must be specified") - } - - // to determine the Content-Type header - localVarHTTPContentTypes := []string{"application/json"} - - // set Content-Type header - localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes) - if localVarHTTPContentType != "" { - localVarHeaderParams["Content-Type"] = localVarHTTPContentType - } - - // to determine the Accept header - localVarHTTPHeaderAccepts := []string{} - - // set Accept header - localVarHTTPHeaderAccept := selectHeaderAccept(localVarHTTPHeaderAccepts) - if localVarHTTPHeaderAccept != "" { - localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept - } - // body params - localVarPostBody = r.deleteSessionParams - req, err := a.client.prepareRequest(r.ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, formFiles) - if err != nil { - return nil, err - } - - localVarHTTPResponse, err := a.client.callAPI(req) - if err != nil || localVarHTTPResponse == nil { - return localVarHTTPResponse, err - } - - localVarBody, err := io.ReadAll(localVarHTTPResponse.Body) - localVarHTTPResponse.Body.Close() - localVarHTTPResponse.Body = io.NopCloser(bytes.NewBuffer(localVarBody)) - if err != nil { - return localVarHTTPResponse, err - } - - if localVarHTTPResponse.StatusCode >= 300 { - newErr := &GenericOpenAPIError{ - body: localVarBody, - error: localVarHTTPResponse.Status, - } - return localVarHTTPResponse, newErr - } - - return localVarHTTPResponse, nil -} - -type ApiDeleteSessionRunRequest struct { - ctx context.Context - ApiService *DefaultAPIService - deleteSessionRunParams *DeleteSessionRunParams -} - -func (r ApiDeleteSessionRunRequest) DeleteSessionRunParams(deleteSessionRunParams DeleteSessionRunParams) ApiDeleteSessionRunRequest { - r.deleteSessionRunParams = &deleteSessionRunParams - return r -} - -func (r ApiDeleteSessionRunRequest) Execute() (*http.Response, error) { - return r.ApiService.DeleteSessionRunExecute(r) -} - -/* -DeleteSessionRun Method for DeleteSessionRun - - @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - @return ApiDeleteSessionRunRequest -*/ -func (a *DefaultAPIService) DeleteSessionRun(ctx context.Context) ApiDeleteSessionRunRequest { - return ApiDeleteSessionRunRequest{ - ApiService: a, - ctx: ctx, - } -} - -// Execute executes the request -func (a *DefaultAPIService) DeleteSessionRunExecute(r ApiDeleteSessionRunRequest) (*http.Response, error) { - var ( - localVarHTTPMethod = http.MethodPost - localVarPostBody interface{} - formFiles []formFile - ) - - localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx, "DefaultAPIService.DeleteSessionRun") - if err != nil { - return nil, &GenericOpenAPIError{error: err.Error()} - } - - localVarPath := localBasePath + "/sessions/deleteSessionRun" - - localVarHeaderParams := make(map[string]string) - localVarQueryParams := url.Values{} - localVarFormParams := url.Values{} - if r.deleteSessionRunParams == nil { - return nil, reportError("deleteSessionRunParams is required and must be specified") - } - - // to determine the Content-Type header - localVarHTTPContentTypes := []string{"application/json"} - - // set Content-Type header - localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes) - if localVarHTTPContentType != "" { - localVarHeaderParams["Content-Type"] = localVarHTTPContentType - } - - // to determine the Accept header - localVarHTTPHeaderAccepts := []string{} - - // set Accept header - localVarHTTPHeaderAccept := selectHeaderAccept(localVarHTTPHeaderAccepts) - if localVarHTTPHeaderAccept != "" { - localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept - } - // body params - localVarPostBody = r.deleteSessionRunParams - req, err := a.client.prepareRequest(r.ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, formFiles) - if err != nil { - return nil, err - } - - localVarHTTPResponse, err := a.client.callAPI(req) - if err != nil || localVarHTTPResponse == nil { - return localVarHTTPResponse, err - } - - localVarBody, err := io.ReadAll(localVarHTTPResponse.Body) - localVarHTTPResponse.Body.Close() - localVarHTTPResponse.Body = io.NopCloser(bytes.NewBuffer(localVarBody)) - if err != nil { - return localVarHTTPResponse, err - } - - if localVarHTTPResponse.StatusCode >= 300 { - newErr := &GenericOpenAPIError{ - body: localVarBody, - error: localVarHTTPResponse.Status, - } - return localVarHTTPResponse, newErr - } - - return localVarHTTPResponse, nil -} - type ApiDeleteSessionTestRequest struct { ctx context.Context ApiService *DefaultAPIService @@ -4916,6 +4722,115 @@ func (a *DefaultAPIService) GetCodeSnapshotUploadUrlExecute(r ApiGetCodeSnapshot return localVarReturnValue, localVarHTTPResponse, nil } +type ApiGetCollectionDisplayDataRequest struct { + ctx context.Context + ApiService *DefaultAPIService + getCollectionDisplayDataParams *GetCollectionDisplayDataParams +} + +func (r ApiGetCollectionDisplayDataRequest) GetCollectionDisplayDataParams(getCollectionDisplayDataParams GetCollectionDisplayDataParams) ApiGetCollectionDisplayDataRequest { + r.getCollectionDisplayDataParams = &getCollectionDisplayDataParams + return r +} + +func (r ApiGetCollectionDisplayDataRequest) Execute() (*GetCollectionDisplayDataResponse, *http.Response, error) { + return r.ApiService.GetCollectionDisplayDataExecute(r) +} + +/* +GetCollectionDisplayData Method for GetCollectionDisplayData + + @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + @return ApiGetCollectionDisplayDataRequest +*/ +func (a *DefaultAPIService) GetCollectionDisplayData(ctx context.Context) ApiGetCollectionDisplayDataRequest { + return ApiGetCollectionDisplayDataRequest{ + ApiService: a, + ctx: ctx, + } +} + +// Execute executes the request +// +// @return GetCollectionDisplayDataResponse +func (a *DefaultAPIService) GetCollectionDisplayDataExecute(r ApiGetCollectionDisplayDataRequest) (*GetCollectionDisplayDataResponse, *http.Response, error) { + var ( + localVarHTTPMethod = http.MethodPost + localVarPostBody interface{} + formFiles []formFile + localVarReturnValue *GetCollectionDisplayDataResponse + ) + + localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx, "DefaultAPIService.GetCollectionDisplayData") + if err != nil { + return localVarReturnValue, nil, &GenericOpenAPIError{error: err.Error()} + } + + localVarPath := localBasePath + "/sample-collection/getCollectionDisplayData" + + localVarHeaderParams := make(map[string]string) + localVarQueryParams := url.Values{} + localVarFormParams := url.Values{} + if r.getCollectionDisplayDataParams == nil { + return localVarReturnValue, nil, reportError("getCollectionDisplayDataParams is required and must be specified") + } + + // to determine the Content-Type header + localVarHTTPContentTypes := []string{"application/json"} + + // set Content-Type header + localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes) + if localVarHTTPContentType != "" { + localVarHeaderParams["Content-Type"] = localVarHTTPContentType + } + + // to determine the Accept header + localVarHTTPHeaderAccepts := []string{"application/json"} + + // set Accept header + localVarHTTPHeaderAccept := selectHeaderAccept(localVarHTTPHeaderAccepts) + if localVarHTTPHeaderAccept != "" { + localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept + } + // body params + localVarPostBody = r.getCollectionDisplayDataParams + req, err := a.client.prepareRequest(r.ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, formFiles) + if err != nil { + return localVarReturnValue, nil, err + } + + localVarHTTPResponse, err := a.client.callAPI(req) + if err != nil || localVarHTTPResponse == nil { + return localVarReturnValue, localVarHTTPResponse, err + } + + localVarBody, err := io.ReadAll(localVarHTTPResponse.Body) + localVarHTTPResponse.Body.Close() + localVarHTTPResponse.Body = io.NopCloser(bytes.NewBuffer(localVarBody)) + if err != nil { + return localVarReturnValue, localVarHTTPResponse, err + } + + if localVarHTTPResponse.StatusCode >= 300 { + newErr := &GenericOpenAPIError{ + body: localVarBody, + error: localVarHTTPResponse.Status, + } + return localVarReturnValue, localVarHTTPResponse, newErr + } + + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) + if err != nil { + newErr := &GenericOpenAPIError{ + body: localVarBody, + error: err.Error(), + } + return localVarReturnValue, localVarHTTPResponse, newErr + } + + return localVarReturnValue, localVarHTTPResponse, nil +} + type ApiGetConfusionMatrixLabelsRequest struct { ctx context.Context ApiService *DefaultAPIService @@ -6093,29 +6008,29 @@ func (a *DefaultAPIService) GetEnvironmentInfoExecute(r ApiGetEnvironmentInfoReq return localVarReturnValue, localVarHTTPResponse, nil } -type ApiGetExportedSessionJobsRequest struct { - ctx context.Context - ApiService *DefaultAPIService - getExportedSessionRunJobsParams *GetExportedSessionRunJobsParams -} +type ApiGetExportedModelJobsRequest struct { + ctx context.Context + ApiService *DefaultAPIService + getExportedModelJobsParams *GetExportedModelJobsParams +} -func (r ApiGetExportedSessionJobsRequest) GetExportedSessionRunJobsParams(getExportedSessionRunJobsParams GetExportedSessionRunJobsParams) ApiGetExportedSessionJobsRequest { - r.getExportedSessionRunJobsParams = &getExportedSessionRunJobsParams +func (r ApiGetExportedModelJobsRequest) GetExportedModelJobsParams(getExportedModelJobsParams GetExportedModelJobsParams) ApiGetExportedModelJobsRequest { + r.getExportedModelJobsParams = &getExportedModelJobsParams return r } -func (r ApiGetExportedSessionJobsRequest) Execute() (*GetExportedSessionRunJobsResponse, *http.Response, error) { - return r.ApiService.GetExportedSessionJobsExecute(r) +func (r ApiGetExportedModelJobsRequest) Execute() (*GetExportedModelJobsResponse, *http.Response, error) { + return r.ApiService.GetExportedModelJobsExecute(r) } /* -GetExportedSessionJobs Method for GetExportedSessionJobs +GetExportedModelJobs Method for GetExportedModelJobs @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - @return ApiGetExportedSessionJobsRequest + @return ApiGetExportedModelJobsRequest */ -func (a *DefaultAPIService) GetExportedSessionJobs(ctx context.Context) ApiGetExportedSessionJobsRequest { - return ApiGetExportedSessionJobsRequest{ +func (a *DefaultAPIService) GetExportedModelJobs(ctx context.Context) ApiGetExportedModelJobsRequest { + return ApiGetExportedModelJobsRequest{ ApiService: a, ctx: ctx, } @@ -6123,27 +6038,27 @@ func (a *DefaultAPIService) GetExportedSessionJobs(ctx context.Context) ApiGetEx // Execute executes the request // -// @return GetExportedSessionRunJobsResponse -func (a *DefaultAPIService) GetExportedSessionJobsExecute(r ApiGetExportedSessionJobsRequest) (*GetExportedSessionRunJobsResponse, *http.Response, error) { +// @return GetExportedModelJobsResponse +func (a *DefaultAPIService) GetExportedModelJobsExecute(r ApiGetExportedModelJobsRequest) (*GetExportedModelJobsResponse, *http.Response, error) { var ( localVarHTTPMethod = http.MethodPost localVarPostBody interface{} formFiles []formFile - localVarReturnValue *GetExportedSessionRunJobsResponse + localVarReturnValue *GetExportedModelJobsResponse ) - localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx, "DefaultAPIService.GetExportedSessionJobs") + localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx, "DefaultAPIService.GetExportedModelJobs") if err != nil { return localVarReturnValue, nil, &GenericOpenAPIError{error: err.Error()} } - localVarPath := localBasePath + "/exportedsessionruns/getExportedSessionJobs" + localVarPath := localBasePath + "/exportedmodels/getExportedModelJobs" localVarHeaderParams := make(map[string]string) localVarQueryParams := url.Values{} localVarFormParams := url.Values{} - if r.getExportedSessionRunJobsParams == nil { - return localVarReturnValue, nil, reportError("getExportedSessionRunJobsParams is required and must be specified") + if r.getExportedModelJobsParams == nil { + return localVarReturnValue, nil, reportError("getExportedModelJobsParams is required and must be specified") } // to determine the Content-Type header @@ -6164,7 +6079,7 @@ func (a *DefaultAPIService) GetExportedSessionJobsExecute(r ApiGetExportedSessio localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } // body params - localVarPostBody = r.getExportedSessionRunJobsParams + localVarPostBody = r.getExportedModelJobsParams req, err := a.client.prepareRequest(r.ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, formFiles) if err != nil { return localVarReturnValue, nil, err @@ -8654,115 +8569,6 @@ func (a *DefaultAPIService) GetRecallScoreExecute(r ApiGetRecallScoreRequest) (* return localVarReturnValue, localVarHTTPResponse, nil } -type ApiGetRecentTeamSessionsRequest struct { - ctx context.Context - ApiService *DefaultAPIService - recentTeamSessionsRequestParams *RecentTeamSessionsRequestParams -} - -func (r ApiGetRecentTeamSessionsRequest) RecentTeamSessionsRequestParams(recentTeamSessionsRequestParams RecentTeamSessionsRequestParams) ApiGetRecentTeamSessionsRequest { - r.recentTeamSessionsRequestParams = &recentTeamSessionsRequestParams - return r -} - -func (r ApiGetRecentTeamSessionsRequest) Execute() (*RecentSessionsResponse, *http.Response, error) { - return r.ApiService.GetRecentTeamSessionsExecute(r) -} - -/* -GetRecentTeamSessions Method for GetRecentTeamSessions - - @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - @return ApiGetRecentTeamSessionsRequest -*/ -func (a *DefaultAPIService) GetRecentTeamSessions(ctx context.Context) ApiGetRecentTeamSessionsRequest { - return ApiGetRecentTeamSessionsRequest{ - ApiService: a, - ctx: ctx, - } -} - -// Execute executes the request -// -// @return RecentSessionsResponse -func (a *DefaultAPIService) GetRecentTeamSessionsExecute(r ApiGetRecentTeamSessionsRequest) (*RecentSessionsResponse, *http.Response, error) { - var ( - localVarHTTPMethod = http.MethodPost - localVarPostBody interface{} - formFiles []formFile - localVarReturnValue *RecentSessionsResponse - ) - - localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx, "DefaultAPIService.GetRecentTeamSessions") - if err != nil { - return localVarReturnValue, nil, &GenericOpenAPIError{error: err.Error()} - } - - localVarPath := localBasePath + "/sessions/getRecentTeamSessions" - - localVarHeaderParams := make(map[string]string) - localVarQueryParams := url.Values{} - localVarFormParams := url.Values{} - if r.recentTeamSessionsRequestParams == nil { - return localVarReturnValue, nil, reportError("recentTeamSessionsRequestParams is required and must be specified") - } - - // to determine the Content-Type header - localVarHTTPContentTypes := []string{"application/json"} - - // set Content-Type header - localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes) - if localVarHTTPContentType != "" { - localVarHeaderParams["Content-Type"] = localVarHTTPContentType - } - - // to determine the Accept header - localVarHTTPHeaderAccepts := []string{"application/json"} - - // set Accept header - localVarHTTPHeaderAccept := selectHeaderAccept(localVarHTTPHeaderAccepts) - if localVarHTTPHeaderAccept != "" { - localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept - } - // body params - localVarPostBody = r.recentTeamSessionsRequestParams - req, err := a.client.prepareRequest(r.ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, formFiles) - if err != nil { - return localVarReturnValue, nil, err - } - - localVarHTTPResponse, err := a.client.callAPI(req) - if err != nil || localVarHTTPResponse == nil { - return localVarReturnValue, localVarHTTPResponse, err - } - - localVarBody, err := io.ReadAll(localVarHTTPResponse.Body) - localVarHTTPResponse.Body.Close() - localVarHTTPResponse.Body = io.NopCloser(bytes.NewBuffer(localVarBody)) - if err != nil { - return localVarReturnValue, localVarHTTPResponse, err - } - - if localVarHTTPResponse.StatusCode >= 300 { - newErr := &GenericOpenAPIError{ - body: localVarBody, - error: localVarHTTPResponse.Status, - } - return localVarReturnValue, localVarHTTPResponse, newErr - } - - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) - if err != nil { - newErr := &GenericOpenAPIError{ - body: localVarBody, - error: err.Error(), - } - return localVarReturnValue, localVarHTTPResponse, newErr - } - - return localVarReturnValue, localVarHTTPResponse, nil -} - type ApiGetRocRequest struct { ctx context.Context ApiService *DefaultAPIService @@ -9406,29 +9212,29 @@ func (a *DefaultAPIService) GetSecretManagerListExecute(r ApiGetSecretManagerLis return localVarReturnValue, localVarHTTPResponse, nil } -type ApiGetSessionRunsEvaluateRequest struct { +type ApiGetSessionTestResultRequest struct { ctx context.Context ApiService *DefaultAPIService - getSessionRunsEvaluateParams *GetSessionRunsEvaluateParams + getSessionTestResultsRequest *GetSessionTestResultsRequest } -func (r ApiGetSessionRunsEvaluateRequest) GetSessionRunsEvaluateParams(getSessionRunsEvaluateParams GetSessionRunsEvaluateParams) ApiGetSessionRunsEvaluateRequest { - r.getSessionRunsEvaluateParams = &getSessionRunsEvaluateParams +func (r ApiGetSessionTestResultRequest) GetSessionTestResultsRequest(getSessionTestResultsRequest GetSessionTestResultsRequest) ApiGetSessionTestResultRequest { + r.getSessionTestResultsRequest = &getSessionTestResultsRequest return r } -func (r ApiGetSessionRunsEvaluateRequest) Execute() (*GetSessionRunsEvaluateResponse, *http.Response, error) { - return r.ApiService.GetSessionRunsEvaluateExecute(r) +func (r ApiGetSessionTestResultRequest) Execute() ([]AllSessionsTestResults, *http.Response, error) { + return r.ApiService.GetSessionTestResultExecute(r) } /* -GetSessionRunsEvaluate Method for GetSessionRunsEvaluate +GetSessionTestResult Method for GetSessionTestResult @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - @return ApiGetSessionRunsEvaluateRequest + @return ApiGetSessionTestResultRequest */ -func (a *DefaultAPIService) GetSessionRunsEvaluate(ctx context.Context) ApiGetSessionRunsEvaluateRequest { - return ApiGetSessionRunsEvaluateRequest{ +func (a *DefaultAPIService) GetSessionTestResult(ctx context.Context) ApiGetSessionTestResultRequest { + return ApiGetSessionTestResultRequest{ ApiService: a, ctx: ctx, } @@ -9436,27 +9242,27 @@ func (a *DefaultAPIService) GetSessionRunsEvaluate(ctx context.Context) ApiGetSe // Execute executes the request // -// @return GetSessionRunsEvaluateResponse -func (a *DefaultAPIService) GetSessionRunsEvaluateExecute(r ApiGetSessionRunsEvaluateRequest) (*GetSessionRunsEvaluateResponse, *http.Response, error) { +// @return []AllSessionsTestResults +func (a *DefaultAPIService) GetSessionTestResultExecute(r ApiGetSessionTestResultRequest) ([]AllSessionsTestResults, *http.Response, error) { var ( localVarHTTPMethod = http.MethodPost localVarPostBody interface{} formFiles []formFile - localVarReturnValue *GetSessionRunsEvaluateResponse + localVarReturnValue []AllSessionsTestResults ) - localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx, "DefaultAPIService.GetSessionRunsEvaluate") + localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx, "DefaultAPIService.GetSessionTestResult") if err != nil { return localVarReturnValue, nil, &GenericOpenAPIError{error: err.Error()} } - localVarPath := localBasePath + "/sessions/getSessionRunsEvaluate" + localVarPath := localBasePath + "/sessions-tests/getSessionTestResult" localVarHeaderParams := make(map[string]string) localVarQueryParams := url.Values{} localVarFormParams := url.Values{} - if r.getSessionRunsEvaluateParams == nil { - return localVarReturnValue, nil, reportError("getSessionRunsEvaluateParams is required and must be specified") + if r.getSessionTestResultsRequest == nil { + return localVarReturnValue, nil, reportError("getSessionTestResultsRequest is required and must be specified") } // to determine the Content-Type header @@ -9477,7 +9283,7 @@ func (a *DefaultAPIService) GetSessionRunsEvaluateExecute(r ApiGetSessionRunsEva localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } // body params - localVarPostBody = r.getSessionRunsEvaluateParams + localVarPostBody = r.getSessionTestResultsRequest req, err := a.client.prepareRequest(r.ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, formFiles) if err != nil { return localVarReturnValue, nil, err @@ -9515,29 +9321,29 @@ func (a *DefaultAPIService) GetSessionRunsEvaluateExecute(r ApiGetSessionRunsEva return localVarReturnValue, localVarHTTPResponse, nil } -type ApiGetSessionRunsVisualizationsRequest struct { - ctx context.Context - ApiService *DefaultAPIService - getSessionRunsVisualizationsParams *GetSessionRunsVisualizationsParams +type ApiGetSignedUrlRequest struct { + ctx context.Context + ApiService *DefaultAPIService + getSignedUrlParams *GetSignedUrlParams } -func (r ApiGetSessionRunsVisualizationsRequest) GetSessionRunsVisualizationsParams(getSessionRunsVisualizationsParams GetSessionRunsVisualizationsParams) ApiGetSessionRunsVisualizationsRequest { - r.getSessionRunsVisualizationsParams = &getSessionRunsVisualizationsParams +func (r ApiGetSignedUrlRequest) GetSignedUrlParams(getSignedUrlParams GetSignedUrlParams) ApiGetSignedUrlRequest { + r.getSignedUrlParams = &getSignedUrlParams return r } -func (r ApiGetSessionRunsVisualizationsRequest) Execute() (*GetSessionRunsVisualizationsResponse, *http.Response, error) { - return r.ApiService.GetSessionRunsVisualizationsExecute(r) +func (r ApiGetSignedUrlRequest) Execute() (*ExternalImportModelStorage, *http.Response, error) { + return r.ApiService.GetSignedUrlExecute(r) } /* -GetSessionRunsVisualizations Method for GetSessionRunsVisualizations +GetSignedUrl Method for GetSignedUrl @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - @return ApiGetSessionRunsVisualizationsRequest + @return ApiGetSignedUrlRequest */ -func (a *DefaultAPIService) GetSessionRunsVisualizations(ctx context.Context) ApiGetSessionRunsVisualizationsRequest { - return ApiGetSessionRunsVisualizationsRequest{ +func (a *DefaultAPIService) GetSignedUrl(ctx context.Context) ApiGetSignedUrlRequest { + return ApiGetSignedUrlRequest{ ApiService: a, ctx: ctx, } @@ -9545,27 +9351,27 @@ func (a *DefaultAPIService) GetSessionRunsVisualizations(ctx context.Context) Ap // Execute executes the request // -// @return GetSessionRunsVisualizationsResponse -func (a *DefaultAPIService) GetSessionRunsVisualizationsExecute(r ApiGetSessionRunsVisualizationsRequest) (*GetSessionRunsVisualizationsResponse, *http.Response, error) { +// @return ExternalImportModelStorage +func (a *DefaultAPIService) GetSignedUrlExecute(r ApiGetSignedUrlRequest) (*ExternalImportModelStorage, *http.Response, error) { var ( localVarHTTPMethod = http.MethodPost localVarPostBody interface{} formFiles []formFile - localVarReturnValue *GetSessionRunsVisualizationsResponse + localVarReturnValue *ExternalImportModelStorage ) - localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx, "DefaultAPIService.GetSessionRunsVisualizations") + localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx, "DefaultAPIService.GetSignedUrl") if err != nil { return localVarReturnValue, nil, &GenericOpenAPIError{error: err.Error()} } - localVarPath := localBasePath + "/visualizations/getSessionRunsVisualizations" + localVarPath := localBasePath + "/versions/getSignedUrl" localVarHeaderParams := make(map[string]string) localVarQueryParams := url.Values{} localVarFormParams := url.Values{} - if r.getSessionRunsVisualizationsParams == nil { - return localVarReturnValue, nil, reportError("getSessionRunsVisualizationsParams is required and must be specified") + if r.getSignedUrlParams == nil { + return localVarReturnValue, nil, reportError("getSignedUrlParams is required and must be specified") } // to determine the Content-Type header @@ -9586,7 +9392,7 @@ func (a *DefaultAPIService) GetSessionRunsVisualizationsExecute(r ApiGetSessionR localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } // body params - localVarPostBody = r.getSessionRunsVisualizationsParams + localVarPostBody = r.getSignedUrlParams req, err := a.client.prepareRequest(r.ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, formFiles) if err != nil { return localVarReturnValue, nil, err @@ -9624,29 +9430,29 @@ func (a *DefaultAPIService) GetSessionRunsVisualizationsExecute(r ApiGetSessionR return localVarReturnValue, localVarHTTPResponse, nil } -type ApiGetSessionTestResultRequest struct { - ctx context.Context - ApiService *DefaultAPIService - getSessionTestResultsRequest *GetSessionTestResultsRequest +type ApiGetSingleIssueRequest struct { + ctx context.Context + ApiService *DefaultAPIService + getSingleIssueParams *GetSingleIssueParams } -func (r ApiGetSessionTestResultRequest) GetSessionTestResultsRequest(getSessionTestResultsRequest GetSessionTestResultsRequest) ApiGetSessionTestResultRequest { - r.getSessionTestResultsRequest = &getSessionTestResultsRequest +func (r ApiGetSingleIssueRequest) GetSingleIssueParams(getSingleIssueParams GetSingleIssueParams) ApiGetSingleIssueRequest { + r.getSingleIssueParams = &getSingleIssueParams return r } -func (r ApiGetSessionTestResultRequest) Execute() ([]AllSessionsTestResults, *http.Response, error) { - return r.ApiService.GetSessionTestResultExecute(r) +func (r ApiGetSingleIssueRequest) Execute() (*Issue, *http.Response, error) { + return r.ApiService.GetSingleIssueExecute(r) } /* -GetSessionTestResult Method for GetSessionTestResult +GetSingleIssue Method for GetSingleIssue @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - @return ApiGetSessionTestResultRequest + @return ApiGetSingleIssueRequest */ -func (a *DefaultAPIService) GetSessionTestResult(ctx context.Context) ApiGetSessionTestResultRequest { - return ApiGetSessionTestResultRequest{ +func (a *DefaultAPIService) GetSingleIssue(ctx context.Context) ApiGetSingleIssueRequest { + return ApiGetSingleIssueRequest{ ApiService: a, ctx: ctx, } @@ -9654,27 +9460,27 @@ func (a *DefaultAPIService) GetSessionTestResult(ctx context.Context) ApiGetSess // Execute executes the request // -// @return []AllSessionsTestResults -func (a *DefaultAPIService) GetSessionTestResultExecute(r ApiGetSessionTestResultRequest) ([]AllSessionsTestResults, *http.Response, error) { +// @return Issue +func (a *DefaultAPIService) GetSingleIssueExecute(r ApiGetSingleIssueRequest) (*Issue, *http.Response, error) { var ( localVarHTTPMethod = http.MethodPost localVarPostBody interface{} formFiles []formFile - localVarReturnValue []AllSessionsTestResults + localVarReturnValue *Issue ) - localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx, "DefaultAPIService.GetSessionTestResult") + localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx, "DefaultAPIService.GetSingleIssue") if err != nil { return localVarReturnValue, nil, &GenericOpenAPIError{error: err.Error()} } - localVarPath := localBasePath + "/sessions-tests/getSessionTestResult" + localVarPath := localBasePath + "/issues/getSingleIssue" localVarHeaderParams := make(map[string]string) localVarQueryParams := url.Values{} localVarFormParams := url.Values{} - if r.getSessionTestResultsRequest == nil { - return localVarReturnValue, nil, reportError("getSessionTestResultsRequest is required and must be specified") + if r.getSingleIssueParams == nil { + return localVarReturnValue, nil, reportError("getSingleIssueParams is required and must be specified") } // to determine the Content-Type header @@ -9695,7 +9501,7 @@ func (a *DefaultAPIService) GetSessionTestResultExecute(r ApiGetSessionTestResul localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } // body params - localVarPostBody = r.getSessionTestResultsRequest + localVarPostBody = r.getSingleIssueParams req, err := a.client.prepareRequest(r.ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, formFiles) if err != nil { return localVarReturnValue, nil, err @@ -9733,29 +9539,29 @@ func (a *DefaultAPIService) GetSessionTestResultExecute(r ApiGetSessionTestResul return localVarReturnValue, localVarHTTPResponse, nil } -type ApiGetSessionsByHashRequest struct { - ctx context.Context - ApiService *DefaultAPIService - sessionHashRequestParams *SessionHashRequestParams +type ApiGetSingleSessionTestRequest struct { + ctx context.Context + ApiService *DefaultAPIService + getSingleSessionTestRequest *GetSingleSessionTestRequest } -func (r ApiGetSessionsByHashRequest) SessionHashRequestParams(sessionHashRequestParams SessionHashRequestParams) ApiGetSessionsByHashRequest { - r.sessionHashRequestParams = &sessionHashRequestParams +func (r ApiGetSingleSessionTestRequest) GetSingleSessionTestRequest(getSingleSessionTestRequest GetSingleSessionTestRequest) ApiGetSingleSessionTestRequest { + r.getSingleSessionTestRequest = &getSingleSessionTestRequest return r } -func (r ApiGetSessionsByHashRequest) Execute() (*SessionsResponse, *http.Response, error) { - return r.ApiService.GetSessionsByHashExecute(r) +func (r ApiGetSingleSessionTestRequest) Execute() (*SessionTest, *http.Response, error) { + return r.ApiService.GetSingleSessionTestExecute(r) } /* -GetSessionsByHash Method for GetSessionsByHash +GetSingleSessionTest Method for GetSingleSessionTest @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - @return ApiGetSessionsByHashRequest + @return ApiGetSingleSessionTestRequest */ -func (a *DefaultAPIService) GetSessionsByHash(ctx context.Context) ApiGetSessionsByHashRequest { - return ApiGetSessionsByHashRequest{ +func (a *DefaultAPIService) GetSingleSessionTest(ctx context.Context) ApiGetSingleSessionTestRequest { + return ApiGetSingleSessionTestRequest{ ApiService: a, ctx: ctx, } @@ -9763,27 +9569,27 @@ func (a *DefaultAPIService) GetSessionsByHash(ctx context.Context) ApiGetSession // Execute executes the request // -// @return SessionsResponse -func (a *DefaultAPIService) GetSessionsByHashExecute(r ApiGetSessionsByHashRequest) (*SessionsResponse, *http.Response, error) { +// @return SessionTest +func (a *DefaultAPIService) GetSingleSessionTestExecute(r ApiGetSingleSessionTestRequest) (*SessionTest, *http.Response, error) { var ( localVarHTTPMethod = http.MethodPost localVarPostBody interface{} formFiles []formFile - localVarReturnValue *SessionsResponse + localVarReturnValue *SessionTest ) - localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx, "DefaultAPIService.GetSessionsByHash") + localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx, "DefaultAPIService.GetSingleSessionTest") if err != nil { return localVarReturnValue, nil, &GenericOpenAPIError{error: err.Error()} } - localVarPath := localBasePath + "/sessions/getSessionsByHash" + localVarPath := localBasePath + "/sessions-tests/getSingleSessionTest" localVarHeaderParams := make(map[string]string) localVarQueryParams := url.Values{} localVarFormParams := url.Values{} - if r.sessionHashRequestParams == nil { - return localVarReturnValue, nil, reportError("sessionHashRequestParams is required and must be specified") + if r.getSingleSessionTestRequest == nil { + return localVarReturnValue, nil, reportError("getSingleSessionTestRequest is required and must be specified") } // to determine the Content-Type header @@ -9804,7 +9610,7 @@ func (a *DefaultAPIService) GetSessionsByHashExecute(r ApiGetSessionsByHashReque localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } // body params - localVarPostBody = r.sessionHashRequestParams + localVarPostBody = r.getSingleSessionTestRequest req, err := a.client.prepareRequest(r.ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, formFiles) if err != nil { return localVarReturnValue, nil, err @@ -9842,29 +9648,29 @@ func (a *DefaultAPIService) GetSessionsByHashExecute(r ApiGetSessionsByHashReque return localVarReturnValue, localVarHTTPResponse, nil } -type ApiGetSessionsByVersionIdRequest struct { - ctx context.Context - ApiService *DefaultAPIService - sessionVersionIdRequestParams *SessionVersionIdRequestParams +type ApiGetSlimJobsRequest struct { + ctx context.Context + ApiService *DefaultAPIService + getJobsFilterParams *GetJobsFilterParams } -func (r ApiGetSessionsByVersionIdRequest) SessionVersionIdRequestParams(sessionVersionIdRequestParams SessionVersionIdRequestParams) ApiGetSessionsByVersionIdRequest { - r.sessionVersionIdRequestParams = &sessionVersionIdRequestParams +func (r ApiGetSlimJobsRequest) GetJobsFilterParams(getJobsFilterParams GetJobsFilterParams) ApiGetSlimJobsRequest { + r.getJobsFilterParams = &getJobsFilterParams return r } -func (r ApiGetSessionsByVersionIdRequest) Execute() (*SessionsResponse, *http.Response, error) { - return r.ApiService.GetSessionsByVersionIdExecute(r) +func (r ApiGetSlimJobsRequest) Execute() (*GetSlimJobsResponse, *http.Response, error) { + return r.ApiService.GetSlimJobsExecute(r) } /* -GetSessionsByVersionId Method for GetSessionsByVersionId +GetSlimJobs Method for GetSlimJobs @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - @return ApiGetSessionsByVersionIdRequest + @return ApiGetSlimJobsRequest */ -func (a *DefaultAPIService) GetSessionsByVersionId(ctx context.Context) ApiGetSessionsByVersionIdRequest { - return ApiGetSessionsByVersionIdRequest{ +func (a *DefaultAPIService) GetSlimJobs(ctx context.Context) ApiGetSlimJobsRequest { + return ApiGetSlimJobsRequest{ ApiService: a, ctx: ctx, } @@ -9872,27 +9678,27 @@ func (a *DefaultAPIService) GetSessionsByVersionId(ctx context.Context) ApiGetSe // Execute executes the request // -// @return SessionsResponse -func (a *DefaultAPIService) GetSessionsByVersionIdExecute(r ApiGetSessionsByVersionIdRequest) (*SessionsResponse, *http.Response, error) { +// @return GetSlimJobsResponse +func (a *DefaultAPIService) GetSlimJobsExecute(r ApiGetSlimJobsRequest) (*GetSlimJobsResponse, *http.Response, error) { var ( localVarHTTPMethod = http.MethodPost localVarPostBody interface{} formFiles []formFile - localVarReturnValue *SessionsResponse + localVarReturnValue *GetSlimJobsResponse ) - localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx, "DefaultAPIService.GetSessionsByVersionId") + localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx, "DefaultAPIService.GetSlimJobs") if err != nil { return localVarReturnValue, nil, &GenericOpenAPIError{error: err.Error()} } - localVarPath := localBasePath + "/sessions/getSessionsByVersionId" + localVarPath := localBasePath + "/jobs/getSlimJobs" localVarHeaderParams := make(map[string]string) localVarQueryParams := url.Values{} localVarFormParams := url.Values{} - if r.sessionVersionIdRequestParams == nil { - return localVarReturnValue, nil, reportError("sessionVersionIdRequestParams is required and must be specified") + if r.getJobsFilterParams == nil { + return localVarReturnValue, nil, reportError("getJobsFilterParams is required and must be specified") } // to determine the Content-Type header @@ -9913,7 +9719,7 @@ func (a *DefaultAPIService) GetSessionsByVersionIdExecute(r ApiGetSessionsByVers localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } // body params - localVarPostBody = r.sessionVersionIdRequestParams + localVarPostBody = r.getJobsFilterParams req, err := a.client.prepareRequest(r.ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, formFiles) if err != nil { return localVarReturnValue, nil, err @@ -9951,29 +9757,29 @@ func (a *DefaultAPIService) GetSessionsByVersionIdExecute(r ApiGetSessionsByVers return localVarReturnValue, localVarHTTPResponse, nil } -type ApiGetSessionsEpochsRequest struct { - ctx context.Context - ApiService *DefaultAPIService - getSessionsEpochsRequest *GetSessionsEpochsRequest +type ApiGetSlimVisualizationRequest struct { + ctx context.Context + ApiService *DefaultAPIService + getSlimVisualizationParams *GetSlimVisualizationParams } -func (r ApiGetSessionsEpochsRequest) GetSessionsEpochsRequest(getSessionsEpochsRequest GetSessionsEpochsRequest) ApiGetSessionsEpochsRequest { - r.getSessionsEpochsRequest = &getSessionsEpochsRequest +func (r ApiGetSlimVisualizationRequest) GetSlimVisualizationParams(getSlimVisualizationParams GetSlimVisualizationParams) ApiGetSlimVisualizationRequest { + r.getSlimVisualizationParams = &getSlimVisualizationParams return r } -func (r ApiGetSessionsEpochsRequest) Execute() (*GetSessionEpochsResponse, *http.Response, error) { - return r.ApiService.GetSessionsEpochsExecute(r) +func (r ApiGetSlimVisualizationRequest) Execute() (*GetSlimVisualizationResponse, *http.Response, error) { + return r.ApiService.GetSlimVisualizationExecute(r) } /* -GetSessionsEpochs Method for GetSessionsEpochs +GetSlimVisualization Method for GetSlimVisualization @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - @return ApiGetSessionsEpochsRequest + @return ApiGetSlimVisualizationRequest */ -func (a *DefaultAPIService) GetSessionsEpochs(ctx context.Context) ApiGetSessionsEpochsRequest { - return ApiGetSessionsEpochsRequest{ +func (a *DefaultAPIService) GetSlimVisualization(ctx context.Context) ApiGetSlimVisualizationRequest { + return ApiGetSlimVisualizationRequest{ ApiService: a, ctx: ctx, } @@ -9981,27 +9787,27 @@ func (a *DefaultAPIService) GetSessionsEpochs(ctx context.Context) ApiGetSession // Execute executes the request // -// @return GetSessionEpochsResponse -func (a *DefaultAPIService) GetSessionsEpochsExecute(r ApiGetSessionsEpochsRequest) (*GetSessionEpochsResponse, *http.Response, error) { +// @return GetSlimVisualizationResponse +func (a *DefaultAPIService) GetSlimVisualizationExecute(r ApiGetSlimVisualizationRequest) (*GetSlimVisualizationResponse, *http.Response, error) { var ( localVarHTTPMethod = http.MethodPost localVarPostBody interface{} formFiles []formFile - localVarReturnValue *GetSessionEpochsResponse + localVarReturnValue *GetSlimVisualizationResponse ) - localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx, "DefaultAPIService.GetSessionsEpochs") + localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx, "DefaultAPIService.GetSlimVisualization") if err != nil { return localVarReturnValue, nil, &GenericOpenAPIError{error: err.Error()} } - localVarPath := localBasePath + "/versions/getSessionsEpochs" + localVarPath := localBasePath + "/visualizations/getSlimVisualization" localVarHeaderParams := make(map[string]string) localVarQueryParams := url.Values{} localVarFormParams := url.Values{} - if r.getSessionsEpochsRequest == nil { - return localVarReturnValue, nil, reportError("getSessionsEpochsRequest is required and must be specified") + if r.getSlimVisualizationParams == nil { + return localVarReturnValue, nil, reportError("getSlimVisualizationParams is required and must be specified") } // to determine the Content-Type header @@ -10022,7 +9828,7 @@ func (a *DefaultAPIService) GetSessionsEpochsExecute(r ApiGetSessionsEpochsReque localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } // body params - localVarPostBody = r.getSessionsEpochsRequest + localVarPostBody = r.getSlimVisualizationParams req, err := a.client.prepareRequest(r.ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, formFiles) if err != nil { return localVarReturnValue, nil, err @@ -10060,568 +9866,23 @@ func (a *DefaultAPIService) GetSessionsEpochsExecute(r ApiGetSessionsEpochsReque return localVarReturnValue, localVarHTTPResponse, nil } -type ApiGetSignedUrlRequest struct { - ctx context.Context - ApiService *DefaultAPIService - getSignedUrlParams *GetSignedUrlParams +type ApiGetStateRequest struct { + ctx context.Context + ApiService *DefaultAPIService + getStateParams *GetStateParams } -func (r ApiGetSignedUrlRequest) GetSignedUrlParams(getSignedUrlParams GetSignedUrlParams) ApiGetSignedUrlRequest { - r.getSignedUrlParams = &getSignedUrlParams +func (r ApiGetStateRequest) GetStateParams(getStateParams GetStateParams) ApiGetStateRequest { + r.getStateParams = &getStateParams return r } -func (r ApiGetSignedUrlRequest) Execute() (*ExternalImportModelStorage, *http.Response, error) { - return r.ApiService.GetSignedUrlExecute(r) +func (r ApiGetStateRequest) Execute() (*GetStateResponse, *http.Response, error) { + return r.ApiService.GetStateExecute(r) } /* -GetSignedUrl Method for GetSignedUrl - - @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - @return ApiGetSignedUrlRequest -*/ -func (a *DefaultAPIService) GetSignedUrl(ctx context.Context) ApiGetSignedUrlRequest { - return ApiGetSignedUrlRequest{ - ApiService: a, - ctx: ctx, - } -} - -// Execute executes the request -// -// @return ExternalImportModelStorage -func (a *DefaultAPIService) GetSignedUrlExecute(r ApiGetSignedUrlRequest) (*ExternalImportModelStorage, *http.Response, error) { - var ( - localVarHTTPMethod = http.MethodPost - localVarPostBody interface{} - formFiles []formFile - localVarReturnValue *ExternalImportModelStorage - ) - - localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx, "DefaultAPIService.GetSignedUrl") - if err != nil { - return localVarReturnValue, nil, &GenericOpenAPIError{error: err.Error()} - } - - localVarPath := localBasePath + "/versions/getSignedUrl" - - localVarHeaderParams := make(map[string]string) - localVarQueryParams := url.Values{} - localVarFormParams := url.Values{} - if r.getSignedUrlParams == nil { - return localVarReturnValue, nil, reportError("getSignedUrlParams is required and must be specified") - } - - // to determine the Content-Type header - localVarHTTPContentTypes := []string{"application/json"} - - // set Content-Type header - localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes) - if localVarHTTPContentType != "" { - localVarHeaderParams["Content-Type"] = localVarHTTPContentType - } - - // to determine the Accept header - localVarHTTPHeaderAccepts := []string{"application/json"} - - // set Accept header - localVarHTTPHeaderAccept := selectHeaderAccept(localVarHTTPHeaderAccepts) - if localVarHTTPHeaderAccept != "" { - localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept - } - // body params - localVarPostBody = r.getSignedUrlParams - req, err := a.client.prepareRequest(r.ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, formFiles) - if err != nil { - return localVarReturnValue, nil, err - } - - localVarHTTPResponse, err := a.client.callAPI(req) - if err != nil || localVarHTTPResponse == nil { - return localVarReturnValue, localVarHTTPResponse, err - } - - localVarBody, err := io.ReadAll(localVarHTTPResponse.Body) - localVarHTTPResponse.Body.Close() - localVarHTTPResponse.Body = io.NopCloser(bytes.NewBuffer(localVarBody)) - if err != nil { - return localVarReturnValue, localVarHTTPResponse, err - } - - if localVarHTTPResponse.StatusCode >= 300 { - newErr := &GenericOpenAPIError{ - body: localVarBody, - error: localVarHTTPResponse.Status, - } - return localVarReturnValue, localVarHTTPResponse, newErr - } - - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) - if err != nil { - newErr := &GenericOpenAPIError{ - body: localVarBody, - error: err.Error(), - } - return localVarReturnValue, localVarHTTPResponse, newErr - } - - return localVarReturnValue, localVarHTTPResponse, nil -} - -type ApiGetSingleIssueRequest struct { - ctx context.Context - ApiService *DefaultAPIService - getSingleIssueParams *GetSingleIssueParams -} - -func (r ApiGetSingleIssueRequest) GetSingleIssueParams(getSingleIssueParams GetSingleIssueParams) ApiGetSingleIssueRequest { - r.getSingleIssueParams = &getSingleIssueParams - return r -} - -func (r ApiGetSingleIssueRequest) Execute() (*Issue, *http.Response, error) { - return r.ApiService.GetSingleIssueExecute(r) -} - -/* -GetSingleIssue Method for GetSingleIssue - - @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - @return ApiGetSingleIssueRequest -*/ -func (a *DefaultAPIService) GetSingleIssue(ctx context.Context) ApiGetSingleIssueRequest { - return ApiGetSingleIssueRequest{ - ApiService: a, - ctx: ctx, - } -} - -// Execute executes the request -// -// @return Issue -func (a *DefaultAPIService) GetSingleIssueExecute(r ApiGetSingleIssueRequest) (*Issue, *http.Response, error) { - var ( - localVarHTTPMethod = http.MethodPost - localVarPostBody interface{} - formFiles []formFile - localVarReturnValue *Issue - ) - - localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx, "DefaultAPIService.GetSingleIssue") - if err != nil { - return localVarReturnValue, nil, &GenericOpenAPIError{error: err.Error()} - } - - localVarPath := localBasePath + "/issues/getSingleIssue" - - localVarHeaderParams := make(map[string]string) - localVarQueryParams := url.Values{} - localVarFormParams := url.Values{} - if r.getSingleIssueParams == nil { - return localVarReturnValue, nil, reportError("getSingleIssueParams is required and must be specified") - } - - // to determine the Content-Type header - localVarHTTPContentTypes := []string{"application/json"} - - // set Content-Type header - localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes) - if localVarHTTPContentType != "" { - localVarHeaderParams["Content-Type"] = localVarHTTPContentType - } - - // to determine the Accept header - localVarHTTPHeaderAccepts := []string{"application/json"} - - // set Accept header - localVarHTTPHeaderAccept := selectHeaderAccept(localVarHTTPHeaderAccepts) - if localVarHTTPHeaderAccept != "" { - localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept - } - // body params - localVarPostBody = r.getSingleIssueParams - req, err := a.client.prepareRequest(r.ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, formFiles) - if err != nil { - return localVarReturnValue, nil, err - } - - localVarHTTPResponse, err := a.client.callAPI(req) - if err != nil || localVarHTTPResponse == nil { - return localVarReturnValue, localVarHTTPResponse, err - } - - localVarBody, err := io.ReadAll(localVarHTTPResponse.Body) - localVarHTTPResponse.Body.Close() - localVarHTTPResponse.Body = io.NopCloser(bytes.NewBuffer(localVarBody)) - if err != nil { - return localVarReturnValue, localVarHTTPResponse, err - } - - if localVarHTTPResponse.StatusCode >= 300 { - newErr := &GenericOpenAPIError{ - body: localVarBody, - error: localVarHTTPResponse.Status, - } - return localVarReturnValue, localVarHTTPResponse, newErr - } - - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) - if err != nil { - newErr := &GenericOpenAPIError{ - body: localVarBody, - error: err.Error(), - } - return localVarReturnValue, localVarHTTPResponse, newErr - } - - return localVarReturnValue, localVarHTTPResponse, nil -} - -type ApiGetSingleSessionTestRequest struct { - ctx context.Context - ApiService *DefaultAPIService - getSingleSessionTestRequest *GetSingleSessionTestRequest -} - -func (r ApiGetSingleSessionTestRequest) GetSingleSessionTestRequest(getSingleSessionTestRequest GetSingleSessionTestRequest) ApiGetSingleSessionTestRequest { - r.getSingleSessionTestRequest = &getSingleSessionTestRequest - return r -} - -func (r ApiGetSingleSessionTestRequest) Execute() (*SessionTest, *http.Response, error) { - return r.ApiService.GetSingleSessionTestExecute(r) -} - -/* -GetSingleSessionTest Method for GetSingleSessionTest - - @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - @return ApiGetSingleSessionTestRequest -*/ -func (a *DefaultAPIService) GetSingleSessionTest(ctx context.Context) ApiGetSingleSessionTestRequest { - return ApiGetSingleSessionTestRequest{ - ApiService: a, - ctx: ctx, - } -} - -// Execute executes the request -// -// @return SessionTest -func (a *DefaultAPIService) GetSingleSessionTestExecute(r ApiGetSingleSessionTestRequest) (*SessionTest, *http.Response, error) { - var ( - localVarHTTPMethod = http.MethodPost - localVarPostBody interface{} - formFiles []formFile - localVarReturnValue *SessionTest - ) - - localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx, "DefaultAPIService.GetSingleSessionTest") - if err != nil { - return localVarReturnValue, nil, &GenericOpenAPIError{error: err.Error()} - } - - localVarPath := localBasePath + "/sessions-tests/getSingleSessionTest" - - localVarHeaderParams := make(map[string]string) - localVarQueryParams := url.Values{} - localVarFormParams := url.Values{} - if r.getSingleSessionTestRequest == nil { - return localVarReturnValue, nil, reportError("getSingleSessionTestRequest is required and must be specified") - } - - // to determine the Content-Type header - localVarHTTPContentTypes := []string{"application/json"} - - // set Content-Type header - localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes) - if localVarHTTPContentType != "" { - localVarHeaderParams["Content-Type"] = localVarHTTPContentType - } - - // to determine the Accept header - localVarHTTPHeaderAccepts := []string{"application/json"} - - // set Accept header - localVarHTTPHeaderAccept := selectHeaderAccept(localVarHTTPHeaderAccepts) - if localVarHTTPHeaderAccept != "" { - localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept - } - // body params - localVarPostBody = r.getSingleSessionTestRequest - req, err := a.client.prepareRequest(r.ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, formFiles) - if err != nil { - return localVarReturnValue, nil, err - } - - localVarHTTPResponse, err := a.client.callAPI(req) - if err != nil || localVarHTTPResponse == nil { - return localVarReturnValue, localVarHTTPResponse, err - } - - localVarBody, err := io.ReadAll(localVarHTTPResponse.Body) - localVarHTTPResponse.Body.Close() - localVarHTTPResponse.Body = io.NopCloser(bytes.NewBuffer(localVarBody)) - if err != nil { - return localVarReturnValue, localVarHTTPResponse, err - } - - if localVarHTTPResponse.StatusCode >= 300 { - newErr := &GenericOpenAPIError{ - body: localVarBody, - error: localVarHTTPResponse.Status, - } - return localVarReturnValue, localVarHTTPResponse, newErr - } - - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) - if err != nil { - newErr := &GenericOpenAPIError{ - body: localVarBody, - error: err.Error(), - } - return localVarReturnValue, localVarHTTPResponse, newErr - } - - return localVarReturnValue, localVarHTTPResponse, nil -} - -type ApiGetSlimJobsRequest struct { - ctx context.Context - ApiService *DefaultAPIService - getJobsFilterParams *GetJobsFilterParams -} - -func (r ApiGetSlimJobsRequest) GetJobsFilterParams(getJobsFilterParams GetJobsFilterParams) ApiGetSlimJobsRequest { - r.getJobsFilterParams = &getJobsFilterParams - return r -} - -func (r ApiGetSlimJobsRequest) Execute() (*GetSlimJobsResponse, *http.Response, error) { - return r.ApiService.GetSlimJobsExecute(r) -} - -/* -GetSlimJobs Method for GetSlimJobs - - @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - @return ApiGetSlimJobsRequest -*/ -func (a *DefaultAPIService) GetSlimJobs(ctx context.Context) ApiGetSlimJobsRequest { - return ApiGetSlimJobsRequest{ - ApiService: a, - ctx: ctx, - } -} - -// Execute executes the request -// -// @return GetSlimJobsResponse -func (a *DefaultAPIService) GetSlimJobsExecute(r ApiGetSlimJobsRequest) (*GetSlimJobsResponse, *http.Response, error) { - var ( - localVarHTTPMethod = http.MethodPost - localVarPostBody interface{} - formFiles []formFile - localVarReturnValue *GetSlimJobsResponse - ) - - localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx, "DefaultAPIService.GetSlimJobs") - if err != nil { - return localVarReturnValue, nil, &GenericOpenAPIError{error: err.Error()} - } - - localVarPath := localBasePath + "/jobs/getSlimJobs" - - localVarHeaderParams := make(map[string]string) - localVarQueryParams := url.Values{} - localVarFormParams := url.Values{} - if r.getJobsFilterParams == nil { - return localVarReturnValue, nil, reportError("getJobsFilterParams is required and must be specified") - } - - // to determine the Content-Type header - localVarHTTPContentTypes := []string{"application/json"} - - // set Content-Type header - localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes) - if localVarHTTPContentType != "" { - localVarHeaderParams["Content-Type"] = localVarHTTPContentType - } - - // to determine the Accept header - localVarHTTPHeaderAccepts := []string{"application/json"} - - // set Accept header - localVarHTTPHeaderAccept := selectHeaderAccept(localVarHTTPHeaderAccepts) - if localVarHTTPHeaderAccept != "" { - localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept - } - // body params - localVarPostBody = r.getJobsFilterParams - req, err := a.client.prepareRequest(r.ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, formFiles) - if err != nil { - return localVarReturnValue, nil, err - } - - localVarHTTPResponse, err := a.client.callAPI(req) - if err != nil || localVarHTTPResponse == nil { - return localVarReturnValue, localVarHTTPResponse, err - } - - localVarBody, err := io.ReadAll(localVarHTTPResponse.Body) - localVarHTTPResponse.Body.Close() - localVarHTTPResponse.Body = io.NopCloser(bytes.NewBuffer(localVarBody)) - if err != nil { - return localVarReturnValue, localVarHTTPResponse, err - } - - if localVarHTTPResponse.StatusCode >= 300 { - newErr := &GenericOpenAPIError{ - body: localVarBody, - error: localVarHTTPResponse.Status, - } - return localVarReturnValue, localVarHTTPResponse, newErr - } - - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) - if err != nil { - newErr := &GenericOpenAPIError{ - body: localVarBody, - error: err.Error(), - } - return localVarReturnValue, localVarHTTPResponse, newErr - } - - return localVarReturnValue, localVarHTTPResponse, nil -} - -type ApiGetSlimVisualizationRequest struct { - ctx context.Context - ApiService *DefaultAPIService - getSlimVisualizationParams *GetSlimVisualizationParams -} - -func (r ApiGetSlimVisualizationRequest) GetSlimVisualizationParams(getSlimVisualizationParams GetSlimVisualizationParams) ApiGetSlimVisualizationRequest { - r.getSlimVisualizationParams = &getSlimVisualizationParams - return r -} - -func (r ApiGetSlimVisualizationRequest) Execute() (*GetSlimVisualizationResponse, *http.Response, error) { - return r.ApiService.GetSlimVisualizationExecute(r) -} - -/* -GetSlimVisualization Method for GetSlimVisualization - - @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - @return ApiGetSlimVisualizationRequest -*/ -func (a *DefaultAPIService) GetSlimVisualization(ctx context.Context) ApiGetSlimVisualizationRequest { - return ApiGetSlimVisualizationRequest{ - ApiService: a, - ctx: ctx, - } -} - -// Execute executes the request -// -// @return GetSlimVisualizationResponse -func (a *DefaultAPIService) GetSlimVisualizationExecute(r ApiGetSlimVisualizationRequest) (*GetSlimVisualizationResponse, *http.Response, error) { - var ( - localVarHTTPMethod = http.MethodPost - localVarPostBody interface{} - formFiles []formFile - localVarReturnValue *GetSlimVisualizationResponse - ) - - localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx, "DefaultAPIService.GetSlimVisualization") - if err != nil { - return localVarReturnValue, nil, &GenericOpenAPIError{error: err.Error()} - } - - localVarPath := localBasePath + "/visualizations/getSlimVisualization" - - localVarHeaderParams := make(map[string]string) - localVarQueryParams := url.Values{} - localVarFormParams := url.Values{} - if r.getSlimVisualizationParams == nil { - return localVarReturnValue, nil, reportError("getSlimVisualizationParams is required and must be specified") - } - - // to determine the Content-Type header - localVarHTTPContentTypes := []string{"application/json"} - - // set Content-Type header - localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes) - if localVarHTTPContentType != "" { - localVarHeaderParams["Content-Type"] = localVarHTTPContentType - } - - // to determine the Accept header - localVarHTTPHeaderAccepts := []string{"application/json"} - - // set Accept header - localVarHTTPHeaderAccept := selectHeaderAccept(localVarHTTPHeaderAccepts) - if localVarHTTPHeaderAccept != "" { - localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept - } - // body params - localVarPostBody = r.getSlimVisualizationParams - req, err := a.client.prepareRequest(r.ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, formFiles) - if err != nil { - return localVarReturnValue, nil, err - } - - localVarHTTPResponse, err := a.client.callAPI(req) - if err != nil || localVarHTTPResponse == nil { - return localVarReturnValue, localVarHTTPResponse, err - } - - localVarBody, err := io.ReadAll(localVarHTTPResponse.Body) - localVarHTTPResponse.Body.Close() - localVarHTTPResponse.Body = io.NopCloser(bytes.NewBuffer(localVarBody)) - if err != nil { - return localVarReturnValue, localVarHTTPResponse, err - } - - if localVarHTTPResponse.StatusCode >= 300 { - newErr := &GenericOpenAPIError{ - body: localVarBody, - error: localVarHTTPResponse.Status, - } - return localVarReturnValue, localVarHTTPResponse, newErr - } - - err = a.client.decode(&localVarReturnValue, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) - if err != nil { - newErr := &GenericOpenAPIError{ - body: localVarBody, - error: err.Error(), - } - return localVarReturnValue, localVarHTTPResponse, newErr - } - - return localVarReturnValue, localVarHTTPResponse, nil -} - -type ApiGetStateRequest struct { - ctx context.Context - ApiService *DefaultAPIService - getStateParams *GetStateParams -} - -func (r ApiGetStateRequest) GetStateParams(getStateParams GetStateParams) ApiGetStateRequest { - r.getStateParams = &getStateParams - return r -} - -func (r ApiGetStateRequest) Execute() (*GetStateResponse, *http.Response, error) { - return r.ApiService.GetStateExecute(r) -} - -/* -GetState Method for GetState +GetState Method for GetState @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). @return ApiGetStateRequest @@ -11526,7 +10787,225 @@ func (a *DefaultAPIService) GetUploadSignedUrlExecute(r ApiGetUploadSignedUrlReq localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } // body params - localVarPostBody = r.getUploadSignedUrlParams + localVarPostBody = r.getUploadSignedUrlParams + req, err := a.client.prepareRequest(r.ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, formFiles) + if err != nil { + return localVarReturnValue, nil, err + } + + localVarHTTPResponse, err := a.client.callAPI(req) + if err != nil || localVarHTTPResponse == nil { + return localVarReturnValue, localVarHTTPResponse, err + } + + localVarBody, err := io.ReadAll(localVarHTTPResponse.Body) + localVarHTTPResponse.Body.Close() + localVarHTTPResponse.Body = io.NopCloser(bytes.NewBuffer(localVarBody)) + if err != nil { + return localVarReturnValue, localVarHTTPResponse, err + } + + if localVarHTTPResponse.StatusCode >= 300 { + newErr := &GenericOpenAPIError{ + body: localVarBody, + error: localVarHTTPResponse.Status, + } + return localVarReturnValue, localVarHTTPResponse, newErr + } + + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) + if err != nil { + newErr := &GenericOpenAPIError{ + body: localVarBody, + error: err.Error(), + } + return localVarReturnValue, localVarHTTPResponse, newErr + } + + return localVarReturnValue, localVarHTTPResponse, nil +} + +type ApiGetVersionsEpochsRequest struct { + ctx context.Context + ApiService *DefaultAPIService + getVersionsEpochsRequest *GetVersionsEpochsRequest +} + +func (r ApiGetVersionsEpochsRequest) GetVersionsEpochsRequest(getVersionsEpochsRequest GetVersionsEpochsRequest) ApiGetVersionsEpochsRequest { + r.getVersionsEpochsRequest = &getVersionsEpochsRequest + return r +} + +func (r ApiGetVersionsEpochsRequest) Execute() (*GetVersionEpochsResponse, *http.Response, error) { + return r.ApiService.GetVersionsEpochsExecute(r) +} + +/* +GetVersionsEpochs Method for GetVersionsEpochs + + @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + @return ApiGetVersionsEpochsRequest +*/ +func (a *DefaultAPIService) GetVersionsEpochs(ctx context.Context) ApiGetVersionsEpochsRequest { + return ApiGetVersionsEpochsRequest{ + ApiService: a, + ctx: ctx, + } +} + +// Execute executes the request +// +// @return GetVersionEpochsResponse +func (a *DefaultAPIService) GetVersionsEpochsExecute(r ApiGetVersionsEpochsRequest) (*GetVersionEpochsResponse, *http.Response, error) { + var ( + localVarHTTPMethod = http.MethodPost + localVarPostBody interface{} + formFiles []formFile + localVarReturnValue *GetVersionEpochsResponse + ) + + localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx, "DefaultAPIService.GetVersionsEpochs") + if err != nil { + return localVarReturnValue, nil, &GenericOpenAPIError{error: err.Error()} + } + + localVarPath := localBasePath + "/versions/getVersionsEpochs" + + localVarHeaderParams := make(map[string]string) + localVarQueryParams := url.Values{} + localVarFormParams := url.Values{} + if r.getVersionsEpochsRequest == nil { + return localVarReturnValue, nil, reportError("getVersionsEpochsRequest is required and must be specified") + } + + // to determine the Content-Type header + localVarHTTPContentTypes := []string{"application/json"} + + // set Content-Type header + localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes) + if localVarHTTPContentType != "" { + localVarHeaderParams["Content-Type"] = localVarHTTPContentType + } + + // to determine the Accept header + localVarHTTPHeaderAccepts := []string{"application/json"} + + // set Accept header + localVarHTTPHeaderAccept := selectHeaderAccept(localVarHTTPHeaderAccepts) + if localVarHTTPHeaderAccept != "" { + localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept + } + // body params + localVarPostBody = r.getVersionsEpochsRequest + req, err := a.client.prepareRequest(r.ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, formFiles) + if err != nil { + return localVarReturnValue, nil, err + } + + localVarHTTPResponse, err := a.client.callAPI(req) + if err != nil || localVarHTTPResponse == nil { + return localVarReturnValue, localVarHTTPResponse, err + } + + localVarBody, err := io.ReadAll(localVarHTTPResponse.Body) + localVarHTTPResponse.Body.Close() + localVarHTTPResponse.Body = io.NopCloser(bytes.NewBuffer(localVarBody)) + if err != nil { + return localVarReturnValue, localVarHTTPResponse, err + } + + if localVarHTTPResponse.StatusCode >= 300 { + newErr := &GenericOpenAPIError{ + body: localVarBody, + error: localVarHTTPResponse.Status, + } + return localVarReturnValue, localVarHTTPResponse, newErr + } + + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) + if err != nil { + newErr := &GenericOpenAPIError{ + body: localVarBody, + error: err.Error(), + } + return localVarReturnValue, localVarHTTPResponse, newErr + } + + return localVarReturnValue, localVarHTTPResponse, nil +} + +type ApiGetVersionsVisualizationsRequest struct { + ctx context.Context + ApiService *DefaultAPIService + getVersionsVisualizationsParams *GetVersionsVisualizationsParams +} + +func (r ApiGetVersionsVisualizationsRequest) GetVersionsVisualizationsParams(getVersionsVisualizationsParams GetVersionsVisualizationsParams) ApiGetVersionsVisualizationsRequest { + r.getVersionsVisualizationsParams = &getVersionsVisualizationsParams + return r +} + +func (r ApiGetVersionsVisualizationsRequest) Execute() (*GetVersionsVisualizationsResponse, *http.Response, error) { + return r.ApiService.GetVersionsVisualizationsExecute(r) +} + +/* +GetVersionsVisualizations Method for GetVersionsVisualizations + + @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + @return ApiGetVersionsVisualizationsRequest +*/ +func (a *DefaultAPIService) GetVersionsVisualizations(ctx context.Context) ApiGetVersionsVisualizationsRequest { + return ApiGetVersionsVisualizationsRequest{ + ApiService: a, + ctx: ctx, + } +} + +// Execute executes the request +// +// @return GetVersionsVisualizationsResponse +func (a *DefaultAPIService) GetVersionsVisualizationsExecute(r ApiGetVersionsVisualizationsRequest) (*GetVersionsVisualizationsResponse, *http.Response, error) { + var ( + localVarHTTPMethod = http.MethodPost + localVarPostBody interface{} + formFiles []formFile + localVarReturnValue *GetVersionsVisualizationsResponse + ) + + localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx, "DefaultAPIService.GetVersionsVisualizations") + if err != nil { + return localVarReturnValue, nil, &GenericOpenAPIError{error: err.Error()} + } + + localVarPath := localBasePath + "/visualizations/getVersionsVisualizations" + + localVarHeaderParams := make(map[string]string) + localVarQueryParams := url.Values{} + localVarFormParams := url.Values{} + if r.getVersionsVisualizationsParams == nil { + return localVarReturnValue, nil, reportError("getVersionsVisualizationsParams is required and must be specified") + } + + // to determine the Content-Type header + localVarHTTPContentTypes := []string{"application/json"} + + // set Content-Type header + localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes) + if localVarHTTPContentType != "" { + localVarHeaderParams["Content-Type"] = localVarHTTPContentType + } + + // to determine the Accept header + localVarHTTPHeaderAccepts := []string{"application/json"} + + // set Accept header + localVarHTTPHeaderAccept := selectHeaderAccept(localVarHTTPHeaderAccepts) + if localVarHTTPHeaderAccept != "" { + localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept + } + // body params + localVarPostBody = r.getVersionsVisualizationsParams req, err := a.client.prepareRequest(r.ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, formFiles) if err != nil { return localVarReturnValue, nil, err @@ -12415,17 +11894,17 @@ func (a *DefaultAPIService) KeyGenExecute(r ApiKeyGenRequest) (*RotateApiKeyResp } type ApiLoadModelRequest struct { - ctx context.Context - ApiService *DefaultAPIService - loadSessionParams *LoadSessionParams + ctx context.Context + ApiService *DefaultAPIService + loadModelParams *LoadModelParams } -func (r ApiLoadModelRequest) LoadSessionParams(loadSessionParams LoadSessionParams) ApiLoadModelRequest { - r.loadSessionParams = &loadSessionParams +func (r ApiLoadModelRequest) LoadModelParams(loadModelParams LoadModelParams) ApiLoadModelRequest { + r.loadModelParams = &loadModelParams return r } -func (r ApiLoadModelRequest) Execute() (*LoadSessionResponse, *http.Response, error) { +func (r ApiLoadModelRequest) Execute() (*LoadModelResponse, *http.Response, error) { return r.ApiService.LoadModelExecute(r) } @@ -12444,13 +11923,13 @@ func (a *DefaultAPIService) LoadModel(ctx context.Context) ApiLoadModelRequest { // Execute executes the request // -// @return LoadSessionResponse -func (a *DefaultAPIService) LoadModelExecute(r ApiLoadModelRequest) (*LoadSessionResponse, *http.Response, error) { +// @return LoadModelResponse +func (a *DefaultAPIService) LoadModelExecute(r ApiLoadModelRequest) (*LoadModelResponse, *http.Response, error) { var ( localVarHTTPMethod = http.MethodPost localVarPostBody interface{} formFiles []formFile - localVarReturnValue *LoadSessionResponse + localVarReturnValue *LoadModelResponse ) localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx, "DefaultAPIService.LoadModel") @@ -12463,8 +11942,8 @@ func (a *DefaultAPIService) LoadModelExecute(r ApiLoadModelRequest) (*LoadSessio localVarHeaderParams := make(map[string]string) localVarQueryParams := url.Values{} localVarFormParams := url.Values{} - if r.loadSessionParams == nil { - return localVarReturnValue, nil, reportError("loadSessionParams is required and must be specified") + if r.loadModelParams == nil { + return localVarReturnValue, nil, reportError("loadModelParams is required and must be specified") } // to determine the Content-Type header @@ -12485,7 +11964,7 @@ func (a *DefaultAPIService) LoadModelExecute(r ApiLoadModelRequest) (*LoadSessio localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept } // body params - localVarPostBody = r.loadSessionParams + localVarPostBody = r.loadModelParams req, err := a.client.prepareRequest(r.ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, formFiles) if err != nil { return localVarReturnValue, nil, err @@ -13142,6 +12621,115 @@ func (a *DefaultAPIService) OverwriteModelExecute(r ApiOverwriteModelRequest) (* return localVarReturnValue, localVarHTTPResponse, nil } +type ApiPopulateCollectionFromFiltersRequest struct { + ctx context.Context + ApiService *DefaultAPIService + populateCollectionFromFiltersParams *PopulateCollectionFromFiltersParams +} + +func (r ApiPopulateCollectionFromFiltersRequest) PopulateCollectionFromFiltersParams(populateCollectionFromFiltersParams PopulateCollectionFromFiltersParams) ApiPopulateCollectionFromFiltersRequest { + r.populateCollectionFromFiltersParams = &populateCollectionFromFiltersParams + return r +} + +func (r ApiPopulateCollectionFromFiltersRequest) Execute() (*PopulateCollectionFromFiltersResponse, *http.Response, error) { + return r.ApiService.PopulateCollectionFromFiltersExecute(r) +} + +/* +PopulateCollectionFromFilters Method for PopulateCollectionFromFilters + + @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + @return ApiPopulateCollectionFromFiltersRequest +*/ +func (a *DefaultAPIService) PopulateCollectionFromFilters(ctx context.Context) ApiPopulateCollectionFromFiltersRequest { + return ApiPopulateCollectionFromFiltersRequest{ + ApiService: a, + ctx: ctx, + } +} + +// Execute executes the request +// +// @return PopulateCollectionFromFiltersResponse +func (a *DefaultAPIService) PopulateCollectionFromFiltersExecute(r ApiPopulateCollectionFromFiltersRequest) (*PopulateCollectionFromFiltersResponse, *http.Response, error) { + var ( + localVarHTTPMethod = http.MethodPost + localVarPostBody interface{} + formFiles []formFile + localVarReturnValue *PopulateCollectionFromFiltersResponse + ) + + localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx, "DefaultAPIService.PopulateCollectionFromFilters") + if err != nil { + return localVarReturnValue, nil, &GenericOpenAPIError{error: err.Error()} + } + + localVarPath := localBasePath + "/sample-collection/populateCollectionFromFilters" + + localVarHeaderParams := make(map[string]string) + localVarQueryParams := url.Values{} + localVarFormParams := url.Values{} + if r.populateCollectionFromFiltersParams == nil { + return localVarReturnValue, nil, reportError("populateCollectionFromFiltersParams is required and must be specified") + } + + // to determine the Content-Type header + localVarHTTPContentTypes := []string{"application/json"} + + // set Content-Type header + localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes) + if localVarHTTPContentType != "" { + localVarHeaderParams["Content-Type"] = localVarHTTPContentType + } + + // to determine the Accept header + localVarHTTPHeaderAccepts := []string{"application/json"} + + // set Accept header + localVarHTTPHeaderAccept := selectHeaderAccept(localVarHTTPHeaderAccepts) + if localVarHTTPHeaderAccept != "" { + localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept + } + // body params + localVarPostBody = r.populateCollectionFromFiltersParams + req, err := a.client.prepareRequest(r.ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, formFiles) + if err != nil { + return localVarReturnValue, nil, err + } + + localVarHTTPResponse, err := a.client.callAPI(req) + if err != nil || localVarHTTPResponse == nil { + return localVarReturnValue, localVarHTTPResponse, err + } + + localVarBody, err := io.ReadAll(localVarHTTPResponse.Body) + localVarHTTPResponse.Body.Close() + localVarHTTPResponse.Body = io.NopCloser(bytes.NewBuffer(localVarBody)) + if err != nil { + return localVarReturnValue, localVarHTTPResponse, err + } + + if localVarHTTPResponse.StatusCode >= 300 { + newErr := &GenericOpenAPIError{ + body: localVarBody, + error: localVarHTTPResponse.Status, + } + return localVarReturnValue, localVarHTTPResponse, newErr + } + + err = a.client.decode(&localVarReturnValue, localVarBody, localVarHTTPResponse.Header.Get("Content-Type")) + if err != nil { + newErr := &GenericOpenAPIError{ + body: localVarBody, + error: err.Error(), + } + return localVarReturnValue, localVarHTTPResponse, newErr + } + + return localVarReturnValue, localVarHTTPResponse, nil +} + type ApiPopulationExplorationRequest struct { ctx context.Context ApiService *DefaultAPIService @@ -15787,200 +15375,6 @@ func (a *DefaultAPIService) UpdateSecretManagerExecute(r ApiUpdateSecretManagerR return localVarReturnValue, localVarHTTPResponse, nil } -type ApiUpdateSessionNameRequest struct { - ctx context.Context - ApiService *DefaultAPIService - updateSessionNameParams *UpdateSessionNameParams -} - -func (r ApiUpdateSessionNameRequest) UpdateSessionNameParams(updateSessionNameParams UpdateSessionNameParams) ApiUpdateSessionNameRequest { - r.updateSessionNameParams = &updateSessionNameParams - return r -} - -func (r ApiUpdateSessionNameRequest) Execute() (*http.Response, error) { - return r.ApiService.UpdateSessionNameExecute(r) -} - -/* -UpdateSessionName Method for UpdateSessionName - - @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - @return ApiUpdateSessionNameRequest -*/ -func (a *DefaultAPIService) UpdateSessionName(ctx context.Context) ApiUpdateSessionNameRequest { - return ApiUpdateSessionNameRequest{ - ApiService: a, - ctx: ctx, - } -} - -// Execute executes the request -func (a *DefaultAPIService) UpdateSessionNameExecute(r ApiUpdateSessionNameRequest) (*http.Response, error) { - var ( - localVarHTTPMethod = http.MethodPost - localVarPostBody interface{} - formFiles []formFile - ) - - localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx, "DefaultAPIService.UpdateSessionName") - if err != nil { - return nil, &GenericOpenAPIError{error: err.Error()} - } - - localVarPath := localBasePath + "/sessions/updateSessionName" - - localVarHeaderParams := make(map[string]string) - localVarQueryParams := url.Values{} - localVarFormParams := url.Values{} - if r.updateSessionNameParams == nil { - return nil, reportError("updateSessionNameParams is required and must be specified") - } - - // to determine the Content-Type header - localVarHTTPContentTypes := []string{"application/json"} - - // set Content-Type header - localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes) - if localVarHTTPContentType != "" { - localVarHeaderParams["Content-Type"] = localVarHTTPContentType - } - - // to determine the Accept header - localVarHTTPHeaderAccepts := []string{} - - // set Accept header - localVarHTTPHeaderAccept := selectHeaderAccept(localVarHTTPHeaderAccepts) - if localVarHTTPHeaderAccept != "" { - localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept - } - // body params - localVarPostBody = r.updateSessionNameParams - req, err := a.client.prepareRequest(r.ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, formFiles) - if err != nil { - return nil, err - } - - localVarHTTPResponse, err := a.client.callAPI(req) - if err != nil || localVarHTTPResponse == nil { - return localVarHTTPResponse, err - } - - localVarBody, err := io.ReadAll(localVarHTTPResponse.Body) - localVarHTTPResponse.Body.Close() - localVarHTTPResponse.Body = io.NopCloser(bytes.NewBuffer(localVarBody)) - if err != nil { - return localVarHTTPResponse, err - } - - if localVarHTTPResponse.StatusCode >= 300 { - newErr := &GenericOpenAPIError{ - body: localVarBody, - error: localVarHTTPResponse.Status, - } - return localVarHTTPResponse, newErr - } - - return localVarHTTPResponse, nil -} - -type ApiUpdateSessionRunRequest struct { - ctx context.Context - ApiService *DefaultAPIService - updateSessionRunNameParams *UpdateSessionRunNameParams -} - -func (r ApiUpdateSessionRunRequest) UpdateSessionRunNameParams(updateSessionRunNameParams UpdateSessionRunNameParams) ApiUpdateSessionRunRequest { - r.updateSessionRunNameParams = &updateSessionRunNameParams - return r -} - -func (r ApiUpdateSessionRunRequest) Execute() (*http.Response, error) { - return r.ApiService.UpdateSessionRunExecute(r) -} - -/* -UpdateSessionRun Method for UpdateSessionRun - - @param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). - @return ApiUpdateSessionRunRequest -*/ -func (a *DefaultAPIService) UpdateSessionRun(ctx context.Context) ApiUpdateSessionRunRequest { - return ApiUpdateSessionRunRequest{ - ApiService: a, - ctx: ctx, - } -} - -// Execute executes the request -func (a *DefaultAPIService) UpdateSessionRunExecute(r ApiUpdateSessionRunRequest) (*http.Response, error) { - var ( - localVarHTTPMethod = http.MethodPost - localVarPostBody interface{} - formFiles []formFile - ) - - localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx, "DefaultAPIService.UpdateSessionRun") - if err != nil { - return nil, &GenericOpenAPIError{error: err.Error()} - } - - localVarPath := localBasePath + "/sessionsruns/updateSessionRun" - - localVarHeaderParams := make(map[string]string) - localVarQueryParams := url.Values{} - localVarFormParams := url.Values{} - if r.updateSessionRunNameParams == nil { - return nil, reportError("updateSessionRunNameParams is required and must be specified") - } - - // to determine the Content-Type header - localVarHTTPContentTypes := []string{"application/json"} - - // set Content-Type header - localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes) - if localVarHTTPContentType != "" { - localVarHeaderParams["Content-Type"] = localVarHTTPContentType - } - - // to determine the Accept header - localVarHTTPHeaderAccepts := []string{} - - // set Accept header - localVarHTTPHeaderAccept := selectHeaderAccept(localVarHTTPHeaderAccepts) - if localVarHTTPHeaderAccept != "" { - localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept - } - // body params - localVarPostBody = r.updateSessionRunNameParams - req, err := a.client.prepareRequest(r.ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, formFiles) - if err != nil { - return nil, err - } - - localVarHTTPResponse, err := a.client.callAPI(req) - if err != nil || localVarHTTPResponse == nil { - return localVarHTTPResponse, err - } - - localVarBody, err := io.ReadAll(localVarHTTPResponse.Body) - localVarHTTPResponse.Body.Close() - localVarHTTPResponse.Body = io.NopCloser(bytes.NewBuffer(localVarBody)) - if err != nil { - return localVarHTTPResponse, err - } - - if localVarHTTPResponse.StatusCode >= 300 { - newErr := &GenericOpenAPIError{ - body: localVarBody, - error: localVarHTTPResponse.Status, - } - return localVarHTTPResponse, newErr - } - - return localVarHTTPResponse, nil -} - type ApiUpdateSessionTestRequest struct { ctx context.Context ApiService *DefaultAPIService diff --git a/pkg/tensorleapapi/client.go b/pkg/tensorleapapi/client.go index 1aca33ca4..b176c8f1b 100644 --- a/pkg/tensorleapapi/client.go +++ b/pkg/tensorleapapi/client.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -40,7 +40,7 @@ var ( queryDescape = strings.NewReplacer("%5B", "[", "%5D", "]") ) -// APIClient manages communication with the node-server API v11.0.7 +// APIClient manages communication with the node-server API v11.0.23 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/pkg/tensorleapapi/configuration.go b/pkg/tensorleapapi/configuration.go index 0f9386fc3..62247edc2 100644 --- a/pkg/tensorleapapi/configuration.go +++ b/pkg/tensorleapapi/configuration.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/docs/AddExportModelJobParams.md b/pkg/tensorleapapi/docs/AddExportModelJobParams.md index 017a2d3e3..0c13af7c5 100644 --- a/pkg/tensorleapapi/docs/AddExportModelJobParams.md +++ b/pkg/tensorleapapi/docs/AddExportModelJobParams.md @@ -5,7 +5,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **ProjectId** | **string** | | -**SessionWeightId** | **string** | | +**ModelId** | **string** | | **ExportModelType** | [**ExportModelTypeEnum**](ExportModelTypeEnum.md) | | **Title** | **string** | | **PruneModel** | **bool** | | @@ -14,7 +14,7 @@ Name | Type | Description | Notes ### NewAddExportModelJobParams -`func NewAddExportModelJobParams(projectId string, sessionWeightId string, exportModelType ExportModelTypeEnum, title string, pruneModel bool, ) *AddExportModelJobParams` +`func NewAddExportModelJobParams(projectId string, modelId string, exportModelType ExportModelTypeEnum, title string, pruneModel bool, ) *AddExportModelJobParams` NewAddExportModelJobParams instantiates a new AddExportModelJobParams object This constructor will assign default values to properties that have it defined, @@ -49,24 +49,24 @@ and a boolean to check if the value has been set. SetProjectId sets ProjectId field to given value. -### GetSessionWeightId +### GetModelId -`func (o *AddExportModelJobParams) GetSessionWeightId() string` +`func (o *AddExportModelJobParams) GetModelId() string` -GetSessionWeightId returns the SessionWeightId field if non-nil, zero value otherwise. +GetModelId returns the ModelId field if non-nil, zero value otherwise. -### GetSessionWeightIdOk +### GetModelIdOk -`func (o *AddExportModelJobParams) GetSessionWeightIdOk() (*string, bool)` +`func (o *AddExportModelJobParams) GetModelIdOk() (*string, bool)` -GetSessionWeightIdOk returns a tuple with the SessionWeightId field if it's non-nil, zero value otherwise +GetModelIdOk returns a tuple with the ModelId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionWeightId +### SetModelId -`func (o *AddExportModelJobParams) SetSessionWeightId(v string)` +`func (o *AddExportModelJobParams) SetModelId(v string)` -SetSessionWeightId sets SessionWeightId field to given value. +SetModelId sets ModelId field to given value. ### GetExportModelType diff --git a/pkg/tensorleapapi/docs/AggressorFixing.md b/pkg/tensorleapapi/docs/AggressorFixing.md new file mode 100644 index 000000000..ec00d9c92 --- /dev/null +++ b/pkg/tensorleapapi/docs/AggressorFixing.md @@ -0,0 +1,93 @@ +# AggressorFixing + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**NumOfSamplesToLabel** | **float64** | | +**NumOfSamplesToAcquire** | **float64** | | +**CsvPath** | **string** | | + +## Methods + +### NewAggressorFixing + +`func NewAggressorFixing(numOfSamplesToLabel float64, numOfSamplesToAcquire float64, csvPath string, ) *AggressorFixing` + +NewAggressorFixing instantiates a new AggressorFixing object +This constructor will assign default values to properties that have it defined, +and makes sure properties required by API are set, but the set of arguments +will change when the set of required properties is changed + +### NewAggressorFixingWithDefaults + +`func NewAggressorFixingWithDefaults() *AggressorFixing` + +NewAggressorFixingWithDefaults instantiates a new AggressorFixing object +This constructor will only assign default values to properties that have it defined, +but it doesn't guarantee that properties required by API are set + +### GetNumOfSamplesToLabel + +`func (o *AggressorFixing) GetNumOfSamplesToLabel() float64` + +GetNumOfSamplesToLabel returns the NumOfSamplesToLabel field if non-nil, zero value otherwise. + +### GetNumOfSamplesToLabelOk + +`func (o *AggressorFixing) GetNumOfSamplesToLabelOk() (*float64, bool)` + +GetNumOfSamplesToLabelOk returns a tuple with the NumOfSamplesToLabel field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetNumOfSamplesToLabel + +`func (o *AggressorFixing) SetNumOfSamplesToLabel(v float64)` + +SetNumOfSamplesToLabel sets NumOfSamplesToLabel field to given value. + + +### GetNumOfSamplesToAcquire + +`func (o *AggressorFixing) GetNumOfSamplesToAcquire() float64` + +GetNumOfSamplesToAcquire returns the NumOfSamplesToAcquire field if non-nil, zero value otherwise. + +### GetNumOfSamplesToAcquireOk + +`func (o *AggressorFixing) GetNumOfSamplesToAcquireOk() (*float64, bool)` + +GetNumOfSamplesToAcquireOk returns a tuple with the NumOfSamplesToAcquire field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetNumOfSamplesToAcquire + +`func (o *AggressorFixing) SetNumOfSamplesToAcquire(v float64)` + +SetNumOfSamplesToAcquire sets NumOfSamplesToAcquire field to given value. + + +### GetCsvPath + +`func (o *AggressorFixing) GetCsvPath() string` + +GetCsvPath returns the CsvPath field if non-nil, zero value otherwise. + +### GetCsvPathOk + +`func (o *AggressorFixing) GetCsvPathOk() (*string, bool)` + +GetCsvPathOk returns a tuple with the CsvPath field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetCsvPath + +`func (o *AggressorFixing) SetCsvPath(v string)` + +SetCsvPath sets CsvPath field to given value. + + + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/pkg/tensorleapapi/docs/AnalyzeParams.md b/pkg/tensorleapapi/docs/AnalyzeParams.md index fc7cd982d..a04faab23 100644 --- a/pkg/tensorleapapi/docs/AnalyzeParams.md +++ b/pkg/tensorleapapi/docs/AnalyzeParams.md @@ -5,7 +5,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **Type** | [**AnalyzeTypeEnum**](AnalyzeTypeEnum.md) | | -**FromEpoch** | **float64** | | +**InferenceArtifactId** | Pointer to **string** | | [optional] **BatchSize** | Pointer to **float64** | | [optional] **SampleIdentity** | Pointer to [**SampleIdentity**](SampleIdentity.md) | | [optional] **FromDatasetSlice** | Pointer to [**DataStateType**](DataStateType.md) | | [optional] @@ -15,7 +15,7 @@ Name | Type | Description | Notes ### NewAnalyzeParams -`func NewAnalyzeParams(type_ AnalyzeTypeEnum, fromEpoch float64, extId string, ) *AnalyzeParams` +`func NewAnalyzeParams(type_ AnalyzeTypeEnum, extId string, ) *AnalyzeParams` NewAnalyzeParams instantiates a new AnalyzeParams object This constructor will assign default values to properties that have it defined, @@ -50,25 +50,30 @@ and a boolean to check if the value has been set. SetType sets Type field to given value. -### GetFromEpoch +### GetInferenceArtifactId -`func (o *AnalyzeParams) GetFromEpoch() float64` +`func (o *AnalyzeParams) GetInferenceArtifactId() string` -GetFromEpoch returns the FromEpoch field if non-nil, zero value otherwise. +GetInferenceArtifactId returns the InferenceArtifactId field if non-nil, zero value otherwise. -### GetFromEpochOk +### GetInferenceArtifactIdOk -`func (o *AnalyzeParams) GetFromEpochOk() (*float64, bool)` +`func (o *AnalyzeParams) GetInferenceArtifactIdOk() (*string, bool)` -GetFromEpochOk returns a tuple with the FromEpoch field if it's non-nil, zero value otherwise +GetInferenceArtifactIdOk returns a tuple with the InferenceArtifactId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetFromEpoch +### SetInferenceArtifactId -`func (o *AnalyzeParams) SetFromEpoch(v float64)` +`func (o *AnalyzeParams) SetInferenceArtifactId(v string)` -SetFromEpoch sets FromEpoch field to given value. +SetInferenceArtifactId sets InferenceArtifactId field to given value. +### HasInferenceArtifactId + +`func (o *AnalyzeParams) HasInferenceArtifactId() bool` + +HasInferenceArtifactId returns a boolean if a field has been set. ### GetBatchSize diff --git a/pkg/tensorleapapi/docs/CollectionDisplayData.md b/pkg/tensorleapapi/docs/CollectionDisplayData.md new file mode 100644 index 000000000..cbaca0fbe --- /dev/null +++ b/pkg/tensorleapapi/docs/CollectionDisplayData.md @@ -0,0 +1,119 @@ +# CollectionDisplayData + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**SampleIdentitiesPreview** | [**[]SampleIdentity**](SampleIdentity.md) | | +**SamplesCount** | **float64** | | +**Description** | Pointer to **string** | | [optional] +**Name** | **string** | | + +## Methods + +### NewCollectionDisplayData + +`func NewCollectionDisplayData(sampleIdentitiesPreview []SampleIdentity, samplesCount float64, name string, ) *CollectionDisplayData` + +NewCollectionDisplayData instantiates a new CollectionDisplayData object +This constructor will assign default values to properties that have it defined, +and makes sure properties required by API are set, but the set of arguments +will change when the set of required properties is changed + +### NewCollectionDisplayDataWithDefaults + +`func NewCollectionDisplayDataWithDefaults() *CollectionDisplayData` + +NewCollectionDisplayDataWithDefaults instantiates a new CollectionDisplayData object +This constructor will only assign default values to properties that have it defined, +but it doesn't guarantee that properties required by API are set + +### GetSampleIdentitiesPreview + +`func (o *CollectionDisplayData) GetSampleIdentitiesPreview() []SampleIdentity` + +GetSampleIdentitiesPreview returns the SampleIdentitiesPreview field if non-nil, zero value otherwise. + +### GetSampleIdentitiesPreviewOk + +`func (o *CollectionDisplayData) GetSampleIdentitiesPreviewOk() (*[]SampleIdentity, bool)` + +GetSampleIdentitiesPreviewOk returns a tuple with the SampleIdentitiesPreview field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetSampleIdentitiesPreview + +`func (o *CollectionDisplayData) SetSampleIdentitiesPreview(v []SampleIdentity)` + +SetSampleIdentitiesPreview sets SampleIdentitiesPreview field to given value. + + +### GetSamplesCount + +`func (o *CollectionDisplayData) GetSamplesCount() float64` + +GetSamplesCount returns the SamplesCount field if non-nil, zero value otherwise. + +### GetSamplesCountOk + +`func (o *CollectionDisplayData) GetSamplesCountOk() (*float64, bool)` + +GetSamplesCountOk returns a tuple with the SamplesCount field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetSamplesCount + +`func (o *CollectionDisplayData) SetSamplesCount(v float64)` + +SetSamplesCount sets SamplesCount field to given value. + + +### GetDescription + +`func (o *CollectionDisplayData) GetDescription() string` + +GetDescription returns the Description field if non-nil, zero value otherwise. + +### GetDescriptionOk + +`func (o *CollectionDisplayData) GetDescriptionOk() (*string, bool)` + +GetDescriptionOk returns a tuple with the Description field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetDescription + +`func (o *CollectionDisplayData) SetDescription(v string)` + +SetDescription sets Description field to given value. + +### HasDescription + +`func (o *CollectionDisplayData) HasDescription() bool` + +HasDescription returns a boolean if a field has been set. + +### GetName + +`func (o *CollectionDisplayData) GetName() string` + +GetName returns the Name field if non-nil, zero value otherwise. + +### GetNameOk + +`func (o *CollectionDisplayData) GetNameOk() (*string, bool)` + +GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetName + +`func (o *CollectionDisplayData) SetName(v string)` + +SetName sets Name field to given value. + + + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/pkg/tensorleapapi/docs/CollectionFilterDisplayData.md b/pkg/tensorleapapi/docs/CollectionFilterDisplayData.md new file mode 100644 index 000000000..2c5637514 --- /dev/null +++ b/pkg/tensorleapapi/docs/CollectionFilterDisplayData.md @@ -0,0 +1,93 @@ +# CollectionFilterDisplayData + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**Type** | **string** | | +**CollectionId** | **string** | | +**ProjectId** | **string** | | + +## Methods + +### NewCollectionFilterDisplayData + +`func NewCollectionFilterDisplayData(type_ string, collectionId string, projectId string, ) *CollectionFilterDisplayData` + +NewCollectionFilterDisplayData instantiates a new CollectionFilterDisplayData object +This constructor will assign default values to properties that have it defined, +and makes sure properties required by API are set, but the set of arguments +will change when the set of required properties is changed + +### NewCollectionFilterDisplayDataWithDefaults + +`func NewCollectionFilterDisplayDataWithDefaults() *CollectionFilterDisplayData` + +NewCollectionFilterDisplayDataWithDefaults instantiates a new CollectionFilterDisplayData object +This constructor will only assign default values to properties that have it defined, +but it doesn't guarantee that properties required by API are set + +### GetType + +`func (o *CollectionFilterDisplayData) GetType() string` + +GetType returns the Type field if non-nil, zero value otherwise. + +### GetTypeOk + +`func (o *CollectionFilterDisplayData) GetTypeOk() (*string, bool)` + +GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetType + +`func (o *CollectionFilterDisplayData) SetType(v string)` + +SetType sets Type field to given value. + + +### GetCollectionId + +`func (o *CollectionFilterDisplayData) GetCollectionId() string` + +GetCollectionId returns the CollectionId field if non-nil, zero value otherwise. + +### GetCollectionIdOk + +`func (o *CollectionFilterDisplayData) GetCollectionIdOk() (*string, bool)` + +GetCollectionIdOk returns a tuple with the CollectionId field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetCollectionId + +`func (o *CollectionFilterDisplayData) SetCollectionId(v string)` + +SetCollectionId sets CollectionId field to given value. + + +### GetProjectId + +`func (o *CollectionFilterDisplayData) GetProjectId() string` + +GetProjectId returns the ProjectId field if non-nil, zero value otherwise. + +### GetProjectIdOk + +`func (o *CollectionFilterDisplayData) GetProjectIdOk() (*string, bool)` + +GetProjectIdOk returns a tuple with the ProjectId field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetProjectId + +`func (o *CollectionFilterDisplayData) SetProjectId(v string)` + +SetProjectId sets ProjectId field to given value. + + + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/pkg/tensorleapapi/docs/ConfusionMatrixParams.md b/pkg/tensorleapapi/docs/ConfusionMatrixParams.md index cd3290cf5..075f9d789 100644 --- a/pkg/tensorleapapi/docs/ConfusionMatrixParams.md +++ b/pkg/tensorleapapi/docs/ConfusionMatrixParams.md @@ -5,7 +5,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **ProjectId** | **string** | | -**SessionRunsToEpochs** | [**[]SessionRunToEpoch**](SessionRunToEpoch.md) | | +**InferenceArtifactIds** | **[]string** | | **X** | [**SplitAgg**](SplitAgg.md) | | **VerticalSplit** | Pointer to [**SplitAgg**](SplitAgg.md) | | [optional] **HorizontalSplit** | Pointer to [**SplitAgg**](SplitAgg.md) | | [optional] @@ -18,7 +18,7 @@ Name | Type | Description | Notes ### NewConfusionMatrixParams -`func NewConfusionMatrixParams(projectId string, sessionRunsToEpochs []SessionRunToEpoch, x SplitAgg, customMetricName string, ) *ConfusionMatrixParams` +`func NewConfusionMatrixParams(projectId string, inferenceArtifactIds []string, x SplitAgg, customMetricName string, ) *ConfusionMatrixParams` NewConfusionMatrixParams instantiates a new ConfusionMatrixParams object This constructor will assign default values to properties that have it defined, @@ -53,24 +53,24 @@ and a boolean to check if the value has been set. SetProjectId sets ProjectId field to given value. -### GetSessionRunsToEpochs +### GetInferenceArtifactIds -`func (o *ConfusionMatrixParams) GetSessionRunsToEpochs() []SessionRunToEpoch` +`func (o *ConfusionMatrixParams) GetInferenceArtifactIds() []string` -GetSessionRunsToEpochs returns the SessionRunsToEpochs field if non-nil, zero value otherwise. +GetInferenceArtifactIds returns the InferenceArtifactIds field if non-nil, zero value otherwise. -### GetSessionRunsToEpochsOk +### GetInferenceArtifactIdsOk -`func (o *ConfusionMatrixParams) GetSessionRunsToEpochsOk() (*[]SessionRunToEpoch, bool)` +`func (o *ConfusionMatrixParams) GetInferenceArtifactIdsOk() (*[]string, bool)` -GetSessionRunsToEpochsOk returns a tuple with the SessionRunsToEpochs field if it's non-nil, zero value otherwise +GetInferenceArtifactIdsOk returns a tuple with the InferenceArtifactIds field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunsToEpochs +### SetInferenceArtifactIds -`func (o *ConfusionMatrixParams) SetSessionRunsToEpochs(v []SessionRunToEpoch)` +`func (o *ConfusionMatrixParams) SetInferenceArtifactIds(v []string)` -SetSessionRunsToEpochs sets SessionRunsToEpochs field to given value. +SetInferenceArtifactIds sets InferenceArtifactIds field to given value. ### GetX diff --git a/pkg/tensorleapapi/docs/ConfusionMatrixTableParams.md b/pkg/tensorleapapi/docs/ConfusionMatrixTableParams.md index ac1718fc4..28fdd72c5 100644 --- a/pkg/tensorleapapi/docs/ConfusionMatrixTableParams.md +++ b/pkg/tensorleapapi/docs/ConfusionMatrixTableParams.md @@ -4,7 +4,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**SessionRunsToEpochs** | [**[]SessionRunToEpoch**](SessionRunToEpoch.md) | | +**InferenceArtifactIds** | **[]string** | | **ProjectId** | **string** | | **CustomMetricName** | **string** | | **VerticalSplit** | Pointer to [**SplitAgg**](SplitAgg.md) | | [optional] @@ -20,7 +20,7 @@ Name | Type | Description | Notes ### NewConfusionMatrixTableParams -`func NewConfusionMatrixTableParams(sessionRunsToEpochs []SessionRunToEpoch, projectId string, customMetricName string, splitByLabel bool, ) *ConfusionMatrixTableParams` +`func NewConfusionMatrixTableParams(inferenceArtifactIds []string, projectId string, customMetricName string, splitByLabel bool, ) *ConfusionMatrixTableParams` NewConfusionMatrixTableParams instantiates a new ConfusionMatrixTableParams object This constructor will assign default values to properties that have it defined, @@ -35,24 +35,24 @@ NewConfusionMatrixTableParamsWithDefaults instantiates a new ConfusionMatrixTabl This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set -### GetSessionRunsToEpochs +### GetInferenceArtifactIds -`func (o *ConfusionMatrixTableParams) GetSessionRunsToEpochs() []SessionRunToEpoch` +`func (o *ConfusionMatrixTableParams) GetInferenceArtifactIds() []string` -GetSessionRunsToEpochs returns the SessionRunsToEpochs field if non-nil, zero value otherwise. +GetInferenceArtifactIds returns the InferenceArtifactIds field if non-nil, zero value otherwise. -### GetSessionRunsToEpochsOk +### GetInferenceArtifactIdsOk -`func (o *ConfusionMatrixTableParams) GetSessionRunsToEpochsOk() (*[]SessionRunToEpoch, bool)` +`func (o *ConfusionMatrixTableParams) GetInferenceArtifactIdsOk() (*[]string, bool)` -GetSessionRunsToEpochsOk returns a tuple with the SessionRunsToEpochs field if it's non-nil, zero value otherwise +GetInferenceArtifactIdsOk returns a tuple with the InferenceArtifactIds field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunsToEpochs +### SetInferenceArtifactIds -`func (o *ConfusionMatrixTableParams) SetSessionRunsToEpochs(v []SessionRunToEpoch)` +`func (o *ConfusionMatrixTableParams) SetInferenceArtifactIds(v []string)` -SetSessionRunsToEpochs sets SessionRunsToEpochs field to given value. +SetInferenceArtifactIds sets InferenceArtifactIds field to given value. ### GetProjectId diff --git a/pkg/tensorleapapi/docs/ConfusionMetricNamesParams.md b/pkg/tensorleapapi/docs/ConfusionMetricNamesParams.md index b8c2f6dba..8814492f0 100644 --- a/pkg/tensorleapapi/docs/ConfusionMetricNamesParams.md +++ b/pkg/tensorleapapi/docs/ConfusionMetricNamesParams.md @@ -4,14 +4,14 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**SessionRunIds** | **[]string** | | +**InferenceArtifactIds** | **[]string** | | **ProjectId** | **string** | | ## Methods ### NewConfusionMetricNamesParams -`func NewConfusionMetricNamesParams(sessionRunIds []string, projectId string, ) *ConfusionMetricNamesParams` +`func NewConfusionMetricNamesParams(inferenceArtifactIds []string, projectId string, ) *ConfusionMetricNamesParams` NewConfusionMetricNamesParams instantiates a new ConfusionMetricNamesParams object This constructor will assign default values to properties that have it defined, @@ -26,24 +26,24 @@ NewConfusionMetricNamesParamsWithDefaults instantiates a new ConfusionMetricName This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set -### GetSessionRunIds +### GetInferenceArtifactIds -`func (o *ConfusionMetricNamesParams) GetSessionRunIds() []string` +`func (o *ConfusionMetricNamesParams) GetInferenceArtifactIds() []string` -GetSessionRunIds returns the SessionRunIds field if non-nil, zero value otherwise. +GetInferenceArtifactIds returns the InferenceArtifactIds field if non-nil, zero value otherwise. -### GetSessionRunIdsOk +### GetInferenceArtifactIdsOk -`func (o *ConfusionMetricNamesParams) GetSessionRunIdsOk() (*[]string, bool)` +`func (o *ConfusionMetricNamesParams) GetInferenceArtifactIdsOk() (*[]string, bool)` -GetSessionRunIdsOk returns a tuple with the SessionRunIds field if it's non-nil, zero value otherwise +GetInferenceArtifactIdsOk returns a tuple with the InferenceArtifactIds field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunIds +### SetInferenceArtifactIds -`func (o *ConfusionMetricNamesParams) SetSessionRunIds(v []string)` +`func (o *ConfusionMetricNamesParams) SetInferenceArtifactIds(v []string)` -SetSessionRunIds sets SessionRunIds field to given value. +SetInferenceArtifactIds sets InferenceArtifactIds field to given value. ### GetProjectId diff --git a/pkg/tensorleapapi/docs/ContinueEvaluateParams.md b/pkg/tensorleapapi/docs/ContinueEvaluateParams.md index 022051543..6f4940ac2 100644 --- a/pkg/tensorleapapi/docs/ContinueEvaluateParams.md +++ b/pkg/tensorleapapi/docs/ContinueEvaluateParams.md @@ -4,7 +4,8 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**SessionRunId** | **string** | | +**VersionId** | **string** | | +**InferenceArtifactId** | Pointer to **string** | | [optional] **ProjectId** | **string** | | **BatchSize** | Pointer to **float64** | | [optional] @@ -12,7 +13,7 @@ Name | Type | Description | Notes ### NewContinueEvaluateParams -`func NewContinueEvaluateParams(sessionRunId string, projectId string, ) *ContinueEvaluateParams` +`func NewContinueEvaluateParams(versionId string, projectId string, ) *ContinueEvaluateParams` NewContinueEvaluateParams instantiates a new ContinueEvaluateParams object This constructor will assign default values to properties that have it defined, @@ -27,26 +28,51 @@ NewContinueEvaluateParamsWithDefaults instantiates a new ContinueEvaluateParams This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set -### GetSessionRunId +### GetVersionId -`func (o *ContinueEvaluateParams) GetSessionRunId() string` +`func (o *ContinueEvaluateParams) GetVersionId() string` -GetSessionRunId returns the SessionRunId field if non-nil, zero value otherwise. +GetVersionId returns the VersionId field if non-nil, zero value otherwise. -### GetSessionRunIdOk +### GetVersionIdOk -`func (o *ContinueEvaluateParams) GetSessionRunIdOk() (*string, bool)` +`func (o *ContinueEvaluateParams) GetVersionIdOk() (*string, bool)` -GetSessionRunIdOk returns a tuple with the SessionRunId field if it's non-nil, zero value otherwise +GetVersionIdOk returns a tuple with the VersionId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunId +### SetVersionId -`func (o *ContinueEvaluateParams) SetSessionRunId(v string)` +`func (o *ContinueEvaluateParams) SetVersionId(v string)` -SetSessionRunId sets SessionRunId field to given value. +SetVersionId sets VersionId field to given value. +### GetInferenceArtifactId + +`func (o *ContinueEvaluateParams) GetInferenceArtifactId() string` + +GetInferenceArtifactId returns the InferenceArtifactId field if non-nil, zero value otherwise. + +### GetInferenceArtifactIdOk + +`func (o *ContinueEvaluateParams) GetInferenceArtifactIdOk() (*string, bool)` + +GetInferenceArtifactIdOk returns a tuple with the InferenceArtifactId field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetInferenceArtifactId + +`func (o *ContinueEvaluateParams) SetInferenceArtifactId(v string)` + +SetInferenceArtifactId sets InferenceArtifactId field to given value. + +### HasInferenceArtifactId + +`func (o *ContinueEvaluateParams) HasInferenceArtifactId() bool` + +HasInferenceArtifactId returns a boolean if a field has been set. + ### GetProjectId `func (o *ContinueEvaluateParams) GetProjectId() string` diff --git a/pkg/tensorleapapi/docs/CreateSampleVisualizationsParams.md b/pkg/tensorleapapi/docs/CreateSampleVisualizationsParams.md index 3045a467d..d75d9ef39 100644 --- a/pkg/tensorleapapi/docs/CreateSampleVisualizationsParams.md +++ b/pkg/tensorleapapi/docs/CreateSampleVisualizationsParams.md @@ -5,8 +5,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **ProjectId** | **string** | | -**SessionRunId** | **string** | | -**Epoch** | **float64** | | +**VersionId** | **string** | | **SampleIdentities** | Pointer to [**[]SampleIdentity**](SampleIdentity.md) | | [optional] **Digest** | **string** | | **Refresh** | Pointer to **bool** | | [optional] @@ -16,7 +15,7 @@ Name | Type | Description | Notes ### NewCreateSampleVisualizationsParams -`func NewCreateSampleVisualizationsParams(projectId string, sessionRunId string, epoch float64, digest string, ) *CreateSampleVisualizationsParams` +`func NewCreateSampleVisualizationsParams(projectId string, versionId string, digest string, ) *CreateSampleVisualizationsParams` NewCreateSampleVisualizationsParams instantiates a new CreateSampleVisualizationsParams object This constructor will assign default values to properties that have it defined, @@ -51,44 +50,24 @@ and a boolean to check if the value has been set. SetProjectId sets ProjectId field to given value. -### GetSessionRunId +### GetVersionId -`func (o *CreateSampleVisualizationsParams) GetSessionRunId() string` +`func (o *CreateSampleVisualizationsParams) GetVersionId() string` -GetSessionRunId returns the SessionRunId field if non-nil, zero value otherwise. +GetVersionId returns the VersionId field if non-nil, zero value otherwise. -### GetSessionRunIdOk +### GetVersionIdOk -`func (o *CreateSampleVisualizationsParams) GetSessionRunIdOk() (*string, bool)` +`func (o *CreateSampleVisualizationsParams) GetVersionIdOk() (*string, bool)` -GetSessionRunIdOk returns a tuple with the SessionRunId field if it's non-nil, zero value otherwise +GetVersionIdOk returns a tuple with the VersionId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunId +### SetVersionId -`func (o *CreateSampleVisualizationsParams) SetSessionRunId(v string)` +`func (o *CreateSampleVisualizationsParams) SetVersionId(v string)` -SetSessionRunId sets SessionRunId field to given value. - - -### GetEpoch - -`func (o *CreateSampleVisualizationsParams) GetEpoch() float64` - -GetEpoch returns the Epoch field if non-nil, zero value otherwise. - -### GetEpochOk - -`func (o *CreateSampleVisualizationsParams) GetEpochOk() (*float64, bool)` - -GetEpochOk returns a tuple with the Epoch field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetEpoch - -`func (o *CreateSampleVisualizationsParams) SetEpoch(v float64)` - -SetEpoch sets Epoch field to given value. +SetVersionId sets VersionId field to given value. ### GetSampleIdentities diff --git a/pkg/tensorleapapi/docs/CreateStreamingSamplesVisJobParams.md b/pkg/tensorleapapi/docs/CreateStreamingSamplesVisJobParams.md index aed0f90ed..5c7d90ae2 100644 --- a/pkg/tensorleapapi/docs/CreateStreamingSamplesVisJobParams.md +++ b/pkg/tensorleapapi/docs/CreateStreamingSamplesVisJobParams.md @@ -4,14 +4,14 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**SessionRunId** | **string** | | +**VersionId** | **string** | | **ProjectId** | **string** | | ## Methods ### NewCreateStreamingSamplesVisJobParams -`func NewCreateStreamingSamplesVisJobParams(sessionRunId string, projectId string, ) *CreateStreamingSamplesVisJobParams` +`func NewCreateStreamingSamplesVisJobParams(versionId string, projectId string, ) *CreateStreamingSamplesVisJobParams` NewCreateStreamingSamplesVisJobParams instantiates a new CreateStreamingSamplesVisJobParams object This constructor will assign default values to properties that have it defined, @@ -26,24 +26,24 @@ NewCreateStreamingSamplesVisJobParamsWithDefaults instantiates a new CreateStrea This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set -### GetSessionRunId +### GetVersionId -`func (o *CreateStreamingSamplesVisJobParams) GetSessionRunId() string` +`func (o *CreateStreamingSamplesVisJobParams) GetVersionId() string` -GetSessionRunId returns the SessionRunId field if non-nil, zero value otherwise. +GetVersionId returns the VersionId field if non-nil, zero value otherwise. -### GetSessionRunIdOk +### GetVersionIdOk -`func (o *CreateStreamingSamplesVisJobParams) GetSessionRunIdOk() (*string, bool)` +`func (o *CreateStreamingSamplesVisJobParams) GetVersionIdOk() (*string, bool)` -GetSessionRunIdOk returns a tuple with the SessionRunId field if it's non-nil, zero value otherwise +GetVersionIdOk returns a tuple with the VersionId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunId +### SetVersionId -`func (o *CreateStreamingSamplesVisJobParams) SetSessionRunId(v string)` +`func (o *CreateStreamingSamplesVisJobParams) SetVersionId(v string)` -SetSessionRunId sets SessionRunId field to given value. +SetVersionId sets VersionId field to given value. ### GetProjectId diff --git a/pkg/tensorleapapi/docs/DataLeakageInsight.md b/pkg/tensorleapapi/docs/DataLeakageInsight.md index 336029e29..e0b9c14b1 100644 --- a/pkg/tensorleapapi/docs/DataLeakageInsight.md +++ b/pkg/tensorleapapi/docs/DataLeakageInsight.md @@ -19,6 +19,7 @@ Name | Type | Description | Notes **AutomaticTests** | Pointer to [**[]InsightAutomaticTest**](InsightAutomaticTest.md) | | [optional] **AutoGenerated** | **bool** | | **EsFiltersUsedInAnalysis** | Pointer to [**[]ESFilter**](ESFilter.md) | | [optional] +**LatentSpace** | Pointer to **string** | | [optional] **FirstSubset** | [**DataStateType**](DataStateType.md) | | **SecondSubset** | [**DataStateType**](DataStateType.md) | | @@ -366,6 +367,31 @@ SetEsFiltersUsedInAnalysis sets EsFiltersUsedInAnalysis field to given value. HasEsFiltersUsedInAnalysis returns a boolean if a field has been set. +### GetLatentSpace + +`func (o *DataLeakageInsight) GetLatentSpace() string` + +GetLatentSpace returns the LatentSpace field if non-nil, zero value otherwise. + +### GetLatentSpaceOk + +`func (o *DataLeakageInsight) GetLatentSpaceOk() (*string, bool)` + +GetLatentSpaceOk returns a tuple with the LatentSpace field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetLatentSpace + +`func (o *DataLeakageInsight) SetLatentSpace(v string)` + +SetLatentSpace sets LatentSpace field to given value. + +### HasLatentSpace + +`func (o *DataLeakageInsight) HasLatentSpace() bool` + +HasLatentSpace returns a boolean if a field has been set. + ### GetFirstSubset `func (o *DataLeakageInsight) GetFirstSubset() DataStateType` diff --git a/pkg/tensorleapapi/docs/DatasetBalancing.md b/pkg/tensorleapapi/docs/DatasetBalancing.md index 8f9ca70ed..14ce8c6e9 100644 --- a/pkg/tensorleapapi/docs/DatasetBalancing.md +++ b/pkg/tensorleapapi/docs/DatasetBalancing.md @@ -6,9 +6,8 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **Id** | **string** | | **JobId** | **string** | | -**SessionRunId** | **string** | | -**SessionRunName** | **string** | | -**Epoch** | **float64** | | +**VersionId** | **string** | | +**VersionName** | **string** | | **CreatedAt** | **time.Time** | | **CreatedBy** | **string** | | **FileUrl** | Pointer to **string** | | [optional] @@ -19,12 +18,13 @@ Name | Type | Description | Notes **MetadataTags** | **[]string** | | **PrioritizedMetadataTags** | Pointer to **[]string** | | [optional] **PercentageOfSamplesToPrune** | Pointer to **float64** | | [optional] +**RunProcess** | Pointer to [**RunProcess**](RunProcess.md) | | [optional] ## Methods ### NewDatasetBalancing -`func NewDatasetBalancing(id string, jobId string, sessionRunId string, sessionRunName string, epoch float64, createdAt time.Time, createdBy string, status JobStatus, isDeleted bool, metadataTags []string, ) *DatasetBalancing` +`func NewDatasetBalancing(id string, jobId string, versionId string, versionName string, createdAt time.Time, createdBy string, status JobStatus, isDeleted bool, metadataTags []string, ) *DatasetBalancing` NewDatasetBalancing instantiates a new DatasetBalancing object This constructor will assign default values to properties that have it defined, @@ -79,64 +79,44 @@ and a boolean to check if the value has been set. SetJobId sets JobId field to given value. -### GetSessionRunId +### GetVersionId -`func (o *DatasetBalancing) GetSessionRunId() string` +`func (o *DatasetBalancing) GetVersionId() string` -GetSessionRunId returns the SessionRunId field if non-nil, zero value otherwise. +GetVersionId returns the VersionId field if non-nil, zero value otherwise. -### GetSessionRunIdOk +### GetVersionIdOk -`func (o *DatasetBalancing) GetSessionRunIdOk() (*string, bool)` +`func (o *DatasetBalancing) GetVersionIdOk() (*string, bool)` -GetSessionRunIdOk returns a tuple with the SessionRunId field if it's non-nil, zero value otherwise +GetVersionIdOk returns a tuple with the VersionId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunId +### SetVersionId -`func (o *DatasetBalancing) SetSessionRunId(v string)` +`func (o *DatasetBalancing) SetVersionId(v string)` -SetSessionRunId sets SessionRunId field to given value. +SetVersionId sets VersionId field to given value. -### GetSessionRunName +### GetVersionName -`func (o *DatasetBalancing) GetSessionRunName() string` +`func (o *DatasetBalancing) GetVersionName() string` -GetSessionRunName returns the SessionRunName field if non-nil, zero value otherwise. +GetVersionName returns the VersionName field if non-nil, zero value otherwise. -### GetSessionRunNameOk +### GetVersionNameOk -`func (o *DatasetBalancing) GetSessionRunNameOk() (*string, bool)` +`func (o *DatasetBalancing) GetVersionNameOk() (*string, bool)` -GetSessionRunNameOk returns a tuple with the SessionRunName field if it's non-nil, zero value otherwise +GetVersionNameOk returns a tuple with the VersionName field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunName +### SetVersionName -`func (o *DatasetBalancing) SetSessionRunName(v string)` +`func (o *DatasetBalancing) SetVersionName(v string)` -SetSessionRunName sets SessionRunName field to given value. - - -### GetEpoch - -`func (o *DatasetBalancing) GetEpoch() float64` - -GetEpoch returns the Epoch field if non-nil, zero value otherwise. - -### GetEpochOk - -`func (o *DatasetBalancing) GetEpochOk() (*float64, bool)` - -GetEpochOk returns a tuple with the Epoch field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetEpoch - -`func (o *DatasetBalancing) SetEpoch(v float64)` - -SetEpoch sets Epoch field to given value. +SetVersionName sets VersionName field to given value. ### GetCreatedAt @@ -364,6 +344,31 @@ SetPercentageOfSamplesToPrune sets PercentageOfSamplesToPrune field to given val HasPercentageOfSamplesToPrune returns a boolean if a field has been set. +### GetRunProcess + +`func (o *DatasetBalancing) GetRunProcess() RunProcess` + +GetRunProcess returns the RunProcess field if non-nil, zero value otherwise. + +### GetRunProcessOk + +`func (o *DatasetBalancing) GetRunProcessOk() (*RunProcess, bool)` + +GetRunProcessOk returns a tuple with the RunProcess field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetRunProcess + +`func (o *DatasetBalancing) SetRunProcess(v RunProcess)` + +SetRunProcess sets RunProcess field to given value. + +### HasRunProcess + +`func (o *DatasetBalancing) HasRunProcess() bool` + +HasRunProcess returns a boolean if a field has been set. + [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/pkg/tensorleapapi/docs/DatasetBalancingJobParams.md b/pkg/tensorleapapi/docs/DatasetBalancingJobParams.md index c20cdd8ee..3d8cb4269 100644 --- a/pkg/tensorleapapi/docs/DatasetBalancingJobParams.md +++ b/pkg/tensorleapapi/docs/DatasetBalancingJobParams.md @@ -9,15 +9,15 @@ Name | Type | Description | Notes **PrioritizedMetadataTags** | Pointer to **[]string** | | [optional] **MetadataTags** | **[]string** | | **Filters** | Pointer to [**[]ESFilter**](ESFilter.md) | | [optional] -**FromEpoch** | **float64** | | -**SessionRunId** | **string** | | +**InferenceArtifactId** | **string** | | +**VersionId** | **string** | | **Type** | **string** | | ## Methods ### NewDatasetBalancingJobParams -`func NewDatasetBalancingJobParams(digest string, metadataTags []string, fromEpoch float64, sessionRunId string, type_ string, ) *DatasetBalancingJobParams` +`func NewDatasetBalancingJobParams(digest string, metadataTags []string, inferenceArtifactId string, versionId string, type_ string, ) *DatasetBalancingJobParams` NewDatasetBalancingJobParams instantiates a new DatasetBalancingJobParams object This constructor will assign default values to properties that have it defined, @@ -147,44 +147,44 @@ SetFilters sets Filters field to given value. HasFilters returns a boolean if a field has been set. -### GetFromEpoch +### GetInferenceArtifactId -`func (o *DatasetBalancingJobParams) GetFromEpoch() float64` +`func (o *DatasetBalancingJobParams) GetInferenceArtifactId() string` -GetFromEpoch returns the FromEpoch field if non-nil, zero value otherwise. +GetInferenceArtifactId returns the InferenceArtifactId field if non-nil, zero value otherwise. -### GetFromEpochOk +### GetInferenceArtifactIdOk -`func (o *DatasetBalancingJobParams) GetFromEpochOk() (*float64, bool)` +`func (o *DatasetBalancingJobParams) GetInferenceArtifactIdOk() (*string, bool)` -GetFromEpochOk returns a tuple with the FromEpoch field if it's non-nil, zero value otherwise +GetInferenceArtifactIdOk returns a tuple with the InferenceArtifactId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetFromEpoch +### SetInferenceArtifactId -`func (o *DatasetBalancingJobParams) SetFromEpoch(v float64)` +`func (o *DatasetBalancingJobParams) SetInferenceArtifactId(v string)` -SetFromEpoch sets FromEpoch field to given value. +SetInferenceArtifactId sets InferenceArtifactId field to given value. -### GetSessionRunId +### GetVersionId -`func (o *DatasetBalancingJobParams) GetSessionRunId() string` +`func (o *DatasetBalancingJobParams) GetVersionId() string` -GetSessionRunId returns the SessionRunId field if non-nil, zero value otherwise. +GetVersionId returns the VersionId field if non-nil, zero value otherwise. -### GetSessionRunIdOk +### GetVersionIdOk -`func (o *DatasetBalancingJobParams) GetSessionRunIdOk() (*string, bool)` +`func (o *DatasetBalancingJobParams) GetVersionIdOk() (*string, bool)` -GetSessionRunIdOk returns a tuple with the SessionRunId field if it's non-nil, zero value otherwise +GetVersionIdOk returns a tuple with the VersionId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunId +### SetVersionId -`func (o *DatasetBalancingJobParams) SetSessionRunId(v string)` +`func (o *DatasetBalancingJobParams) SetVersionId(v string)` -SetSessionRunId sets SessionRunId field to given value. +SetVersionId sets VersionId field to given value. ### GetType diff --git a/pkg/tensorleapapi/docs/DefaultApi.md b/pkg/tensorleapapi/docs/DefaultApi.md index a9e731002..8dfa47263 100644 --- a/pkg/tensorleapapi/docs/DefaultApi.md +++ b/pkg/tensorleapapi/docs/DefaultApi.md @@ -6,7 +6,7 @@ Method | HTTP request | Description ------------- | ------------- | ------------- [**Activate**](DefaultAPI.md#Activate) | **Post** /auth/activate | [**AddDashboard**](DefaultAPI.md#AddDashboard) | **Post** /dashboards/addDashboard | -[**AddExportModelJob**](DefaultAPI.md#AddExportModelJob) | **Post** /exportedsessionruns/addExportModelJob | +[**AddExportModelJob**](DefaultAPI.md#AddExportModelJob) | **Post** /exportedmodels/addExportModelJob | [**AddIssue**](DefaultAPI.md#AddIssue) | **Post** /issues/addIssue | [**AddProject**](DefaultAPI.md#AddProject) | **Post** /projects/addProject | [**AddSampleCollection**](DefaultAPI.md#AddSampleCollection) | **Post** /sample-collection/addSampleCollection | @@ -26,8 +26,6 @@ Method | HTTP request | Description [**DeleteIssue**](DefaultAPI.md#DeleteIssue) | **Post** /issues/deleteIssue | [**DeleteProject**](DefaultAPI.md#DeleteProject) | **Post** /projects/deleteProject | [**DeleteSampleAnalysis**](DefaultAPI.md#DeleteSampleAnalysis) | **Post** /visualizations/deleteSampleAnalysis | -[**DeleteSession**](DefaultAPI.md#DeleteSession) | **Post** /sessions/deleteSession | -[**DeleteSessionRun**](DefaultAPI.md#DeleteSessionRun) | **Post** /sessions/deleteSessionRun | [**DeleteSessionTest**](DefaultAPI.md#DeleteSessionTest) | **Post** /sessions-tests/deleteSessionTest | [**DeleteSyntheticData**](DefaultAPI.md#DeleteSyntheticData) | **Post** /datasetcuration/deleteSyntheticData | [**DeleteTeam**](DefaultAPI.md#DeleteTeam) | **Post** /teams/deleteTeam | @@ -52,6 +50,7 @@ Method | HTTP request | Description [**GetBalancedAccuracy**](DefaultAPI.md#GetBalancedAccuracy) | **Post** /sessionmetrics/getBalancedAccuracy | [**GetCodeSnapshot**](DefaultAPI.md#GetCodeSnapshot) | **Post** /versions/getCodeSnapshot | [**GetCodeSnapshotUploadUrl**](DefaultAPI.md#GetCodeSnapshotUploadUrl) | **Post** /versions/getCodeSnapshotUploadUrl | +[**GetCollectionDisplayData**](DefaultAPI.md#GetCollectionDisplayData) | **Post** /sample-collection/getCollectionDisplayData | [**GetConfusionMatrixLabels**](DefaultAPI.md#GetConfusionMatrixLabels) | **Post** /sessionmetrics/getConfusionMatrixLabels | [**GetConfusionMatrixResultCombinations**](DefaultAPI.md#GetConfusionMatrixResultCombinations) | **Post** /sessionmetrics/getConfusionMatrixResultCombinations | [**GetConfusionMatrixTable**](DefaultAPI.md#GetConfusionMatrixTable) | **Post** /sessionmetrics/getConfusionMatrixTable | @@ -63,7 +62,7 @@ Method | HTTP request | Description [**GetDownloadSignedUrl**](DefaultAPI.md#GetDownloadSignedUrl) | **Post** /versions/getDownloadSignedUrl | [**GetEngineSettings**](DefaultAPI.md#GetEngineSettings) | **Post** /settings/getEngineSettings | [**GetEnvironmentInfo**](DefaultAPI.md#GetEnvironmentInfo) | **Post** /metadata/getEnvironmentInfo | -[**GetExportedSessionJobs**](DefaultAPI.md#GetExportedSessionJobs) | **Post** /exportedsessionruns/getExportedSessionJobs | +[**GetExportedModelJobs**](DefaultAPI.md#GetExportedModelJobs) | **Post** /exportedmodels/getExportedModelJobs | [**GetF1Score**](DefaultAPI.md#GetF1Score) | **Post** /sessionmetrics/getF1Score | [**GetFetchSimilarStatus**](DefaultAPI.md#GetFetchSimilarStatus) | **Post** /visualizations/getFetchSimilarStatus | [**GetFieldsValues**](DefaultAPI.md#GetFieldsValues) | **Post** /sessionmetrics/getFieldsValues | @@ -87,19 +86,13 @@ Method | HTTP request | Description [**GetProjectSlimVersions**](DefaultAPI.md#GetProjectSlimVersions) | **Post** /versions/getProjectSlimVersions | [**GetProjects**](DefaultAPI.md#GetProjects) | **Post** /projects/getProjects | [**GetRecallScore**](DefaultAPI.md#GetRecallScore) | **Post** /sessionmetrics/getRecallScore | -[**GetRecentTeamSessions**](DefaultAPI.md#GetRecentTeamSessions) | **Post** /sessions/getRecentTeamSessions | [**GetRoc**](DefaultAPI.md#GetRoc) | **Post** /sessionmetrics/getRoc | [**GetSampleCollections**](DefaultAPI.md#GetSampleCollections) | **Post** /sample-collection/getSampleCollections | [**GetSampleEnrichment**](DefaultAPI.md#GetSampleEnrichment) | **Post** /sessionmetrics/getSampleEnrichment | [**GetSampleVisualizationsPath**](DefaultAPI.md#GetSampleVisualizationsPath) | **Post** /visualizations/getSampleVisualizationsPath | [**GetScatterSampleVisualizations**](DefaultAPI.md#GetScatterSampleVisualizations) | **Post** /visualizations/getScatterSampleVisualizations | [**GetSecretManagerList**](DefaultAPI.md#GetSecretManagerList) | **Post** /secret-manager/getSecretManagerList | -[**GetSessionRunsEvaluate**](DefaultAPI.md#GetSessionRunsEvaluate) | **Post** /sessions/getSessionRunsEvaluate | -[**GetSessionRunsVisualizations**](DefaultAPI.md#GetSessionRunsVisualizations) | **Post** /visualizations/getSessionRunsVisualizations | [**GetSessionTestResult**](DefaultAPI.md#GetSessionTestResult) | **Post** /sessions-tests/getSessionTestResult | -[**GetSessionsByHash**](DefaultAPI.md#GetSessionsByHash) | **Post** /sessions/getSessionsByHash | -[**GetSessionsByVersionId**](DefaultAPI.md#GetSessionsByVersionId) | **Post** /sessions/getSessionsByVersionId | -[**GetSessionsEpochs**](DefaultAPI.md#GetSessionsEpochs) | **Post** /versions/getSessionsEpochs | [**GetSignedUrl**](DefaultAPI.md#GetSignedUrl) | **Post** /versions/getSignedUrl | [**GetSingleIssue**](DefaultAPI.md#GetSingleIssue) | **Post** /issues/getSingleIssue | [**GetSingleSessionTest**](DefaultAPI.md#GetSingleSessionTest) | **Post** /sessions-tests/getSingleSessionTest | @@ -114,6 +107,8 @@ Method | HTTP request | Description [**GetTeams**](DefaultAPI.md#GetTeams) | **Post** /teams/getTeams | [**GetUploadModelSignedUrl**](DefaultAPI.md#GetUploadModelSignedUrl) | **Post** /versions/getUploadModelSignedUrl | [**GetUploadSignedUrl**](DefaultAPI.md#GetUploadSignedUrl) | **Post** /versions/getUploadSignedUrl | +[**GetVersionsEpochs**](DefaultAPI.md#GetVersionsEpochs) | **Post** /versions/getVersionsEpochs | +[**GetVersionsVisualizations**](DefaultAPI.md#GetVersionsVisualizations) | **Post** /visualizations/getVersionsVisualizations | [**GetVisualization**](DefaultAPI.md#GetVisualization) | **Post** /visualizations/getVisualization | [**GetXYChart**](DefaultAPI.md#GetXYChart) | **Post** /sessionmetrics/getXYChart | [**HealthCheck**](DefaultAPI.md#HealthCheck) | **Get** /monitor/healthCheck | @@ -129,6 +124,7 @@ Method | HTTP request | Description [**Login**](DefaultAPI.md#Login) | **Post** /auth/login | [**Logout**](DefaultAPI.md#Logout) | **Post** /auth/logout | [**OverwriteModel**](DefaultAPI.md#OverwriteModel) | **Post** /versions/overwriteModel | +[**PopulateCollectionFromFilters**](DefaultAPI.md#PopulateCollectionFromFilters) | **Post** /sample-collection/populateCollectionFromFilters | [**PopulationExploration**](DefaultAPI.md#PopulationExploration) | **Post** /visualizations/populationExploration | [**PushCodeSnapshot**](DefaultAPI.md#PushCodeSnapshot) | **Post** /versions/pushCodeSnapshot | [**RefreshLocalAuth**](DefaultAPI.md#RefreshLocalAuth) | **Post** /auth/refreshLocalAuth | @@ -155,8 +151,6 @@ Method | HTTP request | Description [**UpdateProjectMeta**](DefaultAPI.md#UpdateProjectMeta) | **Post** /projects/updateProjectMeta | [**UpdateSampleCollection**](DefaultAPI.md#UpdateSampleCollection) | **Post** /sample-collection/updateSampleCollection | [**UpdateSecretManager**](DefaultAPI.md#UpdateSecretManager) | **Post** /secret-manager/updateSecretManager | -[**UpdateSessionName**](DefaultAPI.md#UpdateSessionName) | **Post** /sessions/updateSessionName | -[**UpdateSessionRun**](DefaultAPI.md#UpdateSessionRun) | **Post** /sessionsruns/updateSessionRun | [**UpdateSessionTest**](DefaultAPI.md#UpdateSessionTest) | **Post** /sessions-tests/updateSessionTest | [**UpdateTeamPublicName**](DefaultAPI.md#UpdateTeamPublicName) | **Post** /teams/updateTeamPublicName | [**UpdateUserName**](DefaultAPI.md#UpdateUserName) | **Post** /users/updateUserName | @@ -319,7 +313,7 @@ import ( ) func main() { - addExportModelJobParams := *openapiclient.NewAddExportModelJobParams("ProjectId_example", "SessionWeightId_example", openapiclient.ExportModelTypeEnum("JSON_TF2"), "Title_example", false) // AddExportModelJobParams | + addExportModelJobParams := *openapiclient.NewAddExportModelJobParams("ProjectId_example", "ModelId_example", openapiclient.ExportModelTypeEnum("JSON_TF2"), "Title_example", false) // AddExportModelJobParams | configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) @@ -701,7 +695,7 @@ import ( ) func main() { - calcPopulationExplorationDigestParams := *openapiclient.NewCalcPopulationExplorationDigestParams(*openapiclient.NewPickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestOrReRunAfterFail("SessionRunId_example", "ProjectId_example", float64(123), float64(123), float64(123), []string{"BalanceBy_example"}, false, openapiclient.ReductionAlgorithm("TSNE"))) // CalcPopulationExplorationDigestParams | + calcPopulationExplorationDigestParams := *openapiclient.NewCalcPopulationExplorationDigestParams(*openapiclient.NewPickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestOrReRunAfterFail("VersionId_example", "InferenceArtifactId_example", "ProjectId_example", float64(123), float64(123), []string{"BalanceBy_example"}, false, openapiclient.ReductionAlgorithm("TSNE"))) // CalcPopulationExplorationDigestParams | configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) @@ -879,7 +873,7 @@ import ( ) func main() { - continueEvaluateParams := *openapiclient.NewContinueEvaluateParams("SessionRunId_example", "ProjectId_example") // ContinueEvaluateParams | + continueEvaluateParams := *openapiclient.NewContinueEvaluateParams("VersionId_example", "ProjectId_example") // ContinueEvaluateParams | configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) @@ -943,7 +937,7 @@ import ( ) func main() { - createSampleVisualizationsParams := *openapiclient.NewCreateSampleVisualizationsParams("ProjectId_example", "SessionRunId_example", float64(123), "Digest_example") // CreateSampleVisualizationsParams | + createSampleVisualizationsParams := *openapiclient.NewCreateSampleVisualizationsParams("ProjectId_example", "VersionId_example", "Digest_example") // CreateSampleVisualizationsParams | configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) @@ -1071,7 +1065,7 @@ import ( ) func main() { - createStreamingSamplesVisJobParams := *openapiclient.NewCreateStreamingSamplesVisJobParams("SessionRunId_example", "ProjectId_example") // CreateStreamingSamplesVisJobParams | + createStreamingSamplesVisJobParams := *openapiclient.NewCreateStreamingSamplesVisJobParams("VersionId_example", "ProjectId_example") // CreateStreamingSamplesVisJobParams | configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) @@ -1509,7 +1503,7 @@ import ( ) func main() { - deleteSamplesAnalysisParams := *openapiclient.NewDeleteSamplesAnalysisParams("ProjectId_example", []string{"SessionRunIds_example"}, []openapiclient.SampleIdentity{*openapiclient.NewSampleIdentity(openapiclient.DataStateType("training"), *openapiclient.NewSampleIdType())}) // DeleteSamplesAnalysisParams | + deleteSamplesAnalysisParams := *openapiclient.NewDeleteSamplesAnalysisParams("ProjectId_example", []string{"VersionIds_example"}, []openapiclient.SampleIdentity{*openapiclient.NewSampleIdentity(openapiclient.DataStateType("training"), *openapiclient.NewSampleIdType())}) // DeleteSamplesAnalysisParams | configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) @@ -1552,130 +1546,6 @@ Name | Type | Description | Notes [[Back to README]](../README.md) -## DeleteSession - -> DeleteSession(ctx).DeleteSessionParams(deleteSessionParams).Execute() - - - -### Example - -```go -package main - -import ( - "context" - "fmt" - "os" - openapiclient "github.com/tensorleap/cli-go/pkg/tensorleapapi/tensorleapapi" -) - -func main() { - deleteSessionParams := *openapiclient.NewDeleteSessionParams("SessionId_example", "ProjectId_example") // DeleteSessionParams | - - configuration := openapiclient.NewConfiguration() - apiClient := openapiclient.NewAPIClient(configuration) - r, err := apiClient.DefaultAPI.DeleteSession(context.Background()).DeleteSessionParams(deleteSessionParams).Execute() - if err != nil { - fmt.Fprintf(os.Stderr, "Error when calling `DefaultAPI.DeleteSession``: %v\n", err) - fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r) - } -} -``` - -### Path Parameters - - - -### Other Parameters - -Other parameters are passed through a pointer to a apiDeleteSessionRequest struct via the builder pattern - - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **deleteSessionParams** | [**DeleteSessionParams**](DeleteSessionParams.md) | | - -### Return type - - (empty response body) - -### Authorization - -[jwt](../README.md#jwt) - -### HTTP request headers - -- **Content-Type**: application/json -- **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) -[[Back to Model list]](../README.md#documentation-for-models) -[[Back to README]](../README.md) - - -## DeleteSessionRun - -> DeleteSessionRun(ctx).DeleteSessionRunParams(deleteSessionRunParams).Execute() - - - -### Example - -```go -package main - -import ( - "context" - "fmt" - "os" - openapiclient "github.com/tensorleap/cli-go/pkg/tensorleapapi/tensorleapapi" -) - -func main() { - deleteSessionRunParams := *openapiclient.NewDeleteSessionRunParams("SessionRunId_example", "ProjectId_example") // DeleteSessionRunParams | - - configuration := openapiclient.NewConfiguration() - apiClient := openapiclient.NewAPIClient(configuration) - r, err := apiClient.DefaultAPI.DeleteSessionRun(context.Background()).DeleteSessionRunParams(deleteSessionRunParams).Execute() - if err != nil { - fmt.Fprintf(os.Stderr, "Error when calling `DefaultAPI.DeleteSessionRun``: %v\n", err) - fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r) - } -} -``` - -### Path Parameters - - - -### Other Parameters - -Other parameters are passed through a pointer to a apiDeleteSessionRunRequest struct via the builder pattern - - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **deleteSessionRunParams** | [**DeleteSessionRunParams**](DeleteSessionRunParams.md) | | - -### Return type - - (empty response body) - -### Authorization - -[jwt](../README.md#jwt) - -### HTTP request headers - -- **Content-Type**: application/json -- **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) -[[Back to Model list]](../README.md#documentation-for-models) -[[Back to README]](../README.md) - - ## DeleteSessionTest > DeleteSessionTest(ctx).DeleteSessionTestRequest(deleteSessionTestRequest).Execute() @@ -2133,7 +2003,7 @@ import ( ) func main() { - evaluateParams := *openapiclient.NewEvaluateParams("VersionId_example", "ProjectId_example", float64(123), "Name_example", "Description_example", float64(123), "SessionId_example") // EvaluateParams | + evaluateParams := *openapiclient.NewEvaluateParams("VersionId_example", "ProjectId_example", float64(123), float64(123)) // EvaluateParams | configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) @@ -2325,7 +2195,7 @@ import ( ) func main() { - fetchSimilarRequestParams := *openapiclient.NewFetchSimilarRequestParams("SessionRunId_example", "ProjectId_example", float64(123), []openapiclient.SampleIdentity{*openapiclient.NewSampleIdentity(openapiclient.DataStateType("training"), *openapiclient.NewSampleIdType())}, float64(123), "Digest_example") // FetchSimilarRequestParams | + fetchSimilarRequestParams := *openapiclient.NewFetchSimilarRequestParams("VersionId_example", "ProjectId_example", float64(123), []openapiclient.SampleIdentity{*openapiclient.NewSampleIdentity(openapiclient.DataStateType("training"), *openapiclient.NewSampleIdType())}, "Digest_example") // FetchSimilarRequestParams | configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) @@ -2389,7 +2259,7 @@ import ( ) func main() { - generateDatasetBalancingParams := *openapiclient.NewGenerateDatasetBalancingParams("ProjectId_example", "SessionRunId_example", float64(123), []string{"MetadataTags_example"}) // GenerateDatasetBalancingParams | + generateDatasetBalancingParams := *openapiclient.NewGenerateDatasetBalancingParams("ProjectId_example", "VersionId_example", []string{"MetadataTags_example"}) // GenerateDatasetBalancingParams | configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) @@ -2451,7 +2321,7 @@ import ( ) func main() { - generateInsightsParams := *openapiclient.NewGenerateInsightsParams("ProjectId_example", "SessionRunId_example") // GenerateInsightsParams | + generateInsightsParams := *openapiclient.NewGenerateInsightsParams("ProjectId_example") // GenerateInsightsParams | configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) @@ -2513,7 +2383,7 @@ import ( ) func main() { - generateLabelParams := *openapiclient.NewGenerateLabelParams("ProjectId_example", "SessionRunId_example", float64(123)) // GenerateLabelParams | + generateLabelParams := *openapiclient.NewGenerateLabelParams("ProjectId_example", "VersionId_example") // GenerateLabelParams | configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) @@ -2575,7 +2445,7 @@ import ( ) func main() { - generateStreamingSamplesVisParams := *openapiclient.NewGenerateStreamingSamplesVisParams("VisualizationType_example", []openapiclient.SampleIdentity{*openapiclient.NewSampleIdentity(openapiclient.DataStateType("training"), *openapiclient.NewSampleIdType())}, "SessionRunId_example", "ProjectId_example") // GenerateStreamingSamplesVisParams | + generateStreamingSamplesVisParams := *openapiclient.NewGenerateStreamingSamplesVisParams("VisualizationType_example", []openapiclient.SampleIdentity{*openapiclient.NewSampleIdentity(openapiclient.DataStateType("training"), *openapiclient.NewSampleIdType())}, "VisArtifactId_example", "ProjectId_example") // GenerateStreamingSamplesVisParams | configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) @@ -2637,7 +2507,7 @@ import ( ) func main() { - generateSyntheticDataParams := *openapiclient.NewGenerateSyntheticDataParams("ProjectId_example", "SessionRunId_example", float64(123), []openapiclient.GenerateSyntheticDataParamsSourcesInner{*openapiclient.NewGenerateSyntheticDataParamsSourcesInner([]string{"MetadataKeys_example"}, []openapiclient.ESFilter{*openapiclient.NewESFilter(openapiclient.FilterOperatorType("between"), "Field_example", *openapiclient.NewESFilterValue())})}, []openapiclient.ESFilter{*openapiclient.NewESFilter(openapiclient.FilterOperatorType("between"), "Field_example", *openapiclient.NewESFilterValue())}) // GenerateSyntheticDataParams | + generateSyntheticDataParams := *openapiclient.NewGenerateSyntheticDataParams("ProjectId_example", "VersionId_example", []openapiclient.SyntheticDataJobParamsSourcesInner{*openapiclient.NewSyntheticDataJobParamsSourcesInner([]string{"MetadataKeys_example"}, []openapiclient.ESFilter{*openapiclient.NewESFilter(openapiclient.FilterOperatorType("between"), "Field_example", *openapiclient.NewESFilterValue())})}, []openapiclient.ESFilter{*openapiclient.NewESFilter(openapiclient.FilterOperatorType("between"), "Field_example", *openapiclient.NewESFilterValue())}) // GenerateSyntheticDataParams | configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) @@ -3177,6 +3047,70 @@ Name | Type | Description | Notes [[Back to README]](../README.md) +## GetCollectionDisplayData + +> GetCollectionDisplayDataResponse GetCollectionDisplayData(ctx).GetCollectionDisplayDataParams(getCollectionDisplayDataParams).Execute() + + + +### Example + +```go +package main + +import ( + "context" + "fmt" + "os" + openapiclient "github.com/tensorleap/cli-go/pkg/tensorleapapi/tensorleapapi" +) + +func main() { + getCollectionDisplayDataParams := *openapiclient.NewGetCollectionDisplayDataParams("CollectionId_example", "ProjectId_example") // GetCollectionDisplayDataParams | + + configuration := openapiclient.NewConfiguration() + apiClient := openapiclient.NewAPIClient(configuration) + resp, r, err := apiClient.DefaultAPI.GetCollectionDisplayData(context.Background()).GetCollectionDisplayDataParams(getCollectionDisplayDataParams).Execute() + if err != nil { + fmt.Fprintf(os.Stderr, "Error when calling `DefaultAPI.GetCollectionDisplayData``: %v\n", err) + fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r) + } + // response from `GetCollectionDisplayData`: GetCollectionDisplayDataResponse + fmt.Fprintf(os.Stdout, "Response from `DefaultAPI.GetCollectionDisplayData`: %v\n", resp) +} +``` + +### Path Parameters + + + +### Other Parameters + +Other parameters are passed through a pointer to a apiGetCollectionDisplayDataRequest struct via the builder pattern + + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **getCollectionDisplayDataParams** | [**GetCollectionDisplayDataParams**](GetCollectionDisplayDataParams.md) | | + +### Return type + +[**GetCollectionDisplayDataResponse**](GetCollectionDisplayDataResponse.md) + +### Authorization + +[jwt](../README.md#jwt) + +### HTTP request headers + +- **Content-Type**: application/json +- **Accept**: application/json + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) +[[Back to Model list]](../README.md#documentation-for-models) +[[Back to README]](../README.md) + + ## GetConfusionMatrixLabels > ConfusionMatrixLabelsResponse GetConfusionMatrixLabels(ctx).GetConfusionMatrixLabels(getConfusionMatrixLabels).Execute() @@ -3196,7 +3130,7 @@ import ( ) func main() { - getConfusionMatrixLabels := *openapiclient.NewGetConfusionMatrixLabels("ProjectId_example", []string{"SessionRunIds_example"}) // GetConfusionMatrixLabels | + getConfusionMatrixLabels := *openapiclient.NewGetConfusionMatrixLabels("ProjectId_example", []string{"InferenceArtifactIds_example"}) // GetConfusionMatrixLabels | configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) @@ -3260,7 +3194,7 @@ import ( ) func main() { - getConfusionMatrixResultCombinationsParams := *openapiclient.NewGetConfusionMatrixResultCombinationsParams("ProjectId_example", []openapiclient.SessionRunToEpoch{*openapiclient.NewSessionRunToEpoch("SessionRunId_example", float64(123))}, *openapiclient.NewSplitAgg(NullableFloat64(123), openapiclient.OrderType("desc"), "Field_example", float64(123), "Distribution_example"), "CustomMetricName_example") // GetConfusionMatrixResultCombinationsParams | + getConfusionMatrixResultCombinationsParams := *openapiclient.NewGetConfusionMatrixResultCombinationsParams("ProjectId_example", []string{"InferenceArtifactIds_example"}, *openapiclient.NewSplitAgg(NullableFloat64(123), openapiclient.OrderType("desc"), "Field_example", float64(123), "Distribution_example"), "CustomMetricName_example") // GetConfusionMatrixResultCombinationsParams | configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) @@ -3324,7 +3258,7 @@ import ( ) func main() { - confusionMatrixTableParams := *openapiclient.NewConfusionMatrixTableParams([]openapiclient.SessionRunToEpoch{*openapiclient.NewSessionRunToEpoch("SessionRunId_example", float64(123))}, "ProjectId_example", "CustomMetricName_example", false) // ConfusionMatrixTableParams | + confusionMatrixTableParams := *openapiclient.NewConfusionMatrixTableParams([]string{"InferenceArtifactIds_example"}, "ProjectId_example", "CustomMetricName_example", false) // ConfusionMatrixTableParams | configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) @@ -3388,7 +3322,7 @@ import ( ) func main() { - confusionMetricNamesParams := *openapiclient.NewConfusionMetricNamesParams([]string{"SessionRunIds_example"}, "ProjectId_example") // ConfusionMetricNamesParams | + confusionMetricNamesParams := *openapiclient.NewConfusionMetricNamesParams([]string{"InferenceArtifactIds_example"}, "ProjectId_example") // ConfusionMetricNamesParams | configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) @@ -3580,7 +3514,7 @@ import ( ) func main() { - getDashletFieldsParams := *openapiclient.NewGetDashletFieldsParams("ProjectId_example", []string{"SessionRunIds_example"}) // GetDashletFieldsParams | + getDashletFieldsParams := *openapiclient.NewGetDashletFieldsParams("ProjectId_example", []string{"InferenceArtifactIds_example"}) // GetDashletFieldsParams | configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) @@ -3871,9 +3805,9 @@ Other parameters are passed through a pointer to a apiGetEnvironmentInfoRequest [[Back to README]](../README.md) -## GetExportedSessionJobs +## GetExportedModelJobs -> GetExportedSessionRunJobsResponse GetExportedSessionJobs(ctx).GetExportedSessionRunJobsParams(getExportedSessionRunJobsParams).Execute() +> GetExportedModelJobsResponse GetExportedModelJobs(ctx).GetExportedModelJobsParams(getExportedModelJobsParams).Execute() @@ -3890,17 +3824,17 @@ import ( ) func main() { - getExportedSessionRunJobsParams := *openapiclient.NewGetExportedSessionRunJobsParams("SessionId_example", "ProjectId_example") // GetExportedSessionRunJobsParams | + getExportedModelJobsParams := *openapiclient.NewGetExportedModelJobsParams("VersionId_example", "ProjectId_example") // GetExportedModelJobsParams | configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) - resp, r, err := apiClient.DefaultAPI.GetExportedSessionJobs(context.Background()).GetExportedSessionRunJobsParams(getExportedSessionRunJobsParams).Execute() + resp, r, err := apiClient.DefaultAPI.GetExportedModelJobs(context.Background()).GetExportedModelJobsParams(getExportedModelJobsParams).Execute() if err != nil { - fmt.Fprintf(os.Stderr, "Error when calling `DefaultAPI.GetExportedSessionJobs``: %v\n", err) + fmt.Fprintf(os.Stderr, "Error when calling `DefaultAPI.GetExportedModelJobs``: %v\n", err) fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r) } - // response from `GetExportedSessionJobs`: GetExportedSessionRunJobsResponse - fmt.Fprintf(os.Stdout, "Response from `DefaultAPI.GetExportedSessionJobs`: %v\n", resp) + // response from `GetExportedModelJobs`: GetExportedModelJobsResponse + fmt.Fprintf(os.Stdout, "Response from `DefaultAPI.GetExportedModelJobs`: %v\n", resp) } ``` @@ -3910,16 +3844,16 @@ func main() { ### Other Parameters -Other parameters are passed through a pointer to a apiGetExportedSessionJobsRequest struct via the builder pattern +Other parameters are passed through a pointer to a apiGetExportedModelJobsRequest struct via the builder pattern Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **getExportedSessionRunJobsParams** | [**GetExportedSessionRunJobsParams**](GetExportedSessionRunJobsParams.md) | | + **getExportedModelJobsParams** | [**GetExportedModelJobsParams**](GetExportedModelJobsParams.md) | | ### Return type -[**GetExportedSessionRunJobsResponse**](GetExportedSessionRunJobsResponse.md) +[**GetExportedModelJobsResponse**](GetExportedModelJobsResponse.md) ### Authorization @@ -4018,7 +3952,7 @@ import ( ) func main() { - fetchSimilarRequestParams := *openapiclient.NewFetchSimilarRequestParams("SessionRunId_example", "ProjectId_example", float64(123), []openapiclient.SampleIdentity{*openapiclient.NewSampleIdentity(openapiclient.DataStateType("training"), *openapiclient.NewSampleIdType())}, float64(123), "Digest_example") // FetchSimilarRequestParams | + fetchSimilarRequestParams := *openapiclient.NewFetchSimilarRequestParams("VersionId_example", "ProjectId_example", float64(123), []openapiclient.SampleIdentity{*openapiclient.NewSampleIdentity(openapiclient.DataStateType("training"), *openapiclient.NewSampleIdType())}, "Digest_example") // FetchSimilarRequestParams | configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) @@ -4082,7 +4016,7 @@ import ( ) func main() { - getFieldsValuesRequest := *openapiclient.NewGetFieldsValuesRequest([]openapiclient.ESFilter{*openapiclient.NewESFilter(openapiclient.FilterOperatorType("between"), "Field_example", *openapiclient.NewESFilterValue())}, []string{"SessionRunIds_example"}, []openapiclient.QueryFieldValues{*openapiclient.NewQueryFieldValues("Type_example", "Field_example")}, "ProjectId_example") // GetFieldsValuesRequest | + getFieldsValuesRequest := *openapiclient.NewGetFieldsValuesRequest([]openapiclient.ESFilter{*openapiclient.NewESFilter(openapiclient.FilterOperatorType("between"), "Field_example", *openapiclient.NewESFilterValue())}, []string{"InferenceArtifactIds_example"}, []openapiclient.QueryFieldValues{*openapiclient.NewQueryFieldValues("Type_example", "Field_example")}, "ProjectId_example") // GetFieldsValuesRequest | configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) @@ -4269,7 +4203,7 @@ import ( ) func main() { - heatmapChartsParams := *openapiclient.NewHeatmapChartsParams("ProjectId_example", *openapiclient.NewSplitAgg(NullableFloat64(123), openapiclient.OrderType("desc"), "Field_example", float64(123), "Distribution_example"), *openapiclient.NewSplitAgg(NullableFloat64(123), openapiclient.OrderType("desc"), "Field_example", float64(123), "Distribution_example"), *openapiclient.NewAggregations("Field_example", openapiclient.AggregationMethod("Average")), []openapiclient.SessionRunToEpoch{*openapiclient.NewSessionRunToEpoch("SessionRunId_example", float64(123))}, false) // HeatmapChartsParams | + heatmapChartsParams := *openapiclient.NewHeatmapChartsParams("ProjectId_example", *openapiclient.NewSplitAgg(NullableFloat64(123), openapiclient.OrderType("desc"), "Field_example", float64(123), "Distribution_example"), *openapiclient.NewSplitAgg(NullableFloat64(123), openapiclient.OrderType("desc"), "Field_example", float64(123), "Distribution_example"), *openapiclient.NewAggregations("Field_example", openapiclient.AggregationMethod("Average")), []string{"InferenceArtifactIds_example"}, false) // HeatmapChartsParams | configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) @@ -4333,7 +4267,7 @@ import ( ) func main() { - getInsightsParams := *openapiclient.NewGetInsightsParams("SessionRunId_example", "ProjectId_example") // GetInsightsParams | + getInsightsParams := *openapiclient.NewGetInsightsParams("ProjectId_example") // GetInsightsParams | configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) @@ -4707,7 +4641,7 @@ import ( ) func main() { - confusionMatrixParams := *openapiclient.NewConfusionMatrixParams("ProjectId_example", []openapiclient.SessionRunToEpoch{*openapiclient.NewSessionRunToEpoch("SessionRunId_example", float64(123))}, *openapiclient.NewSplitAgg(NullableFloat64(123), openapiclient.OrderType("desc"), "Field_example", float64(123), "Distribution_example"), "CustomMetricName_example") // ConfusionMatrixParams | + confusionMatrixParams := *openapiclient.NewConfusionMatrixParams("ProjectId_example", []string{"InferenceArtifactIds_example"}, *openapiclient.NewSplitAgg(NullableFloat64(123), openapiclient.OrderType("desc"), "Field_example", float64(123), "Distribution_example"), "CustomMetricName_example") // ConfusionMatrixParams | configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) @@ -4894,7 +4828,7 @@ import ( ) func main() { - populationExplorationParams := *openapiclient.NewPopulationExplorationParams("SessionRunId_example", "ProjectId_example", float64(123), float64(123), "Digest_example", float64(123), []string{"BalanceBy_example"}, false, openapiclient.ReductionAlgorithm("TSNE")) // PopulationExplorationParams | + populationExplorationParams := *openapiclient.NewPopulationExplorationParams("VersionId_example", "InferenceArtifactId_example", "ProjectId_example", float64(123), "Digest_example", float64(123), []string{"BalanceBy_example"}, false, openapiclient.ReductionAlgorithm("TSNE")) // PopulationExplorationParams | configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) @@ -5382,70 +5316,6 @@ Name | Type | Description | Notes [[Back to README]](../README.md) -## GetRecentTeamSessions - -> RecentSessionsResponse GetRecentTeamSessions(ctx).RecentTeamSessionsRequestParams(recentTeamSessionsRequestParams).Execute() - - - -### Example - -```go -package main - -import ( - "context" - "fmt" - "os" - openapiclient "github.com/tensorleap/cli-go/pkg/tensorleapapi/tensorleapapi" -) - -func main() { - recentTeamSessionsRequestParams := *openapiclient.NewRecentTeamSessionsRequestParams(float64(123), "ProjectId_example") // RecentTeamSessionsRequestParams | - - configuration := openapiclient.NewConfiguration() - apiClient := openapiclient.NewAPIClient(configuration) - resp, r, err := apiClient.DefaultAPI.GetRecentTeamSessions(context.Background()).RecentTeamSessionsRequestParams(recentTeamSessionsRequestParams).Execute() - if err != nil { - fmt.Fprintf(os.Stderr, "Error when calling `DefaultAPI.GetRecentTeamSessions``: %v\n", err) - fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r) - } - // response from `GetRecentTeamSessions`: RecentSessionsResponse - fmt.Fprintf(os.Stdout, "Response from `DefaultAPI.GetRecentTeamSessions`: %v\n", resp) -} -``` - -### Path Parameters - - - -### Other Parameters - -Other parameters are passed through a pointer to a apiGetRecentTeamSessionsRequest struct via the builder pattern - - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **recentTeamSessionsRequestParams** | [**RecentTeamSessionsRequestParams**](RecentTeamSessionsRequestParams.md) | | - -### Return type - -[**RecentSessionsResponse**](RecentSessionsResponse.md) - -### Authorization - -[jwt](../README.md#jwt) - -### HTTP request headers - -- **Content-Type**: application/json -- **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) -[[Back to Model list]](../README.md#documentation-for-models) -[[Back to README]](../README.md) - - ## GetRoc > MultiChartsResponse GetRoc(ctx).Body(body).Execute() @@ -5593,7 +5463,7 @@ import ( ) func main() { - getSampleEnrichmentParams := *openapiclient.NewGetSampleEnrichmentParams([]openapiclient.SampleIdentity{*openapiclient.NewSampleIdentity(openapiclient.DataStateType("training"), *openapiclient.NewSampleIdType())}, float64(123), []string{"SessionRunIds_example"}, "ProjectId_example") // GetSampleEnrichmentParams | + getSampleEnrichmentParams := *openapiclient.NewGetSampleEnrichmentParams([]openapiclient.SampleIdentity{*openapiclient.NewSampleIdentity(openapiclient.DataStateType("training"), *openapiclient.NewSampleIdType())}, float64(123), []string{"InferenceArtifactIds_example"}, "ProjectId_example") // GetSampleEnrichmentParams | configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) @@ -5721,7 +5591,7 @@ import ( ) func main() { - getScatterSampleVisualizationsParams := *openapiclient.NewGetScatterSampleVisualizationsParams("SessionRunId_example", "ProjectId_example", float64(123)) // GetScatterSampleVisualizationsParams | + getScatterSampleVisualizationsParams := *openapiclient.NewGetScatterSampleVisualizationsParams("VersionId_example", "ProjectId_example") // GetScatterSampleVisualizationsParams | configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) @@ -5825,9 +5695,9 @@ Other parameters are passed through a pointer to a apiGetSecretManagerListReques [[Back to README]](../README.md) -## GetSessionRunsEvaluate +## GetSessionTestResult -> GetSessionRunsEvaluateResponse GetSessionRunsEvaluate(ctx).GetSessionRunsEvaluateParams(getSessionRunsEvaluateParams).Execute() +> []AllSessionsTestResults GetSessionTestResult(ctx).GetSessionTestResultsRequest(getSessionTestResultsRequest).Execute() @@ -5844,17 +5714,17 @@ import ( ) func main() { - getSessionRunsEvaluateParams := *openapiclient.NewGetSessionRunsEvaluateParams("ProjectId_example") // GetSessionRunsEvaluateParams | + getSessionTestResultsRequest := *openapiclient.NewGetSessionTestResultsRequest("ProjectId_example", []openapiclient.SessionTestData{*openapiclient.NewSessionTestData("VersionId_example", "ProjectId_example", float64(123))}) // GetSessionTestResultsRequest | configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) - resp, r, err := apiClient.DefaultAPI.GetSessionRunsEvaluate(context.Background()).GetSessionRunsEvaluateParams(getSessionRunsEvaluateParams).Execute() + resp, r, err := apiClient.DefaultAPI.GetSessionTestResult(context.Background()).GetSessionTestResultsRequest(getSessionTestResultsRequest).Execute() if err != nil { - fmt.Fprintf(os.Stderr, "Error when calling `DefaultAPI.GetSessionRunsEvaluate``: %v\n", err) + fmt.Fprintf(os.Stderr, "Error when calling `DefaultAPI.GetSessionTestResult``: %v\n", err) fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r) } - // response from `GetSessionRunsEvaluate`: GetSessionRunsEvaluateResponse - fmt.Fprintf(os.Stdout, "Response from `DefaultAPI.GetSessionRunsEvaluate`: %v\n", resp) + // response from `GetSessionTestResult`: []AllSessionsTestResults + fmt.Fprintf(os.Stdout, "Response from `DefaultAPI.GetSessionTestResult`: %v\n", resp) } ``` @@ -5864,16 +5734,16 @@ func main() { ### Other Parameters -Other parameters are passed through a pointer to a apiGetSessionRunsEvaluateRequest struct via the builder pattern +Other parameters are passed through a pointer to a apiGetSessionTestResultRequest struct via the builder pattern Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **getSessionRunsEvaluateParams** | [**GetSessionRunsEvaluateParams**](GetSessionRunsEvaluateParams.md) | | + **getSessionTestResultsRequest** | [**GetSessionTestResultsRequest**](GetSessionTestResultsRequest.md) | | ### Return type -[**GetSessionRunsEvaluateResponse**](GetSessionRunsEvaluateResponse.md) +[**[]AllSessionsTestResults**](AllSessionsTestResults.md) ### Authorization @@ -5889,9 +5759,9 @@ Name | Type | Description | Notes [[Back to README]](../README.md) -## GetSessionRunsVisualizations +## GetSignedUrl -> GetSessionRunsVisualizationsResponse GetSessionRunsVisualizations(ctx).GetSessionRunsVisualizationsParams(getSessionRunsVisualizationsParams).Execute() +> ExternalImportModelStorage GetSignedUrl(ctx).GetSignedUrlParams(getSignedUrlParams).Execute() @@ -5908,17 +5778,17 @@ import ( ) func main() { - getSessionRunsVisualizationsParams := *openapiclient.NewGetSessionRunsVisualizationsParams([]string{"SessionRunIds_example"}, "ProjectId_example") // GetSessionRunsVisualizationsParams | + getSignedUrlParams := *openapiclient.NewGetSignedUrlParams("FileName_example", float64(123), openapiclient.HttpMethods("GET")) // GetSignedUrlParams | configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) - resp, r, err := apiClient.DefaultAPI.GetSessionRunsVisualizations(context.Background()).GetSessionRunsVisualizationsParams(getSessionRunsVisualizationsParams).Execute() + resp, r, err := apiClient.DefaultAPI.GetSignedUrl(context.Background()).GetSignedUrlParams(getSignedUrlParams).Execute() if err != nil { - fmt.Fprintf(os.Stderr, "Error when calling `DefaultAPI.GetSessionRunsVisualizations``: %v\n", err) + fmt.Fprintf(os.Stderr, "Error when calling `DefaultAPI.GetSignedUrl``: %v\n", err) fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r) } - // response from `GetSessionRunsVisualizations`: GetSessionRunsVisualizationsResponse - fmt.Fprintf(os.Stdout, "Response from `DefaultAPI.GetSessionRunsVisualizations`: %v\n", resp) + // response from `GetSignedUrl`: ExternalImportModelStorage + fmt.Fprintf(os.Stdout, "Response from `DefaultAPI.GetSignedUrl`: %v\n", resp) } ``` @@ -5928,16 +5798,16 @@ func main() { ### Other Parameters -Other parameters are passed through a pointer to a apiGetSessionRunsVisualizationsRequest struct via the builder pattern +Other parameters are passed through a pointer to a apiGetSignedUrlRequest struct via the builder pattern Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **getSessionRunsVisualizationsParams** | [**GetSessionRunsVisualizationsParams**](GetSessionRunsVisualizationsParams.md) | | + **getSignedUrlParams** | [**GetSignedUrlParams**](GetSignedUrlParams.md) | | ### Return type -[**GetSessionRunsVisualizationsResponse**](GetSessionRunsVisualizationsResponse.md) +[**ExternalImportModelStorage**](ExternalImportModelStorage.md) ### Authorization @@ -5953,9 +5823,9 @@ Name | Type | Description | Notes [[Back to README]](../README.md) -## GetSessionTestResult +## GetSingleIssue -> []AllSessionsTestResults GetSessionTestResult(ctx).GetSessionTestResultsRequest(getSessionTestResultsRequest).Execute() +> Issue GetSingleIssue(ctx).GetSingleIssueParams(getSingleIssueParams).Execute() @@ -5972,17 +5842,17 @@ import ( ) func main() { - getSessionTestResultsRequest := *openapiclient.NewGetSessionTestResultsRequest("ProjectId_example", []openapiclient.SessionTestData{*openapiclient.NewSessionTestData("SessionRunId_example", "ProjectId_example", float64(123))}) // GetSessionTestResultsRequest | + getSingleIssueParams := *openapiclient.NewGetSingleIssueParams("Cid_example", "ProjectId_example") // GetSingleIssueParams | configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) - resp, r, err := apiClient.DefaultAPI.GetSessionTestResult(context.Background()).GetSessionTestResultsRequest(getSessionTestResultsRequest).Execute() + resp, r, err := apiClient.DefaultAPI.GetSingleIssue(context.Background()).GetSingleIssueParams(getSingleIssueParams).Execute() if err != nil { - fmt.Fprintf(os.Stderr, "Error when calling `DefaultAPI.GetSessionTestResult``: %v\n", err) + fmt.Fprintf(os.Stderr, "Error when calling `DefaultAPI.GetSingleIssue``: %v\n", err) fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r) } - // response from `GetSessionTestResult`: []AllSessionsTestResults - fmt.Fprintf(os.Stdout, "Response from `DefaultAPI.GetSessionTestResult`: %v\n", resp) + // response from `GetSingleIssue`: Issue + fmt.Fprintf(os.Stdout, "Response from `DefaultAPI.GetSingleIssue`: %v\n", resp) } ``` @@ -5992,16 +5862,16 @@ func main() { ### Other Parameters -Other parameters are passed through a pointer to a apiGetSessionTestResultRequest struct via the builder pattern +Other parameters are passed through a pointer to a apiGetSingleIssueRequest struct via the builder pattern Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **getSessionTestResultsRequest** | [**GetSessionTestResultsRequest**](GetSessionTestResultsRequest.md) | | + **getSingleIssueParams** | [**GetSingleIssueParams**](GetSingleIssueParams.md) | | ### Return type -[**[]AllSessionsTestResults**](AllSessionsTestResults.md) +[**Issue**](Issue.md) ### Authorization @@ -6017,201 +5887,9 @@ Name | Type | Description | Notes [[Back to README]](../README.md) -## GetSessionsByHash - -> SessionsResponse GetSessionsByHash(ctx).SessionHashRequestParams(sessionHashRequestParams).Execute() - - - -### Example - -```go -package main - -import ( - "context" - "fmt" - "os" - openapiclient "github.com/tensorleap/cli-go/pkg/tensorleapapi/tensorleapapi" -) - -func main() { - sessionHashRequestParams := *openapiclient.NewSessionHashRequestParams("Hash_example", "ProjectId_example") // SessionHashRequestParams | - - configuration := openapiclient.NewConfiguration() - apiClient := openapiclient.NewAPIClient(configuration) - resp, r, err := apiClient.DefaultAPI.GetSessionsByHash(context.Background()).SessionHashRequestParams(sessionHashRequestParams).Execute() - if err != nil { - fmt.Fprintf(os.Stderr, "Error when calling `DefaultAPI.GetSessionsByHash``: %v\n", err) - fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r) - } - // response from `GetSessionsByHash`: SessionsResponse - fmt.Fprintf(os.Stdout, "Response from `DefaultAPI.GetSessionsByHash`: %v\n", resp) -} -``` - -### Path Parameters - - - -### Other Parameters - -Other parameters are passed through a pointer to a apiGetSessionsByHashRequest struct via the builder pattern - - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **sessionHashRequestParams** | [**SessionHashRequestParams**](SessionHashRequestParams.md) | | - -### Return type - -[**SessionsResponse**](SessionsResponse.md) - -### Authorization - -[jwt](../README.md#jwt) - -### HTTP request headers - -- **Content-Type**: application/json -- **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) -[[Back to Model list]](../README.md#documentation-for-models) -[[Back to README]](../README.md) - - -## GetSessionsByVersionId - -> SessionsResponse GetSessionsByVersionId(ctx).SessionVersionIdRequestParams(sessionVersionIdRequestParams).Execute() - - - -### Example - -```go -package main - -import ( - "context" - "fmt" - "os" - openapiclient "github.com/tensorleap/cli-go/pkg/tensorleapapi/tensorleapapi" -) - -func main() { - sessionVersionIdRequestParams := *openapiclient.NewSessionVersionIdRequestParams("VersionId_example", "ProjectId_example") // SessionVersionIdRequestParams | - - configuration := openapiclient.NewConfiguration() - apiClient := openapiclient.NewAPIClient(configuration) - resp, r, err := apiClient.DefaultAPI.GetSessionsByVersionId(context.Background()).SessionVersionIdRequestParams(sessionVersionIdRequestParams).Execute() - if err != nil { - fmt.Fprintf(os.Stderr, "Error when calling `DefaultAPI.GetSessionsByVersionId``: %v\n", err) - fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r) - } - // response from `GetSessionsByVersionId`: SessionsResponse - fmt.Fprintf(os.Stdout, "Response from `DefaultAPI.GetSessionsByVersionId`: %v\n", resp) -} -``` - -### Path Parameters - - - -### Other Parameters - -Other parameters are passed through a pointer to a apiGetSessionsByVersionIdRequest struct via the builder pattern - - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **sessionVersionIdRequestParams** | [**SessionVersionIdRequestParams**](SessionVersionIdRequestParams.md) | | - -### Return type - -[**SessionsResponse**](SessionsResponse.md) - -### Authorization - -[jwt](../README.md#jwt) - -### HTTP request headers - -- **Content-Type**: application/json -- **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) -[[Back to Model list]](../README.md#documentation-for-models) -[[Back to README]](../README.md) - - -## GetSessionsEpochs - -> GetSessionEpochsResponse GetSessionsEpochs(ctx).GetSessionsEpochsRequest(getSessionsEpochsRequest).Execute() - - - -### Example - -```go -package main - -import ( - "context" - "fmt" - "os" - openapiclient "github.com/tensorleap/cli-go/pkg/tensorleapapi/tensorleapapi" -) - -func main() { - getSessionsEpochsRequest := *openapiclient.NewGetSessionsEpochsRequest("ProjectId_example", []string{"SessionIds_example"}) // GetSessionsEpochsRequest | - - configuration := openapiclient.NewConfiguration() - apiClient := openapiclient.NewAPIClient(configuration) - resp, r, err := apiClient.DefaultAPI.GetSessionsEpochs(context.Background()).GetSessionsEpochsRequest(getSessionsEpochsRequest).Execute() - if err != nil { - fmt.Fprintf(os.Stderr, "Error when calling `DefaultAPI.GetSessionsEpochs``: %v\n", err) - fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r) - } - // response from `GetSessionsEpochs`: GetSessionEpochsResponse - fmt.Fprintf(os.Stdout, "Response from `DefaultAPI.GetSessionsEpochs`: %v\n", resp) -} -``` - -### Path Parameters - - - -### Other Parameters - -Other parameters are passed through a pointer to a apiGetSessionsEpochsRequest struct via the builder pattern - - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **getSessionsEpochsRequest** | [**GetSessionsEpochsRequest**](GetSessionsEpochsRequest.md) | | - -### Return type - -[**GetSessionEpochsResponse**](GetSessionEpochsResponse.md) - -### Authorization - -[jwt](../README.md#jwt) - -### HTTP request headers - -- **Content-Type**: application/json -- **Accept**: application/json - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) -[[Back to Model list]](../README.md#documentation-for-models) -[[Back to README]](../README.md) - - -## GetSignedUrl +## GetSingleSessionTest -> ExternalImportModelStorage GetSignedUrl(ctx).GetSignedUrlParams(getSignedUrlParams).Execute() +> SessionTest GetSingleSessionTest(ctx).GetSingleSessionTestRequest(getSingleSessionTestRequest).Execute() @@ -6228,17 +5906,17 @@ import ( ) func main() { - getSignedUrlParams := *openapiclient.NewGetSignedUrlParams("FileName_example", float64(123), openapiclient.HttpMethods("GET")) // GetSignedUrlParams | + getSingleSessionTestRequest := *openapiclient.NewGetSingleSessionTestRequest("Cid_example", "ProjectId_example") // GetSingleSessionTestRequest | configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) - resp, r, err := apiClient.DefaultAPI.GetSignedUrl(context.Background()).GetSignedUrlParams(getSignedUrlParams).Execute() + resp, r, err := apiClient.DefaultAPI.GetSingleSessionTest(context.Background()).GetSingleSessionTestRequest(getSingleSessionTestRequest).Execute() if err != nil { - fmt.Fprintf(os.Stderr, "Error when calling `DefaultAPI.GetSignedUrl``: %v\n", err) + fmt.Fprintf(os.Stderr, "Error when calling `DefaultAPI.GetSingleSessionTest``: %v\n", err) fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r) } - // response from `GetSignedUrl`: ExternalImportModelStorage - fmt.Fprintf(os.Stdout, "Response from `DefaultAPI.GetSignedUrl`: %v\n", resp) + // response from `GetSingleSessionTest`: SessionTest + fmt.Fprintf(os.Stdout, "Response from `DefaultAPI.GetSingleSessionTest`: %v\n", resp) } ``` @@ -6248,16 +5926,16 @@ func main() { ### Other Parameters -Other parameters are passed through a pointer to a apiGetSignedUrlRequest struct via the builder pattern +Other parameters are passed through a pointer to a apiGetSingleSessionTestRequest struct via the builder pattern Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **getSignedUrlParams** | [**GetSignedUrlParams**](GetSignedUrlParams.md) | | + **getSingleSessionTestRequest** | [**GetSingleSessionTestRequest**](GetSingleSessionTestRequest.md) | | ### Return type -[**ExternalImportModelStorage**](ExternalImportModelStorage.md) +[**SessionTest**](SessionTest.md) ### Authorization @@ -6273,9 +5951,9 @@ Name | Type | Description | Notes [[Back to README]](../README.md) -## GetSingleIssue +## GetSlimJobs -> Issue GetSingleIssue(ctx).GetSingleIssueParams(getSingleIssueParams).Execute() +> GetSlimJobsResponse GetSlimJobs(ctx).GetJobsFilterParams(getJobsFilterParams).Execute() @@ -6292,17 +5970,17 @@ import ( ) func main() { - getSingleIssueParams := *openapiclient.NewGetSingleIssueParams("Cid_example", "ProjectId_example") // GetSingleIssueParams | + getJobsFilterParams := *openapiclient.NewGetJobsFilterParams() // GetJobsFilterParams | configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) - resp, r, err := apiClient.DefaultAPI.GetSingleIssue(context.Background()).GetSingleIssueParams(getSingleIssueParams).Execute() + resp, r, err := apiClient.DefaultAPI.GetSlimJobs(context.Background()).GetJobsFilterParams(getJobsFilterParams).Execute() if err != nil { - fmt.Fprintf(os.Stderr, "Error when calling `DefaultAPI.GetSingleIssue``: %v\n", err) + fmt.Fprintf(os.Stderr, "Error when calling `DefaultAPI.GetSlimJobs``: %v\n", err) fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r) } - // response from `GetSingleIssue`: Issue - fmt.Fprintf(os.Stdout, "Response from `DefaultAPI.GetSingleIssue`: %v\n", resp) + // response from `GetSlimJobs`: GetSlimJobsResponse + fmt.Fprintf(os.Stdout, "Response from `DefaultAPI.GetSlimJobs`: %v\n", resp) } ``` @@ -6312,16 +5990,16 @@ func main() { ### Other Parameters -Other parameters are passed through a pointer to a apiGetSingleIssueRequest struct via the builder pattern +Other parameters are passed through a pointer to a apiGetSlimJobsRequest struct via the builder pattern Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **getSingleIssueParams** | [**GetSingleIssueParams**](GetSingleIssueParams.md) | | + **getJobsFilterParams** | [**GetJobsFilterParams**](GetJobsFilterParams.md) | | ### Return type -[**Issue**](Issue.md) +[**GetSlimJobsResponse**](GetSlimJobsResponse.md) ### Authorization @@ -6337,9 +6015,9 @@ Name | Type | Description | Notes [[Back to README]](../README.md) -## GetSingleSessionTest +## GetSlimVisualization -> SessionTest GetSingleSessionTest(ctx).GetSingleSessionTestRequest(getSingleSessionTestRequest).Execute() +> GetSlimVisualizationResponse GetSlimVisualization(ctx).GetSlimVisualizationParams(getSlimVisualizationParams).Execute() @@ -6356,17 +6034,17 @@ import ( ) func main() { - getSingleSessionTestRequest := *openapiclient.NewGetSingleSessionTestRequest("Cid_example", "ProjectId_example") // GetSingleSessionTestRequest | + getSlimVisualizationParams := *openapiclient.NewGetSlimVisualizationParams("VisualizationId_example", "ProjectId_example") // GetSlimVisualizationParams | configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) - resp, r, err := apiClient.DefaultAPI.GetSingleSessionTest(context.Background()).GetSingleSessionTestRequest(getSingleSessionTestRequest).Execute() + resp, r, err := apiClient.DefaultAPI.GetSlimVisualization(context.Background()).GetSlimVisualizationParams(getSlimVisualizationParams).Execute() if err != nil { - fmt.Fprintf(os.Stderr, "Error when calling `DefaultAPI.GetSingleSessionTest``: %v\n", err) + fmt.Fprintf(os.Stderr, "Error when calling `DefaultAPI.GetSlimVisualization``: %v\n", err) fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r) } - // response from `GetSingleSessionTest`: SessionTest - fmt.Fprintf(os.Stdout, "Response from `DefaultAPI.GetSingleSessionTest`: %v\n", resp) + // response from `GetSlimVisualization`: GetSlimVisualizationResponse + fmt.Fprintf(os.Stdout, "Response from `DefaultAPI.GetSlimVisualization`: %v\n", resp) } ``` @@ -6376,16 +6054,16 @@ func main() { ### Other Parameters -Other parameters are passed through a pointer to a apiGetSingleSessionTestRequest struct via the builder pattern +Other parameters are passed through a pointer to a apiGetSlimVisualizationRequest struct via the builder pattern Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **getSingleSessionTestRequest** | [**GetSingleSessionTestRequest**](GetSingleSessionTestRequest.md) | | + **getSlimVisualizationParams** | [**GetSlimVisualizationParams**](GetSlimVisualizationParams.md) | | ### Return type -[**SessionTest**](SessionTest.md) +[**GetSlimVisualizationResponse**](GetSlimVisualizationResponse.md) ### Authorization @@ -6401,9 +6079,9 @@ Name | Type | Description | Notes [[Back to README]](../README.md) -## GetSlimJobs +## GetState -> GetSlimJobsResponse GetSlimJobs(ctx).GetJobsFilterParams(getJobsFilterParams).Execute() +> GetStateResponse GetState(ctx).GetStateParams(getStateParams).Execute() @@ -6420,17 +6098,17 @@ import ( ) func main() { - getJobsFilterParams := *openapiclient.NewGetJobsFilterParams() // GetJobsFilterParams | + getStateParams := *openapiclient.NewGetStateParams("ProjectId_example", "Digest_example") // GetStateParams | configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) - resp, r, err := apiClient.DefaultAPI.GetSlimJobs(context.Background()).GetJobsFilterParams(getJobsFilterParams).Execute() + resp, r, err := apiClient.DefaultAPI.GetState(context.Background()).GetStateParams(getStateParams).Execute() if err != nil { - fmt.Fprintf(os.Stderr, "Error when calling `DefaultAPI.GetSlimJobs``: %v\n", err) + fmt.Fprintf(os.Stderr, "Error when calling `DefaultAPI.GetState``: %v\n", err) fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r) } - // response from `GetSlimJobs`: GetSlimJobsResponse - fmt.Fprintf(os.Stdout, "Response from `DefaultAPI.GetSlimJobs`: %v\n", resp) + // response from `GetState`: GetStateResponse + fmt.Fprintf(os.Stdout, "Response from `DefaultAPI.GetState`: %v\n", resp) } ``` @@ -6440,16 +6118,16 @@ func main() { ### Other Parameters -Other parameters are passed through a pointer to a apiGetSlimJobsRequest struct via the builder pattern +Other parameters are passed through a pointer to a apiGetStateRequest struct via the builder pattern Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **getJobsFilterParams** | [**GetJobsFilterParams**](GetJobsFilterParams.md) | | + **getStateParams** | [**GetStateParams**](GetStateParams.md) | | ### Return type -[**GetSlimJobsResponse**](GetSlimJobsResponse.md) +[**GetStateResponse**](GetStateResponse.md) ### Authorization @@ -6465,9 +6143,9 @@ Name | Type | Description | Notes [[Back to README]](../README.md) -## GetSlimVisualization +## GetStatistics -> GetSlimVisualizationResponse GetSlimVisualization(ctx).GetSlimVisualizationParams(getSlimVisualizationParams).Execute() +> GetStatisticsResponse GetStatistics(ctx).GetStatisticsParams(getStatisticsParams).Execute() @@ -6484,17 +6162,17 @@ import ( ) func main() { - getSlimVisualizationParams := *openapiclient.NewGetSlimVisualizationParams("VisualizationId_example", "ProjectId_example") // GetSlimVisualizationParams | + getStatisticsParams := *openapiclient.NewGetStatisticsParams("ProjectId_example") // GetStatisticsParams | configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) - resp, r, err := apiClient.DefaultAPI.GetSlimVisualization(context.Background()).GetSlimVisualizationParams(getSlimVisualizationParams).Execute() + resp, r, err := apiClient.DefaultAPI.GetStatistics(context.Background()).GetStatisticsParams(getStatisticsParams).Execute() if err != nil { - fmt.Fprintf(os.Stderr, "Error when calling `DefaultAPI.GetSlimVisualization``: %v\n", err) + fmt.Fprintf(os.Stderr, "Error when calling `DefaultAPI.GetStatistics``: %v\n", err) fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r) } - // response from `GetSlimVisualization`: GetSlimVisualizationResponse - fmt.Fprintf(os.Stdout, "Response from `DefaultAPI.GetSlimVisualization`: %v\n", resp) + // response from `GetStatistics`: GetStatisticsResponse + fmt.Fprintf(os.Stdout, "Response from `DefaultAPI.GetStatistics`: %v\n", resp) } ``` @@ -6504,16 +6182,16 @@ func main() { ### Other Parameters -Other parameters are passed through a pointer to a apiGetSlimVisualizationRequest struct via the builder pattern +Other parameters are passed through a pointer to a apiGetStatisticsRequest struct via the builder pattern Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **getSlimVisualizationParams** | [**GetSlimVisualizationParams**](GetSlimVisualizationParams.md) | | + **getStatisticsParams** | [**GetStatisticsParams**](GetStatisticsParams.md) | | ### Return type -[**GetSlimVisualizationResponse**](GetSlimVisualizationResponse.md) +[**GetStatisticsResponse**](GetStatisticsResponse.md) ### Authorization @@ -6529,9 +6207,9 @@ Name | Type | Description | Notes [[Back to README]](../README.md) -## GetState +## GetSyntheticData -> GetStateResponse GetState(ctx).GetStateParams(getStateParams).Execute() +> SyntheticDataResponse GetSyntheticData(ctx).GetSyntheticDataParams(getSyntheticDataParams).Execute() @@ -6548,17 +6226,17 @@ import ( ) func main() { - getStateParams := *openapiclient.NewGetStateParams("ProjectId_example", "Digest_example") // GetStateParams | + getSyntheticDataParams := *openapiclient.NewGetSyntheticDataParams("ProjectId_example") // GetSyntheticDataParams | configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) - resp, r, err := apiClient.DefaultAPI.GetState(context.Background()).GetStateParams(getStateParams).Execute() + resp, r, err := apiClient.DefaultAPI.GetSyntheticData(context.Background()).GetSyntheticDataParams(getSyntheticDataParams).Execute() if err != nil { - fmt.Fprintf(os.Stderr, "Error when calling `DefaultAPI.GetState``: %v\n", err) + fmt.Fprintf(os.Stderr, "Error when calling `DefaultAPI.GetSyntheticData``: %v\n", err) fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r) } - // response from `GetState`: GetStateResponse - fmt.Fprintf(os.Stdout, "Response from `DefaultAPI.GetState`: %v\n", resp) + // response from `GetSyntheticData`: SyntheticDataResponse + fmt.Fprintf(os.Stdout, "Response from `DefaultAPI.GetSyntheticData`: %v\n", resp) } ``` @@ -6568,16 +6246,16 @@ func main() { ### Other Parameters -Other parameters are passed through a pointer to a apiGetStateRequest struct via the builder pattern +Other parameters are passed through a pointer to a apiGetSyntheticDataRequest struct via the builder pattern Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **getStateParams** | [**GetStateParams**](GetStateParams.md) | | + **getSyntheticDataParams** | [**GetSyntheticDataParams**](GetSyntheticDataParams.md) | | ### Return type -[**GetStateResponse**](GetStateResponse.md) +[**SyntheticDataResponse**](SyntheticDataResponse.md) ### Authorization @@ -6593,9 +6271,9 @@ Name | Type | Description | Notes [[Back to README]](../README.md) -## GetStatistics +## GetTableChart -> GetStatisticsResponse GetStatistics(ctx).GetStatisticsParams(getStatisticsParams).Execute() +> MultiChartsResponse GetTableChart(ctx).GenericDataQueryParams(genericDataQueryParams).Execute() @@ -6612,17 +6290,17 @@ import ( ) func main() { - getStatisticsParams := *openapiclient.NewGetStatisticsParams("ProjectId_example") // GetStatisticsParams | + genericDataQueryParams := *openapiclient.NewGenericDataQueryParams("ProjectId_example", []string{"InferenceArtifactIds_example"}, false, []openapiclient.Aggregations{*openapiclient.NewAggregations("Field_example", openapiclient.AggregationMethod("Average"))}, []openapiclient.SplitAgg{*openapiclient.NewSplitAgg(NullableFloat64(123), openapiclient.OrderType("desc"), "Field_example", float64(123), "Distribution_example")}) // GenericDataQueryParams | configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) - resp, r, err := apiClient.DefaultAPI.GetStatistics(context.Background()).GetStatisticsParams(getStatisticsParams).Execute() + resp, r, err := apiClient.DefaultAPI.GetTableChart(context.Background()).GenericDataQueryParams(genericDataQueryParams).Execute() if err != nil { - fmt.Fprintf(os.Stderr, "Error when calling `DefaultAPI.GetStatistics``: %v\n", err) + fmt.Fprintf(os.Stderr, "Error when calling `DefaultAPI.GetTableChart``: %v\n", err) fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r) } - // response from `GetStatistics`: GetStatisticsResponse - fmt.Fprintf(os.Stdout, "Response from `DefaultAPI.GetStatistics`: %v\n", resp) + // response from `GetTableChart`: MultiChartsResponse + fmt.Fprintf(os.Stdout, "Response from `DefaultAPI.GetTableChart`: %v\n", resp) } ``` @@ -6632,16 +6310,16 @@ func main() { ### Other Parameters -Other parameters are passed through a pointer to a apiGetStatisticsRequest struct via the builder pattern +Other parameters are passed through a pointer to a apiGetTableChartRequest struct via the builder pattern Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **getStatisticsParams** | [**GetStatisticsParams**](GetStatisticsParams.md) | | + **genericDataQueryParams** | [**GenericDataQueryParams**](GenericDataQueryParams.md) | | ### Return type -[**GetStatisticsResponse**](GetStatisticsResponse.md) +[**MultiChartsResponse**](MultiChartsResponse.md) ### Authorization @@ -6657,9 +6335,9 @@ Name | Type | Description | Notes [[Back to README]](../README.md) -## GetSyntheticData +## GetTeamJobs -> SyntheticDataResponse GetSyntheticData(ctx).GetSyntheticDataParams(getSyntheticDataParams).Execute() +> GetJobsResponse GetTeamJobs(ctx).GetJobsFilterParams(getJobsFilterParams).Execute() @@ -6676,17 +6354,17 @@ import ( ) func main() { - getSyntheticDataParams := *openapiclient.NewGetSyntheticDataParams("ProjectId_example") // GetSyntheticDataParams | + getJobsFilterParams := *openapiclient.NewGetJobsFilterParams() // GetJobsFilterParams | configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) - resp, r, err := apiClient.DefaultAPI.GetSyntheticData(context.Background()).GetSyntheticDataParams(getSyntheticDataParams).Execute() + resp, r, err := apiClient.DefaultAPI.GetTeamJobs(context.Background()).GetJobsFilterParams(getJobsFilterParams).Execute() if err != nil { - fmt.Fprintf(os.Stderr, "Error when calling `DefaultAPI.GetSyntheticData``: %v\n", err) + fmt.Fprintf(os.Stderr, "Error when calling `DefaultAPI.GetTeamJobs``: %v\n", err) fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r) } - // response from `GetSyntheticData`: SyntheticDataResponse - fmt.Fprintf(os.Stdout, "Response from `DefaultAPI.GetSyntheticData`: %v\n", resp) + // response from `GetTeamJobs`: GetJobsResponse + fmt.Fprintf(os.Stdout, "Response from `DefaultAPI.GetTeamJobs`: %v\n", resp) } ``` @@ -6696,16 +6374,16 @@ func main() { ### Other Parameters -Other parameters are passed through a pointer to a apiGetSyntheticDataRequest struct via the builder pattern +Other parameters are passed through a pointer to a apiGetTeamJobsRequest struct via the builder pattern Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **getSyntheticDataParams** | [**GetSyntheticDataParams**](GetSyntheticDataParams.md) | | + **getJobsFilterParams** | [**GetJobsFilterParams**](GetJobsFilterParams.md) | | ### Return type -[**SyntheticDataResponse**](SyntheticDataResponse.md) +[**GetJobsResponse**](GetJobsResponse.md) ### Authorization @@ -6721,9 +6399,9 @@ Name | Type | Description | Notes [[Back to README]](../README.md) -## GetTableChart +## GetTeamSlimUserData -> MultiChartsResponse GetTableChart(ctx).GenericDataQueryParams(genericDataQueryParams).Execute() +> GetTeamUsersResponse GetTeamSlimUserData(ctx).Execute() @@ -6740,36 +6418,31 @@ import ( ) func main() { - genericDataQueryParams := *openapiclient.NewGenericDataQueryParams("ProjectId_example", []openapiclient.SessionRunToEpoch{*openapiclient.NewSessionRunToEpoch("SessionRunId_example", float64(123))}, false, []openapiclient.Aggregations{*openapiclient.NewAggregations("Field_example", openapiclient.AggregationMethod("Average"))}, []openapiclient.SplitAgg{*openapiclient.NewSplitAgg(NullableFloat64(123), openapiclient.OrderType("desc"), "Field_example", float64(123), "Distribution_example")}) // GenericDataQueryParams | configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) - resp, r, err := apiClient.DefaultAPI.GetTableChart(context.Background()).GenericDataQueryParams(genericDataQueryParams).Execute() + resp, r, err := apiClient.DefaultAPI.GetTeamSlimUserData(context.Background()).Execute() if err != nil { - fmt.Fprintf(os.Stderr, "Error when calling `DefaultAPI.GetTableChart``: %v\n", err) + fmt.Fprintf(os.Stderr, "Error when calling `DefaultAPI.GetTeamSlimUserData``: %v\n", err) fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r) } - // response from `GetTableChart`: MultiChartsResponse - fmt.Fprintf(os.Stdout, "Response from `DefaultAPI.GetTableChart`: %v\n", resp) + // response from `GetTeamSlimUserData`: GetTeamUsersResponse + fmt.Fprintf(os.Stdout, "Response from `DefaultAPI.GetTeamSlimUserData`: %v\n", resp) } ``` ### Path Parameters - +This endpoint does not need any parameter. ### Other Parameters -Other parameters are passed through a pointer to a apiGetTableChartRequest struct via the builder pattern +Other parameters are passed through a pointer to a apiGetTeamSlimUserDataRequest struct via the builder pattern -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **genericDataQueryParams** | [**GenericDataQueryParams**](GenericDataQueryParams.md) | | - ### Return type -[**MultiChartsResponse**](MultiChartsResponse.md) +[**GetTeamUsersResponse**](GetTeamUsersResponse.md) ### Authorization @@ -6777,7 +6450,7 @@ Name | Type | Description | Notes ### HTTP request headers -- **Content-Type**: application/json +- **Content-Type**: Not defined - **Accept**: application/json [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) @@ -6785,9 +6458,9 @@ Name | Type | Description | Notes [[Back to README]](../README.md) -## GetTeamJobs +## GetTeams -> GetJobsResponse GetTeamJobs(ctx).GetJobsFilterParams(getJobsFilterParams).Execute() +> GetTeamsResponse GetTeams(ctx).Execute() @@ -6804,36 +6477,31 @@ import ( ) func main() { - getJobsFilterParams := *openapiclient.NewGetJobsFilterParams() // GetJobsFilterParams | configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) - resp, r, err := apiClient.DefaultAPI.GetTeamJobs(context.Background()).GetJobsFilterParams(getJobsFilterParams).Execute() + resp, r, err := apiClient.DefaultAPI.GetTeams(context.Background()).Execute() if err != nil { - fmt.Fprintf(os.Stderr, "Error when calling `DefaultAPI.GetTeamJobs``: %v\n", err) + fmt.Fprintf(os.Stderr, "Error when calling `DefaultAPI.GetTeams``: %v\n", err) fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r) } - // response from `GetTeamJobs`: GetJobsResponse - fmt.Fprintf(os.Stdout, "Response from `DefaultAPI.GetTeamJobs`: %v\n", resp) + // response from `GetTeams`: GetTeamsResponse + fmt.Fprintf(os.Stdout, "Response from `DefaultAPI.GetTeams`: %v\n", resp) } ``` ### Path Parameters - +This endpoint does not need any parameter. ### Other Parameters -Other parameters are passed through a pointer to a apiGetTeamJobsRequest struct via the builder pattern - +Other parameters are passed through a pointer to a apiGetTeamsRequest struct via the builder pattern -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **getJobsFilterParams** | [**GetJobsFilterParams**](GetJobsFilterParams.md) | | ### Return type -[**GetJobsResponse**](GetJobsResponse.md) +[**GetTeamsResponse**](GetTeamsResponse.md) ### Authorization @@ -6841,7 +6509,7 @@ Name | Type | Description | Notes ### HTTP request headers -- **Content-Type**: application/json +- **Content-Type**: Not defined - **Accept**: application/json [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) @@ -6849,9 +6517,9 @@ Name | Type | Description | Notes [[Back to README]](../README.md) -## GetTeamSlimUserData +## GetUploadModelSignedUrl -> GetTeamUsersResponse GetTeamSlimUserData(ctx).Execute() +> ExternalImportModelStorage GetUploadModelSignedUrl(ctx).GetUploadModelSignedUrlRequest(getUploadModelSignedUrlRequest).Execute() @@ -6868,31 +6536,36 @@ import ( ) func main() { + getUploadModelSignedUrlRequest := *openapiclient.NewGetUploadModelSignedUrlRequest(float64(123), "ExperimentId_example", openapiclient.UploadModelFileType("onnx"), "VersionId_example", "ProjectId_example") // GetUploadModelSignedUrlRequest | configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) - resp, r, err := apiClient.DefaultAPI.GetTeamSlimUserData(context.Background()).Execute() + resp, r, err := apiClient.DefaultAPI.GetUploadModelSignedUrl(context.Background()).GetUploadModelSignedUrlRequest(getUploadModelSignedUrlRequest).Execute() if err != nil { - fmt.Fprintf(os.Stderr, "Error when calling `DefaultAPI.GetTeamSlimUserData``: %v\n", err) + fmt.Fprintf(os.Stderr, "Error when calling `DefaultAPI.GetUploadModelSignedUrl``: %v\n", err) fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r) } - // response from `GetTeamSlimUserData`: GetTeamUsersResponse - fmt.Fprintf(os.Stdout, "Response from `DefaultAPI.GetTeamSlimUserData`: %v\n", resp) + // response from `GetUploadModelSignedUrl`: ExternalImportModelStorage + fmt.Fprintf(os.Stdout, "Response from `DefaultAPI.GetUploadModelSignedUrl`: %v\n", resp) } ``` ### Path Parameters -This endpoint does not need any parameter. + ### Other Parameters -Other parameters are passed through a pointer to a apiGetTeamSlimUserDataRequest struct via the builder pattern +Other parameters are passed through a pointer to a apiGetUploadModelSignedUrlRequest struct via the builder pattern + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **getUploadModelSignedUrlRequest** | [**GetUploadModelSignedUrlRequest**](GetUploadModelSignedUrlRequest.md) | | ### Return type -[**GetTeamUsersResponse**](GetTeamUsersResponse.md) +[**ExternalImportModelStorage**](ExternalImportModelStorage.md) ### Authorization @@ -6900,7 +6573,7 @@ Other parameters are passed through a pointer to a apiGetTeamSlimUserDataRequest ### HTTP request headers -- **Content-Type**: Not defined +- **Content-Type**: application/json - **Accept**: application/json [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) @@ -6908,9 +6581,9 @@ Other parameters are passed through a pointer to a apiGetTeamSlimUserDataRequest [[Back to README]](../README.md) -## GetTeams +## GetUploadSignedUrl -> GetTeamsResponse GetTeams(ctx).Execute() +> ExternalImportModelStorage GetUploadSignedUrl(ctx).GetUploadSignedUrlParams(getUploadSignedUrlParams).Execute() @@ -6927,31 +6600,36 @@ import ( ) func main() { + getUploadSignedUrlParams := *openapiclient.NewGetUploadSignedUrlParams("FileName_example") // GetUploadSignedUrlParams | configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) - resp, r, err := apiClient.DefaultAPI.GetTeams(context.Background()).Execute() + resp, r, err := apiClient.DefaultAPI.GetUploadSignedUrl(context.Background()).GetUploadSignedUrlParams(getUploadSignedUrlParams).Execute() if err != nil { - fmt.Fprintf(os.Stderr, "Error when calling `DefaultAPI.GetTeams``: %v\n", err) + fmt.Fprintf(os.Stderr, "Error when calling `DefaultAPI.GetUploadSignedUrl``: %v\n", err) fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r) } - // response from `GetTeams`: GetTeamsResponse - fmt.Fprintf(os.Stdout, "Response from `DefaultAPI.GetTeams`: %v\n", resp) + // response from `GetUploadSignedUrl`: ExternalImportModelStorage + fmt.Fprintf(os.Stdout, "Response from `DefaultAPI.GetUploadSignedUrl`: %v\n", resp) } ``` ### Path Parameters -This endpoint does not need any parameter. + ### Other Parameters -Other parameters are passed through a pointer to a apiGetTeamsRequest struct via the builder pattern +Other parameters are passed through a pointer to a apiGetUploadSignedUrlRequest struct via the builder pattern +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **getUploadSignedUrlParams** | [**GetUploadSignedUrlParams**](GetUploadSignedUrlParams.md) | | + ### Return type -[**GetTeamsResponse**](GetTeamsResponse.md) +[**ExternalImportModelStorage**](ExternalImportModelStorage.md) ### Authorization @@ -6959,7 +6637,7 @@ Other parameters are passed through a pointer to a apiGetTeamsRequest struct via ### HTTP request headers -- **Content-Type**: Not defined +- **Content-Type**: application/json - **Accept**: application/json [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) @@ -6967,9 +6645,9 @@ Other parameters are passed through a pointer to a apiGetTeamsRequest struct via [[Back to README]](../README.md) -## GetUploadModelSignedUrl +## GetVersionsEpochs -> ExternalImportModelStorage GetUploadModelSignedUrl(ctx).GetUploadModelSignedUrlRequest(getUploadModelSignedUrlRequest).Execute() +> GetVersionEpochsResponse GetVersionsEpochs(ctx).GetVersionsEpochsRequest(getVersionsEpochsRequest).Execute() @@ -6986,17 +6664,17 @@ import ( ) func main() { - getUploadModelSignedUrlRequest := *openapiclient.NewGetUploadModelSignedUrlRequest(float64(123), "ExperimentId_example", openapiclient.UploadModelFileType("onnx"), "VersionId_example", "ProjectId_example") // GetUploadModelSignedUrlRequest | + getVersionsEpochsRequest := *openapiclient.NewGetVersionsEpochsRequest("ProjectId_example", []string{"VersionIds_example"}) // GetVersionsEpochsRequest | configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) - resp, r, err := apiClient.DefaultAPI.GetUploadModelSignedUrl(context.Background()).GetUploadModelSignedUrlRequest(getUploadModelSignedUrlRequest).Execute() + resp, r, err := apiClient.DefaultAPI.GetVersionsEpochs(context.Background()).GetVersionsEpochsRequest(getVersionsEpochsRequest).Execute() if err != nil { - fmt.Fprintf(os.Stderr, "Error when calling `DefaultAPI.GetUploadModelSignedUrl``: %v\n", err) + fmt.Fprintf(os.Stderr, "Error when calling `DefaultAPI.GetVersionsEpochs``: %v\n", err) fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r) } - // response from `GetUploadModelSignedUrl`: ExternalImportModelStorage - fmt.Fprintf(os.Stdout, "Response from `DefaultAPI.GetUploadModelSignedUrl`: %v\n", resp) + // response from `GetVersionsEpochs`: GetVersionEpochsResponse + fmt.Fprintf(os.Stdout, "Response from `DefaultAPI.GetVersionsEpochs`: %v\n", resp) } ``` @@ -7006,16 +6684,16 @@ func main() { ### Other Parameters -Other parameters are passed through a pointer to a apiGetUploadModelSignedUrlRequest struct via the builder pattern +Other parameters are passed through a pointer to a apiGetVersionsEpochsRequest struct via the builder pattern Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **getUploadModelSignedUrlRequest** | [**GetUploadModelSignedUrlRequest**](GetUploadModelSignedUrlRequest.md) | | + **getVersionsEpochsRequest** | [**GetVersionsEpochsRequest**](GetVersionsEpochsRequest.md) | | ### Return type -[**ExternalImportModelStorage**](ExternalImportModelStorage.md) +[**GetVersionEpochsResponse**](GetVersionEpochsResponse.md) ### Authorization @@ -7031,9 +6709,9 @@ Name | Type | Description | Notes [[Back to README]](../README.md) -## GetUploadSignedUrl +## GetVersionsVisualizations -> ExternalImportModelStorage GetUploadSignedUrl(ctx).GetUploadSignedUrlParams(getUploadSignedUrlParams).Execute() +> GetVersionsVisualizationsResponse GetVersionsVisualizations(ctx).GetVersionsVisualizationsParams(getVersionsVisualizationsParams).Execute() @@ -7050,17 +6728,17 @@ import ( ) func main() { - getUploadSignedUrlParams := *openapiclient.NewGetUploadSignedUrlParams("FileName_example") // GetUploadSignedUrlParams | + getVersionsVisualizationsParams := *openapiclient.NewGetVersionsVisualizationsParams([]string{"VersionIds_example"}, "ProjectId_example") // GetVersionsVisualizationsParams | configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) - resp, r, err := apiClient.DefaultAPI.GetUploadSignedUrl(context.Background()).GetUploadSignedUrlParams(getUploadSignedUrlParams).Execute() + resp, r, err := apiClient.DefaultAPI.GetVersionsVisualizations(context.Background()).GetVersionsVisualizationsParams(getVersionsVisualizationsParams).Execute() if err != nil { - fmt.Fprintf(os.Stderr, "Error when calling `DefaultAPI.GetUploadSignedUrl``: %v\n", err) + fmt.Fprintf(os.Stderr, "Error when calling `DefaultAPI.GetVersionsVisualizations``: %v\n", err) fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r) } - // response from `GetUploadSignedUrl`: ExternalImportModelStorage - fmt.Fprintf(os.Stdout, "Response from `DefaultAPI.GetUploadSignedUrl`: %v\n", resp) + // response from `GetVersionsVisualizations`: GetVersionsVisualizationsResponse + fmt.Fprintf(os.Stdout, "Response from `DefaultAPI.GetVersionsVisualizations`: %v\n", resp) } ``` @@ -7070,16 +6748,16 @@ func main() { ### Other Parameters -Other parameters are passed through a pointer to a apiGetUploadSignedUrlRequest struct via the builder pattern +Other parameters are passed through a pointer to a apiGetVersionsVisualizationsRequest struct via the builder pattern Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **getUploadSignedUrlParams** | [**GetUploadSignedUrlParams**](GetUploadSignedUrlParams.md) | | + **getVersionsVisualizationsParams** | [**GetVersionsVisualizationsParams**](GetVersionsVisualizationsParams.md) | | ### Return type -[**ExternalImportModelStorage**](ExternalImportModelStorage.md) +[**GetVersionsVisualizationsResponse**](GetVersionsVisualizationsResponse.md) ### Authorization @@ -7178,7 +6856,7 @@ import ( ) func main() { - multiChartsParams := *openapiclient.NewMultiChartsParams("ProjectId_example", *openapiclient.NewSplitAgg(NullableFloat64(123), openapiclient.OrderType("desc"), "Field_example", float64(123), "Distribution_example"), *openapiclient.NewAggregations("Field_example", openapiclient.AggregationMethod("Average")), []openapiclient.SessionRunToEpoch{*openapiclient.NewSessionRunToEpoch("SessionRunId_example", float64(123))}, false) // MultiChartsParams | + multiChartsParams := *openapiclient.NewMultiChartsParams("ProjectId_example", *openapiclient.NewSplitAgg(NullableFloat64(123), openapiclient.OrderType("desc"), "Field_example", float64(123), "Distribution_example"), *openapiclient.NewAggregations("Field_example", openapiclient.AggregationMethod("Average")), []string{"InferenceArtifactIds_example"}, false) // MultiChartsParams | configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) @@ -7599,7 +7277,7 @@ Other parameters are passed through a pointer to a apiKeyGenRequest struct via t ## LoadModel -> LoadSessionResponse LoadModel(ctx).LoadSessionParams(loadSessionParams).Execute() +> LoadModelResponse LoadModel(ctx).LoadModelParams(loadModelParams).Execute() @@ -7616,16 +7294,16 @@ import ( ) func main() { - loadSessionParams := *openapiclient.NewLoadSessionParams("SessionId_example", "ProjectId_example") // LoadSessionParams | + loadModelParams := *openapiclient.NewLoadModelParams("VersionId_example", "ProjectId_example") // LoadModelParams | configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) - resp, r, err := apiClient.DefaultAPI.LoadModel(context.Background()).LoadSessionParams(loadSessionParams).Execute() + resp, r, err := apiClient.DefaultAPI.LoadModel(context.Background()).LoadModelParams(loadModelParams).Execute() if err != nil { fmt.Fprintf(os.Stderr, "Error when calling `DefaultAPI.LoadModel``: %v\n", err) fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r) } - // response from `LoadModel`: LoadSessionResponse + // response from `LoadModel`: LoadModelResponse fmt.Fprintf(os.Stdout, "Response from `DefaultAPI.LoadModel`: %v\n", resp) } ``` @@ -7641,11 +7319,11 @@ Other parameters are passed through a pointer to a apiLoadModelRequest struct vi Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- - **loadSessionParams** | [**LoadSessionParams**](LoadSessionParams.md) | | + **loadModelParams** | [**LoadModelParams**](LoadModelParams.md) | | ### Return type -[**LoadSessionResponse**](LoadSessionResponse.md) +[**LoadModelResponse**](LoadModelResponse.md) ### Authorization @@ -8036,6 +7714,70 @@ Name | Type | Description | Notes [[Back to README]](../README.md) +## PopulateCollectionFromFilters + +> PopulateCollectionFromFiltersResponse PopulateCollectionFromFilters(ctx).PopulateCollectionFromFiltersParams(populateCollectionFromFiltersParams).Execute() + + + +### Example + +```go +package main + +import ( + "context" + "fmt" + "os" + openapiclient "github.com/tensorleap/cli-go/pkg/tensorleapapi/tensorleapapi" +) + +func main() { + populateCollectionFromFiltersParams := *openapiclient.NewPopulateCollectionFromFiltersParams([]openapiclient.ESFilter{*openapiclient.NewESFilter(openapiclient.FilterOperatorType("between"), "Field_example", *openapiclient.NewESFilterValue())}, []string{"InferenceArtifactIds_example"}, "ProjectId_example") // PopulateCollectionFromFiltersParams | + + configuration := openapiclient.NewConfiguration() + apiClient := openapiclient.NewAPIClient(configuration) + resp, r, err := apiClient.DefaultAPI.PopulateCollectionFromFilters(context.Background()).PopulateCollectionFromFiltersParams(populateCollectionFromFiltersParams).Execute() + if err != nil { + fmt.Fprintf(os.Stderr, "Error when calling `DefaultAPI.PopulateCollectionFromFilters``: %v\n", err) + fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r) + } + // response from `PopulateCollectionFromFilters`: PopulateCollectionFromFiltersResponse + fmt.Fprintf(os.Stdout, "Response from `DefaultAPI.PopulateCollectionFromFilters`: %v\n", resp) +} +``` + +### Path Parameters + + + +### Other Parameters + +Other parameters are passed through a pointer to a apiPopulateCollectionFromFiltersRequest struct via the builder pattern + + +Name | Type | Description | Notes +------------- | ------------- | ------------- | ------------- + **populateCollectionFromFiltersParams** | [**PopulateCollectionFromFiltersParams**](PopulateCollectionFromFiltersParams.md) | | + +### Return type + +[**PopulateCollectionFromFiltersResponse**](PopulateCollectionFromFiltersResponse.md) + +### Authorization + +[jwt](../README.md#jwt) + +### HTTP request headers + +- **Content-Type**: application/json +- **Accept**: application/json + +[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) +[[Back to Model list]](../README.md#documentation-for-models) +[[Back to README]](../README.md) + + ## PopulationExploration > PopulationExplorationResponse PopulationExploration(ctx).PopulationExplorationParams(populationExplorationParams).Execute() @@ -8055,7 +7797,7 @@ import ( ) func main() { - populationExplorationParams := *openapiclient.NewPopulationExplorationParams("SessionRunId_example", "ProjectId_example", float64(123), float64(123), "Digest_example", float64(123), []string{"BalanceBy_example"}, false, openapiclient.ReductionAlgorithm("TSNE")) // PopulationExplorationParams | + populationExplorationParams := *openapiclient.NewPopulationExplorationParams("VersionId_example", "InferenceArtifactId_example", "ProjectId_example", float64(123), "Digest_example", float64(123), []string{"BalanceBy_example"}, false, openapiclient.ReductionAlgorithm("TSNE")) // PopulationExplorationParams | configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) @@ -8361,7 +8103,7 @@ import ( ) func main() { - sampleAnalysisParams := *openapiclient.NewSampleAnalysisParams("SessionRunId_example", "ProjectId_example", *openapiclient.NewSampleIdentity(openapiclient.DataStateType("training"), *openapiclient.NewSampleIdType()), float64(123), openapiclient.SampleAnalysisAlgo("focus_layer_cam")) // SampleAnalysisParams | + sampleAnalysisParams := *openapiclient.NewSampleAnalysisParams("VersionId_example", "ProjectId_example", *openapiclient.NewSampleIdentity(openapiclient.DataStateType("training"), *openapiclient.NewSampleIdType()), openapiclient.SampleAnalysisAlgo("focus_layer_cam")) // SampleAnalysisParams | configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) @@ -8425,7 +8167,7 @@ import ( ) func main() { - samplesVisualizationsRefreshParams := *openapiclient.NewSamplesVisualizationsRefreshParams("ProjectId_example", "SessionRunId_example") // SamplesVisualizationsRefreshParams | + samplesVisualizationsRefreshParams := *openapiclient.NewSamplesVisualizationsRefreshParams("ProjectId_example", "VersionId_example") // SamplesVisualizationsRefreshParams | configuration := openapiclient.NewConfiguration() apiClient := openapiclient.NewAPIClient(configuration) @@ -9659,130 +9401,6 @@ Name | Type | Description | Notes [[Back to README]](../README.md) -## UpdateSessionName - -> UpdateSessionName(ctx).UpdateSessionNameParams(updateSessionNameParams).Execute() - - - -### Example - -```go -package main - -import ( - "context" - "fmt" - "os" - openapiclient "github.com/tensorleap/cli-go/pkg/tensorleapapi/tensorleapapi" -) - -func main() { - updateSessionNameParams := *openapiclient.NewUpdateSessionNameParams("Cid_example", "ProjectId_example", "Name_example") // UpdateSessionNameParams | - - configuration := openapiclient.NewConfiguration() - apiClient := openapiclient.NewAPIClient(configuration) - r, err := apiClient.DefaultAPI.UpdateSessionName(context.Background()).UpdateSessionNameParams(updateSessionNameParams).Execute() - if err != nil { - fmt.Fprintf(os.Stderr, "Error when calling `DefaultAPI.UpdateSessionName``: %v\n", err) - fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r) - } -} -``` - -### Path Parameters - - - -### Other Parameters - -Other parameters are passed through a pointer to a apiUpdateSessionNameRequest struct via the builder pattern - - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **updateSessionNameParams** | [**UpdateSessionNameParams**](UpdateSessionNameParams.md) | | - -### Return type - - (empty response body) - -### Authorization - -[jwt](../README.md#jwt) - -### HTTP request headers - -- **Content-Type**: application/json -- **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) -[[Back to Model list]](../README.md#documentation-for-models) -[[Back to README]](../README.md) - - -## UpdateSessionRun - -> UpdateSessionRun(ctx).UpdateSessionRunNameParams(updateSessionRunNameParams).Execute() - - - -### Example - -```go -package main - -import ( - "context" - "fmt" - "os" - openapiclient "github.com/tensorleap/cli-go/pkg/tensorleapapi/tensorleapapi" -) - -func main() { - updateSessionRunNameParams := *openapiclient.NewUpdateSessionRunNameParams("Cid_example", "Name_example", "Description_example", "ProjectId_example") // UpdateSessionRunNameParams | - - configuration := openapiclient.NewConfiguration() - apiClient := openapiclient.NewAPIClient(configuration) - r, err := apiClient.DefaultAPI.UpdateSessionRun(context.Background()).UpdateSessionRunNameParams(updateSessionRunNameParams).Execute() - if err != nil { - fmt.Fprintf(os.Stderr, "Error when calling `DefaultAPI.UpdateSessionRun``: %v\n", err) - fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r) - } -} -``` - -### Path Parameters - - - -### Other Parameters - -Other parameters are passed through a pointer to a apiUpdateSessionRunRequest struct via the builder pattern - - -Name | Type | Description | Notes -------------- | ------------- | ------------- | ------------- - **updateSessionRunNameParams** | [**UpdateSessionRunNameParams**](UpdateSessionRunNameParams.md) | | - -### Return type - - (empty response body) - -### Authorization - -[jwt](../README.md#jwt) - -### HTTP request headers - -- **Content-Type**: application/json -- **Accept**: Not defined - -[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) -[[Back to Model list]](../README.md#documentation-for-models) -[[Back to README]](../README.md) - - ## UpdateSessionTest > UpdateSessionTest(ctx).UpdateSessionTestRequest(updateSessionTestRequest).Execute() diff --git a/pkg/tensorleapapi/docs/DeleteSamplesAnalysisParams.md b/pkg/tensorleapapi/docs/DeleteSamplesAnalysisParams.md index 01189dc40..be122fac3 100644 --- a/pkg/tensorleapapi/docs/DeleteSamplesAnalysisParams.md +++ b/pkg/tensorleapapi/docs/DeleteSamplesAnalysisParams.md @@ -5,14 +5,14 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **ProjectId** | **string** | | -**SessionRunIds** | **[]string** | | +**VersionIds** | **[]string** | | **SamplesIdentities** | [**[]SampleIdentity**](SampleIdentity.md) | | ## Methods ### NewDeleteSamplesAnalysisParams -`func NewDeleteSamplesAnalysisParams(projectId string, sessionRunIds []string, samplesIdentities []SampleIdentity, ) *DeleteSamplesAnalysisParams` +`func NewDeleteSamplesAnalysisParams(projectId string, versionIds []string, samplesIdentities []SampleIdentity, ) *DeleteSamplesAnalysisParams` NewDeleteSamplesAnalysisParams instantiates a new DeleteSamplesAnalysisParams object This constructor will assign default values to properties that have it defined, @@ -47,24 +47,24 @@ and a boolean to check if the value has been set. SetProjectId sets ProjectId field to given value. -### GetSessionRunIds +### GetVersionIds -`func (o *DeleteSamplesAnalysisParams) GetSessionRunIds() []string` +`func (o *DeleteSamplesAnalysisParams) GetVersionIds() []string` -GetSessionRunIds returns the SessionRunIds field if non-nil, zero value otherwise. +GetVersionIds returns the VersionIds field if non-nil, zero value otherwise. -### GetSessionRunIdsOk +### GetVersionIdsOk -`func (o *DeleteSamplesAnalysisParams) GetSessionRunIdsOk() (*[]string, bool)` +`func (o *DeleteSamplesAnalysisParams) GetVersionIdsOk() (*[]string, bool)` -GetSessionRunIdsOk returns a tuple with the SessionRunIds field if it's non-nil, zero value otherwise +GetVersionIdsOk returns a tuple with the VersionIds field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunIds +### SetVersionIds -`func (o *DeleteSamplesAnalysisParams) SetSessionRunIds(v []string)` +`func (o *DeleteSamplesAnalysisParams) SetVersionIds(v []string)` -SetSessionRunIds sets SessionRunIds field to given value. +SetVersionIds sets VersionIds field to given value. ### GetSamplesIdentities diff --git a/pkg/tensorleapapi/docs/DeleteSessionParams.md b/pkg/tensorleapapi/docs/DeleteSessionParams.md deleted file mode 100644 index 837477012..000000000 --- a/pkg/tensorleapapi/docs/DeleteSessionParams.md +++ /dev/null @@ -1,72 +0,0 @@ -# DeleteSessionParams - -## Properties - -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**SessionId** | **string** | | -**ProjectId** | **string** | | - -## Methods - -### NewDeleteSessionParams - -`func NewDeleteSessionParams(sessionId string, projectId string, ) *DeleteSessionParams` - -NewDeleteSessionParams instantiates a new DeleteSessionParams object -This constructor will assign default values to properties that have it defined, -and makes sure properties required by API are set, but the set of arguments -will change when the set of required properties is changed - -### NewDeleteSessionParamsWithDefaults - -`func NewDeleteSessionParamsWithDefaults() *DeleteSessionParams` - -NewDeleteSessionParamsWithDefaults instantiates a new DeleteSessionParams object -This constructor will only assign default values to properties that have it defined, -but it doesn't guarantee that properties required by API are set - -### GetSessionId - -`func (o *DeleteSessionParams) GetSessionId() string` - -GetSessionId returns the SessionId field if non-nil, zero value otherwise. - -### GetSessionIdOk - -`func (o *DeleteSessionParams) GetSessionIdOk() (*string, bool)` - -GetSessionIdOk returns a tuple with the SessionId field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetSessionId - -`func (o *DeleteSessionParams) SetSessionId(v string)` - -SetSessionId sets SessionId field to given value. - - -### GetProjectId - -`func (o *DeleteSessionParams) GetProjectId() string` - -GetProjectId returns the ProjectId field if non-nil, zero value otherwise. - -### GetProjectIdOk - -`func (o *DeleteSessionParams) GetProjectIdOk() (*string, bool)` - -GetProjectIdOk returns a tuple with the ProjectId field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetProjectId - -`func (o *DeleteSessionParams) SetProjectId(v string)` - -SetProjectId sets ProjectId field to given value. - - - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/pkg/tensorleapapi/docs/DeleteSessionRunParams.md b/pkg/tensorleapapi/docs/DeleteSessionRunParams.md deleted file mode 100644 index 9c0a51da8..000000000 --- a/pkg/tensorleapapi/docs/DeleteSessionRunParams.md +++ /dev/null @@ -1,72 +0,0 @@ -# DeleteSessionRunParams - -## Properties - -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**SessionRunId** | **string** | | -**ProjectId** | **string** | | - -## Methods - -### NewDeleteSessionRunParams - -`func NewDeleteSessionRunParams(sessionRunId string, projectId string, ) *DeleteSessionRunParams` - -NewDeleteSessionRunParams instantiates a new DeleteSessionRunParams object -This constructor will assign default values to properties that have it defined, -and makes sure properties required by API are set, but the set of arguments -will change when the set of required properties is changed - -### NewDeleteSessionRunParamsWithDefaults - -`func NewDeleteSessionRunParamsWithDefaults() *DeleteSessionRunParams` - -NewDeleteSessionRunParamsWithDefaults instantiates a new DeleteSessionRunParams object -This constructor will only assign default values to properties that have it defined, -but it doesn't guarantee that properties required by API are set - -### GetSessionRunId - -`func (o *DeleteSessionRunParams) GetSessionRunId() string` - -GetSessionRunId returns the SessionRunId field if non-nil, zero value otherwise. - -### GetSessionRunIdOk - -`func (o *DeleteSessionRunParams) GetSessionRunIdOk() (*string, bool)` - -GetSessionRunIdOk returns a tuple with the SessionRunId field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetSessionRunId - -`func (o *DeleteSessionRunParams) SetSessionRunId(v string)` - -SetSessionRunId sets SessionRunId field to given value. - - -### GetProjectId - -`func (o *DeleteSessionRunParams) GetProjectId() string` - -GetProjectId returns the ProjectId field if non-nil, zero value otherwise. - -### GetProjectIdOk - -`func (o *DeleteSessionRunParams) GetProjectIdOk() (*string, bool)` - -GetProjectIdOk returns a tuple with the ProjectId field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetProjectId - -`func (o *DeleteSessionRunParams) SetProjectId(v string)` - -SetProjectId sets ProjectId field to given value. - - - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/pkg/tensorleapapi/docs/DomainGapInsight.md b/pkg/tensorleapapi/docs/DomainGapInsight.md index 0c6fa9dd6..4d473a933 100644 --- a/pkg/tensorleapapi/docs/DomainGapInsight.md +++ b/pkg/tensorleapapi/docs/DomainGapInsight.md @@ -19,6 +19,7 @@ Name | Type | Description | Notes **AutomaticTests** | Pointer to [**[]InsightAutomaticTest**](InsightAutomaticTest.md) | | [optional] **AutoGenerated** | **bool** | | **EsFiltersUsedInAnalysis** | Pointer to [**[]ESFilter**](ESFilter.md) | | [optional] +**LatentSpace** | Pointer to **string** | | [optional] **MetadataName** | **string** | | **DomainGapScore** | **float64** | | **DomainA** | **string** | | @@ -368,6 +369,31 @@ SetEsFiltersUsedInAnalysis sets EsFiltersUsedInAnalysis field to given value. HasEsFiltersUsedInAnalysis returns a boolean if a field has been set. +### GetLatentSpace + +`func (o *DomainGapInsight) GetLatentSpace() string` + +GetLatentSpace returns the LatentSpace field if non-nil, zero value otherwise. + +### GetLatentSpaceOk + +`func (o *DomainGapInsight) GetLatentSpaceOk() (*string, bool)` + +GetLatentSpaceOk returns a tuple with the LatentSpace field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetLatentSpace + +`func (o *DomainGapInsight) SetLatentSpace(v string)` + +SetLatentSpace sets LatentSpace field to given value. + +### HasLatentSpace + +`func (o *DomainGapInsight) HasLatentSpace() bool` + +HasLatentSpace returns a boolean if a field has been set. + ### GetMetadataName `func (o *DomainGapInsight) GetMetadataName() string` diff --git a/pkg/tensorleapapi/docs/DuplicationInsight.md b/pkg/tensorleapapi/docs/DuplicationInsight.md index 5c0a80354..1941cf335 100644 --- a/pkg/tensorleapapi/docs/DuplicationInsight.md +++ b/pkg/tensorleapapi/docs/DuplicationInsight.md @@ -19,6 +19,7 @@ Name | Type | Description | Notes **AutomaticTests** | Pointer to [**[]InsightAutomaticTest**](InsightAutomaticTest.md) | | [optional] **AutoGenerated** | **bool** | | **EsFiltersUsedInAnalysis** | Pointer to [**[]ESFilter**](ESFilter.md) | | [optional] +**LatentSpace** | Pointer to **string** | | [optional] **Subset** | [**DataStateType**](DataStateType.md) | | ## Methods @@ -365,6 +366,31 @@ SetEsFiltersUsedInAnalysis sets EsFiltersUsedInAnalysis field to given value. HasEsFiltersUsedInAnalysis returns a boolean if a field has been set. +### GetLatentSpace + +`func (o *DuplicationInsight) GetLatentSpace() string` + +GetLatentSpace returns the LatentSpace field if non-nil, zero value otherwise. + +### GetLatentSpaceOk + +`func (o *DuplicationInsight) GetLatentSpaceOk() (*string, bool)` + +GetLatentSpaceOk returns a tuple with the LatentSpace field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetLatentSpace + +`func (o *DuplicationInsight) SetLatentSpace(v string)` + +SetLatentSpace sets LatentSpace field to given value. + +### HasLatentSpace + +`func (o *DuplicationInsight) HasLatentSpace() bool` + +HasLatentSpace returns a boolean if a field has been set. + ### GetSubset `func (o *DuplicationInsight) GetSubset() DataStateType` diff --git a/pkg/tensorleapapi/docs/EarlyStopParams.md b/pkg/tensorleapapi/docs/EarlyStopParams.md deleted file mode 100644 index 1fb2a0a97..000000000 --- a/pkg/tensorleapapi/docs/EarlyStopParams.md +++ /dev/null @@ -1,51 +0,0 @@ -# EarlyStopParams - -## Properties - -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**Patience** | **float64** | | - -## Methods - -### NewEarlyStopParams - -`func NewEarlyStopParams(patience float64, ) *EarlyStopParams` - -NewEarlyStopParams instantiates a new EarlyStopParams object -This constructor will assign default values to properties that have it defined, -and makes sure properties required by API are set, but the set of arguments -will change when the set of required properties is changed - -### NewEarlyStopParamsWithDefaults - -`func NewEarlyStopParamsWithDefaults() *EarlyStopParams` - -NewEarlyStopParamsWithDefaults instantiates a new EarlyStopParams object -This constructor will only assign default values to properties that have it defined, -but it doesn't guarantee that properties required by API are set - -### GetPatience - -`func (o *EarlyStopParams) GetPatience() float64` - -GetPatience returns the Patience field if non-nil, zero value otherwise. - -### GetPatienceOk - -`func (o *EarlyStopParams) GetPatienceOk() (*float64, bool)` - -GetPatienceOk returns a tuple with the Patience field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetPatience - -`func (o *EarlyStopParams) SetPatience(v float64)` - -SetPatience sets Patience field to given value. - - - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/pkg/tensorleapapi/docs/EngineSettingKey.md b/pkg/tensorleapapi/docs/EngineSettingKey.md index afd79c3e2..381dc700a 100644 --- a/pkg/tensorleapapi/docs/EngineSettingKey.md +++ b/pkg/tensorleapapi/docs/EngineSettingKey.md @@ -41,8 +41,6 @@ * `SLIM_JOB_LIMIT_MEMORY` (value: `"SLIM_JOB_LIMIT_MEMORY"`) -* `SLIM_JOB_TIME_TO_LIVE` (value: `"SLIM_JOB_TIME_TO_LIVE"`) - * `PIP_INDEX_URL` (value: `"PIP_INDEX_URL"`) * `PIP_EXTRA_INDEX_URL` (value: `"PIP_EXTRA_INDEX_URL"`) diff --git a/pkg/tensorleapapi/docs/EpochData.md b/pkg/tensorleapapi/docs/EpochData.md index 6fcfbb4b4..ab70d4c0b 100644 --- a/pkg/tensorleapapi/docs/EpochData.md +++ b/pkg/tensorleapapi/docs/EpochData.md @@ -4,19 +4,17 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**SessionId** | **string** | | +**VersionId** | **string** | | **Epoch** | **float64** | | **Tags** | **[]string** | | -**WeightsData** | Pointer to [**SessionWeightData**](SessionWeightData.md) | | [optional] **UploadedModelFilePath** | Pointer to **string** | | [optional] -**Runs** | [**[]SessionRunData**](SessionRunData.md) | | **ExternalData** | Pointer to [**EpochDataExternalData**](EpochDataExternalData.md) | | [optional] ## Methods ### NewEpochData -`func NewEpochData(sessionId string, epoch float64, tags []string, runs []SessionRunData, ) *EpochData` +`func NewEpochData(versionId string, epoch float64, tags []string, ) *EpochData` NewEpochData instantiates a new EpochData object This constructor will assign default values to properties that have it defined, @@ -31,24 +29,24 @@ NewEpochDataWithDefaults instantiates a new EpochData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set -### GetSessionId +### GetVersionId -`func (o *EpochData) GetSessionId() string` +`func (o *EpochData) GetVersionId() string` -GetSessionId returns the SessionId field if non-nil, zero value otherwise. +GetVersionId returns the VersionId field if non-nil, zero value otherwise. -### GetSessionIdOk +### GetVersionIdOk -`func (o *EpochData) GetSessionIdOk() (*string, bool)` +`func (o *EpochData) GetVersionIdOk() (*string, bool)` -GetSessionIdOk returns a tuple with the SessionId field if it's non-nil, zero value otherwise +GetVersionIdOk returns a tuple with the VersionId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionId +### SetVersionId -`func (o *EpochData) SetSessionId(v string)` +`func (o *EpochData) SetVersionId(v string)` -SetSessionId sets SessionId field to given value. +SetVersionId sets VersionId field to given value. ### GetEpoch @@ -91,31 +89,6 @@ and a boolean to check if the value has been set. SetTags sets Tags field to given value. -### GetWeightsData - -`func (o *EpochData) GetWeightsData() SessionWeightData` - -GetWeightsData returns the WeightsData field if non-nil, zero value otherwise. - -### GetWeightsDataOk - -`func (o *EpochData) GetWeightsDataOk() (*SessionWeightData, bool)` - -GetWeightsDataOk returns a tuple with the WeightsData field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetWeightsData - -`func (o *EpochData) SetWeightsData(v SessionWeightData)` - -SetWeightsData sets WeightsData field to given value. - -### HasWeightsData - -`func (o *EpochData) HasWeightsData() bool` - -HasWeightsData returns a boolean if a field has been set. - ### GetUploadedModelFilePath `func (o *EpochData) GetUploadedModelFilePath() string` @@ -141,26 +114,6 @@ SetUploadedModelFilePath sets UploadedModelFilePath field to given value. HasUploadedModelFilePath returns a boolean if a field has been set. -### GetRuns - -`func (o *EpochData) GetRuns() []SessionRunData` - -GetRuns returns the Runs field if non-nil, zero value otherwise. - -### GetRunsOk - -`func (o *EpochData) GetRunsOk() (*[]SessionRunData, bool)` - -GetRunsOk returns a tuple with the Runs field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetRuns - -`func (o *EpochData) SetRuns(v []SessionRunData)` - -SetRuns sets Runs field to given value. - - ### GetExternalData `func (o *EpochData) GetExternalData() EpochDataExternalData` diff --git a/pkg/tensorleapapi/docs/EvaluateExistingSessionParams.md b/pkg/tensorleapapi/docs/EvaluateExistingSessionParams.md deleted file mode 100644 index 62607b6cf..000000000 --- a/pkg/tensorleapapi/docs/EvaluateExistingSessionParams.md +++ /dev/null @@ -1,203 +0,0 @@ -# EvaluateExistingSessionParams - -## Properties - -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**VersionId** | **string** | | -**ProjectId** | **string** | | -**BatchSize** | **float64** | | -**Name** | **string** | | -**Description** | **string** | | -**Monitor** | Pointer to **bool** | | [optional] -**EvaluatedEpoch** | **float64** | | -**SessionId** | **string** | | - -## Methods - -### NewEvaluateExistingSessionParams - -`func NewEvaluateExistingSessionParams(versionId string, projectId string, batchSize float64, name string, description string, evaluatedEpoch float64, sessionId string, ) *EvaluateExistingSessionParams` - -NewEvaluateExistingSessionParams instantiates a new EvaluateExistingSessionParams object -This constructor will assign default values to properties that have it defined, -and makes sure properties required by API are set, but the set of arguments -will change when the set of required properties is changed - -### NewEvaluateExistingSessionParamsWithDefaults - -`func NewEvaluateExistingSessionParamsWithDefaults() *EvaluateExistingSessionParams` - -NewEvaluateExistingSessionParamsWithDefaults instantiates a new EvaluateExistingSessionParams object -This constructor will only assign default values to properties that have it defined, -but it doesn't guarantee that properties required by API are set - -### GetVersionId - -`func (o *EvaluateExistingSessionParams) GetVersionId() string` - -GetVersionId returns the VersionId field if non-nil, zero value otherwise. - -### GetVersionIdOk - -`func (o *EvaluateExistingSessionParams) GetVersionIdOk() (*string, bool)` - -GetVersionIdOk returns a tuple with the VersionId field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetVersionId - -`func (o *EvaluateExistingSessionParams) SetVersionId(v string)` - -SetVersionId sets VersionId field to given value. - - -### GetProjectId - -`func (o *EvaluateExistingSessionParams) GetProjectId() string` - -GetProjectId returns the ProjectId field if non-nil, zero value otherwise. - -### GetProjectIdOk - -`func (o *EvaluateExistingSessionParams) GetProjectIdOk() (*string, bool)` - -GetProjectIdOk returns a tuple with the ProjectId field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetProjectId - -`func (o *EvaluateExistingSessionParams) SetProjectId(v string)` - -SetProjectId sets ProjectId field to given value. - - -### GetBatchSize - -`func (o *EvaluateExistingSessionParams) GetBatchSize() float64` - -GetBatchSize returns the BatchSize field if non-nil, zero value otherwise. - -### GetBatchSizeOk - -`func (o *EvaluateExistingSessionParams) GetBatchSizeOk() (*float64, bool)` - -GetBatchSizeOk returns a tuple with the BatchSize field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetBatchSize - -`func (o *EvaluateExistingSessionParams) SetBatchSize(v float64)` - -SetBatchSize sets BatchSize field to given value. - - -### GetName - -`func (o *EvaluateExistingSessionParams) GetName() string` - -GetName returns the Name field if non-nil, zero value otherwise. - -### GetNameOk - -`func (o *EvaluateExistingSessionParams) GetNameOk() (*string, bool)` - -GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetName - -`func (o *EvaluateExistingSessionParams) SetName(v string)` - -SetName sets Name field to given value. - - -### GetDescription - -`func (o *EvaluateExistingSessionParams) GetDescription() string` - -GetDescription returns the Description field if non-nil, zero value otherwise. - -### GetDescriptionOk - -`func (o *EvaluateExistingSessionParams) GetDescriptionOk() (*string, bool)` - -GetDescriptionOk returns a tuple with the Description field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetDescription - -`func (o *EvaluateExistingSessionParams) SetDescription(v string)` - -SetDescription sets Description field to given value. - - -### GetMonitor - -`func (o *EvaluateExistingSessionParams) GetMonitor() bool` - -GetMonitor returns the Monitor field if non-nil, zero value otherwise. - -### GetMonitorOk - -`func (o *EvaluateExistingSessionParams) GetMonitorOk() (*bool, bool)` - -GetMonitorOk returns a tuple with the Monitor field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetMonitor - -`func (o *EvaluateExistingSessionParams) SetMonitor(v bool)` - -SetMonitor sets Monitor field to given value. - -### HasMonitor - -`func (o *EvaluateExistingSessionParams) HasMonitor() bool` - -HasMonitor returns a boolean if a field has been set. - -### GetEvaluatedEpoch - -`func (o *EvaluateExistingSessionParams) GetEvaluatedEpoch() float64` - -GetEvaluatedEpoch returns the EvaluatedEpoch field if non-nil, zero value otherwise. - -### GetEvaluatedEpochOk - -`func (o *EvaluateExistingSessionParams) GetEvaluatedEpochOk() (*float64, bool)` - -GetEvaluatedEpochOk returns a tuple with the EvaluatedEpoch field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetEvaluatedEpoch - -`func (o *EvaluateExistingSessionParams) SetEvaluatedEpoch(v float64)` - -SetEvaluatedEpoch sets EvaluatedEpoch field to given value. - - -### GetSessionId - -`func (o *EvaluateExistingSessionParams) GetSessionId() string` - -GetSessionId returns the SessionId field if non-nil, zero value otherwise. - -### GetSessionIdOk - -`func (o *EvaluateExistingSessionParams) GetSessionIdOk() (*string, bool)` - -GetSessionIdOk returns a tuple with the SessionId field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetSessionId - -`func (o *EvaluateExistingSessionParams) SetSessionId(v string)` - -SetSessionId sets SessionId field to given value. - - - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/pkg/tensorleapapi/docs/EvaluateExistingVersionParams.md b/pkg/tensorleapapi/docs/EvaluateExistingVersionParams.md new file mode 100644 index 000000000..230003ee4 --- /dev/null +++ b/pkg/tensorleapapi/docs/EvaluateExistingVersionParams.md @@ -0,0 +1,166 @@ +# EvaluateExistingVersionParams + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**VersionId** | **string** | | +**InferenceArtifactId** | Pointer to **string** | | [optional] +**ProjectId** | **string** | | +**BatchSize** | **float64** | | +**Monitor** | Pointer to **bool** | | [optional] +**EvaluatedEpoch** | **float64** | | + +## Methods + +### NewEvaluateExistingVersionParams + +`func NewEvaluateExistingVersionParams(versionId string, projectId string, batchSize float64, evaluatedEpoch float64, ) *EvaluateExistingVersionParams` + +NewEvaluateExistingVersionParams instantiates a new EvaluateExistingVersionParams object +This constructor will assign default values to properties that have it defined, +and makes sure properties required by API are set, but the set of arguments +will change when the set of required properties is changed + +### NewEvaluateExistingVersionParamsWithDefaults + +`func NewEvaluateExistingVersionParamsWithDefaults() *EvaluateExistingVersionParams` + +NewEvaluateExistingVersionParamsWithDefaults instantiates a new EvaluateExistingVersionParams object +This constructor will only assign default values to properties that have it defined, +but it doesn't guarantee that properties required by API are set + +### GetVersionId + +`func (o *EvaluateExistingVersionParams) GetVersionId() string` + +GetVersionId returns the VersionId field if non-nil, zero value otherwise. + +### GetVersionIdOk + +`func (o *EvaluateExistingVersionParams) GetVersionIdOk() (*string, bool)` + +GetVersionIdOk returns a tuple with the VersionId field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetVersionId + +`func (o *EvaluateExistingVersionParams) SetVersionId(v string)` + +SetVersionId sets VersionId field to given value. + + +### GetInferenceArtifactId + +`func (o *EvaluateExistingVersionParams) GetInferenceArtifactId() string` + +GetInferenceArtifactId returns the InferenceArtifactId field if non-nil, zero value otherwise. + +### GetInferenceArtifactIdOk + +`func (o *EvaluateExistingVersionParams) GetInferenceArtifactIdOk() (*string, bool)` + +GetInferenceArtifactIdOk returns a tuple with the InferenceArtifactId field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetInferenceArtifactId + +`func (o *EvaluateExistingVersionParams) SetInferenceArtifactId(v string)` + +SetInferenceArtifactId sets InferenceArtifactId field to given value. + +### HasInferenceArtifactId + +`func (o *EvaluateExistingVersionParams) HasInferenceArtifactId() bool` + +HasInferenceArtifactId returns a boolean if a field has been set. + +### GetProjectId + +`func (o *EvaluateExistingVersionParams) GetProjectId() string` + +GetProjectId returns the ProjectId field if non-nil, zero value otherwise. + +### GetProjectIdOk + +`func (o *EvaluateExistingVersionParams) GetProjectIdOk() (*string, bool)` + +GetProjectIdOk returns a tuple with the ProjectId field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetProjectId + +`func (o *EvaluateExistingVersionParams) SetProjectId(v string)` + +SetProjectId sets ProjectId field to given value. + + +### GetBatchSize + +`func (o *EvaluateExistingVersionParams) GetBatchSize() float64` + +GetBatchSize returns the BatchSize field if non-nil, zero value otherwise. + +### GetBatchSizeOk + +`func (o *EvaluateExistingVersionParams) GetBatchSizeOk() (*float64, bool)` + +GetBatchSizeOk returns a tuple with the BatchSize field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetBatchSize + +`func (o *EvaluateExistingVersionParams) SetBatchSize(v float64)` + +SetBatchSize sets BatchSize field to given value. + + +### GetMonitor + +`func (o *EvaluateExistingVersionParams) GetMonitor() bool` + +GetMonitor returns the Monitor field if non-nil, zero value otherwise. + +### GetMonitorOk + +`func (o *EvaluateExistingVersionParams) GetMonitorOk() (*bool, bool)` + +GetMonitorOk returns a tuple with the Monitor field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetMonitor + +`func (o *EvaluateExistingVersionParams) SetMonitor(v bool)` + +SetMonitor sets Monitor field to given value. + +### HasMonitor + +`func (o *EvaluateExistingVersionParams) HasMonitor() bool` + +HasMonitor returns a boolean if a field has been set. + +### GetEvaluatedEpoch + +`func (o *EvaluateExistingVersionParams) GetEvaluatedEpoch() float64` + +GetEvaluatedEpoch returns the EvaluatedEpoch field if non-nil, zero value otherwise. + +### GetEvaluatedEpochOk + +`func (o *EvaluateExistingVersionParams) GetEvaluatedEpochOk() (*float64, bool)` + +GetEvaluatedEpochOk returns a tuple with the EvaluatedEpoch field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetEvaluatedEpoch + +`func (o *EvaluateExistingVersionParams) SetEvaluatedEpoch(v float64)` + +SetEvaluatedEpoch sets EvaluatedEpoch field to given value. + + + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/pkg/tensorleapapi/docs/EvaluateNewSessionParams.md b/pkg/tensorleapapi/docs/EvaluateNewVersionParams.md similarity index 50% rename from pkg/tensorleapapi/docs/EvaluateNewSessionParams.md rename to pkg/tensorleapapi/docs/EvaluateNewVersionParams.md index 1d0b9603a..5ed98ac30 100644 --- a/pkg/tensorleapapi/docs/EvaluateNewSessionParams.md +++ b/pkg/tensorleapapi/docs/EvaluateNewVersionParams.md @@ -1,157 +1,141 @@ -# EvaluateNewSessionParams +# EvaluateNewVersionParams ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **VersionId** | **string** | | +**InferenceArtifactId** | Pointer to **string** | | [optional] **ProjectId** | **string** | | **BatchSize** | **float64** | | -**Name** | **string** | | -**Description** | **string** | | **Monitor** | Pointer to **bool** | | [optional] ## Methods -### NewEvaluateNewSessionParams +### NewEvaluateNewVersionParams -`func NewEvaluateNewSessionParams(versionId string, projectId string, batchSize float64, name string, description string, ) *EvaluateNewSessionParams` +`func NewEvaluateNewVersionParams(versionId string, projectId string, batchSize float64, ) *EvaluateNewVersionParams` -NewEvaluateNewSessionParams instantiates a new EvaluateNewSessionParams object +NewEvaluateNewVersionParams instantiates a new EvaluateNewVersionParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed -### NewEvaluateNewSessionParamsWithDefaults +### NewEvaluateNewVersionParamsWithDefaults -`func NewEvaluateNewSessionParamsWithDefaults() *EvaluateNewSessionParams` +`func NewEvaluateNewVersionParamsWithDefaults() *EvaluateNewVersionParams` -NewEvaluateNewSessionParamsWithDefaults instantiates a new EvaluateNewSessionParams object +NewEvaluateNewVersionParamsWithDefaults instantiates a new EvaluateNewVersionParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set ### GetVersionId -`func (o *EvaluateNewSessionParams) GetVersionId() string` +`func (o *EvaluateNewVersionParams) GetVersionId() string` GetVersionId returns the VersionId field if non-nil, zero value otherwise. ### GetVersionIdOk -`func (o *EvaluateNewSessionParams) GetVersionIdOk() (*string, bool)` +`func (o *EvaluateNewVersionParams) GetVersionIdOk() (*string, bool)` GetVersionIdOk returns a tuple with the VersionId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetVersionId -`func (o *EvaluateNewSessionParams) SetVersionId(v string)` +`func (o *EvaluateNewVersionParams) SetVersionId(v string)` SetVersionId sets VersionId field to given value. -### GetProjectId +### GetInferenceArtifactId -`func (o *EvaluateNewSessionParams) GetProjectId() string` +`func (o *EvaluateNewVersionParams) GetInferenceArtifactId() string` -GetProjectId returns the ProjectId field if non-nil, zero value otherwise. +GetInferenceArtifactId returns the InferenceArtifactId field if non-nil, zero value otherwise. -### GetProjectIdOk +### GetInferenceArtifactIdOk -`func (o *EvaluateNewSessionParams) GetProjectIdOk() (*string, bool)` +`func (o *EvaluateNewVersionParams) GetInferenceArtifactIdOk() (*string, bool)` -GetProjectIdOk returns a tuple with the ProjectId field if it's non-nil, zero value otherwise +GetInferenceArtifactIdOk returns a tuple with the InferenceArtifactId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetProjectId +### SetInferenceArtifactId -`func (o *EvaluateNewSessionParams) SetProjectId(v string)` - -SetProjectId sets ProjectId field to given value. +`func (o *EvaluateNewVersionParams) SetInferenceArtifactId(v string)` +SetInferenceArtifactId sets InferenceArtifactId field to given value. -### GetBatchSize +### HasInferenceArtifactId -`func (o *EvaluateNewSessionParams) GetBatchSize() float64` +`func (o *EvaluateNewVersionParams) HasInferenceArtifactId() bool` -GetBatchSize returns the BatchSize field if non-nil, zero value otherwise. - -### GetBatchSizeOk - -`func (o *EvaluateNewSessionParams) GetBatchSizeOk() (*float64, bool)` - -GetBatchSizeOk returns a tuple with the BatchSize field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetBatchSize +HasInferenceArtifactId returns a boolean if a field has been set. -`func (o *EvaluateNewSessionParams) SetBatchSize(v float64)` - -SetBatchSize sets BatchSize field to given value. - - -### GetName +### GetProjectId -`func (o *EvaluateNewSessionParams) GetName() string` +`func (o *EvaluateNewVersionParams) GetProjectId() string` -GetName returns the Name field if non-nil, zero value otherwise. +GetProjectId returns the ProjectId field if non-nil, zero value otherwise. -### GetNameOk +### GetProjectIdOk -`func (o *EvaluateNewSessionParams) GetNameOk() (*string, bool)` +`func (o *EvaluateNewVersionParams) GetProjectIdOk() (*string, bool)` -GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise +GetProjectIdOk returns a tuple with the ProjectId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetName +### SetProjectId -`func (o *EvaluateNewSessionParams) SetName(v string)` +`func (o *EvaluateNewVersionParams) SetProjectId(v string)` -SetName sets Name field to given value. +SetProjectId sets ProjectId field to given value. -### GetDescription +### GetBatchSize -`func (o *EvaluateNewSessionParams) GetDescription() string` +`func (o *EvaluateNewVersionParams) GetBatchSize() float64` -GetDescription returns the Description field if non-nil, zero value otherwise. +GetBatchSize returns the BatchSize field if non-nil, zero value otherwise. -### GetDescriptionOk +### GetBatchSizeOk -`func (o *EvaluateNewSessionParams) GetDescriptionOk() (*string, bool)` +`func (o *EvaluateNewVersionParams) GetBatchSizeOk() (*float64, bool)` -GetDescriptionOk returns a tuple with the Description field if it's non-nil, zero value otherwise +GetBatchSizeOk returns a tuple with the BatchSize field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetDescription +### SetBatchSize -`func (o *EvaluateNewSessionParams) SetDescription(v string)` +`func (o *EvaluateNewVersionParams) SetBatchSize(v float64)` -SetDescription sets Description field to given value. +SetBatchSize sets BatchSize field to given value. ### GetMonitor -`func (o *EvaluateNewSessionParams) GetMonitor() bool` +`func (o *EvaluateNewVersionParams) GetMonitor() bool` GetMonitor returns the Monitor field if non-nil, zero value otherwise. ### GetMonitorOk -`func (o *EvaluateNewSessionParams) GetMonitorOk() (*bool, bool)` +`func (o *EvaluateNewVersionParams) GetMonitorOk() (*bool, bool)` GetMonitorOk returns a tuple with the Monitor field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetMonitor -`func (o *EvaluateNewSessionParams) SetMonitor(v bool)` +`func (o *EvaluateNewVersionParams) SetMonitor(v bool)` SetMonitor sets Monitor field to given value. ### HasMonitor -`func (o *EvaluateNewSessionParams) HasMonitor() bool` +`func (o *EvaluateNewVersionParams) HasMonitor() bool` HasMonitor returns a boolean if a field has been set. diff --git a/pkg/tensorleapapi/docs/EvaluateParams.md b/pkg/tensorleapapi/docs/EvaluateParams.md index 0dd37bcbd..550ba2aed 100644 --- a/pkg/tensorleapapi/docs/EvaluateParams.md +++ b/pkg/tensorleapapi/docs/EvaluateParams.md @@ -5,19 +5,17 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **VersionId** | **string** | | +**InferenceArtifactId** | Pointer to **string** | | [optional] **ProjectId** | **string** | | **BatchSize** | **float64** | | -**Name** | **string** | | -**Description** | **string** | | **Monitor** | Pointer to **bool** | | [optional] **EvaluatedEpoch** | **float64** | | -**SessionId** | **string** | | ## Methods ### NewEvaluateParams -`func NewEvaluateParams(versionId string, projectId string, batchSize float64, name string, description string, evaluatedEpoch float64, sessionId string, ) *EvaluateParams` +`func NewEvaluateParams(versionId string, projectId string, batchSize float64, evaluatedEpoch float64, ) *EvaluateParams` NewEvaluateParams instantiates a new EvaluateParams object This constructor will assign default values to properties that have it defined, @@ -52,6 +50,31 @@ and a boolean to check if the value has been set. SetVersionId sets VersionId field to given value. +### GetInferenceArtifactId + +`func (o *EvaluateParams) GetInferenceArtifactId() string` + +GetInferenceArtifactId returns the InferenceArtifactId field if non-nil, zero value otherwise. + +### GetInferenceArtifactIdOk + +`func (o *EvaluateParams) GetInferenceArtifactIdOk() (*string, bool)` + +GetInferenceArtifactIdOk returns a tuple with the InferenceArtifactId field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetInferenceArtifactId + +`func (o *EvaluateParams) SetInferenceArtifactId(v string)` + +SetInferenceArtifactId sets InferenceArtifactId field to given value. + +### HasInferenceArtifactId + +`func (o *EvaluateParams) HasInferenceArtifactId() bool` + +HasInferenceArtifactId returns a boolean if a field has been set. + ### GetProjectId `func (o *EvaluateParams) GetProjectId() string` @@ -92,46 +115,6 @@ and a boolean to check if the value has been set. SetBatchSize sets BatchSize field to given value. -### GetName - -`func (o *EvaluateParams) GetName() string` - -GetName returns the Name field if non-nil, zero value otherwise. - -### GetNameOk - -`func (o *EvaluateParams) GetNameOk() (*string, bool)` - -GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetName - -`func (o *EvaluateParams) SetName(v string)` - -SetName sets Name field to given value. - - -### GetDescription - -`func (o *EvaluateParams) GetDescription() string` - -GetDescription returns the Description field if non-nil, zero value otherwise. - -### GetDescriptionOk - -`func (o *EvaluateParams) GetDescriptionOk() (*string, bool)` - -GetDescriptionOk returns a tuple with the Description field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetDescription - -`func (o *EvaluateParams) SetDescription(v string)` - -SetDescription sets Description field to given value. - - ### GetMonitor `func (o *EvaluateParams) GetMonitor() bool` @@ -177,26 +160,6 @@ and a boolean to check if the value has been set. SetEvaluatedEpoch sets EvaluatedEpoch field to given value. -### GetSessionId - -`func (o *EvaluateParams) GetSessionId() string` - -GetSessionId returns the SessionId field if non-nil, zero value otherwise. - -### GetSessionIdOk - -`func (o *EvaluateParams) GetSessionIdOk() (*string, bool)` - -GetSessionIdOk returns a tuple with the SessionId field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetSessionId - -`func (o *EvaluateParams) SetSessionId(v string)` - -SetSessionId sets SessionId field to given value. - - [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/pkg/tensorleapapi/docs/ExportedModelData.md b/pkg/tensorleapapi/docs/ExportedModelData.md index 83c8414c1..4717db2fe 100644 --- a/pkg/tensorleapapi/docs/ExportedModelData.md +++ b/pkg/tensorleapapi/docs/ExportedModelData.md @@ -6,10 +6,10 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **Cid** | **string** | | **JobId** | **string** | | -**SessionWeightId** | **string** | | +**ModelId** | **string** | | **Blob** | **string** | | **Status** | **string** | | -**SessionId** | **string** | | +**VersionId** | **string** | | **Title** | **string** | | **CreatedAt** | **time.Time** | | **UpdatedAt** | **time.Time** | | @@ -20,7 +20,7 @@ Name | Type | Description | Notes ### NewExportedModelData -`func NewExportedModelData(cid string, jobId string, sessionWeightId string, blob string, status string, sessionId string, title string, createdAt time.Time, updatedAt time.Time, createdBy string, fileType string, ) *ExportedModelData` +`func NewExportedModelData(cid string, jobId string, modelId string, blob string, status string, versionId string, title string, createdAt time.Time, updatedAt time.Time, createdBy string, fileType string, ) *ExportedModelData` NewExportedModelData instantiates a new ExportedModelData object This constructor will assign default values to properties that have it defined, @@ -75,24 +75,24 @@ and a boolean to check if the value has been set. SetJobId sets JobId field to given value. -### GetSessionWeightId +### GetModelId -`func (o *ExportedModelData) GetSessionWeightId() string` +`func (o *ExportedModelData) GetModelId() string` -GetSessionWeightId returns the SessionWeightId field if non-nil, zero value otherwise. +GetModelId returns the ModelId field if non-nil, zero value otherwise. -### GetSessionWeightIdOk +### GetModelIdOk -`func (o *ExportedModelData) GetSessionWeightIdOk() (*string, bool)` +`func (o *ExportedModelData) GetModelIdOk() (*string, bool)` -GetSessionWeightIdOk returns a tuple with the SessionWeightId field if it's non-nil, zero value otherwise +GetModelIdOk returns a tuple with the ModelId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionWeightId +### SetModelId -`func (o *ExportedModelData) SetSessionWeightId(v string)` +`func (o *ExportedModelData) SetModelId(v string)` -SetSessionWeightId sets SessionWeightId field to given value. +SetModelId sets ModelId field to given value. ### GetBlob @@ -135,24 +135,24 @@ and a boolean to check if the value has been set. SetStatus sets Status field to given value. -### GetSessionId +### GetVersionId -`func (o *ExportedModelData) GetSessionId() string` +`func (o *ExportedModelData) GetVersionId() string` -GetSessionId returns the SessionId field if non-nil, zero value otherwise. +GetVersionId returns the VersionId field if non-nil, zero value otherwise. -### GetSessionIdOk +### GetVersionIdOk -`func (o *ExportedModelData) GetSessionIdOk() (*string, bool)` +`func (o *ExportedModelData) GetVersionIdOk() (*string, bool)` -GetSessionIdOk returns a tuple with the SessionId field if it's non-nil, zero value otherwise +GetVersionIdOk returns a tuple with the VersionId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionId +### SetVersionId -`func (o *ExportedModelData) SetSessionId(v string)` +`func (o *ExportedModelData) SetVersionId(v string)` -SetSessionId sets SessionId field to given value. +SetVersionId sets VersionId field to given value. ### GetTitle diff --git a/pkg/tensorleapapi/docs/FetchSimilarFilterDisplayData.md b/pkg/tensorleapapi/docs/FetchSimilarFilterDisplayData.md index 3b5a1d4b3..4bd62f8de 100644 --- a/pkg/tensorleapapi/docs/FetchSimilarFilterDisplayData.md +++ b/pkg/tensorleapapi/docs/FetchSimilarFilterDisplayData.md @@ -7,15 +7,14 @@ Name | Type | Description | Notes **Type** | **string** | | **Limit** | **float64** | | **SampleIds** | [**[]SampleIdentity**](SampleIdentity.md) | | -**Epoch** | **float64** | | **FiltersUsed** | **[]string** | | -**SessionRun** | [**FilterSessionRun**](FilterSessionRun.md) | | +**Version** | [**FilterVersion**](FilterVersion.md) | | ## Methods ### NewFetchSimilarFilterDisplayData -`func NewFetchSimilarFilterDisplayData(type_ string, limit float64, sampleIds []SampleIdentity, epoch float64, filtersUsed []string, sessionRun FilterSessionRun, ) *FetchSimilarFilterDisplayData` +`func NewFetchSimilarFilterDisplayData(type_ string, limit float64, sampleIds []SampleIdentity, filtersUsed []string, version FilterVersion, ) *FetchSimilarFilterDisplayData` NewFetchSimilarFilterDisplayData instantiates a new FetchSimilarFilterDisplayData object This constructor will assign default values to properties that have it defined, @@ -90,26 +89,6 @@ and a boolean to check if the value has been set. SetSampleIds sets SampleIds field to given value. -### GetEpoch - -`func (o *FetchSimilarFilterDisplayData) GetEpoch() float64` - -GetEpoch returns the Epoch field if non-nil, zero value otherwise. - -### GetEpochOk - -`func (o *FetchSimilarFilterDisplayData) GetEpochOk() (*float64, bool)` - -GetEpochOk returns a tuple with the Epoch field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetEpoch - -`func (o *FetchSimilarFilterDisplayData) SetEpoch(v float64)` - -SetEpoch sets Epoch field to given value. - - ### GetFiltersUsed `func (o *FetchSimilarFilterDisplayData) GetFiltersUsed() []string` @@ -130,24 +109,24 @@ and a boolean to check if the value has been set. SetFiltersUsed sets FiltersUsed field to given value. -### GetSessionRun +### GetVersion -`func (o *FetchSimilarFilterDisplayData) GetSessionRun() FilterSessionRun` +`func (o *FetchSimilarFilterDisplayData) GetVersion() FilterVersion` -GetSessionRun returns the SessionRun field if non-nil, zero value otherwise. +GetVersion returns the Version field if non-nil, zero value otherwise. -### GetSessionRunOk +### GetVersionOk -`func (o *FetchSimilarFilterDisplayData) GetSessionRunOk() (*FilterSessionRun, bool)` +`func (o *FetchSimilarFilterDisplayData) GetVersionOk() (*FilterVersion, bool)` -GetSessionRunOk returns a tuple with the SessionRun field if it's non-nil, zero value otherwise +GetVersionOk returns a tuple with the Version field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRun +### SetVersion -`func (o *FetchSimilarFilterDisplayData) SetSessionRun(v FilterSessionRun)` +`func (o *FetchSimilarFilterDisplayData) SetVersion(v FilterVersion)` -SetSessionRun sets SessionRun field to given value. +SetVersion sets Version field to given value. diff --git a/pkg/tensorleapapi/docs/FetchSimilarJobParams.md b/pkg/tensorleapapi/docs/FetchSimilarJobParams.md index 6a02214f9..a1f1b491a 100644 --- a/pkg/tensorleapapi/docs/FetchSimilarJobParams.md +++ b/pkg/tensorleapapi/docs/FetchSimilarJobParams.md @@ -6,17 +6,17 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **Digest** | **string** | | **Filters** | Pointer to [**[]ESFilter**](ESFilter.md) | | [optional] -**Epoch** | **float64** | | **SampleIds** | [**[]SampleIdentity**](SampleIdentity.md) | | **Limit** | **float64** | | -**SessionRunId** | **string** | | +**InferenceArtifactId** | **string** | | +**VersionId** | **string** | | **Type** | **string** | | ## Methods ### NewFetchSimilarJobParams -`func NewFetchSimilarJobParams(digest string, epoch float64, sampleIds []SampleIdentity, limit float64, sessionRunId string, type_ string, ) *FetchSimilarJobParams` +`func NewFetchSimilarJobParams(digest string, sampleIds []SampleIdentity, limit float64, inferenceArtifactId string, versionId string, type_ string, ) *FetchSimilarJobParams` NewFetchSimilarJobParams instantiates a new FetchSimilarJobParams object This constructor will assign default values to properties that have it defined, @@ -76,26 +76,6 @@ SetFilters sets Filters field to given value. HasFilters returns a boolean if a field has been set. -### GetEpoch - -`func (o *FetchSimilarJobParams) GetEpoch() float64` - -GetEpoch returns the Epoch field if non-nil, zero value otherwise. - -### GetEpochOk - -`func (o *FetchSimilarJobParams) GetEpochOk() (*float64, bool)` - -GetEpochOk returns a tuple with the Epoch field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetEpoch - -`func (o *FetchSimilarJobParams) SetEpoch(v float64)` - -SetEpoch sets Epoch field to given value. - - ### GetSampleIds `func (o *FetchSimilarJobParams) GetSampleIds() []SampleIdentity` @@ -136,24 +116,44 @@ and a boolean to check if the value has been set. SetLimit sets Limit field to given value. -### GetSessionRunId +### GetInferenceArtifactId + +`func (o *FetchSimilarJobParams) GetInferenceArtifactId() string` + +GetInferenceArtifactId returns the InferenceArtifactId field if non-nil, zero value otherwise. + +### GetInferenceArtifactIdOk + +`func (o *FetchSimilarJobParams) GetInferenceArtifactIdOk() (*string, bool)` + +GetInferenceArtifactIdOk returns a tuple with the InferenceArtifactId field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetInferenceArtifactId + +`func (o *FetchSimilarJobParams) SetInferenceArtifactId(v string)` + +SetInferenceArtifactId sets InferenceArtifactId field to given value. + + +### GetVersionId -`func (o *FetchSimilarJobParams) GetSessionRunId() string` +`func (o *FetchSimilarJobParams) GetVersionId() string` -GetSessionRunId returns the SessionRunId field if non-nil, zero value otherwise. +GetVersionId returns the VersionId field if non-nil, zero value otherwise. -### GetSessionRunIdOk +### GetVersionIdOk -`func (o *FetchSimilarJobParams) GetSessionRunIdOk() (*string, bool)` +`func (o *FetchSimilarJobParams) GetVersionIdOk() (*string, bool)` -GetSessionRunIdOk returns a tuple with the SessionRunId field if it's non-nil, zero value otherwise +GetVersionIdOk returns a tuple with the VersionId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunId +### SetVersionId -`func (o *FetchSimilarJobParams) SetSessionRunId(v string)` +`func (o *FetchSimilarJobParams) SetVersionId(v string)` -SetSessionRunId sets SessionRunId field to given value. +SetVersionId sets VersionId field to given value. ### GetType diff --git a/pkg/tensorleapapi/docs/FetchSimilarRequestParams.md b/pkg/tensorleapapi/docs/FetchSimilarRequestParams.md index 491fc2c66..6502b38a7 100644 --- a/pkg/tensorleapapi/docs/FetchSimilarRequestParams.md +++ b/pkg/tensorleapapi/docs/FetchSimilarRequestParams.md @@ -4,11 +4,10 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**SessionRunId** | **string** | | +**VersionId** | **string** | | **ProjectId** | **string** | | **Limit** | **float64** | | **SampleIds** | [**[]SampleIdentity**](SampleIdentity.md) | | -**Epoch** | **float64** | | **Filters** | Pointer to [**[]ESFilter**](ESFilter.md) | | [optional] **Digest** | **string** | | @@ -16,7 +15,7 @@ Name | Type | Description | Notes ### NewFetchSimilarRequestParams -`func NewFetchSimilarRequestParams(sessionRunId string, projectId string, limit float64, sampleIds []SampleIdentity, epoch float64, digest string, ) *FetchSimilarRequestParams` +`func NewFetchSimilarRequestParams(versionId string, projectId string, limit float64, sampleIds []SampleIdentity, digest string, ) *FetchSimilarRequestParams` NewFetchSimilarRequestParams instantiates a new FetchSimilarRequestParams object This constructor will assign default values to properties that have it defined, @@ -31,24 +30,24 @@ NewFetchSimilarRequestParamsWithDefaults instantiates a new FetchSimilarRequestP This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set -### GetSessionRunId +### GetVersionId -`func (o *FetchSimilarRequestParams) GetSessionRunId() string` +`func (o *FetchSimilarRequestParams) GetVersionId() string` -GetSessionRunId returns the SessionRunId field if non-nil, zero value otherwise. +GetVersionId returns the VersionId field if non-nil, zero value otherwise. -### GetSessionRunIdOk +### GetVersionIdOk -`func (o *FetchSimilarRequestParams) GetSessionRunIdOk() (*string, bool)` +`func (o *FetchSimilarRequestParams) GetVersionIdOk() (*string, bool)` -GetSessionRunIdOk returns a tuple with the SessionRunId field if it's non-nil, zero value otherwise +GetVersionIdOk returns a tuple with the VersionId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunId +### SetVersionId -`func (o *FetchSimilarRequestParams) SetSessionRunId(v string)` +`func (o *FetchSimilarRequestParams) SetVersionId(v string)` -SetSessionRunId sets SessionRunId field to given value. +SetVersionId sets VersionId field to given value. ### GetProjectId @@ -111,26 +110,6 @@ and a boolean to check if the value has been set. SetSampleIds sets SampleIds field to given value. -### GetEpoch - -`func (o *FetchSimilarRequestParams) GetEpoch() float64` - -GetEpoch returns the Epoch field if non-nil, zero value otherwise. - -### GetEpochOk - -`func (o *FetchSimilarRequestParams) GetEpochOk() (*float64, bool)` - -GetEpochOk returns a tuple with the Epoch field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetEpoch - -`func (o *FetchSimilarRequestParams) SetEpoch(v float64)` - -SetEpoch sets Epoch field to given value. - - ### GetFilters `func (o *FetchSimilarRequestParams) GetFilters() []ESFilter` diff --git a/pkg/tensorleapapi/docs/FilterDisplayData.md b/pkg/tensorleapapi/docs/FilterDisplayData.md index ef28f3f36..6c02f8b54 100644 --- a/pkg/tensorleapapi/docs/FilterDisplayData.md +++ b/pkg/tensorleapapi/docs/FilterDisplayData.md @@ -8,15 +8,16 @@ Name | Type | Description | Notes **Insights** | [**[]InsightFilterDisplayDataInsightsInner**](InsightFilterDisplayDataInsightsInner.md) | | **Limit** | **float64** | | **SampleIds** | [**[]SampleIdentity**](SampleIdentity.md) | | -**Epoch** | **float64** | | **FiltersUsed** | **[]string** | | -**SessionRun** | [**FilterSessionRun**](FilterSessionRun.md) | | +**Version** | [**FilterVersion**](FilterVersion.md) | | +**CollectionId** | **string** | | +**ProjectId** | **string** | | ## Methods ### NewFilterDisplayData -`func NewFilterDisplayData(type_ string, insights []InsightFilterDisplayDataInsightsInner, limit float64, sampleIds []SampleIdentity, epoch float64, filtersUsed []string, sessionRun FilterSessionRun, ) *FilterDisplayData` +`func NewFilterDisplayData(type_ string, insights []InsightFilterDisplayDataInsightsInner, limit float64, sampleIds []SampleIdentity, filtersUsed []string, version FilterVersion, collectionId string, projectId string, ) *FilterDisplayData` NewFilterDisplayData instantiates a new FilterDisplayData object This constructor will assign default values to properties that have it defined, @@ -111,64 +112,84 @@ and a boolean to check if the value has been set. SetSampleIds sets SampleIds field to given value. -### GetEpoch +### GetFiltersUsed -`func (o *FilterDisplayData) GetEpoch() float64` +`func (o *FilterDisplayData) GetFiltersUsed() []string` -GetEpoch returns the Epoch field if non-nil, zero value otherwise. +GetFiltersUsed returns the FiltersUsed field if non-nil, zero value otherwise. -### GetEpochOk +### GetFiltersUsedOk -`func (o *FilterDisplayData) GetEpochOk() (*float64, bool)` +`func (o *FilterDisplayData) GetFiltersUsedOk() (*[]string, bool)` -GetEpochOk returns a tuple with the Epoch field if it's non-nil, zero value otherwise +GetFiltersUsedOk returns a tuple with the FiltersUsed field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetEpoch +### SetFiltersUsed -`func (o *FilterDisplayData) SetEpoch(v float64)` +`func (o *FilterDisplayData) SetFiltersUsed(v []string)` -SetEpoch sets Epoch field to given value. +SetFiltersUsed sets FiltersUsed field to given value. -### GetFiltersUsed +### GetVersion -`func (o *FilterDisplayData) GetFiltersUsed() []string` +`func (o *FilterDisplayData) GetVersion() FilterVersion` -GetFiltersUsed returns the FiltersUsed field if non-nil, zero value otherwise. +GetVersion returns the Version field if non-nil, zero value otherwise. -### GetFiltersUsedOk +### GetVersionOk -`func (o *FilterDisplayData) GetFiltersUsedOk() (*[]string, bool)` +`func (o *FilterDisplayData) GetVersionOk() (*FilterVersion, bool)` -GetFiltersUsedOk returns a tuple with the FiltersUsed field if it's non-nil, zero value otherwise +GetVersionOk returns a tuple with the Version field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetFiltersUsed +### SetVersion -`func (o *FilterDisplayData) SetFiltersUsed(v []string)` +`func (o *FilterDisplayData) SetVersion(v FilterVersion)` -SetFiltersUsed sets FiltersUsed field to given value. +SetVersion sets Version field to given value. + + +### GetCollectionId + +`func (o *FilterDisplayData) GetCollectionId() string` + +GetCollectionId returns the CollectionId field if non-nil, zero value otherwise. + +### GetCollectionIdOk + +`func (o *FilterDisplayData) GetCollectionIdOk() (*string, bool)` + +GetCollectionIdOk returns a tuple with the CollectionId field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetCollectionId + +`func (o *FilterDisplayData) SetCollectionId(v string)` + +SetCollectionId sets CollectionId field to given value. -### GetSessionRun +### GetProjectId -`func (o *FilterDisplayData) GetSessionRun() FilterSessionRun` +`func (o *FilterDisplayData) GetProjectId() string` -GetSessionRun returns the SessionRun field if non-nil, zero value otherwise. +GetProjectId returns the ProjectId field if non-nil, zero value otherwise. -### GetSessionRunOk +### GetProjectIdOk -`func (o *FilterDisplayData) GetSessionRunOk() (*FilterSessionRun, bool)` +`func (o *FilterDisplayData) GetProjectIdOk() (*string, bool)` -GetSessionRunOk returns a tuple with the SessionRun field if it's non-nil, zero value otherwise +GetProjectIdOk returns a tuple with the ProjectId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRun +### SetProjectId -`func (o *FilterDisplayData) SetSessionRun(v FilterSessionRun)` +`func (o *FilterDisplayData) SetProjectId(v string)` -SetSessionRun sets SessionRun field to given value. +SetProjectId sets ProjectId field to given value. diff --git a/pkg/tensorleapapi/docs/FilterSessionRun.md b/pkg/tensorleapapi/docs/FilterSessionRun.md deleted file mode 100644 index eab344d0e..000000000 --- a/pkg/tensorleapapi/docs/FilterSessionRun.md +++ /dev/null @@ -1,114 +0,0 @@ -# FilterSessionRun - -## Properties - -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**Name** | **string** | | -**Id** | **string** | | -**SessionId** | **string** | | -**Epoch** | **float64** | | - -## Methods - -### NewFilterSessionRun - -`func NewFilterSessionRun(name string, id string, sessionId string, epoch float64, ) *FilterSessionRun` - -NewFilterSessionRun instantiates a new FilterSessionRun object -This constructor will assign default values to properties that have it defined, -and makes sure properties required by API are set, but the set of arguments -will change when the set of required properties is changed - -### NewFilterSessionRunWithDefaults - -`func NewFilterSessionRunWithDefaults() *FilterSessionRun` - -NewFilterSessionRunWithDefaults instantiates a new FilterSessionRun object -This constructor will only assign default values to properties that have it defined, -but it doesn't guarantee that properties required by API are set - -### GetName - -`func (o *FilterSessionRun) GetName() string` - -GetName returns the Name field if non-nil, zero value otherwise. - -### GetNameOk - -`func (o *FilterSessionRun) GetNameOk() (*string, bool)` - -GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetName - -`func (o *FilterSessionRun) SetName(v string)` - -SetName sets Name field to given value. - - -### GetId - -`func (o *FilterSessionRun) GetId() string` - -GetId returns the Id field if non-nil, zero value otherwise. - -### GetIdOk - -`func (o *FilterSessionRun) GetIdOk() (*string, bool)` - -GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetId - -`func (o *FilterSessionRun) SetId(v string)` - -SetId sets Id field to given value. - - -### GetSessionId - -`func (o *FilterSessionRun) GetSessionId() string` - -GetSessionId returns the SessionId field if non-nil, zero value otherwise. - -### GetSessionIdOk - -`func (o *FilterSessionRun) GetSessionIdOk() (*string, bool)` - -GetSessionIdOk returns a tuple with the SessionId field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetSessionId - -`func (o *FilterSessionRun) SetSessionId(v string)` - -SetSessionId sets SessionId field to given value. - - -### GetEpoch - -`func (o *FilterSessionRun) GetEpoch() float64` - -GetEpoch returns the Epoch field if non-nil, zero value otherwise. - -### GetEpochOk - -`func (o *FilterSessionRun) GetEpochOk() (*float64, bool)` - -GetEpochOk returns a tuple with the Epoch field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetEpoch - -`func (o *FilterSessionRun) SetEpoch(v float64)` - -SetEpoch sets Epoch field to given value. - - - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/pkg/tensorleapapi/docs/FilterVersion.md b/pkg/tensorleapapi/docs/FilterVersion.md new file mode 100644 index 000000000..0efb621b7 --- /dev/null +++ b/pkg/tensorleapapi/docs/FilterVersion.md @@ -0,0 +1,72 @@ +# FilterVersion + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**Name** | **string** | | +**Id** | **string** | | + +## Methods + +### NewFilterVersion + +`func NewFilterVersion(name string, id string, ) *FilterVersion` + +NewFilterVersion instantiates a new FilterVersion object +This constructor will assign default values to properties that have it defined, +and makes sure properties required by API are set, but the set of arguments +will change when the set of required properties is changed + +### NewFilterVersionWithDefaults + +`func NewFilterVersionWithDefaults() *FilterVersion` + +NewFilterVersionWithDefaults instantiates a new FilterVersion object +This constructor will only assign default values to properties that have it defined, +but it doesn't guarantee that properties required by API are set + +### GetName + +`func (o *FilterVersion) GetName() string` + +GetName returns the Name field if non-nil, zero value otherwise. + +### GetNameOk + +`func (o *FilterVersion) GetNameOk() (*string, bool)` + +GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetName + +`func (o *FilterVersion) SetName(v string)` + +SetName sets Name field to given value. + + +### GetId + +`func (o *FilterVersion) GetId() string` + +GetId returns the Id field if non-nil, zero value otherwise. + +### GetIdOk + +`func (o *FilterVersion) GetIdOk() (*string, bool)` + +GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetId + +`func (o *FilterVersion) SetId(v string)` + +SetId sets Id field to given value. + + + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/pkg/tensorleapapi/docs/GenerateDatasetBalancingParams.md b/pkg/tensorleapapi/docs/GenerateDatasetBalancingParams.md index 17208a61c..529eacdb0 100644 --- a/pkg/tensorleapapi/docs/GenerateDatasetBalancingParams.md +++ b/pkg/tensorleapapi/docs/GenerateDatasetBalancingParams.md @@ -5,8 +5,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **ProjectId** | **string** | | -**SessionRunId** | **string** | | -**Epoch** | **float64** | | +**VersionId** | **string** | | **Filters** | Pointer to [**[]ESFilter**](ESFilter.md) | | [optional] **MetadataTags** | **[]string** | | **PrioritizedMetadataTags** | Pointer to **[]string** | | [optional] @@ -16,7 +15,7 @@ Name | Type | Description | Notes ### NewGenerateDatasetBalancingParams -`func NewGenerateDatasetBalancingParams(projectId string, sessionRunId string, epoch float64, metadataTags []string, ) *GenerateDatasetBalancingParams` +`func NewGenerateDatasetBalancingParams(projectId string, versionId string, metadataTags []string, ) *GenerateDatasetBalancingParams` NewGenerateDatasetBalancingParams instantiates a new GenerateDatasetBalancingParams object This constructor will assign default values to properties that have it defined, @@ -51,44 +50,24 @@ and a boolean to check if the value has been set. SetProjectId sets ProjectId field to given value. -### GetSessionRunId +### GetVersionId -`func (o *GenerateDatasetBalancingParams) GetSessionRunId() string` +`func (o *GenerateDatasetBalancingParams) GetVersionId() string` -GetSessionRunId returns the SessionRunId field if non-nil, zero value otherwise. +GetVersionId returns the VersionId field if non-nil, zero value otherwise. -### GetSessionRunIdOk +### GetVersionIdOk -`func (o *GenerateDatasetBalancingParams) GetSessionRunIdOk() (*string, bool)` +`func (o *GenerateDatasetBalancingParams) GetVersionIdOk() (*string, bool)` -GetSessionRunIdOk returns a tuple with the SessionRunId field if it's non-nil, zero value otherwise +GetVersionIdOk returns a tuple with the VersionId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunId +### SetVersionId -`func (o *GenerateDatasetBalancingParams) SetSessionRunId(v string)` +`func (o *GenerateDatasetBalancingParams) SetVersionId(v string)` -SetSessionRunId sets SessionRunId field to given value. - - -### GetEpoch - -`func (o *GenerateDatasetBalancingParams) GetEpoch() float64` - -GetEpoch returns the Epoch field if non-nil, zero value otherwise. - -### GetEpochOk - -`func (o *GenerateDatasetBalancingParams) GetEpochOk() (*float64, bool)` - -GetEpochOk returns a tuple with the Epoch field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetEpoch - -`func (o *GenerateDatasetBalancingParams) SetEpoch(v float64)` - -SetEpoch sets Epoch field to given value. +SetVersionId sets VersionId field to given value. ### GetFilters diff --git a/pkg/tensorleapapi/docs/GenerateInsightsParams.md b/pkg/tensorleapapi/docs/GenerateInsightsParams.md index c47521239..638afb7a2 100644 --- a/pkg/tensorleapapi/docs/GenerateInsightsParams.md +++ b/pkg/tensorleapapi/docs/GenerateInsightsParams.md @@ -5,7 +5,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **ProjectId** | **string** | | -**SessionRunId** | **string** | | +**VersionId** | Pointer to **string** | | [optional] **Filters** | Pointer to [**[]ESFilter**](ESFilter.md) | | [optional] **Refresh** | Pointer to **bool** | | [optional] @@ -13,7 +13,7 @@ Name | Type | Description | Notes ### NewGenerateInsightsParams -`func NewGenerateInsightsParams(projectId string, sessionRunId string, ) *GenerateInsightsParams` +`func NewGenerateInsightsParams(projectId string, ) *GenerateInsightsParams` NewGenerateInsightsParams instantiates a new GenerateInsightsParams object This constructor will assign default values to properties that have it defined, @@ -48,25 +48,30 @@ and a boolean to check if the value has been set. SetProjectId sets ProjectId field to given value. -### GetSessionRunId +### GetVersionId -`func (o *GenerateInsightsParams) GetSessionRunId() string` +`func (o *GenerateInsightsParams) GetVersionId() string` -GetSessionRunId returns the SessionRunId field if non-nil, zero value otherwise. +GetVersionId returns the VersionId field if non-nil, zero value otherwise. -### GetSessionRunIdOk +### GetVersionIdOk -`func (o *GenerateInsightsParams) GetSessionRunIdOk() (*string, bool)` +`func (o *GenerateInsightsParams) GetVersionIdOk() (*string, bool)` -GetSessionRunIdOk returns a tuple with the SessionRunId field if it's non-nil, zero value otherwise +GetVersionIdOk returns a tuple with the VersionId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunId +### SetVersionId -`func (o *GenerateInsightsParams) SetSessionRunId(v string)` +`func (o *GenerateInsightsParams) SetVersionId(v string)` -SetSessionRunId sets SessionRunId field to given value. +SetVersionId sets VersionId field to given value. +### HasVersionId + +`func (o *GenerateInsightsParams) HasVersionId() bool` + +HasVersionId returns a boolean if a field has been set. ### GetFilters diff --git a/pkg/tensorleapapi/docs/GenerateLabelParams.md b/pkg/tensorleapapi/docs/GenerateLabelParams.md index 09510235a..6a3604cca 100644 --- a/pkg/tensorleapapi/docs/GenerateLabelParams.md +++ b/pkg/tensorleapapi/docs/GenerateLabelParams.md @@ -5,8 +5,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **ProjectId** | **string** | | -**SessionRunId** | **string** | | -**Epoch** | **float64** | | +**VersionId** | **string** | | **NumOfSamplesToLabel** | Pointer to **float64** | | [optional] **Filters** | Pointer to [**[]ESFilter**](ESFilter.md) | | [optional] @@ -14,7 +13,7 @@ Name | Type | Description | Notes ### NewGenerateLabelParams -`func NewGenerateLabelParams(projectId string, sessionRunId string, epoch float64, ) *GenerateLabelParams` +`func NewGenerateLabelParams(projectId string, versionId string, ) *GenerateLabelParams` NewGenerateLabelParams instantiates a new GenerateLabelParams object This constructor will assign default values to properties that have it defined, @@ -49,44 +48,24 @@ and a boolean to check if the value has been set. SetProjectId sets ProjectId field to given value. -### GetSessionRunId +### GetVersionId -`func (o *GenerateLabelParams) GetSessionRunId() string` +`func (o *GenerateLabelParams) GetVersionId() string` -GetSessionRunId returns the SessionRunId field if non-nil, zero value otherwise. +GetVersionId returns the VersionId field if non-nil, zero value otherwise. -### GetSessionRunIdOk +### GetVersionIdOk -`func (o *GenerateLabelParams) GetSessionRunIdOk() (*string, bool)` +`func (o *GenerateLabelParams) GetVersionIdOk() (*string, bool)` -GetSessionRunIdOk returns a tuple with the SessionRunId field if it's non-nil, zero value otherwise +GetVersionIdOk returns a tuple with the VersionId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunId +### SetVersionId -`func (o *GenerateLabelParams) SetSessionRunId(v string)` +`func (o *GenerateLabelParams) SetVersionId(v string)` -SetSessionRunId sets SessionRunId field to given value. - - -### GetEpoch - -`func (o *GenerateLabelParams) GetEpoch() float64` - -GetEpoch returns the Epoch field if non-nil, zero value otherwise. - -### GetEpochOk - -`func (o *GenerateLabelParams) GetEpochOk() (*float64, bool)` - -GetEpochOk returns a tuple with the Epoch field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetEpoch - -`func (o *GenerateLabelParams) SetEpoch(v float64)` - -SetEpoch sets Epoch field to given value. +SetVersionId sets VersionId field to given value. ### GetNumOfSamplesToLabel diff --git a/pkg/tensorleapapi/docs/GenerateStreamingSamplesVisParams.md b/pkg/tensorleapapi/docs/GenerateStreamingSamplesVisParams.md index f34563552..fc8c03e4c 100644 --- a/pkg/tensorleapapi/docs/GenerateStreamingSamplesVisParams.md +++ b/pkg/tensorleapapi/docs/GenerateStreamingSamplesVisParams.md @@ -6,14 +6,14 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **VisualizationType** | **string** | | **SampleIdentities** | [**[]SampleIdentity**](SampleIdentity.md) | | -**SessionRunId** | **string** | | +**VisArtifactId** | **string** | | **ProjectId** | **string** | | ## Methods ### NewGenerateStreamingSamplesVisParams -`func NewGenerateStreamingSamplesVisParams(visualizationType string, sampleIdentities []SampleIdentity, sessionRunId string, projectId string, ) *GenerateStreamingSamplesVisParams` +`func NewGenerateStreamingSamplesVisParams(visualizationType string, sampleIdentities []SampleIdentity, visArtifactId string, projectId string, ) *GenerateStreamingSamplesVisParams` NewGenerateStreamingSamplesVisParams instantiates a new GenerateStreamingSamplesVisParams object This constructor will assign default values to properties that have it defined, @@ -68,24 +68,24 @@ and a boolean to check if the value has been set. SetSampleIdentities sets SampleIdentities field to given value. -### GetSessionRunId +### GetVisArtifactId -`func (o *GenerateStreamingSamplesVisParams) GetSessionRunId() string` +`func (o *GenerateStreamingSamplesVisParams) GetVisArtifactId() string` -GetSessionRunId returns the SessionRunId field if non-nil, zero value otherwise. +GetVisArtifactId returns the VisArtifactId field if non-nil, zero value otherwise. -### GetSessionRunIdOk +### GetVisArtifactIdOk -`func (o *GenerateStreamingSamplesVisParams) GetSessionRunIdOk() (*string, bool)` +`func (o *GenerateStreamingSamplesVisParams) GetVisArtifactIdOk() (*string, bool)` -GetSessionRunIdOk returns a tuple with the SessionRunId field if it's non-nil, zero value otherwise +GetVisArtifactIdOk returns a tuple with the VisArtifactId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunId +### SetVisArtifactId -`func (o *GenerateStreamingSamplesVisParams) SetSessionRunId(v string)` +`func (o *GenerateStreamingSamplesVisParams) SetVisArtifactId(v string)` -SetSessionRunId sets SessionRunId field to given value. +SetVisArtifactId sets VisArtifactId field to given value. ### GetProjectId diff --git a/pkg/tensorleapapi/docs/GenerateSyntheticDataParams.md b/pkg/tensorleapapi/docs/GenerateSyntheticDataParams.md index 5790d7111..05b102076 100644 --- a/pkg/tensorleapapi/docs/GenerateSyntheticDataParams.md +++ b/pkg/tensorleapapi/docs/GenerateSyntheticDataParams.md @@ -5,16 +5,15 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **ProjectId** | **string** | | -**SessionRunId** | **string** | | -**Epoch** | **float64** | | -**Sources** | [**[]GenerateSyntheticDataParamsSourcesInner**](GenerateSyntheticDataParamsSourcesInner.md) | | +**VersionId** | **string** | | +**Sources** | [**[]SyntheticDataJobParamsSourcesInner**](SyntheticDataJobParamsSourcesInner.md) | | **TargetFilters** | [**[]ESFilter**](ESFilter.md) | | ## Methods ### NewGenerateSyntheticDataParams -`func NewGenerateSyntheticDataParams(projectId string, sessionRunId string, epoch float64, sources []GenerateSyntheticDataParamsSourcesInner, targetFilters []ESFilter, ) *GenerateSyntheticDataParams` +`func NewGenerateSyntheticDataParams(projectId string, versionId string, sources []SyntheticDataJobParamsSourcesInner, targetFilters []ESFilter, ) *GenerateSyntheticDataParams` NewGenerateSyntheticDataParams instantiates a new GenerateSyntheticDataParams object This constructor will assign default values to properties that have it defined, @@ -49,62 +48,42 @@ and a boolean to check if the value has been set. SetProjectId sets ProjectId field to given value. -### GetSessionRunId +### GetVersionId -`func (o *GenerateSyntheticDataParams) GetSessionRunId() string` +`func (o *GenerateSyntheticDataParams) GetVersionId() string` -GetSessionRunId returns the SessionRunId field if non-nil, zero value otherwise. +GetVersionId returns the VersionId field if non-nil, zero value otherwise. -### GetSessionRunIdOk +### GetVersionIdOk -`func (o *GenerateSyntheticDataParams) GetSessionRunIdOk() (*string, bool)` +`func (o *GenerateSyntheticDataParams) GetVersionIdOk() (*string, bool)` -GetSessionRunIdOk returns a tuple with the SessionRunId field if it's non-nil, zero value otherwise +GetVersionIdOk returns a tuple with the VersionId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunId +### SetVersionId -`func (o *GenerateSyntheticDataParams) SetSessionRunId(v string)` +`func (o *GenerateSyntheticDataParams) SetVersionId(v string)` -SetSessionRunId sets SessionRunId field to given value. - - -### GetEpoch - -`func (o *GenerateSyntheticDataParams) GetEpoch() float64` - -GetEpoch returns the Epoch field if non-nil, zero value otherwise. - -### GetEpochOk - -`func (o *GenerateSyntheticDataParams) GetEpochOk() (*float64, bool)` - -GetEpochOk returns a tuple with the Epoch field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetEpoch - -`func (o *GenerateSyntheticDataParams) SetEpoch(v float64)` - -SetEpoch sets Epoch field to given value. +SetVersionId sets VersionId field to given value. ### GetSources -`func (o *GenerateSyntheticDataParams) GetSources() []GenerateSyntheticDataParamsSourcesInner` +`func (o *GenerateSyntheticDataParams) GetSources() []SyntheticDataJobParamsSourcesInner` GetSources returns the Sources field if non-nil, zero value otherwise. ### GetSourcesOk -`func (o *GenerateSyntheticDataParams) GetSourcesOk() (*[]GenerateSyntheticDataParamsSourcesInner, bool)` +`func (o *GenerateSyntheticDataParams) GetSourcesOk() (*[]SyntheticDataJobParamsSourcesInner, bool)` GetSourcesOk returns a tuple with the Sources field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetSources -`func (o *GenerateSyntheticDataParams) SetSources(v []GenerateSyntheticDataParamsSourcesInner)` +`func (o *GenerateSyntheticDataParams) SetSources(v []SyntheticDataJobParamsSourcesInner)` SetSources sets Sources field to given value. diff --git a/pkg/tensorleapapi/docs/GeneratedLabel.md b/pkg/tensorleapapi/docs/GeneratedLabel.md index 3d8053947..2948ce248 100644 --- a/pkg/tensorleapapi/docs/GeneratedLabel.md +++ b/pkg/tensorleapapi/docs/GeneratedLabel.md @@ -6,9 +6,8 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **Id** | **string** | | **JobId** | **string** | | -**SessionRunId** | **string** | | -**SessionRunName** | **string** | | -**Epoch** | **float64** | | +**VersionId** | **string** | | +**VersionName** | **string** | | **NumOfSamples** | Pointer to **float64** | | [optional] **CreatedAt** | **time.Time** | | **CreatedBy** | **string** | | @@ -18,12 +17,13 @@ Name | Type | Description | Notes **Status** | [**JobStatus**](JobStatus.md) | | **IsDeleted** | **bool** | | **Filters** | Pointer to [**[]ESFilter**](ESFilter.md) | | [optional] +**RunProcess** | Pointer to [**RunProcess**](RunProcess.md) | | [optional] ## Methods ### NewGeneratedLabel -`func NewGeneratedLabel(id string, jobId string, sessionRunId string, sessionRunName string, epoch float64, createdAt time.Time, createdBy string, filePath string, status JobStatus, isDeleted bool, ) *GeneratedLabel` +`func NewGeneratedLabel(id string, jobId string, versionId string, versionName string, createdAt time.Time, createdBy string, filePath string, status JobStatus, isDeleted bool, ) *GeneratedLabel` NewGeneratedLabel instantiates a new GeneratedLabel object This constructor will assign default values to properties that have it defined, @@ -78,64 +78,44 @@ and a boolean to check if the value has been set. SetJobId sets JobId field to given value. -### GetSessionRunId +### GetVersionId -`func (o *GeneratedLabel) GetSessionRunId() string` +`func (o *GeneratedLabel) GetVersionId() string` -GetSessionRunId returns the SessionRunId field if non-nil, zero value otherwise. +GetVersionId returns the VersionId field if non-nil, zero value otherwise. -### GetSessionRunIdOk +### GetVersionIdOk -`func (o *GeneratedLabel) GetSessionRunIdOk() (*string, bool)` +`func (o *GeneratedLabel) GetVersionIdOk() (*string, bool)` -GetSessionRunIdOk returns a tuple with the SessionRunId field if it's non-nil, zero value otherwise +GetVersionIdOk returns a tuple with the VersionId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunId +### SetVersionId -`func (o *GeneratedLabel) SetSessionRunId(v string)` +`func (o *GeneratedLabel) SetVersionId(v string)` -SetSessionRunId sets SessionRunId field to given value. +SetVersionId sets VersionId field to given value. -### GetSessionRunName +### GetVersionName -`func (o *GeneratedLabel) GetSessionRunName() string` +`func (o *GeneratedLabel) GetVersionName() string` -GetSessionRunName returns the SessionRunName field if non-nil, zero value otherwise. +GetVersionName returns the VersionName field if non-nil, zero value otherwise. -### GetSessionRunNameOk +### GetVersionNameOk -`func (o *GeneratedLabel) GetSessionRunNameOk() (*string, bool)` +`func (o *GeneratedLabel) GetVersionNameOk() (*string, bool)` -GetSessionRunNameOk returns a tuple with the SessionRunName field if it's non-nil, zero value otherwise +GetVersionNameOk returns a tuple with the VersionName field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunName +### SetVersionName -`func (o *GeneratedLabel) SetSessionRunName(v string)` +`func (o *GeneratedLabel) SetVersionName(v string)` -SetSessionRunName sets SessionRunName field to given value. - - -### GetEpoch - -`func (o *GeneratedLabel) GetEpoch() float64` - -GetEpoch returns the Epoch field if non-nil, zero value otherwise. - -### GetEpochOk - -`func (o *GeneratedLabel) GetEpochOk() (*float64, bool)` - -GetEpochOk returns a tuple with the Epoch field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetEpoch - -`func (o *GeneratedLabel) SetEpoch(v float64)` - -SetEpoch sets Epoch field to given value. +SetVersionName sets VersionName field to given value. ### GetNumOfSamples @@ -338,6 +318,31 @@ SetFilters sets Filters field to given value. HasFilters returns a boolean if a field has been set. +### GetRunProcess + +`func (o *GeneratedLabel) GetRunProcess() RunProcess` + +GetRunProcess returns the RunProcess field if non-nil, zero value otherwise. + +### GetRunProcessOk + +`func (o *GeneratedLabel) GetRunProcessOk() (*RunProcess, bool)` + +GetRunProcessOk returns a tuple with the RunProcess field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetRunProcess + +`func (o *GeneratedLabel) SetRunProcess(v RunProcess)` + +SetRunProcess sets RunProcess field to given value. + +### HasRunProcess + +`func (o *GeneratedLabel) HasRunProcess() bool` + +HasRunProcess returns a boolean if a field has been set. + [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/pkg/tensorleapapi/docs/GenericDataQueryParams.md b/pkg/tensorleapapi/docs/GenericDataQueryParams.md index bbdc98f9f..444c1d111 100644 --- a/pkg/tensorleapapi/docs/GenericDataQueryParams.md +++ b/pkg/tensorleapapi/docs/GenericDataQueryParams.md @@ -5,7 +5,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **ProjectId** | **string** | | -**SessionRunsToEpochs** | [**[]SessionRunToEpoch**](SessionRunToEpoch.md) | | +**InferenceArtifactIds** | **[]string** | | **ShowAllEpochs** | **bool** | | **Filters** | Pointer to [**[]ESFilter**](ESFilter.md) | | [optional] **VerticalSplit** | Pointer to [**SplitAgg**](SplitAgg.md) | | [optional] @@ -19,7 +19,7 @@ Name | Type | Description | Notes ### NewGenericDataQueryParams -`func NewGenericDataQueryParams(projectId string, sessionRunsToEpochs []SessionRunToEpoch, showAllEpochs bool, aggregations []Aggregations, buckets []SplitAgg, ) *GenericDataQueryParams` +`func NewGenericDataQueryParams(projectId string, inferenceArtifactIds []string, showAllEpochs bool, aggregations []Aggregations, buckets []SplitAgg, ) *GenericDataQueryParams` NewGenericDataQueryParams instantiates a new GenericDataQueryParams object This constructor will assign default values to properties that have it defined, @@ -54,24 +54,24 @@ and a boolean to check if the value has been set. SetProjectId sets ProjectId field to given value. -### GetSessionRunsToEpochs +### GetInferenceArtifactIds -`func (o *GenericDataQueryParams) GetSessionRunsToEpochs() []SessionRunToEpoch` +`func (o *GenericDataQueryParams) GetInferenceArtifactIds() []string` -GetSessionRunsToEpochs returns the SessionRunsToEpochs field if non-nil, zero value otherwise. +GetInferenceArtifactIds returns the InferenceArtifactIds field if non-nil, zero value otherwise. -### GetSessionRunsToEpochsOk +### GetInferenceArtifactIdsOk -`func (o *GenericDataQueryParams) GetSessionRunsToEpochsOk() (*[]SessionRunToEpoch, bool)` +`func (o *GenericDataQueryParams) GetInferenceArtifactIdsOk() (*[]string, bool)` -GetSessionRunsToEpochsOk returns a tuple with the SessionRunsToEpochs field if it's non-nil, zero value otherwise +GetInferenceArtifactIdsOk returns a tuple with the InferenceArtifactIds field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunsToEpochs +### SetInferenceArtifactIds -`func (o *GenericDataQueryParams) SetSessionRunsToEpochs(v []SessionRunToEpoch)` +`func (o *GenericDataQueryParams) SetInferenceArtifactIds(v []string)` -SetSessionRunsToEpochs sets SessionRunsToEpochs field to given value. +SetInferenceArtifactIds sets InferenceArtifactIds field to given value. ### GetShowAllEpochs diff --git a/pkg/tensorleapapi/docs/GetCollectionDisplayDataParams.md b/pkg/tensorleapapi/docs/GetCollectionDisplayDataParams.md new file mode 100644 index 000000000..ae2c06b80 --- /dev/null +++ b/pkg/tensorleapapi/docs/GetCollectionDisplayDataParams.md @@ -0,0 +1,72 @@ +# GetCollectionDisplayDataParams + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**CollectionId** | **string** | | +**ProjectId** | **string** | | + +## Methods + +### NewGetCollectionDisplayDataParams + +`func NewGetCollectionDisplayDataParams(collectionId string, projectId string, ) *GetCollectionDisplayDataParams` + +NewGetCollectionDisplayDataParams instantiates a new GetCollectionDisplayDataParams object +This constructor will assign default values to properties that have it defined, +and makes sure properties required by API are set, but the set of arguments +will change when the set of required properties is changed + +### NewGetCollectionDisplayDataParamsWithDefaults + +`func NewGetCollectionDisplayDataParamsWithDefaults() *GetCollectionDisplayDataParams` + +NewGetCollectionDisplayDataParamsWithDefaults instantiates a new GetCollectionDisplayDataParams object +This constructor will only assign default values to properties that have it defined, +but it doesn't guarantee that properties required by API are set + +### GetCollectionId + +`func (o *GetCollectionDisplayDataParams) GetCollectionId() string` + +GetCollectionId returns the CollectionId field if non-nil, zero value otherwise. + +### GetCollectionIdOk + +`func (o *GetCollectionDisplayDataParams) GetCollectionIdOk() (*string, bool)` + +GetCollectionIdOk returns a tuple with the CollectionId field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetCollectionId + +`func (o *GetCollectionDisplayDataParams) SetCollectionId(v string)` + +SetCollectionId sets CollectionId field to given value. + + +### GetProjectId + +`func (o *GetCollectionDisplayDataParams) GetProjectId() string` + +GetProjectId returns the ProjectId field if non-nil, zero value otherwise. + +### GetProjectIdOk + +`func (o *GetCollectionDisplayDataParams) GetProjectIdOk() (*string, bool)` + +GetProjectIdOk returns a tuple with the ProjectId field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetProjectId + +`func (o *GetCollectionDisplayDataParams) SetProjectId(v string)` + +SetProjectId sets ProjectId field to given value. + + + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/pkg/tensorleapapi/docs/GetCollectionDisplayDataResponse.md b/pkg/tensorleapapi/docs/GetCollectionDisplayDataResponse.md new file mode 100644 index 000000000..4a4fae944 --- /dev/null +++ b/pkg/tensorleapapi/docs/GetCollectionDisplayDataResponse.md @@ -0,0 +1,51 @@ +# GetCollectionDisplayDataResponse + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**Data** | [**CollectionDisplayData**](CollectionDisplayData.md) | | + +## Methods + +### NewGetCollectionDisplayDataResponse + +`func NewGetCollectionDisplayDataResponse(data CollectionDisplayData, ) *GetCollectionDisplayDataResponse` + +NewGetCollectionDisplayDataResponse instantiates a new GetCollectionDisplayDataResponse object +This constructor will assign default values to properties that have it defined, +and makes sure properties required by API are set, but the set of arguments +will change when the set of required properties is changed + +### NewGetCollectionDisplayDataResponseWithDefaults + +`func NewGetCollectionDisplayDataResponseWithDefaults() *GetCollectionDisplayDataResponse` + +NewGetCollectionDisplayDataResponseWithDefaults instantiates a new GetCollectionDisplayDataResponse object +This constructor will only assign default values to properties that have it defined, +but it doesn't guarantee that properties required by API are set + +### GetData + +`func (o *GetCollectionDisplayDataResponse) GetData() CollectionDisplayData` + +GetData returns the Data field if non-nil, zero value otherwise. + +### GetDataOk + +`func (o *GetCollectionDisplayDataResponse) GetDataOk() (*CollectionDisplayData, bool)` + +GetDataOk returns a tuple with the Data field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetData + +`func (o *GetCollectionDisplayDataResponse) SetData(v CollectionDisplayData)` + +SetData sets Data field to given value. + + + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/pkg/tensorleapapi/docs/GetConfusionMatrixLabels.md b/pkg/tensorleapapi/docs/GetConfusionMatrixLabels.md index 9e157d0e0..a73b53dd0 100644 --- a/pkg/tensorleapapi/docs/GetConfusionMatrixLabels.md +++ b/pkg/tensorleapapi/docs/GetConfusionMatrixLabels.md @@ -5,13 +5,13 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **ProjectId** | **string** | | -**SessionRunIds** | **[]string** | | +**InferenceArtifactIds** | **[]string** | | ## Methods ### NewGetConfusionMatrixLabels -`func NewGetConfusionMatrixLabels(projectId string, sessionRunIds []string, ) *GetConfusionMatrixLabels` +`func NewGetConfusionMatrixLabels(projectId string, inferenceArtifactIds []string, ) *GetConfusionMatrixLabels` NewGetConfusionMatrixLabels instantiates a new GetConfusionMatrixLabels object This constructor will assign default values to properties that have it defined, @@ -46,24 +46,24 @@ and a boolean to check if the value has been set. SetProjectId sets ProjectId field to given value. -### GetSessionRunIds +### GetInferenceArtifactIds -`func (o *GetConfusionMatrixLabels) GetSessionRunIds() []string` +`func (o *GetConfusionMatrixLabels) GetInferenceArtifactIds() []string` -GetSessionRunIds returns the SessionRunIds field if non-nil, zero value otherwise. +GetInferenceArtifactIds returns the InferenceArtifactIds field if non-nil, zero value otherwise. -### GetSessionRunIdsOk +### GetInferenceArtifactIdsOk -`func (o *GetConfusionMatrixLabels) GetSessionRunIdsOk() (*[]string, bool)` +`func (o *GetConfusionMatrixLabels) GetInferenceArtifactIdsOk() (*[]string, bool)` -GetSessionRunIdsOk returns a tuple with the SessionRunIds field if it's non-nil, zero value otherwise +GetInferenceArtifactIdsOk returns a tuple with the InferenceArtifactIds field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunIds +### SetInferenceArtifactIds -`func (o *GetConfusionMatrixLabels) SetSessionRunIds(v []string)` +`func (o *GetConfusionMatrixLabels) SetInferenceArtifactIds(v []string)` -SetSessionRunIds sets SessionRunIds field to given value. +SetInferenceArtifactIds sets InferenceArtifactIds field to given value. diff --git a/pkg/tensorleapapi/docs/GetConfusionMatrixResultCombinationsParams.md b/pkg/tensorleapapi/docs/GetConfusionMatrixResultCombinationsParams.md index 6480f286b..d2ee7e495 100644 --- a/pkg/tensorleapapi/docs/GetConfusionMatrixResultCombinationsParams.md +++ b/pkg/tensorleapapi/docs/GetConfusionMatrixResultCombinationsParams.md @@ -5,7 +5,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **ProjectId** | **string** | | -**SessionRunsToEpochs** | [**[]SessionRunToEpoch**](SessionRunToEpoch.md) | | +**InferenceArtifactIds** | **[]string** | | **X** | [**SplitAgg**](SplitAgg.md) | | **VerticalSplit** | Pointer to [**SplitAgg**](SplitAgg.md) | | [optional] **HorizontalSplit** | Pointer to [**SplitAgg**](SplitAgg.md) | | [optional] @@ -19,7 +19,7 @@ Name | Type | Description | Notes ### NewGetConfusionMatrixResultCombinationsParams -`func NewGetConfusionMatrixResultCombinationsParams(projectId string, sessionRunsToEpochs []SessionRunToEpoch, x SplitAgg, customMetricName string, ) *GetConfusionMatrixResultCombinationsParams` +`func NewGetConfusionMatrixResultCombinationsParams(projectId string, inferenceArtifactIds []string, x SplitAgg, customMetricName string, ) *GetConfusionMatrixResultCombinationsParams` NewGetConfusionMatrixResultCombinationsParams instantiates a new GetConfusionMatrixResultCombinationsParams object This constructor will assign default values to properties that have it defined, @@ -54,24 +54,24 @@ and a boolean to check if the value has been set. SetProjectId sets ProjectId field to given value. -### GetSessionRunsToEpochs +### GetInferenceArtifactIds -`func (o *GetConfusionMatrixResultCombinationsParams) GetSessionRunsToEpochs() []SessionRunToEpoch` +`func (o *GetConfusionMatrixResultCombinationsParams) GetInferenceArtifactIds() []string` -GetSessionRunsToEpochs returns the SessionRunsToEpochs field if non-nil, zero value otherwise. +GetInferenceArtifactIds returns the InferenceArtifactIds field if non-nil, zero value otherwise. -### GetSessionRunsToEpochsOk +### GetInferenceArtifactIdsOk -`func (o *GetConfusionMatrixResultCombinationsParams) GetSessionRunsToEpochsOk() (*[]SessionRunToEpoch, bool)` +`func (o *GetConfusionMatrixResultCombinationsParams) GetInferenceArtifactIdsOk() (*[]string, bool)` -GetSessionRunsToEpochsOk returns a tuple with the SessionRunsToEpochs field if it's non-nil, zero value otherwise +GetInferenceArtifactIdsOk returns a tuple with the InferenceArtifactIds field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunsToEpochs +### SetInferenceArtifactIds -`func (o *GetConfusionMatrixResultCombinationsParams) SetSessionRunsToEpochs(v []SessionRunToEpoch)` +`func (o *GetConfusionMatrixResultCombinationsParams) SetInferenceArtifactIds(v []string)` -SetSessionRunsToEpochs sets SessionRunsToEpochs field to given value. +SetInferenceArtifactIds sets InferenceArtifactIds field to given value. ### GetX diff --git a/pkg/tensorleapapi/docs/GetDashletFieldsParams.md b/pkg/tensorleapapi/docs/GetDashletFieldsParams.md index 7b94bfe9a..fd04d89ad 100644 --- a/pkg/tensorleapapi/docs/GetDashletFieldsParams.md +++ b/pkg/tensorleapapi/docs/GetDashletFieldsParams.md @@ -5,13 +5,13 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **ProjectId** | **string** | | -**SessionRunIds** | **[]string** | | +**InferenceArtifactIds** | **[]string** | | ## Methods ### NewGetDashletFieldsParams -`func NewGetDashletFieldsParams(projectId string, sessionRunIds []string, ) *GetDashletFieldsParams` +`func NewGetDashletFieldsParams(projectId string, inferenceArtifactIds []string, ) *GetDashletFieldsParams` NewGetDashletFieldsParams instantiates a new GetDashletFieldsParams object This constructor will assign default values to properties that have it defined, @@ -46,24 +46,24 @@ and a boolean to check if the value has been set. SetProjectId sets ProjectId field to given value. -### GetSessionRunIds +### GetInferenceArtifactIds -`func (o *GetDashletFieldsParams) GetSessionRunIds() []string` +`func (o *GetDashletFieldsParams) GetInferenceArtifactIds() []string` -GetSessionRunIds returns the SessionRunIds field if non-nil, zero value otherwise. +GetInferenceArtifactIds returns the InferenceArtifactIds field if non-nil, zero value otherwise. -### GetSessionRunIdsOk +### GetInferenceArtifactIdsOk -`func (o *GetDashletFieldsParams) GetSessionRunIdsOk() (*[]string, bool)` +`func (o *GetDashletFieldsParams) GetInferenceArtifactIdsOk() (*[]string, bool)` -GetSessionRunIdsOk returns a tuple with the SessionRunIds field if it's non-nil, zero value otherwise +GetInferenceArtifactIdsOk returns a tuple with the InferenceArtifactIds field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunIds +### SetInferenceArtifactIds -`func (o *GetDashletFieldsParams) SetSessionRunIds(v []string)` +`func (o *GetDashletFieldsParams) SetInferenceArtifactIds(v []string)` -SetSessionRunIds sets SessionRunIds field to given value. +SetInferenceArtifactIds sets InferenceArtifactIds field to given value. diff --git a/pkg/tensorleapapi/docs/GetDashletFieldsResponse.md b/pkg/tensorleapapi/docs/GetDashletFieldsResponse.md index 9962e7d56..80e121567 100644 --- a/pkg/tensorleapapi/docs/GetDashletFieldsResponse.md +++ b/pkg/tensorleapapi/docs/GetDashletFieldsResponse.md @@ -7,13 +7,14 @@ Name | Type | Description | Notes **AggregatableFields** | **[]string** | | **NumericFields** | **[]string** | | **StringFields** | **[]string** | | +**BooleanFields** | **[]string** | | **DateFields** | **[]string** | | ## Methods ### NewGetDashletFieldsResponse -`func NewGetDashletFieldsResponse(aggregatableFields []string, numericFields []string, stringFields []string, dateFields []string, ) *GetDashletFieldsResponse` +`func NewGetDashletFieldsResponse(aggregatableFields []string, numericFields []string, stringFields []string, booleanFields []string, dateFields []string, ) *GetDashletFieldsResponse` NewGetDashletFieldsResponse instantiates a new GetDashletFieldsResponse object This constructor will assign default values to properties that have it defined, @@ -88,6 +89,26 @@ and a boolean to check if the value has been set. SetStringFields sets StringFields field to given value. +### GetBooleanFields + +`func (o *GetDashletFieldsResponse) GetBooleanFields() []string` + +GetBooleanFields returns the BooleanFields field if non-nil, zero value otherwise. + +### GetBooleanFieldsOk + +`func (o *GetDashletFieldsResponse) GetBooleanFieldsOk() (*[]string, bool)` + +GetBooleanFieldsOk returns a tuple with the BooleanFields field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetBooleanFields + +`func (o *GetDashletFieldsResponse) SetBooleanFields(v []string)` + +SetBooleanFields sets BooleanFields field to given value. + + ### GetDateFields `func (o *GetDashletFieldsResponse) GetDateFields() []string` diff --git a/pkg/tensorleapapi/docs/SessionVersionIdRequestParams.md b/pkg/tensorleapapi/docs/GetExportedModelJobsParams.md similarity index 60% rename from pkg/tensorleapapi/docs/SessionVersionIdRequestParams.md rename to pkg/tensorleapapi/docs/GetExportedModelJobsParams.md index e7e05dd76..16b078c5c 100644 --- a/pkg/tensorleapapi/docs/SessionVersionIdRequestParams.md +++ b/pkg/tensorleapapi/docs/GetExportedModelJobsParams.md @@ -1,4 +1,4 @@ -# SessionVersionIdRequestParams +# GetExportedModelJobsParams ## Properties @@ -9,59 +9,59 @@ Name | Type | Description | Notes ## Methods -### NewSessionVersionIdRequestParams +### NewGetExportedModelJobsParams -`func NewSessionVersionIdRequestParams(versionId string, projectId string, ) *SessionVersionIdRequestParams` +`func NewGetExportedModelJobsParams(versionId string, projectId string, ) *GetExportedModelJobsParams` -NewSessionVersionIdRequestParams instantiates a new SessionVersionIdRequestParams object +NewGetExportedModelJobsParams instantiates a new GetExportedModelJobsParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed -### NewSessionVersionIdRequestParamsWithDefaults +### NewGetExportedModelJobsParamsWithDefaults -`func NewSessionVersionIdRequestParamsWithDefaults() *SessionVersionIdRequestParams` +`func NewGetExportedModelJobsParamsWithDefaults() *GetExportedModelJobsParams` -NewSessionVersionIdRequestParamsWithDefaults instantiates a new SessionVersionIdRequestParams object +NewGetExportedModelJobsParamsWithDefaults instantiates a new GetExportedModelJobsParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set ### GetVersionId -`func (o *SessionVersionIdRequestParams) GetVersionId() string` +`func (o *GetExportedModelJobsParams) GetVersionId() string` GetVersionId returns the VersionId field if non-nil, zero value otherwise. ### GetVersionIdOk -`func (o *SessionVersionIdRequestParams) GetVersionIdOk() (*string, bool)` +`func (o *GetExportedModelJobsParams) GetVersionIdOk() (*string, bool)` GetVersionIdOk returns a tuple with the VersionId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetVersionId -`func (o *SessionVersionIdRequestParams) SetVersionId(v string)` +`func (o *GetExportedModelJobsParams) SetVersionId(v string)` SetVersionId sets VersionId field to given value. ### GetProjectId -`func (o *SessionVersionIdRequestParams) GetProjectId() string` +`func (o *GetExportedModelJobsParams) GetProjectId() string` GetProjectId returns the ProjectId field if non-nil, zero value otherwise. ### GetProjectIdOk -`func (o *SessionVersionIdRequestParams) GetProjectIdOk() (*string, bool)` +`func (o *GetExportedModelJobsParams) GetProjectIdOk() (*string, bool)` GetProjectIdOk returns a tuple with the ProjectId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetProjectId -`func (o *SessionVersionIdRequestParams) SetProjectId(v string)` +`func (o *GetExportedModelJobsParams) SetProjectId(v string)` SetProjectId sets ProjectId field to given value. diff --git a/pkg/tensorleapapi/docs/GetExportedSessionRunJobsResponse.md b/pkg/tensorleapapi/docs/GetExportedModelJobsResponse.md similarity index 57% rename from pkg/tensorleapapi/docs/GetExportedSessionRunJobsResponse.md rename to pkg/tensorleapapi/docs/GetExportedModelJobsResponse.md index 0fd5e67c4..348231e3f 100644 --- a/pkg/tensorleapapi/docs/GetExportedSessionRunJobsResponse.md +++ b/pkg/tensorleapapi/docs/GetExportedModelJobsResponse.md @@ -1,4 +1,4 @@ -# GetExportedSessionRunJobsResponse +# GetExportedModelJobsResponse ## Properties @@ -8,39 +8,39 @@ Name | Type | Description | Notes ## Methods -### NewGetExportedSessionRunJobsResponse +### NewGetExportedModelJobsResponse -`func NewGetExportedSessionRunJobsResponse(exportedModelData []ExportedModelData, ) *GetExportedSessionRunJobsResponse` +`func NewGetExportedModelJobsResponse(exportedModelData []ExportedModelData, ) *GetExportedModelJobsResponse` -NewGetExportedSessionRunJobsResponse instantiates a new GetExportedSessionRunJobsResponse object +NewGetExportedModelJobsResponse instantiates a new GetExportedModelJobsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed -### NewGetExportedSessionRunJobsResponseWithDefaults +### NewGetExportedModelJobsResponseWithDefaults -`func NewGetExportedSessionRunJobsResponseWithDefaults() *GetExportedSessionRunJobsResponse` +`func NewGetExportedModelJobsResponseWithDefaults() *GetExportedModelJobsResponse` -NewGetExportedSessionRunJobsResponseWithDefaults instantiates a new GetExportedSessionRunJobsResponse object +NewGetExportedModelJobsResponseWithDefaults instantiates a new GetExportedModelJobsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set ### GetExportedModelData -`func (o *GetExportedSessionRunJobsResponse) GetExportedModelData() []ExportedModelData` +`func (o *GetExportedModelJobsResponse) GetExportedModelData() []ExportedModelData` GetExportedModelData returns the ExportedModelData field if non-nil, zero value otherwise. ### GetExportedModelDataOk -`func (o *GetExportedSessionRunJobsResponse) GetExportedModelDataOk() (*[]ExportedModelData, bool)` +`func (o *GetExportedModelJobsResponse) GetExportedModelDataOk() (*[]ExportedModelData, bool)` GetExportedModelDataOk returns a tuple with the ExportedModelData field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetExportedModelData -`func (o *GetExportedSessionRunJobsResponse) SetExportedModelData(v []ExportedModelData)` +`func (o *GetExportedModelJobsResponse) SetExportedModelData(v []ExportedModelData)` SetExportedModelData sets ExportedModelData field to given value. diff --git a/pkg/tensorleapapi/docs/GetExportedSessionRunJobsParams.md b/pkg/tensorleapapi/docs/GetExportedSessionRunJobsParams.md deleted file mode 100644 index 5ee27a648..000000000 --- a/pkg/tensorleapapi/docs/GetExportedSessionRunJobsParams.md +++ /dev/null @@ -1,72 +0,0 @@ -# GetExportedSessionRunJobsParams - -## Properties - -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**SessionId** | **string** | | -**ProjectId** | **string** | | - -## Methods - -### NewGetExportedSessionRunJobsParams - -`func NewGetExportedSessionRunJobsParams(sessionId string, projectId string, ) *GetExportedSessionRunJobsParams` - -NewGetExportedSessionRunJobsParams instantiates a new GetExportedSessionRunJobsParams object -This constructor will assign default values to properties that have it defined, -and makes sure properties required by API are set, but the set of arguments -will change when the set of required properties is changed - -### NewGetExportedSessionRunJobsParamsWithDefaults - -`func NewGetExportedSessionRunJobsParamsWithDefaults() *GetExportedSessionRunJobsParams` - -NewGetExportedSessionRunJobsParamsWithDefaults instantiates a new GetExportedSessionRunJobsParams object -This constructor will only assign default values to properties that have it defined, -but it doesn't guarantee that properties required by API are set - -### GetSessionId - -`func (o *GetExportedSessionRunJobsParams) GetSessionId() string` - -GetSessionId returns the SessionId field if non-nil, zero value otherwise. - -### GetSessionIdOk - -`func (o *GetExportedSessionRunJobsParams) GetSessionIdOk() (*string, bool)` - -GetSessionIdOk returns a tuple with the SessionId field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetSessionId - -`func (o *GetExportedSessionRunJobsParams) SetSessionId(v string)` - -SetSessionId sets SessionId field to given value. - - -### GetProjectId - -`func (o *GetExportedSessionRunJobsParams) GetProjectId() string` - -GetProjectId returns the ProjectId field if non-nil, zero value otherwise. - -### GetProjectIdOk - -`func (o *GetExportedSessionRunJobsParams) GetProjectIdOk() (*string, bool)` - -GetProjectIdOk returns a tuple with the ProjectId field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetProjectId - -`func (o *GetExportedSessionRunJobsParams) SetProjectId(v string)` - -SetProjectId sets ProjectId field to given value. - - - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/pkg/tensorleapapi/docs/GetFieldsValuesRequest.md b/pkg/tensorleapapi/docs/GetFieldsValuesRequest.md index e1e4c51fc..65c995cd8 100644 --- a/pkg/tensorleapapi/docs/GetFieldsValuesRequest.md +++ b/pkg/tensorleapapi/docs/GetFieldsValuesRequest.md @@ -5,7 +5,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **Filters** | [**[]ESFilter**](ESFilter.md) | | -**SessionRunIds** | **[]string** | | +**InferenceArtifactIds** | **[]string** | | **Fields** | [**[]QueryFieldValues**](QueryFieldValues.md) | | **ProjectId** | **string** | | @@ -13,7 +13,7 @@ Name | Type | Description | Notes ### NewGetFieldsValuesRequest -`func NewGetFieldsValuesRequest(filters []ESFilter, sessionRunIds []string, fields []QueryFieldValues, projectId string, ) *GetFieldsValuesRequest` +`func NewGetFieldsValuesRequest(filters []ESFilter, inferenceArtifactIds []string, fields []QueryFieldValues, projectId string, ) *GetFieldsValuesRequest` NewGetFieldsValuesRequest instantiates a new GetFieldsValuesRequest object This constructor will assign default values to properties that have it defined, @@ -48,24 +48,24 @@ and a boolean to check if the value has been set. SetFilters sets Filters field to given value. -### GetSessionRunIds +### GetInferenceArtifactIds -`func (o *GetFieldsValuesRequest) GetSessionRunIds() []string` +`func (o *GetFieldsValuesRequest) GetInferenceArtifactIds() []string` -GetSessionRunIds returns the SessionRunIds field if non-nil, zero value otherwise. +GetInferenceArtifactIds returns the InferenceArtifactIds field if non-nil, zero value otherwise. -### GetSessionRunIdsOk +### GetInferenceArtifactIdsOk -`func (o *GetFieldsValuesRequest) GetSessionRunIdsOk() (*[]string, bool)` +`func (o *GetFieldsValuesRequest) GetInferenceArtifactIdsOk() (*[]string, bool)` -GetSessionRunIdsOk returns a tuple with the SessionRunIds field if it's non-nil, zero value otherwise +GetInferenceArtifactIdsOk returns a tuple with the InferenceArtifactIds field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunIds +### SetInferenceArtifactIds -`func (o *GetFieldsValuesRequest) SetSessionRunIds(v []string)` +`func (o *GetFieldsValuesRequest) SetInferenceArtifactIds(v []string)` -SetSessionRunIds sets SessionRunIds field to given value. +SetInferenceArtifactIds sets InferenceArtifactIds field to given value. ### GetFields diff --git a/pkg/tensorleapapi/docs/GetInsightsParams.md b/pkg/tensorleapapi/docs/GetInsightsParams.md index a196f53e7..0d3164c28 100644 --- a/pkg/tensorleapapi/docs/GetInsightsParams.md +++ b/pkg/tensorleapapi/docs/GetInsightsParams.md @@ -4,14 +4,14 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**SessionRunId** | **string** | | +**VersionId** | Pointer to **string** | | [optional] **ProjectId** | **string** | | ## Methods ### NewGetInsightsParams -`func NewGetInsightsParams(sessionRunId string, projectId string, ) *GetInsightsParams` +`func NewGetInsightsParams(projectId string, ) *GetInsightsParams` NewGetInsightsParams instantiates a new GetInsightsParams object This constructor will assign default values to properties that have it defined, @@ -26,25 +26,30 @@ NewGetInsightsParamsWithDefaults instantiates a new GetInsightsParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set -### GetSessionRunId +### GetVersionId -`func (o *GetInsightsParams) GetSessionRunId() string` +`func (o *GetInsightsParams) GetVersionId() string` -GetSessionRunId returns the SessionRunId field if non-nil, zero value otherwise. +GetVersionId returns the VersionId field if non-nil, zero value otherwise. -### GetSessionRunIdOk +### GetVersionIdOk -`func (o *GetInsightsParams) GetSessionRunIdOk() (*string, bool)` +`func (o *GetInsightsParams) GetVersionIdOk() (*string, bool)` -GetSessionRunIdOk returns a tuple with the SessionRunId field if it's non-nil, zero value otherwise +GetVersionIdOk returns a tuple with the VersionId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunId +### SetVersionId -`func (o *GetInsightsParams) SetSessionRunId(v string)` +`func (o *GetInsightsParams) SetVersionId(v string)` -SetSessionRunId sets SessionRunId field to given value. +SetVersionId sets VersionId field to given value. +### HasVersionId + +`func (o *GetInsightsParams) HasVersionId() bool` + +HasVersionId returns a boolean if a field has been set. ### GetProjectId diff --git a/pkg/tensorleapapi/docs/GetJobsFilterParams.md b/pkg/tensorleapapi/docs/GetJobsFilterParams.md index 75af078c7..53cc016fe 100644 --- a/pkg/tensorleapapi/docs/GetJobsFilterParams.md +++ b/pkg/tensorleapapi/docs/GetJobsFilterParams.md @@ -5,7 +5,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **LastUpdated** | Pointer to **time.Time** | | [optional] -**SessionRunIds** | Pointer to **[]string** | | [optional] +**VersionIds** | Pointer to **[]string** | | [optional] **Types** | Pointer to [**[]JobType**](JobType.md) | | [optional] **SubTypes** | Pointer to [**[]JobSubType**](JobSubType.md) | | [optional] **Trigger** | Pointer to [**JobTrigger**](JobTrigger.md) | | [optional] @@ -59,30 +59,30 @@ SetLastUpdated sets LastUpdated field to given value. HasLastUpdated returns a boolean if a field has been set. -### GetSessionRunIds +### GetVersionIds -`func (o *GetJobsFilterParams) GetSessionRunIds() []string` +`func (o *GetJobsFilterParams) GetVersionIds() []string` -GetSessionRunIds returns the SessionRunIds field if non-nil, zero value otherwise. +GetVersionIds returns the VersionIds field if non-nil, zero value otherwise. -### GetSessionRunIdsOk +### GetVersionIdsOk -`func (o *GetJobsFilterParams) GetSessionRunIdsOk() (*[]string, bool)` +`func (o *GetJobsFilterParams) GetVersionIdsOk() (*[]string, bool)` -GetSessionRunIdsOk returns a tuple with the SessionRunIds field if it's non-nil, zero value otherwise +GetVersionIdsOk returns a tuple with the VersionIds field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunIds +### SetVersionIds -`func (o *GetJobsFilterParams) SetSessionRunIds(v []string)` +`func (o *GetJobsFilterParams) SetVersionIds(v []string)` -SetSessionRunIds sets SessionRunIds field to given value. +SetVersionIds sets VersionIds field to given value. -### HasSessionRunIds +### HasVersionIds -`func (o *GetJobsFilterParams) HasSessionRunIds() bool` +`func (o *GetJobsFilterParams) HasVersionIds() bool` -HasSessionRunIds returns a boolean if a field has been set. +HasVersionIds returns a boolean if a field has been set. ### GetTypes diff --git a/pkg/tensorleapapi/docs/GetSampleEnrichmentParams.md b/pkg/tensorleapapi/docs/GetSampleEnrichmentParams.md index cc1047f2f..c3db68f9f 100644 --- a/pkg/tensorleapapi/docs/GetSampleEnrichmentParams.md +++ b/pkg/tensorleapapi/docs/GetSampleEnrichmentParams.md @@ -6,14 +6,14 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **Samples** | [**[]SampleIdentity**](SampleIdentity.md) | Visible / batch samples to fetch data for. | **Epoch** | **float64** | | -**SessionRunIds** | **[]string** | | +**InferenceArtifactIds** | **[]string** | | **ProjectId** | **string** | | ## Methods ### NewGetSampleEnrichmentParams -`func NewGetSampleEnrichmentParams(samples []SampleIdentity, epoch float64, sessionRunIds []string, projectId string, ) *GetSampleEnrichmentParams` +`func NewGetSampleEnrichmentParams(samples []SampleIdentity, epoch float64, inferenceArtifactIds []string, projectId string, ) *GetSampleEnrichmentParams` NewGetSampleEnrichmentParams instantiates a new GetSampleEnrichmentParams object This constructor will assign default values to properties that have it defined, @@ -68,24 +68,24 @@ and a boolean to check if the value has been set. SetEpoch sets Epoch field to given value. -### GetSessionRunIds +### GetInferenceArtifactIds -`func (o *GetSampleEnrichmentParams) GetSessionRunIds() []string` +`func (o *GetSampleEnrichmentParams) GetInferenceArtifactIds() []string` -GetSessionRunIds returns the SessionRunIds field if non-nil, zero value otherwise. +GetInferenceArtifactIds returns the InferenceArtifactIds field if non-nil, zero value otherwise. -### GetSessionRunIdsOk +### GetInferenceArtifactIdsOk -`func (o *GetSampleEnrichmentParams) GetSessionRunIdsOk() (*[]string, bool)` +`func (o *GetSampleEnrichmentParams) GetInferenceArtifactIdsOk() (*[]string, bool)` -GetSessionRunIdsOk returns a tuple with the SessionRunIds field if it's non-nil, zero value otherwise +GetInferenceArtifactIdsOk returns a tuple with the InferenceArtifactIds field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunIds +### SetInferenceArtifactIds -`func (o *GetSampleEnrichmentParams) SetSessionRunIds(v []string)` +`func (o *GetSampleEnrichmentParams) SetInferenceArtifactIds(v []string)` -SetSessionRunIds sets SessionRunIds field to given value. +SetInferenceArtifactIds sets InferenceArtifactIds field to given value. ### GetProjectId diff --git a/pkg/tensorleapapi/docs/GetScatterSampleVisualizationsParams.md b/pkg/tensorleapapi/docs/GetScatterSampleVisualizationsParams.md index 893dfea4a..b811a13d1 100644 --- a/pkg/tensorleapapi/docs/GetScatterSampleVisualizationsParams.md +++ b/pkg/tensorleapapi/docs/GetScatterSampleVisualizationsParams.md @@ -4,15 +4,14 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**SessionRunId** | **string** | | +**VersionId** | **string** | | **ProjectId** | **string** | | -**Epoch** | **float64** | | ## Methods ### NewGetScatterSampleVisualizationsParams -`func NewGetScatterSampleVisualizationsParams(sessionRunId string, projectId string, epoch float64, ) *GetScatterSampleVisualizationsParams` +`func NewGetScatterSampleVisualizationsParams(versionId string, projectId string, ) *GetScatterSampleVisualizationsParams` NewGetScatterSampleVisualizationsParams instantiates a new GetScatterSampleVisualizationsParams object This constructor will assign default values to properties that have it defined, @@ -27,24 +26,24 @@ NewGetScatterSampleVisualizationsParamsWithDefaults instantiates a new GetScatte This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set -### GetSessionRunId +### GetVersionId -`func (o *GetScatterSampleVisualizationsParams) GetSessionRunId() string` +`func (o *GetScatterSampleVisualizationsParams) GetVersionId() string` -GetSessionRunId returns the SessionRunId field if non-nil, zero value otherwise. +GetVersionId returns the VersionId field if non-nil, zero value otherwise. -### GetSessionRunIdOk +### GetVersionIdOk -`func (o *GetScatterSampleVisualizationsParams) GetSessionRunIdOk() (*string, bool)` +`func (o *GetScatterSampleVisualizationsParams) GetVersionIdOk() (*string, bool)` -GetSessionRunIdOk returns a tuple with the SessionRunId field if it's non-nil, zero value otherwise +GetVersionIdOk returns a tuple with the VersionId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunId +### SetVersionId -`func (o *GetScatterSampleVisualizationsParams) SetSessionRunId(v string)` +`func (o *GetScatterSampleVisualizationsParams) SetVersionId(v string)` -SetSessionRunId sets SessionRunId field to given value. +SetVersionId sets VersionId field to given value. ### GetProjectId @@ -67,26 +66,6 @@ and a boolean to check if the value has been set. SetProjectId sets ProjectId field to given value. -### GetEpoch - -`func (o *GetScatterSampleVisualizationsParams) GetEpoch() float64` - -GetEpoch returns the Epoch field if non-nil, zero value otherwise. - -### GetEpochOk - -`func (o *GetScatterSampleVisualizationsParams) GetEpochOk() (*float64, bool)` - -GetEpochOk returns a tuple with the Epoch field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetEpoch - -`func (o *GetScatterSampleVisualizationsParams) SetEpoch(v float64)` - -SetEpoch sets Epoch field to given value. - - [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/pkg/tensorleapapi/docs/GetSessionRunsEvaluateParams.md b/pkg/tensorleapapi/docs/GetSessionRunsEvaluateParams.md deleted file mode 100644 index 3603aebd0..000000000 --- a/pkg/tensorleapapi/docs/GetSessionRunsEvaluateParams.md +++ /dev/null @@ -1,51 +0,0 @@ -# GetSessionRunsEvaluateParams - -## Properties - -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**ProjectId** | **string** | | - -## Methods - -### NewGetSessionRunsEvaluateParams - -`func NewGetSessionRunsEvaluateParams(projectId string, ) *GetSessionRunsEvaluateParams` - -NewGetSessionRunsEvaluateParams instantiates a new GetSessionRunsEvaluateParams object -This constructor will assign default values to properties that have it defined, -and makes sure properties required by API are set, but the set of arguments -will change when the set of required properties is changed - -### NewGetSessionRunsEvaluateParamsWithDefaults - -`func NewGetSessionRunsEvaluateParamsWithDefaults() *GetSessionRunsEvaluateParams` - -NewGetSessionRunsEvaluateParamsWithDefaults instantiates a new GetSessionRunsEvaluateParams object -This constructor will only assign default values to properties that have it defined, -but it doesn't guarantee that properties required by API are set - -### GetProjectId - -`func (o *GetSessionRunsEvaluateParams) GetProjectId() string` - -GetProjectId returns the ProjectId field if non-nil, zero value otherwise. - -### GetProjectIdOk - -`func (o *GetSessionRunsEvaluateParams) GetProjectIdOk() (*string, bool)` - -GetProjectIdOk returns a tuple with the ProjectId field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetProjectId - -`func (o *GetSessionRunsEvaluateParams) SetProjectId(v string)` - -SetProjectId sets ProjectId field to given value. - - - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/pkg/tensorleapapi/docs/GetSessionRunsEvaluateResponse.md b/pkg/tensorleapapi/docs/GetSessionRunsEvaluateResponse.md deleted file mode 100644 index 0b11c82d4..000000000 --- a/pkg/tensorleapapi/docs/GetSessionRunsEvaluateResponse.md +++ /dev/null @@ -1,51 +0,0 @@ -# GetSessionRunsEvaluateResponse - -## Properties - -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**EvaluateSessionRuns** | [**[]SessionRunData**](SessionRunData.md) | | - -## Methods - -### NewGetSessionRunsEvaluateResponse - -`func NewGetSessionRunsEvaluateResponse(evaluateSessionRuns []SessionRunData, ) *GetSessionRunsEvaluateResponse` - -NewGetSessionRunsEvaluateResponse instantiates a new GetSessionRunsEvaluateResponse object -This constructor will assign default values to properties that have it defined, -and makes sure properties required by API are set, but the set of arguments -will change when the set of required properties is changed - -### NewGetSessionRunsEvaluateResponseWithDefaults - -`func NewGetSessionRunsEvaluateResponseWithDefaults() *GetSessionRunsEvaluateResponse` - -NewGetSessionRunsEvaluateResponseWithDefaults instantiates a new GetSessionRunsEvaluateResponse object -This constructor will only assign default values to properties that have it defined, -but it doesn't guarantee that properties required by API are set - -### GetEvaluateSessionRuns - -`func (o *GetSessionRunsEvaluateResponse) GetEvaluateSessionRuns() []SessionRunData` - -GetEvaluateSessionRuns returns the EvaluateSessionRuns field if non-nil, zero value otherwise. - -### GetEvaluateSessionRunsOk - -`func (o *GetSessionRunsEvaluateResponse) GetEvaluateSessionRunsOk() (*[]SessionRunData, bool)` - -GetEvaluateSessionRunsOk returns a tuple with the EvaluateSessionRuns field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetEvaluateSessionRuns - -`func (o *GetSessionRunsEvaluateResponse) SetEvaluateSessionRuns(v []SessionRunData)` - -SetEvaluateSessionRuns sets EvaluateSessionRuns field to given value. - - - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/pkg/tensorleapapi/docs/GetSessionRunsVisualizationsParams.md b/pkg/tensorleapapi/docs/GetSessionRunsVisualizationsParams.md deleted file mode 100644 index 0a6533a41..000000000 --- a/pkg/tensorleapapi/docs/GetSessionRunsVisualizationsParams.md +++ /dev/null @@ -1,72 +0,0 @@ -# GetSessionRunsVisualizationsParams - -## Properties - -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**SessionRunIds** | **[]string** | | -**ProjectId** | **string** | | - -## Methods - -### NewGetSessionRunsVisualizationsParams - -`func NewGetSessionRunsVisualizationsParams(sessionRunIds []string, projectId string, ) *GetSessionRunsVisualizationsParams` - -NewGetSessionRunsVisualizationsParams instantiates a new GetSessionRunsVisualizationsParams object -This constructor will assign default values to properties that have it defined, -and makes sure properties required by API are set, but the set of arguments -will change when the set of required properties is changed - -### NewGetSessionRunsVisualizationsParamsWithDefaults - -`func NewGetSessionRunsVisualizationsParamsWithDefaults() *GetSessionRunsVisualizationsParams` - -NewGetSessionRunsVisualizationsParamsWithDefaults instantiates a new GetSessionRunsVisualizationsParams object -This constructor will only assign default values to properties that have it defined, -but it doesn't guarantee that properties required by API are set - -### GetSessionRunIds - -`func (o *GetSessionRunsVisualizationsParams) GetSessionRunIds() []string` - -GetSessionRunIds returns the SessionRunIds field if non-nil, zero value otherwise. - -### GetSessionRunIdsOk - -`func (o *GetSessionRunsVisualizationsParams) GetSessionRunIdsOk() (*[]string, bool)` - -GetSessionRunIdsOk returns a tuple with the SessionRunIds field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetSessionRunIds - -`func (o *GetSessionRunsVisualizationsParams) SetSessionRunIds(v []string)` - -SetSessionRunIds sets SessionRunIds field to given value. - - -### GetProjectId - -`func (o *GetSessionRunsVisualizationsParams) GetProjectId() string` - -GetProjectId returns the ProjectId field if non-nil, zero value otherwise. - -### GetProjectIdOk - -`func (o *GetSessionRunsVisualizationsParams) GetProjectIdOk() (*string, bool)` - -GetProjectIdOk returns a tuple with the ProjectId field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetProjectId - -`func (o *GetSessionRunsVisualizationsParams) SetProjectId(v string)` - -SetProjectId sets ProjectId field to given value. - - - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/pkg/tensorleapapi/docs/GetStatisticsResponse.md b/pkg/tensorleapapi/docs/GetStatisticsResponse.md index af449fbe3..c03f4946a 100644 --- a/pkg/tensorleapapi/docs/GetStatisticsResponse.md +++ b/pkg/tensorleapapi/docs/GetStatisticsResponse.md @@ -9,13 +9,13 @@ Name | Type | Description | Notes **Tests** | **float64** | | **Projects** | **float64** | | **Networks** | **float64** | | -**Sessions** | **float64** | | +**Versions** | **float64** | | ## Methods ### NewGetStatisticsResponse -`func NewGetStatisticsResponse(activeUsers float64, openIssues float64, tests float64, projects float64, networks float64, sessions float64, ) *GetStatisticsResponse` +`func NewGetStatisticsResponse(activeUsers float64, openIssues float64, tests float64, projects float64, networks float64, versions float64, ) *GetStatisticsResponse` NewGetStatisticsResponse instantiates a new GetStatisticsResponse object This constructor will assign default values to properties that have it defined, @@ -130,24 +130,24 @@ and a boolean to check if the value has been set. SetNetworks sets Networks field to given value. -### GetSessions +### GetVersions -`func (o *GetStatisticsResponse) GetSessions() float64` +`func (o *GetStatisticsResponse) GetVersions() float64` -GetSessions returns the Sessions field if non-nil, zero value otherwise. +GetVersions returns the Versions field if non-nil, zero value otherwise. -### GetSessionsOk +### GetVersionsOk -`func (o *GetStatisticsResponse) GetSessionsOk() (*float64, bool)` +`func (o *GetStatisticsResponse) GetVersionsOk() (*float64, bool)` -GetSessionsOk returns a tuple with the Sessions field if it's non-nil, zero value otherwise +GetVersionsOk returns a tuple with the Versions field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessions +### SetVersions -`func (o *GetStatisticsResponse) SetSessions(v float64)` +`func (o *GetStatisticsResponse) SetVersions(v float64)` -SetSessions sets Sessions field to given value. +SetVersions sets Versions field to given value. diff --git a/pkg/tensorleapapi/docs/GetSessionEpochsResponse.md b/pkg/tensorleapapi/docs/GetVersionEpochsResponse.md similarity index 65% rename from pkg/tensorleapapi/docs/GetSessionEpochsResponse.md rename to pkg/tensorleapapi/docs/GetVersionEpochsResponse.md index 95509c6a3..ffe1ffb25 100644 --- a/pkg/tensorleapapi/docs/GetSessionEpochsResponse.md +++ b/pkg/tensorleapapi/docs/GetVersionEpochsResponse.md @@ -1,4 +1,4 @@ -# GetSessionEpochsResponse +# GetVersionEpochsResponse ## Properties @@ -8,39 +8,39 @@ Name | Type | Description | Notes ## Methods -### NewGetSessionEpochsResponse +### NewGetVersionEpochsResponse -`func NewGetSessionEpochsResponse(epochs []EpochData, ) *GetSessionEpochsResponse` +`func NewGetVersionEpochsResponse(epochs []EpochData, ) *GetVersionEpochsResponse` -NewGetSessionEpochsResponse instantiates a new GetSessionEpochsResponse object +NewGetVersionEpochsResponse instantiates a new GetVersionEpochsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed -### NewGetSessionEpochsResponseWithDefaults +### NewGetVersionEpochsResponseWithDefaults -`func NewGetSessionEpochsResponseWithDefaults() *GetSessionEpochsResponse` +`func NewGetVersionEpochsResponseWithDefaults() *GetVersionEpochsResponse` -NewGetSessionEpochsResponseWithDefaults instantiates a new GetSessionEpochsResponse object +NewGetVersionEpochsResponseWithDefaults instantiates a new GetVersionEpochsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set ### GetEpochs -`func (o *GetSessionEpochsResponse) GetEpochs() []EpochData` +`func (o *GetVersionEpochsResponse) GetEpochs() []EpochData` GetEpochs returns the Epochs field if non-nil, zero value otherwise. ### GetEpochsOk -`func (o *GetSessionEpochsResponse) GetEpochsOk() (*[]EpochData, bool)` +`func (o *GetVersionEpochsResponse) GetEpochsOk() (*[]EpochData, bool)` GetEpochsOk returns a tuple with the Epochs field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetEpochs -`func (o *GetSessionEpochsResponse) SetEpochs(v []EpochData)` +`func (o *GetVersionEpochsResponse) SetEpochs(v []EpochData)` SetEpochs sets Epochs field to given value. diff --git a/pkg/tensorleapapi/docs/GetSessionsEpochsRequest.md b/pkg/tensorleapapi/docs/GetVersionsEpochsRequest.md similarity index 52% rename from pkg/tensorleapapi/docs/GetSessionsEpochsRequest.md rename to pkg/tensorleapapi/docs/GetVersionsEpochsRequest.md index 53a6f3efd..018b984bf 100644 --- a/pkg/tensorleapapi/docs/GetSessionsEpochsRequest.md +++ b/pkg/tensorleapapi/docs/GetVersionsEpochsRequest.md @@ -1,69 +1,69 @@ -# GetSessionsEpochsRequest +# GetVersionsEpochsRequest ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **ProjectId** | **string** | | -**SessionIds** | **[]string** | | +**VersionIds** | **[]string** | | ## Methods -### NewGetSessionsEpochsRequest +### NewGetVersionsEpochsRequest -`func NewGetSessionsEpochsRequest(projectId string, sessionIds []string, ) *GetSessionsEpochsRequest` +`func NewGetVersionsEpochsRequest(projectId string, versionIds []string, ) *GetVersionsEpochsRequest` -NewGetSessionsEpochsRequest instantiates a new GetSessionsEpochsRequest object +NewGetVersionsEpochsRequest instantiates a new GetVersionsEpochsRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed -### NewGetSessionsEpochsRequestWithDefaults +### NewGetVersionsEpochsRequestWithDefaults -`func NewGetSessionsEpochsRequestWithDefaults() *GetSessionsEpochsRequest` +`func NewGetVersionsEpochsRequestWithDefaults() *GetVersionsEpochsRequest` -NewGetSessionsEpochsRequestWithDefaults instantiates a new GetSessionsEpochsRequest object +NewGetVersionsEpochsRequestWithDefaults instantiates a new GetVersionsEpochsRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set ### GetProjectId -`func (o *GetSessionsEpochsRequest) GetProjectId() string` +`func (o *GetVersionsEpochsRequest) GetProjectId() string` GetProjectId returns the ProjectId field if non-nil, zero value otherwise. ### GetProjectIdOk -`func (o *GetSessionsEpochsRequest) GetProjectIdOk() (*string, bool)` +`func (o *GetVersionsEpochsRequest) GetProjectIdOk() (*string, bool)` GetProjectIdOk returns a tuple with the ProjectId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetProjectId -`func (o *GetSessionsEpochsRequest) SetProjectId(v string)` +`func (o *GetVersionsEpochsRequest) SetProjectId(v string)` SetProjectId sets ProjectId field to given value. -### GetSessionIds +### GetVersionIds -`func (o *GetSessionsEpochsRequest) GetSessionIds() []string` +`func (o *GetVersionsEpochsRequest) GetVersionIds() []string` -GetSessionIds returns the SessionIds field if non-nil, zero value otherwise. +GetVersionIds returns the VersionIds field if non-nil, zero value otherwise. -### GetSessionIdsOk +### GetVersionIdsOk -`func (o *GetSessionsEpochsRequest) GetSessionIdsOk() (*[]string, bool)` +`func (o *GetVersionsEpochsRequest) GetVersionIdsOk() (*[]string, bool)` -GetSessionIdsOk returns a tuple with the SessionIds field if it's non-nil, zero value otherwise +GetVersionIdsOk returns a tuple with the VersionIds field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionIds +### SetVersionIds -`func (o *GetSessionsEpochsRequest) SetSessionIds(v []string)` +`func (o *GetVersionsEpochsRequest) SetVersionIds(v []string)` -SetSessionIds sets SessionIds field to given value. +SetVersionIds sets VersionIds field to given value. diff --git a/pkg/tensorleapapi/docs/GetVersionsVisualizationsParams.md b/pkg/tensorleapapi/docs/GetVersionsVisualizationsParams.md new file mode 100644 index 000000000..1484faff2 --- /dev/null +++ b/pkg/tensorleapapi/docs/GetVersionsVisualizationsParams.md @@ -0,0 +1,72 @@ +# GetVersionsVisualizationsParams + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**VersionIds** | **[]string** | | +**ProjectId** | **string** | | + +## Methods + +### NewGetVersionsVisualizationsParams + +`func NewGetVersionsVisualizationsParams(versionIds []string, projectId string, ) *GetVersionsVisualizationsParams` + +NewGetVersionsVisualizationsParams instantiates a new GetVersionsVisualizationsParams object +This constructor will assign default values to properties that have it defined, +and makes sure properties required by API are set, but the set of arguments +will change when the set of required properties is changed + +### NewGetVersionsVisualizationsParamsWithDefaults + +`func NewGetVersionsVisualizationsParamsWithDefaults() *GetVersionsVisualizationsParams` + +NewGetVersionsVisualizationsParamsWithDefaults instantiates a new GetVersionsVisualizationsParams object +This constructor will only assign default values to properties that have it defined, +but it doesn't guarantee that properties required by API are set + +### GetVersionIds + +`func (o *GetVersionsVisualizationsParams) GetVersionIds() []string` + +GetVersionIds returns the VersionIds field if non-nil, zero value otherwise. + +### GetVersionIdsOk + +`func (o *GetVersionsVisualizationsParams) GetVersionIdsOk() (*[]string, bool)` + +GetVersionIdsOk returns a tuple with the VersionIds field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetVersionIds + +`func (o *GetVersionsVisualizationsParams) SetVersionIds(v []string)` + +SetVersionIds sets VersionIds field to given value. + + +### GetProjectId + +`func (o *GetVersionsVisualizationsParams) GetProjectId() string` + +GetProjectId returns the ProjectId field if non-nil, zero value otherwise. + +### GetProjectIdOk + +`func (o *GetVersionsVisualizationsParams) GetProjectIdOk() (*string, bool)` + +GetProjectIdOk returns a tuple with the ProjectId field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetProjectId + +`func (o *GetVersionsVisualizationsParams) SetProjectId(v string)` + +SetProjectId sets ProjectId field to given value. + + + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/pkg/tensorleapapi/docs/GetSessionRunsVisualizationsResponse.md b/pkg/tensorleapapi/docs/GetVersionsVisualizationsResponse.md similarity index 56% rename from pkg/tensorleapapi/docs/GetSessionRunsVisualizationsResponse.md rename to pkg/tensorleapapi/docs/GetVersionsVisualizationsResponse.md index 8c47b9f6f..1b774e7b2 100644 --- a/pkg/tensorleapapi/docs/GetSessionRunsVisualizationsResponse.md +++ b/pkg/tensorleapapi/docs/GetVersionsVisualizationsResponse.md @@ -1,4 +1,4 @@ -# GetSessionRunsVisualizationsResponse +# GetVersionsVisualizationsResponse ## Properties @@ -8,39 +8,39 @@ Name | Type | Description | Notes ## Methods -### NewGetSessionRunsVisualizationsResponse +### NewGetVersionsVisualizationsResponse -`func NewGetSessionRunsVisualizationsResponse(slimVisualizations []SlimVisualization, ) *GetSessionRunsVisualizationsResponse` +`func NewGetVersionsVisualizationsResponse(slimVisualizations []SlimVisualization, ) *GetVersionsVisualizationsResponse` -NewGetSessionRunsVisualizationsResponse instantiates a new GetSessionRunsVisualizationsResponse object +NewGetVersionsVisualizationsResponse instantiates a new GetVersionsVisualizationsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed -### NewGetSessionRunsVisualizationsResponseWithDefaults +### NewGetVersionsVisualizationsResponseWithDefaults -`func NewGetSessionRunsVisualizationsResponseWithDefaults() *GetSessionRunsVisualizationsResponse` +`func NewGetVersionsVisualizationsResponseWithDefaults() *GetVersionsVisualizationsResponse` -NewGetSessionRunsVisualizationsResponseWithDefaults instantiates a new GetSessionRunsVisualizationsResponse object +NewGetVersionsVisualizationsResponseWithDefaults instantiates a new GetVersionsVisualizationsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set ### GetSlimVisualizations -`func (o *GetSessionRunsVisualizationsResponse) GetSlimVisualizations() []SlimVisualization` +`func (o *GetVersionsVisualizationsResponse) GetSlimVisualizations() []SlimVisualization` GetSlimVisualizations returns the SlimVisualizations field if non-nil, zero value otherwise. ### GetSlimVisualizationsOk -`func (o *GetSessionRunsVisualizationsResponse) GetSlimVisualizationsOk() (*[]SlimVisualization, bool)` +`func (o *GetVersionsVisualizationsResponse) GetSlimVisualizationsOk() (*[]SlimVisualization, bool)` GetSlimVisualizationsOk returns a tuple with the SlimVisualizations field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetSlimVisualizations -`func (o *GetSessionRunsVisualizationsResponse) SetSlimVisualizations(v []SlimVisualization)` +`func (o *GetVersionsVisualizationsResponse) SetSlimVisualizations(v []SlimVisualization)` SetSlimVisualizations sets SlimVisualizations field to given value. diff --git a/pkg/tensorleapapi/docs/HeatmapChartsParams.md b/pkg/tensorleapapi/docs/HeatmapChartsParams.md index 2f96412f4..053d4b6be 100644 --- a/pkg/tensorleapapi/docs/HeatmapChartsParams.md +++ b/pkg/tensorleapapi/docs/HeatmapChartsParams.md @@ -8,7 +8,7 @@ Name | Type | Description | Notes **X** | [**SplitAgg**](SplitAgg.md) | | **Y** | [**SplitAgg**](SplitAgg.md) | | **Color** | [**Aggregations**](Aggregations.md) | | -**SessionRunsToEpochs** | [**[]SessionRunToEpoch**](SessionRunToEpoch.md) | | +**InferenceArtifactIds** | **[]string** | | **ShowAllEpochs** | **bool** | | **VerticalSplit** | Pointer to [**SplitAgg**](SplitAgg.md) | | [optional] **HorizontalSplit** | Pointer to [**SplitAgg**](SplitAgg.md) | | [optional] @@ -19,7 +19,7 @@ Name | Type | Description | Notes ### NewHeatmapChartsParams -`func NewHeatmapChartsParams(projectId string, x SplitAgg, y SplitAgg, color Aggregations, sessionRunsToEpochs []SessionRunToEpoch, showAllEpochs bool, ) *HeatmapChartsParams` +`func NewHeatmapChartsParams(projectId string, x SplitAgg, y SplitAgg, color Aggregations, inferenceArtifactIds []string, showAllEpochs bool, ) *HeatmapChartsParams` NewHeatmapChartsParams instantiates a new HeatmapChartsParams object This constructor will assign default values to properties that have it defined, @@ -114,24 +114,24 @@ and a boolean to check if the value has been set. SetColor sets Color field to given value. -### GetSessionRunsToEpochs +### GetInferenceArtifactIds -`func (o *HeatmapChartsParams) GetSessionRunsToEpochs() []SessionRunToEpoch` +`func (o *HeatmapChartsParams) GetInferenceArtifactIds() []string` -GetSessionRunsToEpochs returns the SessionRunsToEpochs field if non-nil, zero value otherwise. +GetInferenceArtifactIds returns the InferenceArtifactIds field if non-nil, zero value otherwise. -### GetSessionRunsToEpochsOk +### GetInferenceArtifactIdsOk -`func (o *HeatmapChartsParams) GetSessionRunsToEpochsOk() (*[]SessionRunToEpoch, bool)` +`func (o *HeatmapChartsParams) GetInferenceArtifactIdsOk() (*[]string, bool)` -GetSessionRunsToEpochsOk returns a tuple with the SessionRunsToEpochs field if it's non-nil, zero value otherwise +GetInferenceArtifactIdsOk returns a tuple with the InferenceArtifactIds field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunsToEpochs +### SetInferenceArtifactIds -`func (o *HeatmapChartsParams) SetSessionRunsToEpochs(v []SessionRunToEpoch)` +`func (o *HeatmapChartsParams) SetInferenceArtifactIds(v []string)` -SetSessionRunsToEpochs sets SessionRunsToEpochs field to given value. +SetInferenceArtifactIds sets InferenceArtifactIds field to given value. ### GetShowAllEpochs diff --git a/pkg/tensorleapapi/docs/Insight.md b/pkg/tensorleapapi/docs/Insight.md index db77d8bc6..ede6226b9 100644 --- a/pkg/tensorleapapi/docs/Insight.md +++ b/pkg/tensorleapapi/docs/Insight.md @@ -5,7 +5,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **Cid** | **string** | | -**SessionRunId** | **string** | | +**InferenceArtifactId** | Pointer to **string** | | [optional] **InsightType** | [**InsightType**](InsightType.md) | | **Index** | **float64** | | **Status** | [**InsightStatus**](InsightStatus.md) | | @@ -16,7 +16,7 @@ Name | Type | Description | Notes ### NewInsight -`func NewInsight(cid string, sessionRunId string, insightType InsightType, index float64, status InsightStatus, createdAt time.Time, updatedAt time.Time, ) *Insight` +`func NewInsight(cid string, insightType InsightType, index float64, status InsightStatus, createdAt time.Time, updatedAt time.Time, ) *Insight` NewInsight instantiates a new Insight object This constructor will assign default values to properties that have it defined, @@ -51,25 +51,30 @@ and a boolean to check if the value has been set. SetCid sets Cid field to given value. -### GetSessionRunId +### GetInferenceArtifactId -`func (o *Insight) GetSessionRunId() string` +`func (o *Insight) GetInferenceArtifactId() string` -GetSessionRunId returns the SessionRunId field if non-nil, zero value otherwise. +GetInferenceArtifactId returns the InferenceArtifactId field if non-nil, zero value otherwise. -### GetSessionRunIdOk +### GetInferenceArtifactIdOk -`func (o *Insight) GetSessionRunIdOk() (*string, bool)` +`func (o *Insight) GetInferenceArtifactIdOk() (*string, bool)` -GetSessionRunIdOk returns a tuple with the SessionRunId field if it's non-nil, zero value otherwise +GetInferenceArtifactIdOk returns a tuple with the InferenceArtifactId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunId +### SetInferenceArtifactId -`func (o *Insight) SetSessionRunId(v string)` +`func (o *Insight) SetInferenceArtifactId(v string)` -SetSessionRunId sets SessionRunId field to given value. +SetInferenceArtifactId sets InferenceArtifactId field to given value. +### HasInferenceArtifactId + +`func (o *Insight) HasInferenceArtifactId() bool` + +HasInferenceArtifactId returns a boolean if a field has been set. ### GetInsightType diff --git a/pkg/tensorleapapi/docs/InsightFilterDisplayDataInsightsInner.md b/pkg/tensorleapapi/docs/InsightFilterDisplayDataInsightsInner.md index 659f83d41..aeaf1e537 100644 --- a/pkg/tensorleapapi/docs/InsightFilterDisplayDataInsightsInner.md +++ b/pkg/tensorleapapi/docs/InsightFilterDisplayDataInsightsInner.md @@ -6,13 +6,13 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **Index** | **float64** | | **InsightType** | [**InsightType**](InsightType.md) | | -**SessionRun** | [**FilterSessionRun**](FilterSessionRun.md) | | +**Version** | [**FilterVersion**](FilterVersion.md) | | ## Methods ### NewInsightFilterDisplayDataInsightsInner -`func NewInsightFilterDisplayDataInsightsInner(index float64, insightType InsightType, sessionRun FilterSessionRun, ) *InsightFilterDisplayDataInsightsInner` +`func NewInsightFilterDisplayDataInsightsInner(index float64, insightType InsightType, version FilterVersion, ) *InsightFilterDisplayDataInsightsInner` NewInsightFilterDisplayDataInsightsInner instantiates a new InsightFilterDisplayDataInsightsInner object This constructor will assign default values to properties that have it defined, @@ -67,24 +67,24 @@ and a boolean to check if the value has been set. SetInsightType sets InsightType field to given value. -### GetSessionRun +### GetVersion -`func (o *InsightFilterDisplayDataInsightsInner) GetSessionRun() FilterSessionRun` +`func (o *InsightFilterDisplayDataInsightsInner) GetVersion() FilterVersion` -GetSessionRun returns the SessionRun field if non-nil, zero value otherwise. +GetVersion returns the Version field if non-nil, zero value otherwise. -### GetSessionRunOk +### GetVersionOk -`func (o *InsightFilterDisplayDataInsightsInner) GetSessionRunOk() (*FilterSessionRun, bool)` +`func (o *InsightFilterDisplayDataInsightsInner) GetVersionOk() (*FilterVersion, bool)` -GetSessionRunOk returns a tuple with the SessionRun field if it's non-nil, zero value otherwise +GetVersionOk returns a tuple with the Version field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRun +### SetVersion -`func (o *InsightFilterDisplayDataInsightsInner) SetSessionRun(v FilterSessionRun)` +`func (o *InsightFilterDisplayDataInsightsInner) SetVersion(v FilterVersion)` -SetSessionRun sets SessionRun field to given value. +SetVersion sets Version field to given value. diff --git a/pkg/tensorleapapi/docs/InsightType.md b/pkg/tensorleapapi/docs/InsightType.md index f4a997021..86bbcc2ac 100644 --- a/pkg/tensorleapapi/docs/InsightType.md +++ b/pkg/tensorleapapi/docs/InsightType.md @@ -19,6 +19,10 @@ Name | Type | Description | Notes **AutomaticTests** | Pointer to [**[]InsightAutomaticTest**](InsightAutomaticTest.md) | | [optional] **AutoGenerated** | **bool** | | **EsFiltersUsedInAnalysis** | Pointer to [**[]ESFilter**](ESFilter.md) | | [optional] +**LatentSpace** | Pointer to **string** | | [optional] +**AggressorFixing** | Pointer to [**AggressorFixing**](AggressorFixing.md) | | [optional] +**IsTrainAggressor** | Pointer to **bool** | | [optional] +**OverfittingMetrics** | Pointer to **[]string** | | [optional] **UnderRepresentationDataset** | [**DataStateType**](DataStateType.md) | | **UnderRepresentationNSamples** | **float64** | | **OverRepresentationDataset** | [**DataStateType**](DataStateType.md) | | @@ -375,6 +379,106 @@ SetEsFiltersUsedInAnalysis sets EsFiltersUsedInAnalysis field to given value. HasEsFiltersUsedInAnalysis returns a boolean if a field has been set. +### GetLatentSpace + +`func (o *InsightType) GetLatentSpace() string` + +GetLatentSpace returns the LatentSpace field if non-nil, zero value otherwise. + +### GetLatentSpaceOk + +`func (o *InsightType) GetLatentSpaceOk() (*string, bool)` + +GetLatentSpaceOk returns a tuple with the LatentSpace field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetLatentSpace + +`func (o *InsightType) SetLatentSpace(v string)` + +SetLatentSpace sets LatentSpace field to given value. + +### HasLatentSpace + +`func (o *InsightType) HasLatentSpace() bool` + +HasLatentSpace returns a boolean if a field has been set. + +### GetAggressorFixing + +`func (o *InsightType) GetAggressorFixing() AggressorFixing` + +GetAggressorFixing returns the AggressorFixing field if non-nil, zero value otherwise. + +### GetAggressorFixingOk + +`func (o *InsightType) GetAggressorFixingOk() (*AggressorFixing, bool)` + +GetAggressorFixingOk returns a tuple with the AggressorFixing field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetAggressorFixing + +`func (o *InsightType) SetAggressorFixing(v AggressorFixing)` + +SetAggressorFixing sets AggressorFixing field to given value. + +### HasAggressorFixing + +`func (o *InsightType) HasAggressorFixing() bool` + +HasAggressorFixing returns a boolean if a field has been set. + +### GetIsTrainAggressor + +`func (o *InsightType) GetIsTrainAggressor() bool` + +GetIsTrainAggressor returns the IsTrainAggressor field if non-nil, zero value otherwise. + +### GetIsTrainAggressorOk + +`func (o *InsightType) GetIsTrainAggressorOk() (*bool, bool)` + +GetIsTrainAggressorOk returns a tuple with the IsTrainAggressor field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetIsTrainAggressor + +`func (o *InsightType) SetIsTrainAggressor(v bool)` + +SetIsTrainAggressor sets IsTrainAggressor field to given value. + +### HasIsTrainAggressor + +`func (o *InsightType) HasIsTrainAggressor() bool` + +HasIsTrainAggressor returns a boolean if a field has been set. + +### GetOverfittingMetrics + +`func (o *InsightType) GetOverfittingMetrics() []string` + +GetOverfittingMetrics returns the OverfittingMetrics field if non-nil, zero value otherwise. + +### GetOverfittingMetricsOk + +`func (o *InsightType) GetOverfittingMetricsOk() (*[]string, bool)` + +GetOverfittingMetricsOk returns a tuple with the OverfittingMetrics field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetOverfittingMetrics + +`func (o *InsightType) SetOverfittingMetrics(v []string)` + +SetOverfittingMetrics sets OverfittingMetrics field to given value. + +### HasOverfittingMetrics + +`func (o *InsightType) HasOverfittingMetrics() bool` + +HasOverfittingMetrics returns a boolean if a field has been set. + ### GetUnderRepresentationDataset `func (o *InsightType) GetUnderRepresentationDataset() DataStateType` diff --git a/pkg/tensorleapapi/docs/InsightsJobParams.md b/pkg/tensorleapapi/docs/InsightsJobParams.md index 0591eb399..c39028082 100644 --- a/pkg/tensorleapapi/docs/InsightsJobParams.md +++ b/pkg/tensorleapapi/docs/InsightsJobParams.md @@ -5,14 +5,15 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **Filters** | Pointer to [**[]ESFilter**](ESFilter.md) | | [optional] -**SessionRunId** | **string** | | +**InferenceArtifactId** | Pointer to **string** | | [optional] +**VersionId** | Pointer to **string** | | [optional] **Type** | **string** | | ## Methods ### NewInsightsJobParams -`func NewInsightsJobParams(sessionRunId string, type_ string, ) *InsightsJobParams` +`func NewInsightsJobParams(type_ string, ) *InsightsJobParams` NewInsightsJobParams instantiates a new InsightsJobParams object This constructor will assign default values to properties that have it defined, @@ -52,25 +53,55 @@ SetFilters sets Filters field to given value. HasFilters returns a boolean if a field has been set. -### GetSessionRunId +### GetInferenceArtifactId -`func (o *InsightsJobParams) GetSessionRunId() string` +`func (o *InsightsJobParams) GetInferenceArtifactId() string` -GetSessionRunId returns the SessionRunId field if non-nil, zero value otherwise. +GetInferenceArtifactId returns the InferenceArtifactId field if non-nil, zero value otherwise. -### GetSessionRunIdOk +### GetInferenceArtifactIdOk -`func (o *InsightsJobParams) GetSessionRunIdOk() (*string, bool)` +`func (o *InsightsJobParams) GetInferenceArtifactIdOk() (*string, bool)` -GetSessionRunIdOk returns a tuple with the SessionRunId field if it's non-nil, zero value otherwise +GetInferenceArtifactIdOk returns a tuple with the InferenceArtifactId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunId +### SetInferenceArtifactId -`func (o *InsightsJobParams) SetSessionRunId(v string)` +`func (o *InsightsJobParams) SetInferenceArtifactId(v string)` -SetSessionRunId sets SessionRunId field to given value. +SetInferenceArtifactId sets InferenceArtifactId field to given value. +### HasInferenceArtifactId + +`func (o *InsightsJobParams) HasInferenceArtifactId() bool` + +HasInferenceArtifactId returns a boolean if a field has been set. + +### GetVersionId + +`func (o *InsightsJobParams) GetVersionId() string` + +GetVersionId returns the VersionId field if non-nil, zero value otherwise. + +### GetVersionIdOk + +`func (o *InsightsJobParams) GetVersionIdOk() (*string, bool)` + +GetVersionIdOk returns a tuple with the VersionId field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetVersionId + +`func (o *InsightsJobParams) SetVersionId(v string)` + +SetVersionId sets VersionId field to given value. + +### HasVersionId + +`func (o *InsightsJobParams) HasVersionId() bool` + +HasVersionId returns a boolean if a field has been set. ### GetType diff --git a/pkg/tensorleapapi/docs/Job.md b/pkg/tensorleapapi/docs/Job.md index eb88c92fd..3c85afa33 100644 --- a/pkg/tensorleapapi/docs/Job.md +++ b/pkg/tensorleapapi/docs/Job.md @@ -14,7 +14,7 @@ Name | Type | Description | Notes **CreatedAt** | **time.Time** | | **UpdatedAt** | **time.Time** | | **Params** | Pointer to [**JobParams**](JobParams.md) | | [optional] -**SessionRunId** | Pointer to **string** | | [optional] +**VersionId** | Pointer to **string** | | [optional] **TeamId** | **string** | | **CodeSnapshotInfo** | Pointer to [**CodeSnapshotInfo**](CodeSnapshotInfo.md) | | [optional] **EventsSnapshot** | Pointer to [**EventsSnapshot**](EventsSnapshot.md) | | [optional] @@ -259,30 +259,30 @@ SetParams sets Params field to given value. HasParams returns a boolean if a field has been set. -### GetSessionRunId +### GetVersionId -`func (o *Job) GetSessionRunId() string` +`func (o *Job) GetVersionId() string` -GetSessionRunId returns the SessionRunId field if non-nil, zero value otherwise. +GetVersionId returns the VersionId field if non-nil, zero value otherwise. -### GetSessionRunIdOk +### GetVersionIdOk -`func (o *Job) GetSessionRunIdOk() (*string, bool)` +`func (o *Job) GetVersionIdOk() (*string, bool)` -GetSessionRunIdOk returns a tuple with the SessionRunId field if it's non-nil, zero value otherwise +GetVersionIdOk returns a tuple with the VersionId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunId +### SetVersionId -`func (o *Job) SetSessionRunId(v string)` +`func (o *Job) SetVersionId(v string)` -SetSessionRunId sets SessionRunId field to given value. +SetVersionId sets VersionId field to given value. -### HasSessionRunId +### HasVersionId -`func (o *Job) HasSessionRunId() bool` +`func (o *Job) HasVersionId() bool` -HasSessionRunId returns a boolean if a field has been set. +HasVersionId returns a boolean if a field has been set. ### GetTeamId diff --git a/pkg/tensorleapapi/docs/JobNotificationAnalyzeContext.md b/pkg/tensorleapapi/docs/JobNotificationAnalyzeContext.md index 65ed10e98..9aa50ed5c 100644 --- a/pkg/tensorleapapi/docs/JobNotificationAnalyzeContext.md +++ b/pkg/tensorleapapi/docs/JobNotificationAnalyzeContext.md @@ -14,13 +14,12 @@ Name | Type | Description | Notes **VersionId** | **string** | | **SessionId** | Pointer to **string** | | [optional] **Epoch** | Pointer to **float64** | | [optional] -**SessionRunId** | **string** | | ## Methods ### NewJobNotificationAnalyzeContext -`func NewJobNotificationAnalyzeContext(jobId string, jobType JobType, projectName string, projectId string, modelName string, modelExtId string, isOverwrite bool, versionId string, sessionRunId string, ) *JobNotificationAnalyzeContext` +`func NewJobNotificationAnalyzeContext(jobId string, jobType JobType, projectName string, projectId string, modelName string, modelExtId string, isOverwrite bool, versionId string, ) *JobNotificationAnalyzeContext` NewJobNotificationAnalyzeContext instantiates a new JobNotificationAnalyzeContext object This constructor will assign default values to properties that have it defined, @@ -245,26 +244,6 @@ SetEpoch sets Epoch field to given value. HasEpoch returns a boolean if a field has been set. -### GetSessionRunId - -`func (o *JobNotificationAnalyzeContext) GetSessionRunId() string` - -GetSessionRunId returns the SessionRunId field if non-nil, zero value otherwise. - -### GetSessionRunIdOk - -`func (o *JobNotificationAnalyzeContext) GetSessionRunIdOk() (*string, bool)` - -GetSessionRunIdOk returns a tuple with the SessionRunId field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetSessionRunId - -`func (o *JobNotificationAnalyzeContext) SetSessionRunId(v string)` - -SetSessionRunId sets SessionRunId field to given value. - - [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/pkg/tensorleapapi/docs/JobNotificationContext.md b/pkg/tensorleapapi/docs/JobNotificationContext.md index b1c8b0d2a..0f0726d82 100644 --- a/pkg/tensorleapapi/docs/JobNotificationContext.md +++ b/pkg/tensorleapapi/docs/JobNotificationContext.md @@ -16,14 +16,13 @@ Name | Type | Description | Notes **IsOverwrite** | **bool** | | **SessionId** | Pointer to **string** | | [optional] **Epoch** | Pointer to **float64** | | [optional] -**SessionRunId** | **string** | | **Sample** | [**SampleIdentity**](SampleIdentity.md) | | ## Methods ### NewJobNotificationContext -`func NewJobNotificationContext(jobId string, jobType JobType, codeSnapshotId string, versionId string, versionName string, projectName string, projectId string, modelName string, modelExtId string, isOverwrite bool, sessionRunId string, sample SampleIdentity, ) *JobNotificationContext` +`func NewJobNotificationContext(jobId string, jobType JobType, codeSnapshotId string, versionId string, versionName string, projectName string, projectId string, modelName string, modelExtId string, isOverwrite bool, sample SampleIdentity, ) *JobNotificationContext` NewJobNotificationContext instantiates a new JobNotificationContext object This constructor will assign default values to properties that have it defined, @@ -288,26 +287,6 @@ SetEpoch sets Epoch field to given value. HasEpoch returns a boolean if a field has been set. -### GetSessionRunId - -`func (o *JobNotificationContext) GetSessionRunId() string` - -GetSessionRunId returns the SessionRunId field if non-nil, zero value otherwise. - -### GetSessionRunIdOk - -`func (o *JobNotificationContext) GetSessionRunIdOk() (*string, bool)` - -GetSessionRunIdOk returns a tuple with the SessionRunId field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetSessionRunId - -`func (o *JobNotificationContext) SetSessionRunId(v string)` - -SetSessionRunId sets SessionRunId field to given value. - - ### GetSample `func (o *JobNotificationContext) GetSample() SampleIdentity` diff --git a/pkg/tensorleapapi/docs/JobNotificationProjectContext.md b/pkg/tensorleapapi/docs/JobNotificationProjectContext.md new file mode 100644 index 000000000..8e73726dc --- /dev/null +++ b/pkg/tensorleapapi/docs/JobNotificationProjectContext.md @@ -0,0 +1,93 @@ +# JobNotificationProjectContext + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**JobId** | **string** | | +**JobType** | [**JobType**](JobType.md) | | +**ProjectName** | **string** | | + +## Methods + +### NewJobNotificationProjectContext + +`func NewJobNotificationProjectContext(jobId string, jobType JobType, projectName string, ) *JobNotificationProjectContext` + +NewJobNotificationProjectContext instantiates a new JobNotificationProjectContext object +This constructor will assign default values to properties that have it defined, +and makes sure properties required by API are set, but the set of arguments +will change when the set of required properties is changed + +### NewJobNotificationProjectContextWithDefaults + +`func NewJobNotificationProjectContextWithDefaults() *JobNotificationProjectContext` + +NewJobNotificationProjectContextWithDefaults instantiates a new JobNotificationProjectContext object +This constructor will only assign default values to properties that have it defined, +but it doesn't guarantee that properties required by API are set + +### GetJobId + +`func (o *JobNotificationProjectContext) GetJobId() string` + +GetJobId returns the JobId field if non-nil, zero value otherwise. + +### GetJobIdOk + +`func (o *JobNotificationProjectContext) GetJobIdOk() (*string, bool)` + +GetJobIdOk returns a tuple with the JobId field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetJobId + +`func (o *JobNotificationProjectContext) SetJobId(v string)` + +SetJobId sets JobId field to given value. + + +### GetJobType + +`func (o *JobNotificationProjectContext) GetJobType() JobType` + +GetJobType returns the JobType field if non-nil, zero value otherwise. + +### GetJobTypeOk + +`func (o *JobNotificationProjectContext) GetJobTypeOk() (*JobType, bool)` + +GetJobTypeOk returns a tuple with the JobType field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetJobType + +`func (o *JobNotificationProjectContext) SetJobType(v JobType)` + +SetJobType sets JobType field to given value. + + +### GetProjectName + +`func (o *JobNotificationProjectContext) GetProjectName() string` + +GetProjectName returns the ProjectName field if non-nil, zero value otherwise. + +### GetProjectNameOk + +`func (o *JobNotificationProjectContext) GetProjectNameOk() (*string, bool)` + +GetProjectNameOk returns a tuple with the ProjectName field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetProjectName + +`func (o *JobNotificationProjectContext) SetProjectName(v string)` + +SetProjectName sets ProjectName field to given value. + + + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/pkg/tensorleapapi/docs/JobParams.md b/pkg/tensorleapapi/docs/JobParams.md index 4278b2b27..1549ad8be 100644 --- a/pkg/tensorleapapi/docs/JobParams.md +++ b/pkg/tensorleapapi/docs/JobParams.md @@ -4,19 +4,13 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**Epochs** | **float64** | | -**BatchSize** | **float64** | | -**EarlyStopParams** | Pointer to [**EarlyStopParams**](EarlyStopParams.md) | | [optional] **VersionId** | **string** | | +**InferenceArtifactId** | **string** | | **ProjectId** | **string** | | **BatchSize** | **float64** | | -**Name** | **string** | | -**Description** | **string** | | **Monitor** | Pointer to **bool** | | [optional] **EvaluatedEpoch** | **float64** | | -**SessionId** | **string** | | **Type** | [**ExportModelTypeEnum**](ExportModelTypeEnum.md) | | -**FromEpoch** | **float64** | | **SampleIdentity** | Pointer to [**SampleIdentity**](SampleIdentity.md) | | [optional] **FromDatasetSlice** | Pointer to [**DataStateType**](DataStateType.md) | | [optional] **ExtId** | **string** | | @@ -26,7 +20,6 @@ Name | Type | Description | Notes **Filters** | Pointer to [**[]ESFilter**](ESFilter.md) | | [optional] **SampleIds** | [**[]SampleIdentity**](SampleIdentity.md) | | **Limit** | **float64** | | -**SessionRunId** | **string** | | **LatentSpaceType** | Pointer to **string** | | [optional] **ForceExecute** | Pointer to **bool** | | [optional] **ElementInstance** | Pointer to **bool** | | [optional] @@ -41,7 +34,7 @@ Name | Type | Description | Notes **LabelingAlgorithm** | [**LabelingAlgorithm**](LabelingAlgorithm.md) | | **NumOfSamplesToLabel** | Pointer to **float64** | | [optional] **TargetFilters** | [**[]ESFilter**](ESFilter.md) | | -**Sources** | [**[]GenerateSyntheticDataParamsSourcesInner**](GenerateSyntheticDataParamsSourcesInner.md) | | +**Sources** | [**[]SyntheticDataJobParamsSourcesInner**](SyntheticDataJobParamsSourcesInner.md) | | **PercentageOfSamplesToPrune** | Pointer to **float64** | | [optional] **PrioritizedMetadataTags** | Pointer to **[]string** | | [optional] **MetadataTags** | **[]string** | | @@ -65,7 +58,7 @@ Name | Type | Description | Notes ### NewJobParams -`func NewJobParams(epochs float64, batchSize float64, versionId string, projectId string, batchSize float64, name string, description string, evaluatedEpoch float64, sessionId string, type_ ExportModelTypeEnum, fromEpoch float64, extId string, title string, epoch float64, digest string, sampleIds []SampleIdentity, limit float64, sessionRunId string, reductionAlgorithm ReductionAlgorithm, shouldFillRemainingWithUnbalanced bool, balanceBy []string, numOfSamples float64, labelingAlgorithm LabelingAlgorithm, targetFilters []ESFilter, sources []GenerateSyntheticDataParamsSourcesInner, metadataTags []string, exportUrl string, projectVersion float64, exportOptions ExportOptions, alreadyExported bool, projectExportMeta ExportProjectMeta, importUrl string, projectMeta ProjectMeta, codeUrl string, codeEntryFile string, versionName string, ) *JobParams` +`func NewJobParams(versionId string, inferenceArtifactId string, projectId string, batchSize float64, evaluatedEpoch float64, type_ ExportModelTypeEnum, extId string, title string, epoch float64, digest string, sampleIds []SampleIdentity, limit float64, reductionAlgorithm ReductionAlgorithm, shouldFillRemainingWithUnbalanced bool, balanceBy []string, numOfSamples float64, labelingAlgorithm LabelingAlgorithm, targetFilters []ESFilter, sources []SyntheticDataJobParamsSourcesInner, metadataTags []string, exportUrl string, projectVersion float64, exportOptions ExportOptions, alreadyExported bool, projectExportMeta ExportProjectMeta, importUrl string, projectMeta ProjectMeta, codeUrl string, codeEntryFile string, versionName string, ) *JobParams` NewJobParams instantiates a new JobParams object This constructor will assign default values to properties that have it defined, @@ -80,89 +73,44 @@ NewJobParamsWithDefaults instantiates a new JobParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set -### GetEpochs - -`func (o *JobParams) GetEpochs() float64` - -GetEpochs returns the Epochs field if non-nil, zero value otherwise. - -### GetEpochsOk - -`func (o *JobParams) GetEpochsOk() (*float64, bool)` - -GetEpochsOk returns a tuple with the Epochs field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetEpochs - -`func (o *JobParams) SetEpochs(v float64)` - -SetEpochs sets Epochs field to given value. - - -### GetBatchSize - -`func (o *JobParams) GetBatchSize() float64` - -GetBatchSize returns the BatchSize field if non-nil, zero value otherwise. - -### GetBatchSizeOk - -`func (o *JobParams) GetBatchSizeOk() (*float64, bool)` - -GetBatchSizeOk returns a tuple with the BatchSize field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetBatchSize - -`func (o *JobParams) SetBatchSize(v float64)` - -SetBatchSize sets BatchSize field to given value. - - -### GetEarlyStopParams +### GetVersionId -`func (o *JobParams) GetEarlyStopParams() EarlyStopParams` +`func (o *JobParams) GetVersionId() string` -GetEarlyStopParams returns the EarlyStopParams field if non-nil, zero value otherwise. +GetVersionId returns the VersionId field if non-nil, zero value otherwise. -### GetEarlyStopParamsOk +### GetVersionIdOk -`func (o *JobParams) GetEarlyStopParamsOk() (*EarlyStopParams, bool)` +`func (o *JobParams) GetVersionIdOk() (*string, bool)` -GetEarlyStopParamsOk returns a tuple with the EarlyStopParams field if it's non-nil, zero value otherwise +GetVersionIdOk returns a tuple with the VersionId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetEarlyStopParams - -`func (o *JobParams) SetEarlyStopParams(v EarlyStopParams)` - -SetEarlyStopParams sets EarlyStopParams field to given value. +### SetVersionId -### HasEarlyStopParams +`func (o *JobParams) SetVersionId(v string)` -`func (o *JobParams) HasEarlyStopParams() bool` +SetVersionId sets VersionId field to given value. -HasEarlyStopParams returns a boolean if a field has been set. -### GetVersionId +### GetInferenceArtifactId -`func (o *JobParams) GetVersionId() string` +`func (o *JobParams) GetInferenceArtifactId() string` -GetVersionId returns the VersionId field if non-nil, zero value otherwise. +GetInferenceArtifactId returns the InferenceArtifactId field if non-nil, zero value otherwise. -### GetVersionIdOk +### GetInferenceArtifactIdOk -`func (o *JobParams) GetVersionIdOk() (*string, bool)` +`func (o *JobParams) GetInferenceArtifactIdOk() (*string, bool)` -GetVersionIdOk returns a tuple with the VersionId field if it's non-nil, zero value otherwise +GetInferenceArtifactIdOk returns a tuple with the InferenceArtifactId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetVersionId +### SetInferenceArtifactId -`func (o *JobParams) SetVersionId(v string)` +`func (o *JobParams) SetInferenceArtifactId(v string)` -SetVersionId sets VersionId field to given value. +SetInferenceArtifactId sets InferenceArtifactId field to given value. ### GetProjectId @@ -205,46 +153,6 @@ and a boolean to check if the value has been set. SetBatchSize sets BatchSize field to given value. -### GetName - -`func (o *JobParams) GetName() string` - -GetName returns the Name field if non-nil, zero value otherwise. - -### GetNameOk - -`func (o *JobParams) GetNameOk() (*string, bool)` - -GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetName - -`func (o *JobParams) SetName(v string)` - -SetName sets Name field to given value. - - -### GetDescription - -`func (o *JobParams) GetDescription() string` - -GetDescription returns the Description field if non-nil, zero value otherwise. - -### GetDescriptionOk - -`func (o *JobParams) GetDescriptionOk() (*string, bool)` - -GetDescriptionOk returns a tuple with the Description field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetDescription - -`func (o *JobParams) SetDescription(v string)` - -SetDescription sets Description field to given value. - - ### GetMonitor `func (o *JobParams) GetMonitor() bool` @@ -290,26 +198,6 @@ and a boolean to check if the value has been set. SetEvaluatedEpoch sets EvaluatedEpoch field to given value. -### GetSessionId - -`func (o *JobParams) GetSessionId() string` - -GetSessionId returns the SessionId field if non-nil, zero value otherwise. - -### GetSessionIdOk - -`func (o *JobParams) GetSessionIdOk() (*string, bool)` - -GetSessionIdOk returns a tuple with the SessionId field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetSessionId - -`func (o *JobParams) SetSessionId(v string)` - -SetSessionId sets SessionId field to given value. - - ### GetType `func (o *JobParams) GetType() ExportModelTypeEnum` @@ -330,26 +218,6 @@ and a boolean to check if the value has been set. SetType sets Type field to given value. -### GetFromEpoch - -`func (o *JobParams) GetFromEpoch() float64` - -GetFromEpoch returns the FromEpoch field if non-nil, zero value otherwise. - -### GetFromEpochOk - -`func (o *JobParams) GetFromEpochOk() (*float64, bool)` - -GetFromEpochOk returns a tuple with the FromEpoch field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetFromEpoch - -`func (o *JobParams) SetFromEpoch(v float64)` - -SetFromEpoch sets FromEpoch field to given value. - - ### GetSampleIdentity `func (o *JobParams) GetSampleIdentity() SampleIdentity` @@ -545,26 +413,6 @@ and a boolean to check if the value has been set. SetLimit sets Limit field to given value. -### GetSessionRunId - -`func (o *JobParams) GetSessionRunId() string` - -GetSessionRunId returns the SessionRunId field if non-nil, zero value otherwise. - -### GetSessionRunIdOk - -`func (o *JobParams) GetSessionRunIdOk() (*string, bool)` - -GetSessionRunIdOk returns a tuple with the SessionRunId field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetSessionRunId - -`func (o *JobParams) SetSessionRunId(v string)` - -SetSessionRunId sets SessionRunId field to given value. - - ### GetLatentSpaceType `func (o *JobParams) GetLatentSpaceType() string` @@ -887,20 +735,20 @@ SetTargetFilters sets TargetFilters field to given value. ### GetSources -`func (o *JobParams) GetSources() []GenerateSyntheticDataParamsSourcesInner` +`func (o *JobParams) GetSources() []SyntheticDataJobParamsSourcesInner` GetSources returns the Sources field if non-nil, zero value otherwise. ### GetSourcesOk -`func (o *JobParams) GetSourcesOk() (*[]GenerateSyntheticDataParamsSourcesInner, bool)` +`func (o *JobParams) GetSourcesOk() (*[]SyntheticDataJobParamsSourcesInner, bool)` GetSourcesOk returns a tuple with the Sources field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetSources -`func (o *JobParams) SetSources(v []GenerateSyntheticDataParamsSourcesInner)` +`func (o *JobParams) SetSources(v []SyntheticDataJobParamsSourcesInner)` SetSources sets Sources field to given value. diff --git a/pkg/tensorleapapi/docs/JobType.md b/pkg/tensorleapapi/docs/JobType.md index a5866b5f3..816c693ba 100644 --- a/pkg/tensorleapapi/docs/JobType.md +++ b/pkg/tensorleapapi/docs/JobType.md @@ -3,14 +3,14 @@ ## Enum +* `WARMUP` (value: `"WARMUP"`) + * `TRAINING` (value: `"TRAINING"`) * `IMPORT_MODEL` (value: `"IMPORT_MODEL"`) * `ANALYZE` (value: `"ANALYZE"`) -* `WARMUP` (value: `"WARMUP"`) - * `TEST_STUB_FUNCTION` (value: `"TEST_STUB_FUNCTION"`) * `TEST_CUSTOM_LOSS` (value: `"TEST_CUSTOM_LOSS"`) diff --git a/pkg/tensorleapapi/docs/LabelingJobParams.md b/pkg/tensorleapapi/docs/LabelingJobParams.md index 243fb6505..eac88252e 100644 --- a/pkg/tensorleapapi/docs/LabelingJobParams.md +++ b/pkg/tensorleapapi/docs/LabelingJobParams.md @@ -9,15 +9,15 @@ Name | Type | Description | Notes **Filters** | Pointer to [**[]ESFilter**](ESFilter.md) | | [optional] **LabelingAlgorithm** | [**LabelingAlgorithm**](LabelingAlgorithm.md) | | **NumOfSamplesToLabel** | Pointer to **float64** | | [optional] -**FromEpoch** | **float64** | | -**SessionRunId** | **string** | | +**InferenceArtifactId** | **string** | | +**VersionId** | **string** | | **Type** | **string** | | ## Methods ### NewLabelingJobParams -`func NewLabelingJobParams(digest string, labelingAlgorithm LabelingAlgorithm, fromEpoch float64, sessionRunId string, type_ string, ) *LabelingJobParams` +`func NewLabelingJobParams(digest string, labelingAlgorithm LabelingAlgorithm, inferenceArtifactId string, versionId string, type_ string, ) *LabelingJobParams` NewLabelingJobParams instantiates a new LabelingJobParams object This constructor will assign default values to properties that have it defined, @@ -147,44 +147,44 @@ SetNumOfSamplesToLabel sets NumOfSamplesToLabel field to given value. HasNumOfSamplesToLabel returns a boolean if a field has been set. -### GetFromEpoch +### GetInferenceArtifactId -`func (o *LabelingJobParams) GetFromEpoch() float64` +`func (o *LabelingJobParams) GetInferenceArtifactId() string` -GetFromEpoch returns the FromEpoch field if non-nil, zero value otherwise. +GetInferenceArtifactId returns the InferenceArtifactId field if non-nil, zero value otherwise. -### GetFromEpochOk +### GetInferenceArtifactIdOk -`func (o *LabelingJobParams) GetFromEpochOk() (*float64, bool)` +`func (o *LabelingJobParams) GetInferenceArtifactIdOk() (*string, bool)` -GetFromEpochOk returns a tuple with the FromEpoch field if it's non-nil, zero value otherwise +GetInferenceArtifactIdOk returns a tuple with the InferenceArtifactId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetFromEpoch +### SetInferenceArtifactId -`func (o *LabelingJobParams) SetFromEpoch(v float64)` +`func (o *LabelingJobParams) SetInferenceArtifactId(v string)` -SetFromEpoch sets FromEpoch field to given value. +SetInferenceArtifactId sets InferenceArtifactId field to given value. -### GetSessionRunId +### GetVersionId -`func (o *LabelingJobParams) GetSessionRunId() string` +`func (o *LabelingJobParams) GetVersionId() string` -GetSessionRunId returns the SessionRunId field if non-nil, zero value otherwise. +GetVersionId returns the VersionId field if non-nil, zero value otherwise. -### GetSessionRunIdOk +### GetVersionIdOk -`func (o *LabelingJobParams) GetSessionRunIdOk() (*string, bool)` +`func (o *LabelingJobParams) GetVersionIdOk() (*string, bool)` -GetSessionRunIdOk returns a tuple with the SessionRunId field if it's non-nil, zero value otherwise +GetVersionIdOk returns a tuple with the VersionId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunId +### SetVersionId -`func (o *LabelingJobParams) SetSessionRunId(v string)` +`func (o *LabelingJobParams) SetVersionId(v string)` -SetSessionRunId sets SessionRunId field to given value. +SetVersionId sets VersionId field to given value. ### GetType diff --git a/pkg/tensorleapapi/docs/LoadSessionParams.md b/pkg/tensorleapapi/docs/LoadModelParams.md similarity index 53% rename from pkg/tensorleapapi/docs/LoadSessionParams.md rename to pkg/tensorleapapi/docs/LoadModelParams.md index e5a18c9a5..9605e5902 100644 --- a/pkg/tensorleapapi/docs/LoadSessionParams.md +++ b/pkg/tensorleapapi/docs/LoadModelParams.md @@ -1,67 +1,67 @@ -# LoadSessionParams +# LoadModelParams ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**SessionId** | **string** | | +**VersionId** | **string** | | **ProjectId** | **string** | | ## Methods -### NewLoadSessionParams +### NewLoadModelParams -`func NewLoadSessionParams(sessionId string, projectId string, ) *LoadSessionParams` +`func NewLoadModelParams(versionId string, projectId string, ) *LoadModelParams` -NewLoadSessionParams instantiates a new LoadSessionParams object +NewLoadModelParams instantiates a new LoadModelParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed -### NewLoadSessionParamsWithDefaults +### NewLoadModelParamsWithDefaults -`func NewLoadSessionParamsWithDefaults() *LoadSessionParams` +`func NewLoadModelParamsWithDefaults() *LoadModelParams` -NewLoadSessionParamsWithDefaults instantiates a new LoadSessionParams object +NewLoadModelParamsWithDefaults instantiates a new LoadModelParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set -### GetSessionId +### GetVersionId -`func (o *LoadSessionParams) GetSessionId() string` +`func (o *LoadModelParams) GetVersionId() string` -GetSessionId returns the SessionId field if non-nil, zero value otherwise. +GetVersionId returns the VersionId field if non-nil, zero value otherwise. -### GetSessionIdOk +### GetVersionIdOk -`func (o *LoadSessionParams) GetSessionIdOk() (*string, bool)` +`func (o *LoadModelParams) GetVersionIdOk() (*string, bool)` -GetSessionIdOk returns a tuple with the SessionId field if it's non-nil, zero value otherwise +GetVersionIdOk returns a tuple with the VersionId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionId +### SetVersionId -`func (o *LoadSessionParams) SetSessionId(v string)` +`func (o *LoadModelParams) SetVersionId(v string)` -SetSessionId sets SessionId field to given value. +SetVersionId sets VersionId field to given value. ### GetProjectId -`func (o *LoadSessionParams) GetProjectId() string` +`func (o *LoadModelParams) GetProjectId() string` GetProjectId returns the ProjectId field if non-nil, zero value otherwise. ### GetProjectIdOk -`func (o *LoadSessionParams) GetProjectIdOk() (*string, bool)` +`func (o *LoadModelParams) GetProjectIdOk() (*string, bool)` GetProjectIdOk returns a tuple with the ProjectId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetProjectId -`func (o *LoadSessionParams) SetProjectId(v string)` +`func (o *LoadModelParams) SetProjectId(v string)` SetProjectId sets ProjectId field to given value. diff --git a/pkg/tensorleapapi/docs/LoadModelResponse.md b/pkg/tensorleapapi/docs/LoadModelResponse.md new file mode 100644 index 000000000..4f2ffeb22 --- /dev/null +++ b/pkg/tensorleapapi/docs/LoadModelResponse.md @@ -0,0 +1,51 @@ +# LoadModelResponse + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**Version** | [**VersionPopulatedJob**](VersionPopulatedJob.md) | | + +## Methods + +### NewLoadModelResponse + +`func NewLoadModelResponse(version VersionPopulatedJob, ) *LoadModelResponse` + +NewLoadModelResponse instantiates a new LoadModelResponse object +This constructor will assign default values to properties that have it defined, +and makes sure properties required by API are set, but the set of arguments +will change when the set of required properties is changed + +### NewLoadModelResponseWithDefaults + +`func NewLoadModelResponseWithDefaults() *LoadModelResponse` + +NewLoadModelResponseWithDefaults instantiates a new LoadModelResponse object +This constructor will only assign default values to properties that have it defined, +but it doesn't guarantee that properties required by API are set + +### GetVersion + +`func (o *LoadModelResponse) GetVersion() VersionPopulatedJob` + +GetVersion returns the Version field if non-nil, zero value otherwise. + +### GetVersionOk + +`func (o *LoadModelResponse) GetVersionOk() (*VersionPopulatedJob, bool)` + +GetVersionOk returns a tuple with the Version field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetVersion + +`func (o *LoadModelResponse) SetVersion(v VersionPopulatedJob)` + +SetVersion sets Version field to given value. + + + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/pkg/tensorleapapi/docs/LoadSessionResponse.md b/pkg/tensorleapapi/docs/LoadSessionResponse.md deleted file mode 100644 index a27c85597..000000000 --- a/pkg/tensorleapapi/docs/LoadSessionResponse.md +++ /dev/null @@ -1,51 +0,0 @@ -# LoadSessionResponse - -## Properties - -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**Session** | [**SessionPopulatedJob**](SessionPopulatedJob.md) | | - -## Methods - -### NewLoadSessionResponse - -`func NewLoadSessionResponse(session SessionPopulatedJob, ) *LoadSessionResponse` - -NewLoadSessionResponse instantiates a new LoadSessionResponse object -This constructor will assign default values to properties that have it defined, -and makes sure properties required by API are set, but the set of arguments -will change when the set of required properties is changed - -### NewLoadSessionResponseWithDefaults - -`func NewLoadSessionResponseWithDefaults() *LoadSessionResponse` - -NewLoadSessionResponseWithDefaults instantiates a new LoadSessionResponse object -This constructor will only assign default values to properties that have it defined, -but it doesn't guarantee that properties required by API are set - -### GetSession - -`func (o *LoadSessionResponse) GetSession() SessionPopulatedJob` - -GetSession returns the Session field if non-nil, zero value otherwise. - -### GetSessionOk - -`func (o *LoadSessionResponse) GetSessionOk() (*SessionPopulatedJob, bool)` - -GetSessionOk returns a tuple with the Session field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetSession - -`func (o *LoadSessionResponse) SetSession(v SessionPopulatedJob)` - -SetSession sets Session field to given value. - - - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/pkg/tensorleapapi/docs/LowPerformanceInsight.md b/pkg/tensorleapapi/docs/LowPerformanceInsight.md new file mode 100644 index 000000000..9b4a3c399 --- /dev/null +++ b/pkg/tensorleapapi/docs/LowPerformanceInsight.md @@ -0,0 +1,474 @@ +# LowPerformanceInsight + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**Id** | **string** | | +**ParentId** | Pointer to **string** | | [optional] +**Type** | [**ScatterInsightType**](ScatterInsightType.md) | | +**DisplayFilters** | Pointer to [**[]ScatterFilter**](ScatterFilter.md) | | [optional] +**NSamples** | **float64** | | +**MutualInfoElements** | [**[]MutualInformationElement**](MutualInformationElement.md) | | +**BlobPath** | **string** | | +**Severity** | **float64** | | +**SeverityMetrics** | [**[]SeverityMetricElement**](SeverityMetricElement.md) | | +**MetricsInfo** | [**[]InsightMetricInfo**](InsightMetricInfo.md) | | +**MinHash** | **[]float64** | | +**CsvPath** | Pointer to **string** | | [optional] +**AutomaticTests** | Pointer to [**[]InsightAutomaticTest**](InsightAutomaticTest.md) | | [optional] +**AutoGenerated** | **bool** | | +**EsFiltersUsedInAnalysis** | Pointer to [**[]ESFilter**](ESFilter.md) | | [optional] +**LatentSpace** | Pointer to **string** | | [optional] +**AggressorFixing** | Pointer to [**AggressorFixing**](AggressorFixing.md) | | [optional] +**IsTrainAggressor** | Pointer to **bool** | | [optional] +**OverfittingMetrics** | Pointer to **[]string** | | [optional] + +## Methods + +### NewLowPerformanceInsight + +`func NewLowPerformanceInsight(id string, type_ ScatterInsightType, nSamples float64, mutualInfoElements []MutualInformationElement, blobPath string, severity float64, severityMetrics []SeverityMetricElement, metricsInfo []InsightMetricInfo, minHash []float64, autoGenerated bool, ) *LowPerformanceInsight` + +NewLowPerformanceInsight instantiates a new LowPerformanceInsight object +This constructor will assign default values to properties that have it defined, +and makes sure properties required by API are set, but the set of arguments +will change when the set of required properties is changed + +### NewLowPerformanceInsightWithDefaults + +`func NewLowPerformanceInsightWithDefaults() *LowPerformanceInsight` + +NewLowPerformanceInsightWithDefaults instantiates a new LowPerformanceInsight object +This constructor will only assign default values to properties that have it defined, +but it doesn't guarantee that properties required by API are set + +### GetId + +`func (o *LowPerformanceInsight) GetId() string` + +GetId returns the Id field if non-nil, zero value otherwise. + +### GetIdOk + +`func (o *LowPerformanceInsight) GetIdOk() (*string, bool)` + +GetIdOk returns a tuple with the Id field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetId + +`func (o *LowPerformanceInsight) SetId(v string)` + +SetId sets Id field to given value. + + +### GetParentId + +`func (o *LowPerformanceInsight) GetParentId() string` + +GetParentId returns the ParentId field if non-nil, zero value otherwise. + +### GetParentIdOk + +`func (o *LowPerformanceInsight) GetParentIdOk() (*string, bool)` + +GetParentIdOk returns a tuple with the ParentId field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetParentId + +`func (o *LowPerformanceInsight) SetParentId(v string)` + +SetParentId sets ParentId field to given value. + +### HasParentId + +`func (o *LowPerformanceInsight) HasParentId() bool` + +HasParentId returns a boolean if a field has been set. + +### GetType + +`func (o *LowPerformanceInsight) GetType() ScatterInsightType` + +GetType returns the Type field if non-nil, zero value otherwise. + +### GetTypeOk + +`func (o *LowPerformanceInsight) GetTypeOk() (*ScatterInsightType, bool)` + +GetTypeOk returns a tuple with the Type field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetType + +`func (o *LowPerformanceInsight) SetType(v ScatterInsightType)` + +SetType sets Type field to given value. + + +### GetDisplayFilters + +`func (o *LowPerformanceInsight) GetDisplayFilters() []ScatterFilter` + +GetDisplayFilters returns the DisplayFilters field if non-nil, zero value otherwise. + +### GetDisplayFiltersOk + +`func (o *LowPerformanceInsight) GetDisplayFiltersOk() (*[]ScatterFilter, bool)` + +GetDisplayFiltersOk returns a tuple with the DisplayFilters field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetDisplayFilters + +`func (o *LowPerformanceInsight) SetDisplayFilters(v []ScatterFilter)` + +SetDisplayFilters sets DisplayFilters field to given value. + +### HasDisplayFilters + +`func (o *LowPerformanceInsight) HasDisplayFilters() bool` + +HasDisplayFilters returns a boolean if a field has been set. + +### GetNSamples + +`func (o *LowPerformanceInsight) GetNSamples() float64` + +GetNSamples returns the NSamples field if non-nil, zero value otherwise. + +### GetNSamplesOk + +`func (o *LowPerformanceInsight) GetNSamplesOk() (*float64, bool)` + +GetNSamplesOk returns a tuple with the NSamples field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetNSamples + +`func (o *LowPerformanceInsight) SetNSamples(v float64)` + +SetNSamples sets NSamples field to given value. + + +### GetMutualInfoElements + +`func (o *LowPerformanceInsight) GetMutualInfoElements() []MutualInformationElement` + +GetMutualInfoElements returns the MutualInfoElements field if non-nil, zero value otherwise. + +### GetMutualInfoElementsOk + +`func (o *LowPerformanceInsight) GetMutualInfoElementsOk() (*[]MutualInformationElement, bool)` + +GetMutualInfoElementsOk returns a tuple with the MutualInfoElements field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetMutualInfoElements + +`func (o *LowPerformanceInsight) SetMutualInfoElements(v []MutualInformationElement)` + +SetMutualInfoElements sets MutualInfoElements field to given value. + + +### GetBlobPath + +`func (o *LowPerformanceInsight) GetBlobPath() string` + +GetBlobPath returns the BlobPath field if non-nil, zero value otherwise. + +### GetBlobPathOk + +`func (o *LowPerformanceInsight) GetBlobPathOk() (*string, bool)` + +GetBlobPathOk returns a tuple with the BlobPath field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetBlobPath + +`func (o *LowPerformanceInsight) SetBlobPath(v string)` + +SetBlobPath sets BlobPath field to given value. + + +### GetSeverity + +`func (o *LowPerformanceInsight) GetSeverity() float64` + +GetSeverity returns the Severity field if non-nil, zero value otherwise. + +### GetSeverityOk + +`func (o *LowPerformanceInsight) GetSeverityOk() (*float64, bool)` + +GetSeverityOk returns a tuple with the Severity field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetSeverity + +`func (o *LowPerformanceInsight) SetSeverity(v float64)` + +SetSeverity sets Severity field to given value. + + +### GetSeverityMetrics + +`func (o *LowPerformanceInsight) GetSeverityMetrics() []SeverityMetricElement` + +GetSeverityMetrics returns the SeverityMetrics field if non-nil, zero value otherwise. + +### GetSeverityMetricsOk + +`func (o *LowPerformanceInsight) GetSeverityMetricsOk() (*[]SeverityMetricElement, bool)` + +GetSeverityMetricsOk returns a tuple with the SeverityMetrics field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetSeverityMetrics + +`func (o *LowPerformanceInsight) SetSeverityMetrics(v []SeverityMetricElement)` + +SetSeverityMetrics sets SeverityMetrics field to given value. + + +### GetMetricsInfo + +`func (o *LowPerformanceInsight) GetMetricsInfo() []InsightMetricInfo` + +GetMetricsInfo returns the MetricsInfo field if non-nil, zero value otherwise. + +### GetMetricsInfoOk + +`func (o *LowPerformanceInsight) GetMetricsInfoOk() (*[]InsightMetricInfo, bool)` + +GetMetricsInfoOk returns a tuple with the MetricsInfo field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetMetricsInfo + +`func (o *LowPerformanceInsight) SetMetricsInfo(v []InsightMetricInfo)` + +SetMetricsInfo sets MetricsInfo field to given value. + + +### GetMinHash + +`func (o *LowPerformanceInsight) GetMinHash() []float64` + +GetMinHash returns the MinHash field if non-nil, zero value otherwise. + +### GetMinHashOk + +`func (o *LowPerformanceInsight) GetMinHashOk() (*[]float64, bool)` + +GetMinHashOk returns a tuple with the MinHash field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetMinHash + +`func (o *LowPerformanceInsight) SetMinHash(v []float64)` + +SetMinHash sets MinHash field to given value. + + +### GetCsvPath + +`func (o *LowPerformanceInsight) GetCsvPath() string` + +GetCsvPath returns the CsvPath field if non-nil, zero value otherwise. + +### GetCsvPathOk + +`func (o *LowPerformanceInsight) GetCsvPathOk() (*string, bool)` + +GetCsvPathOk returns a tuple with the CsvPath field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetCsvPath + +`func (o *LowPerformanceInsight) SetCsvPath(v string)` + +SetCsvPath sets CsvPath field to given value. + +### HasCsvPath + +`func (o *LowPerformanceInsight) HasCsvPath() bool` + +HasCsvPath returns a boolean if a field has been set. + +### GetAutomaticTests + +`func (o *LowPerformanceInsight) GetAutomaticTests() []InsightAutomaticTest` + +GetAutomaticTests returns the AutomaticTests field if non-nil, zero value otherwise. + +### GetAutomaticTestsOk + +`func (o *LowPerformanceInsight) GetAutomaticTestsOk() (*[]InsightAutomaticTest, bool)` + +GetAutomaticTestsOk returns a tuple with the AutomaticTests field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetAutomaticTests + +`func (o *LowPerformanceInsight) SetAutomaticTests(v []InsightAutomaticTest)` + +SetAutomaticTests sets AutomaticTests field to given value. + +### HasAutomaticTests + +`func (o *LowPerformanceInsight) HasAutomaticTests() bool` + +HasAutomaticTests returns a boolean if a field has been set. + +### GetAutoGenerated + +`func (o *LowPerformanceInsight) GetAutoGenerated() bool` + +GetAutoGenerated returns the AutoGenerated field if non-nil, zero value otherwise. + +### GetAutoGeneratedOk + +`func (o *LowPerformanceInsight) GetAutoGeneratedOk() (*bool, bool)` + +GetAutoGeneratedOk returns a tuple with the AutoGenerated field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetAutoGenerated + +`func (o *LowPerformanceInsight) SetAutoGenerated(v bool)` + +SetAutoGenerated sets AutoGenerated field to given value. + + +### GetEsFiltersUsedInAnalysis + +`func (o *LowPerformanceInsight) GetEsFiltersUsedInAnalysis() []ESFilter` + +GetEsFiltersUsedInAnalysis returns the EsFiltersUsedInAnalysis field if non-nil, zero value otherwise. + +### GetEsFiltersUsedInAnalysisOk + +`func (o *LowPerformanceInsight) GetEsFiltersUsedInAnalysisOk() (*[]ESFilter, bool)` + +GetEsFiltersUsedInAnalysisOk returns a tuple with the EsFiltersUsedInAnalysis field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetEsFiltersUsedInAnalysis + +`func (o *LowPerformanceInsight) SetEsFiltersUsedInAnalysis(v []ESFilter)` + +SetEsFiltersUsedInAnalysis sets EsFiltersUsedInAnalysis field to given value. + +### HasEsFiltersUsedInAnalysis + +`func (o *LowPerformanceInsight) HasEsFiltersUsedInAnalysis() bool` + +HasEsFiltersUsedInAnalysis returns a boolean if a field has been set. + +### GetLatentSpace + +`func (o *LowPerformanceInsight) GetLatentSpace() string` + +GetLatentSpace returns the LatentSpace field if non-nil, zero value otherwise. + +### GetLatentSpaceOk + +`func (o *LowPerformanceInsight) GetLatentSpaceOk() (*string, bool)` + +GetLatentSpaceOk returns a tuple with the LatentSpace field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetLatentSpace + +`func (o *LowPerformanceInsight) SetLatentSpace(v string)` + +SetLatentSpace sets LatentSpace field to given value. + +### HasLatentSpace + +`func (o *LowPerformanceInsight) HasLatentSpace() bool` + +HasLatentSpace returns a boolean if a field has been set. + +### GetAggressorFixing + +`func (o *LowPerformanceInsight) GetAggressorFixing() AggressorFixing` + +GetAggressorFixing returns the AggressorFixing field if non-nil, zero value otherwise. + +### GetAggressorFixingOk + +`func (o *LowPerformanceInsight) GetAggressorFixingOk() (*AggressorFixing, bool)` + +GetAggressorFixingOk returns a tuple with the AggressorFixing field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetAggressorFixing + +`func (o *LowPerformanceInsight) SetAggressorFixing(v AggressorFixing)` + +SetAggressorFixing sets AggressorFixing field to given value. + +### HasAggressorFixing + +`func (o *LowPerformanceInsight) HasAggressorFixing() bool` + +HasAggressorFixing returns a boolean if a field has been set. + +### GetIsTrainAggressor + +`func (o *LowPerformanceInsight) GetIsTrainAggressor() bool` + +GetIsTrainAggressor returns the IsTrainAggressor field if non-nil, zero value otherwise. + +### GetIsTrainAggressorOk + +`func (o *LowPerformanceInsight) GetIsTrainAggressorOk() (*bool, bool)` + +GetIsTrainAggressorOk returns a tuple with the IsTrainAggressor field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetIsTrainAggressor + +`func (o *LowPerformanceInsight) SetIsTrainAggressor(v bool)` + +SetIsTrainAggressor sets IsTrainAggressor field to given value. + +### HasIsTrainAggressor + +`func (o *LowPerformanceInsight) HasIsTrainAggressor() bool` + +HasIsTrainAggressor returns a boolean if a field has been set. + +### GetOverfittingMetrics + +`func (o *LowPerformanceInsight) GetOverfittingMetrics() []string` + +GetOverfittingMetrics returns the OverfittingMetrics field if non-nil, zero value otherwise. + +### GetOverfittingMetricsOk + +`func (o *LowPerformanceInsight) GetOverfittingMetricsOk() (*[]string, bool)` + +GetOverfittingMetricsOk returns a tuple with the OverfittingMetrics field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetOverfittingMetrics + +`func (o *LowPerformanceInsight) SetOverfittingMetrics(v []string)` + +SetOverfittingMetrics sets OverfittingMetrics field to given value. + +### HasOverfittingMetrics + +`func (o *LowPerformanceInsight) HasOverfittingMetrics() bool` + +HasOverfittingMetrics returns a boolean if a field has been set. + + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/pkg/tensorleapapi/docs/MislabeledSamplesInsight.md b/pkg/tensorleapapi/docs/MislabeledSamplesInsight.md index d2a7f634b..579ed8215 100644 --- a/pkg/tensorleapapi/docs/MislabeledSamplesInsight.md +++ b/pkg/tensorleapapi/docs/MislabeledSamplesInsight.md @@ -19,6 +19,7 @@ Name | Type | Description | Notes **AutomaticTests** | Pointer to [**[]InsightAutomaticTest**](InsightAutomaticTest.md) | | [optional] **AutoGenerated** | **bool** | | **EsFiltersUsedInAnalysis** | Pointer to [**[]ESFilter**](ESFilter.md) | | [optional] +**LatentSpace** | Pointer to **string** | | [optional] **Subset** | [**DataStateType**](DataStateType.md) | | ## Methods @@ -365,6 +366,31 @@ SetEsFiltersUsedInAnalysis sets EsFiltersUsedInAnalysis field to given value. HasEsFiltersUsedInAnalysis returns a boolean if a field has been set. +### GetLatentSpace + +`func (o *MislabeledSamplesInsight) GetLatentSpace() string` + +GetLatentSpace returns the LatentSpace field if non-nil, zero value otherwise. + +### GetLatentSpaceOk + +`func (o *MislabeledSamplesInsight) GetLatentSpaceOk() (*string, bool)` + +GetLatentSpaceOk returns a tuple with the LatentSpace field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetLatentSpace + +`func (o *MislabeledSamplesInsight) SetLatentSpace(v string)` + +SetLatentSpace sets LatentSpace field to given value. + +### HasLatentSpace + +`func (o *MislabeledSamplesInsight) HasLatentSpace() bool` + +HasLatentSpace returns a boolean if a field has been set. + ### GetSubset `func (o *MislabeledSamplesInsight) GetSubset() DataStateType` diff --git a/pkg/tensorleapapi/docs/MultiChartsParams.md b/pkg/tensorleapapi/docs/MultiChartsParams.md index 5c988c5eb..fd0d7ea46 100644 --- a/pkg/tensorleapapi/docs/MultiChartsParams.md +++ b/pkg/tensorleapapi/docs/MultiChartsParams.md @@ -11,7 +11,7 @@ Name | Type | Description | Notes **HorizontalSplit** | Pointer to [**SplitAgg**](SplitAgg.md) | | [optional] **InnerSplit** | Pointer to [**SplitAgg**](SplitAgg.md) | | [optional] **Filters** | Pointer to [**[]ESFilter**](ESFilter.md) | | [optional] -**SessionRunsToEpochs** | [**[]SessionRunToEpoch**](SessionRunToEpoch.md) | | +**InferenceArtifactIds** | **[]string** | | **ShowAllEpochs** | **bool** | | **ElementInstance** | Pointer to **bool** | | [optional] @@ -19,7 +19,7 @@ Name | Type | Description | Notes ### NewMultiChartsParams -`func NewMultiChartsParams(projectId string, x SplitAgg, y Aggregations, sessionRunsToEpochs []SessionRunToEpoch, showAllEpochs bool, ) *MultiChartsParams` +`func NewMultiChartsParams(projectId string, x SplitAgg, y Aggregations, inferenceArtifactIds []string, showAllEpochs bool, ) *MultiChartsParams` NewMultiChartsParams instantiates a new MultiChartsParams object This constructor will assign default values to properties that have it defined, @@ -194,24 +194,24 @@ SetFilters sets Filters field to given value. HasFilters returns a boolean if a field has been set. -### GetSessionRunsToEpochs +### GetInferenceArtifactIds -`func (o *MultiChartsParams) GetSessionRunsToEpochs() []SessionRunToEpoch` +`func (o *MultiChartsParams) GetInferenceArtifactIds() []string` -GetSessionRunsToEpochs returns the SessionRunsToEpochs field if non-nil, zero value otherwise. +GetInferenceArtifactIds returns the InferenceArtifactIds field if non-nil, zero value otherwise. -### GetSessionRunsToEpochsOk +### GetInferenceArtifactIdsOk -`func (o *MultiChartsParams) GetSessionRunsToEpochsOk() (*[]SessionRunToEpoch, bool)` +`func (o *MultiChartsParams) GetInferenceArtifactIdsOk() (*[]string, bool)` -GetSessionRunsToEpochsOk returns a tuple with the SessionRunsToEpochs field if it's non-nil, zero value otherwise +GetInferenceArtifactIdsOk returns a tuple with the InferenceArtifactIds field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunsToEpochs +### SetInferenceArtifactIds -`func (o *MultiChartsParams) SetSessionRunsToEpochs(v []SessionRunToEpoch)` +`func (o *MultiChartsParams) SetInferenceArtifactIds(v []string)` -SetSessionRunsToEpochs sets SessionRunsToEpochs field to given value. +SetInferenceArtifactIds sets InferenceArtifactIds field to given value. ### GetShowAllEpochs diff --git a/pkg/tensorleapapi/docs/MultiThresholdConfusionMatrixParams.md b/pkg/tensorleapapi/docs/MultiThresholdConfusionMatrixParams.md index 632774bc7..d1cbcc22c 100644 --- a/pkg/tensorleapapi/docs/MultiThresholdConfusionMatrixParams.md +++ b/pkg/tensorleapapi/docs/MultiThresholdConfusionMatrixParams.md @@ -4,7 +4,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**SessionRunsToEpochs** | [**[]SessionRunToEpoch**](SessionRunToEpoch.md) | | +**InferenceArtifactIds** | **[]string** | | **ProjectId** | **string** | | **CustomMetricName** | **string** | | **VerticalSplit** | Pointer to [**SplitAgg**](SplitAgg.md) | | [optional] @@ -16,7 +16,7 @@ Name | Type | Description | Notes ### NewMultiThresholdConfusionMatrixParams -`func NewMultiThresholdConfusionMatrixParams(sessionRunsToEpochs []SessionRunToEpoch, projectId string, customMetricName string, ) *MultiThresholdConfusionMatrixParams` +`func NewMultiThresholdConfusionMatrixParams(inferenceArtifactIds []string, projectId string, customMetricName string, ) *MultiThresholdConfusionMatrixParams` NewMultiThresholdConfusionMatrixParams instantiates a new MultiThresholdConfusionMatrixParams object This constructor will assign default values to properties that have it defined, @@ -31,24 +31,24 @@ NewMultiThresholdConfusionMatrixParamsWithDefaults instantiates a new MultiThres This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set -### GetSessionRunsToEpochs +### GetInferenceArtifactIds -`func (o *MultiThresholdConfusionMatrixParams) GetSessionRunsToEpochs() []SessionRunToEpoch` +`func (o *MultiThresholdConfusionMatrixParams) GetInferenceArtifactIds() []string` -GetSessionRunsToEpochs returns the SessionRunsToEpochs field if non-nil, zero value otherwise. +GetInferenceArtifactIds returns the InferenceArtifactIds field if non-nil, zero value otherwise. -### GetSessionRunsToEpochsOk +### GetInferenceArtifactIdsOk -`func (o *MultiThresholdConfusionMatrixParams) GetSessionRunsToEpochsOk() (*[]SessionRunToEpoch, bool)` +`func (o *MultiThresholdConfusionMatrixParams) GetInferenceArtifactIdsOk() (*[]string, bool)` -GetSessionRunsToEpochsOk returns a tuple with the SessionRunsToEpochs field if it's non-nil, zero value otherwise +GetInferenceArtifactIdsOk returns a tuple with the InferenceArtifactIds field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunsToEpochs +### SetInferenceArtifactIds -`func (o *MultiThresholdConfusionMatrixParams) SetSessionRunsToEpochs(v []SessionRunToEpoch)` +`func (o *MultiThresholdConfusionMatrixParams) SetInferenceArtifactIds(v []string)` -SetSessionRunsToEpochs sets SessionRunsToEpochs field to given value. +SetInferenceArtifactIds sets InferenceArtifactIds field to given value. ### GetProjectId diff --git a/pkg/tensorleapapi/docs/PickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestOrReRunAfterFail.md b/pkg/tensorleapapi/docs/PickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestOrReRunAfterFail.md index 6e42e8fe8..608cf0cf6 100644 --- a/pkg/tensorleapapi/docs/PickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestOrReRunAfterFail.md +++ b/pkg/tensorleapapi/docs/PickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestOrReRunAfterFail.md @@ -4,10 +4,10 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**SessionRunId** | **string** | | +**VersionId** | **string** | | +**InferenceArtifactId** | **string** | | **ProjectId** | **string** | | **BatchSize** | **float64** | | -**FromEpoch** | **float64** | | **Filters** | Pointer to [**[]ESFilter**](ESFilter.md) | | [optional] **TimeFilter** | Pointer to [**ESFilter**](ESFilter.md) | | [optional] **NotApplyTimeFilterOnUnlabeledOnly** | Pointer to **bool** | | [optional] @@ -24,7 +24,7 @@ Name | Type | Description | Notes ### NewPickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestOrReRunAfterFail -`func NewPickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestOrReRunAfterFail(sessionRunId string, projectId string, batchSize float64, fromEpoch float64, numOfSamples float64, balanceBy []string, shouldFillRemainingWithUnbalanced bool, reductionAlgorithm ReductionAlgorithm, ) *PickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestOrReRunAfterFail` +`func NewPickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestOrReRunAfterFail(versionId string, inferenceArtifactId string, projectId string, batchSize float64, numOfSamples float64, balanceBy []string, shouldFillRemainingWithUnbalanced bool, reductionAlgorithm ReductionAlgorithm, ) *PickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestOrReRunAfterFail` NewPickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestOrReRunAfterFail instantiates a new PickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestOrReRunAfterFail object This constructor will assign default values to properties that have it defined, @@ -39,24 +39,44 @@ NewPickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestO This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set -### GetSessionRunId +### GetVersionId -`func (o *PickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestOrReRunAfterFail) GetSessionRunId() string` +`func (o *PickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestOrReRunAfterFail) GetVersionId() string` -GetSessionRunId returns the SessionRunId field if non-nil, zero value otherwise. +GetVersionId returns the VersionId field if non-nil, zero value otherwise. -### GetSessionRunIdOk +### GetVersionIdOk -`func (o *PickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestOrReRunAfterFail) GetSessionRunIdOk() (*string, bool)` +`func (o *PickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestOrReRunAfterFail) GetVersionIdOk() (*string, bool)` -GetSessionRunIdOk returns a tuple with the SessionRunId field if it's non-nil, zero value otherwise +GetVersionIdOk returns a tuple with the VersionId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunId +### SetVersionId -`func (o *PickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestOrReRunAfterFail) SetSessionRunId(v string)` +`func (o *PickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestOrReRunAfterFail) SetVersionId(v string)` -SetSessionRunId sets SessionRunId field to given value. +SetVersionId sets VersionId field to given value. + + +### GetInferenceArtifactId + +`func (o *PickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestOrReRunAfterFail) GetInferenceArtifactId() string` + +GetInferenceArtifactId returns the InferenceArtifactId field if non-nil, zero value otherwise. + +### GetInferenceArtifactIdOk + +`func (o *PickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestOrReRunAfterFail) GetInferenceArtifactIdOk() (*string, bool)` + +GetInferenceArtifactIdOk returns a tuple with the InferenceArtifactId field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetInferenceArtifactId + +`func (o *PickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestOrReRunAfterFail) SetInferenceArtifactId(v string)` + +SetInferenceArtifactId sets InferenceArtifactId field to given value. ### GetProjectId @@ -99,26 +119,6 @@ and a boolean to check if the value has been set. SetBatchSize sets BatchSize field to given value. -### GetFromEpoch - -`func (o *PickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestOrReRunAfterFail) GetFromEpoch() float64` - -GetFromEpoch returns the FromEpoch field if non-nil, zero value otherwise. - -### GetFromEpochOk - -`func (o *PickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestOrReRunAfterFail) GetFromEpochOk() (*float64, bool)` - -GetFromEpochOk returns a tuple with the FromEpoch field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetFromEpoch - -`func (o *PickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestOrReRunAfterFail) SetFromEpoch(v float64)` - -SetFromEpoch sets FromEpoch field to given value. - - ### GetFilters `func (o *PickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestOrReRunAfterFail) GetFilters() []ESFilter` diff --git a/pkg/tensorleapapi/docs/PopulateCollectionFromFiltersParams.md b/pkg/tensorleapapi/docs/PopulateCollectionFromFiltersParams.md new file mode 100644 index 000000000..11a2aed06 --- /dev/null +++ b/pkg/tensorleapapi/docs/PopulateCollectionFromFiltersParams.md @@ -0,0 +1,171 @@ +# PopulateCollectionFromFiltersParams + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**Description** | Pointer to **string** | | [optional] +**Name** | Pointer to **string** | | [optional] +**CollectionId** | Pointer to **string** | | [optional] +**Filters** | [**[]ESFilter**](ESFilter.md) | | +**InferenceArtifactIds** | **[]string** | | +**ProjectId** | **string** | | + +## Methods + +### NewPopulateCollectionFromFiltersParams + +`func NewPopulateCollectionFromFiltersParams(filters []ESFilter, inferenceArtifactIds []string, projectId string, ) *PopulateCollectionFromFiltersParams` + +NewPopulateCollectionFromFiltersParams instantiates a new PopulateCollectionFromFiltersParams object +This constructor will assign default values to properties that have it defined, +and makes sure properties required by API are set, but the set of arguments +will change when the set of required properties is changed + +### NewPopulateCollectionFromFiltersParamsWithDefaults + +`func NewPopulateCollectionFromFiltersParamsWithDefaults() *PopulateCollectionFromFiltersParams` + +NewPopulateCollectionFromFiltersParamsWithDefaults instantiates a new PopulateCollectionFromFiltersParams object +This constructor will only assign default values to properties that have it defined, +but it doesn't guarantee that properties required by API are set + +### GetDescription + +`func (o *PopulateCollectionFromFiltersParams) GetDescription() string` + +GetDescription returns the Description field if non-nil, zero value otherwise. + +### GetDescriptionOk + +`func (o *PopulateCollectionFromFiltersParams) GetDescriptionOk() (*string, bool)` + +GetDescriptionOk returns a tuple with the Description field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetDescription + +`func (o *PopulateCollectionFromFiltersParams) SetDescription(v string)` + +SetDescription sets Description field to given value. + +### HasDescription + +`func (o *PopulateCollectionFromFiltersParams) HasDescription() bool` + +HasDescription returns a boolean if a field has been set. + +### GetName + +`func (o *PopulateCollectionFromFiltersParams) GetName() string` + +GetName returns the Name field if non-nil, zero value otherwise. + +### GetNameOk + +`func (o *PopulateCollectionFromFiltersParams) GetNameOk() (*string, bool)` + +GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetName + +`func (o *PopulateCollectionFromFiltersParams) SetName(v string)` + +SetName sets Name field to given value. + +### HasName + +`func (o *PopulateCollectionFromFiltersParams) HasName() bool` + +HasName returns a boolean if a field has been set. + +### GetCollectionId + +`func (o *PopulateCollectionFromFiltersParams) GetCollectionId() string` + +GetCollectionId returns the CollectionId field if non-nil, zero value otherwise. + +### GetCollectionIdOk + +`func (o *PopulateCollectionFromFiltersParams) GetCollectionIdOk() (*string, bool)` + +GetCollectionIdOk returns a tuple with the CollectionId field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetCollectionId + +`func (o *PopulateCollectionFromFiltersParams) SetCollectionId(v string)` + +SetCollectionId sets CollectionId field to given value. + +### HasCollectionId + +`func (o *PopulateCollectionFromFiltersParams) HasCollectionId() bool` + +HasCollectionId returns a boolean if a field has been set. + +### GetFilters + +`func (o *PopulateCollectionFromFiltersParams) GetFilters() []ESFilter` + +GetFilters returns the Filters field if non-nil, zero value otherwise. + +### GetFiltersOk + +`func (o *PopulateCollectionFromFiltersParams) GetFiltersOk() (*[]ESFilter, bool)` + +GetFiltersOk returns a tuple with the Filters field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetFilters + +`func (o *PopulateCollectionFromFiltersParams) SetFilters(v []ESFilter)` + +SetFilters sets Filters field to given value. + + +### GetInferenceArtifactIds + +`func (o *PopulateCollectionFromFiltersParams) GetInferenceArtifactIds() []string` + +GetInferenceArtifactIds returns the InferenceArtifactIds field if non-nil, zero value otherwise. + +### GetInferenceArtifactIdsOk + +`func (o *PopulateCollectionFromFiltersParams) GetInferenceArtifactIdsOk() (*[]string, bool)` + +GetInferenceArtifactIdsOk returns a tuple with the InferenceArtifactIds field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetInferenceArtifactIds + +`func (o *PopulateCollectionFromFiltersParams) SetInferenceArtifactIds(v []string)` + +SetInferenceArtifactIds sets InferenceArtifactIds field to given value. + + +### GetProjectId + +`func (o *PopulateCollectionFromFiltersParams) GetProjectId() string` + +GetProjectId returns the ProjectId field if non-nil, zero value otherwise. + +### GetProjectIdOk + +`func (o *PopulateCollectionFromFiltersParams) GetProjectIdOk() (*string, bool)` + +GetProjectIdOk returns a tuple with the ProjectId field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetProjectId + +`func (o *PopulateCollectionFromFiltersParams) SetProjectId(v string)` + +SetProjectId sets ProjectId field to given value. + + + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/pkg/tensorleapapi/docs/PopulateCollectionFromFiltersResponse.md b/pkg/tensorleapapi/docs/PopulateCollectionFromFiltersResponse.md new file mode 100644 index 000000000..d941d15d2 --- /dev/null +++ b/pkg/tensorleapapi/docs/PopulateCollectionFromFiltersResponse.md @@ -0,0 +1,72 @@ +# PopulateCollectionFromFiltersResponse + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**NumOfAddedSamples** | **float64** | | +**CollectionId** | **string** | | + +## Methods + +### NewPopulateCollectionFromFiltersResponse + +`func NewPopulateCollectionFromFiltersResponse(numOfAddedSamples float64, collectionId string, ) *PopulateCollectionFromFiltersResponse` + +NewPopulateCollectionFromFiltersResponse instantiates a new PopulateCollectionFromFiltersResponse object +This constructor will assign default values to properties that have it defined, +and makes sure properties required by API are set, but the set of arguments +will change when the set of required properties is changed + +### NewPopulateCollectionFromFiltersResponseWithDefaults + +`func NewPopulateCollectionFromFiltersResponseWithDefaults() *PopulateCollectionFromFiltersResponse` + +NewPopulateCollectionFromFiltersResponseWithDefaults instantiates a new PopulateCollectionFromFiltersResponse object +This constructor will only assign default values to properties that have it defined, +but it doesn't guarantee that properties required by API are set + +### GetNumOfAddedSamples + +`func (o *PopulateCollectionFromFiltersResponse) GetNumOfAddedSamples() float64` + +GetNumOfAddedSamples returns the NumOfAddedSamples field if non-nil, zero value otherwise. + +### GetNumOfAddedSamplesOk + +`func (o *PopulateCollectionFromFiltersResponse) GetNumOfAddedSamplesOk() (*float64, bool)` + +GetNumOfAddedSamplesOk returns a tuple with the NumOfAddedSamples field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetNumOfAddedSamples + +`func (o *PopulateCollectionFromFiltersResponse) SetNumOfAddedSamples(v float64)` + +SetNumOfAddedSamples sets NumOfAddedSamples field to given value. + + +### GetCollectionId + +`func (o *PopulateCollectionFromFiltersResponse) GetCollectionId() string` + +GetCollectionId returns the CollectionId field if non-nil, zero value otherwise. + +### GetCollectionIdOk + +`func (o *PopulateCollectionFromFiltersResponse) GetCollectionIdOk() (*string, bool)` + +GetCollectionIdOk returns a tuple with the CollectionId field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetCollectionId + +`func (o *PopulateCollectionFromFiltersResponse) SetCollectionId(v string)` + +SetCollectionId sets CollectionId field to given value. + + + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/pkg/tensorleapapi/docs/PopulationExplorationJobParams.md b/pkg/tensorleapapi/docs/PopulationExplorationJobParams.md index 9b6525976..84a61707b 100644 --- a/pkg/tensorleapapi/docs/PopulationExplorationJobParams.md +++ b/pkg/tensorleapapi/docs/PopulationExplorationJobParams.md @@ -17,16 +17,16 @@ Name | Type | Description | Notes **ProjectionMetric** | Pointer to **string** | | [optional] **Digest** | **string** | | **Filters** | Pointer to [**[]ESFilter**](ESFilter.md) | | [optional] -**FromEpoch** | **float64** | | **BatchSize** | **float64** | | -**SessionRunId** | **string** | | +**InferenceArtifactId** | **string** | | +**VersionId** | **string** | | **Type** | **string** | | ## Methods ### NewPopulationExplorationJobParams -`func NewPopulationExplorationJobParams(reductionAlgorithm ReductionAlgorithm, shouldFillRemainingWithUnbalanced bool, balanceBy []string, numOfSamples float64, digest string, fromEpoch float64, batchSize float64, sessionRunId string, type_ string, ) *PopulationExplorationJobParams` +`func NewPopulationExplorationJobParams(reductionAlgorithm ReductionAlgorithm, shouldFillRemainingWithUnbalanced bool, balanceBy []string, numOfSamples float64, digest string, batchSize float64, inferenceArtifactId string, versionId string, type_ string, ) *PopulationExplorationJobParams` NewPopulationExplorationJobParams instantiates a new PopulationExplorationJobParams object This constructor will assign default values to properties that have it defined, @@ -341,64 +341,64 @@ SetFilters sets Filters field to given value. HasFilters returns a boolean if a field has been set. -### GetFromEpoch +### GetBatchSize -`func (o *PopulationExplorationJobParams) GetFromEpoch() float64` +`func (o *PopulationExplorationJobParams) GetBatchSize() float64` -GetFromEpoch returns the FromEpoch field if non-nil, zero value otherwise. +GetBatchSize returns the BatchSize field if non-nil, zero value otherwise. -### GetFromEpochOk +### GetBatchSizeOk -`func (o *PopulationExplorationJobParams) GetFromEpochOk() (*float64, bool)` +`func (o *PopulationExplorationJobParams) GetBatchSizeOk() (*float64, bool)` -GetFromEpochOk returns a tuple with the FromEpoch field if it's non-nil, zero value otherwise +GetBatchSizeOk returns a tuple with the BatchSize field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetFromEpoch +### SetBatchSize -`func (o *PopulationExplorationJobParams) SetFromEpoch(v float64)` +`func (o *PopulationExplorationJobParams) SetBatchSize(v float64)` -SetFromEpoch sets FromEpoch field to given value. +SetBatchSize sets BatchSize field to given value. -### GetBatchSize +### GetInferenceArtifactId -`func (o *PopulationExplorationJobParams) GetBatchSize() float64` +`func (o *PopulationExplorationJobParams) GetInferenceArtifactId() string` -GetBatchSize returns the BatchSize field if non-nil, zero value otherwise. +GetInferenceArtifactId returns the InferenceArtifactId field if non-nil, zero value otherwise. -### GetBatchSizeOk +### GetInferenceArtifactIdOk -`func (o *PopulationExplorationJobParams) GetBatchSizeOk() (*float64, bool)` +`func (o *PopulationExplorationJobParams) GetInferenceArtifactIdOk() (*string, bool)` -GetBatchSizeOk returns a tuple with the BatchSize field if it's non-nil, zero value otherwise +GetInferenceArtifactIdOk returns a tuple with the InferenceArtifactId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetBatchSize +### SetInferenceArtifactId -`func (o *PopulationExplorationJobParams) SetBatchSize(v float64)` +`func (o *PopulationExplorationJobParams) SetInferenceArtifactId(v string)` -SetBatchSize sets BatchSize field to given value. +SetInferenceArtifactId sets InferenceArtifactId field to given value. -### GetSessionRunId +### GetVersionId -`func (o *PopulationExplorationJobParams) GetSessionRunId() string` +`func (o *PopulationExplorationJobParams) GetVersionId() string` -GetSessionRunId returns the SessionRunId field if non-nil, zero value otherwise. +GetVersionId returns the VersionId field if non-nil, zero value otherwise. -### GetSessionRunIdOk +### GetVersionIdOk -`func (o *PopulationExplorationJobParams) GetSessionRunIdOk() (*string, bool)` +`func (o *PopulationExplorationJobParams) GetVersionIdOk() (*string, bool)` -GetSessionRunIdOk returns a tuple with the SessionRunId field if it's non-nil, zero value otherwise +GetVersionIdOk returns a tuple with the VersionId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunId +### SetVersionId -`func (o *PopulationExplorationJobParams) SetSessionRunId(v string)` +`func (o *PopulationExplorationJobParams) SetVersionId(v string)` -SetSessionRunId sets SessionRunId field to given value. +SetVersionId sets VersionId field to given value. ### GetType diff --git a/pkg/tensorleapapi/docs/PopulationExplorationParams.md b/pkg/tensorleapapi/docs/PopulationExplorationParams.md index 23730f4f6..504e4a68a 100644 --- a/pkg/tensorleapapi/docs/PopulationExplorationParams.md +++ b/pkg/tensorleapapi/docs/PopulationExplorationParams.md @@ -4,10 +4,10 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**SessionRunId** | **string** | | +**VersionId** | **string** | | +**InferenceArtifactId** | **string** | | **ProjectId** | **string** | | **BatchSize** | **float64** | | -**FromEpoch** | **float64** | | **Filters** | Pointer to [**[]ESFilter**](ESFilter.md) | | [optional] **TimeFilter** | Pointer to [**ESFilter**](ESFilter.md) | | [optional] **NotApplyTimeFilterOnUnlabeledOnly** | Pointer to **bool** | | [optional] @@ -26,7 +26,7 @@ Name | Type | Description | Notes ### NewPopulationExplorationParams -`func NewPopulationExplorationParams(sessionRunId string, projectId string, batchSize float64, fromEpoch float64, digest string, numOfSamples float64, balanceBy []string, shouldFillRemainingWithUnbalanced bool, reductionAlgorithm ReductionAlgorithm, ) *PopulationExplorationParams` +`func NewPopulationExplorationParams(versionId string, inferenceArtifactId string, projectId string, batchSize float64, digest string, numOfSamples float64, balanceBy []string, shouldFillRemainingWithUnbalanced bool, reductionAlgorithm ReductionAlgorithm, ) *PopulationExplorationParams` NewPopulationExplorationParams instantiates a new PopulationExplorationParams object This constructor will assign default values to properties that have it defined, @@ -41,24 +41,44 @@ NewPopulationExplorationParamsWithDefaults instantiates a new PopulationExplorat This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set -### GetSessionRunId +### GetVersionId -`func (o *PopulationExplorationParams) GetSessionRunId() string` +`func (o *PopulationExplorationParams) GetVersionId() string` -GetSessionRunId returns the SessionRunId field if non-nil, zero value otherwise. +GetVersionId returns the VersionId field if non-nil, zero value otherwise. -### GetSessionRunIdOk +### GetVersionIdOk -`func (o *PopulationExplorationParams) GetSessionRunIdOk() (*string, bool)` +`func (o *PopulationExplorationParams) GetVersionIdOk() (*string, bool)` -GetSessionRunIdOk returns a tuple with the SessionRunId field if it's non-nil, zero value otherwise +GetVersionIdOk returns a tuple with the VersionId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunId +### SetVersionId -`func (o *PopulationExplorationParams) SetSessionRunId(v string)` +`func (o *PopulationExplorationParams) SetVersionId(v string)` -SetSessionRunId sets SessionRunId field to given value. +SetVersionId sets VersionId field to given value. + + +### GetInferenceArtifactId + +`func (o *PopulationExplorationParams) GetInferenceArtifactId() string` + +GetInferenceArtifactId returns the InferenceArtifactId field if non-nil, zero value otherwise. + +### GetInferenceArtifactIdOk + +`func (o *PopulationExplorationParams) GetInferenceArtifactIdOk() (*string, bool)` + +GetInferenceArtifactIdOk returns a tuple with the InferenceArtifactId field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetInferenceArtifactId + +`func (o *PopulationExplorationParams) SetInferenceArtifactId(v string)` + +SetInferenceArtifactId sets InferenceArtifactId field to given value. ### GetProjectId @@ -101,26 +121,6 @@ and a boolean to check if the value has been set. SetBatchSize sets BatchSize field to given value. -### GetFromEpoch - -`func (o *PopulationExplorationParams) GetFromEpoch() float64` - -GetFromEpoch returns the FromEpoch field if non-nil, zero value otherwise. - -### GetFromEpochOk - -`func (o *PopulationExplorationParams) GetFromEpochOk() (*float64, bool)` - -GetFromEpochOk returns a tuple with the FromEpoch field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetFromEpoch - -`func (o *PopulationExplorationParams) SetFromEpoch(v float64)` - -SetFromEpoch sets FromEpoch field to given value. - - ### GetFilters `func (o *PopulationExplorationParams) GetFilters() []ESFilter` diff --git a/pkg/tensorleapapi/docs/RecentSessionsResponse.md b/pkg/tensorleapapi/docs/RecentSessionsResponse.md deleted file mode 100644 index 328e3b3e7..000000000 --- a/pkg/tensorleapapi/docs/RecentSessionsResponse.md +++ /dev/null @@ -1,51 +0,0 @@ -# RecentSessionsResponse - -## Properties - -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**Sessions** | [**[]SessionPopulatedJob**](SessionPopulatedJob.md) | | - -## Methods - -### NewRecentSessionsResponse - -`func NewRecentSessionsResponse(sessions []SessionPopulatedJob, ) *RecentSessionsResponse` - -NewRecentSessionsResponse instantiates a new RecentSessionsResponse object -This constructor will assign default values to properties that have it defined, -and makes sure properties required by API are set, but the set of arguments -will change when the set of required properties is changed - -### NewRecentSessionsResponseWithDefaults - -`func NewRecentSessionsResponseWithDefaults() *RecentSessionsResponse` - -NewRecentSessionsResponseWithDefaults instantiates a new RecentSessionsResponse object -This constructor will only assign default values to properties that have it defined, -but it doesn't guarantee that properties required by API are set - -### GetSessions - -`func (o *RecentSessionsResponse) GetSessions() []SessionPopulatedJob` - -GetSessions returns the Sessions field if non-nil, zero value otherwise. - -### GetSessionsOk - -`func (o *RecentSessionsResponse) GetSessionsOk() (*[]SessionPopulatedJob, bool)` - -GetSessionsOk returns a tuple with the Sessions field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetSessions - -`func (o *RecentSessionsResponse) SetSessions(v []SessionPopulatedJob)` - -SetSessions sets Sessions field to given value. - - - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/pkg/tensorleapapi/docs/RecentTeamSessionsRequestParams.md b/pkg/tensorleapapi/docs/RecentTeamSessionsRequestParams.md deleted file mode 100644 index 868973b33..000000000 --- a/pkg/tensorleapapi/docs/RecentTeamSessionsRequestParams.md +++ /dev/null @@ -1,72 +0,0 @@ -# RecentTeamSessionsRequestParams - -## Properties - -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**TopSessions** | **float64** | | -**ProjectId** | **string** | | - -## Methods - -### NewRecentTeamSessionsRequestParams - -`func NewRecentTeamSessionsRequestParams(topSessions float64, projectId string, ) *RecentTeamSessionsRequestParams` - -NewRecentTeamSessionsRequestParams instantiates a new RecentTeamSessionsRequestParams object -This constructor will assign default values to properties that have it defined, -and makes sure properties required by API are set, but the set of arguments -will change when the set of required properties is changed - -### NewRecentTeamSessionsRequestParamsWithDefaults - -`func NewRecentTeamSessionsRequestParamsWithDefaults() *RecentTeamSessionsRequestParams` - -NewRecentTeamSessionsRequestParamsWithDefaults instantiates a new RecentTeamSessionsRequestParams object -This constructor will only assign default values to properties that have it defined, -but it doesn't guarantee that properties required by API are set - -### GetTopSessions - -`func (o *RecentTeamSessionsRequestParams) GetTopSessions() float64` - -GetTopSessions returns the TopSessions field if non-nil, zero value otherwise. - -### GetTopSessionsOk - -`func (o *RecentTeamSessionsRequestParams) GetTopSessionsOk() (*float64, bool)` - -GetTopSessionsOk returns a tuple with the TopSessions field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetTopSessions - -`func (o *RecentTeamSessionsRequestParams) SetTopSessions(v float64)` - -SetTopSessions sets TopSessions field to given value. - - -### GetProjectId - -`func (o *RecentTeamSessionsRequestParams) GetProjectId() string` - -GetProjectId returns the ProjectId field if non-nil, zero value otherwise. - -### GetProjectIdOk - -`func (o *RecentTeamSessionsRequestParams) GetProjectIdOk() (*string, bool)` - -GetProjectIdOk returns a tuple with the ProjectId field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetProjectId - -`func (o *RecentTeamSessionsRequestParams) SetProjectId(v string)` - -SetProjectId sets ProjectId field to given value. - - - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/pkg/tensorleapapi/docs/RocConfusionMatrixParams.md b/pkg/tensorleapapi/docs/RocConfusionMatrixParams.md index fe757e120..388d5d994 100644 --- a/pkg/tensorleapapi/docs/RocConfusionMatrixParams.md +++ b/pkg/tensorleapapi/docs/RocConfusionMatrixParams.md @@ -4,7 +4,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**SessionRunsToEpochs** | [**[]SessionRunToEpoch**](SessionRunToEpoch.md) | | +**InferenceArtifactIds** | **[]string** | | **ProjectId** | **string** | | **CustomMetricName** | **string** | | **VerticalSplit** | Pointer to [**SplitAgg**](SplitAgg.md) | | [optional] @@ -17,7 +17,7 @@ Name | Type | Description | Notes ### NewRocConfusionMatrixParams -`func NewRocConfusionMatrixParams(sessionRunsToEpochs []SessionRunToEpoch, projectId string, customMetricName string, ) *RocConfusionMatrixParams` +`func NewRocConfusionMatrixParams(inferenceArtifactIds []string, projectId string, customMetricName string, ) *RocConfusionMatrixParams` NewRocConfusionMatrixParams instantiates a new RocConfusionMatrixParams object This constructor will assign default values to properties that have it defined, @@ -32,24 +32,24 @@ NewRocConfusionMatrixParamsWithDefaults instantiates a new RocConfusionMatrixPar This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set -### GetSessionRunsToEpochs +### GetInferenceArtifactIds -`func (o *RocConfusionMatrixParams) GetSessionRunsToEpochs() []SessionRunToEpoch` +`func (o *RocConfusionMatrixParams) GetInferenceArtifactIds() []string` -GetSessionRunsToEpochs returns the SessionRunsToEpochs field if non-nil, zero value otherwise. +GetInferenceArtifactIds returns the InferenceArtifactIds field if non-nil, zero value otherwise. -### GetSessionRunsToEpochsOk +### GetInferenceArtifactIdsOk -`func (o *RocConfusionMatrixParams) GetSessionRunsToEpochsOk() (*[]SessionRunToEpoch, bool)` +`func (o *RocConfusionMatrixParams) GetInferenceArtifactIdsOk() (*[]string, bool)` -GetSessionRunsToEpochsOk returns a tuple with the SessionRunsToEpochs field if it's non-nil, zero value otherwise +GetInferenceArtifactIdsOk returns a tuple with the InferenceArtifactIds field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunsToEpochs +### SetInferenceArtifactIds -`func (o *RocConfusionMatrixParams) SetSessionRunsToEpochs(v []SessionRunToEpoch)` +`func (o *RocConfusionMatrixParams) SetInferenceArtifactIds(v []string)` -SetSessionRunsToEpochs sets SessionRunsToEpochs field to given value. +SetInferenceArtifactIds sets InferenceArtifactIds field to given value. ### GetProjectId diff --git a/pkg/tensorleapapi/docs/RunProcess.md b/pkg/tensorleapapi/docs/RunProcess.md index 5c47e6f73..23bb7a9ef 100644 --- a/pkg/tensorleapapi/docs/RunProcess.md +++ b/pkg/tensorleapapi/docs/RunProcess.md @@ -15,15 +15,13 @@ Name | Type | Description | Notes **Status** | [**JobStatus**](JobStatus.md) | | **CreatedAt** | **string** | | **UpdatedAt** | **string** | | -**SessionName** | Pointer to **string** | | [optional] -**SessionRunName** | Pointer to **string** | | [optional] -**SessionRunId** | Pointer to **string** | | [optional] **Events** | [**[]JobEvent**](JobEvent.md) | | **Params** | Pointer to [**JobParams**](JobParams.md) | | [optional] **MachineType** | Pointer to **string** | | [optional] **BatchSize** | Pointer to **float64** | | [optional] **CodeSnapshotInfo** | Pointer to [**CodeSnapshotInfo**](CodeSnapshotInfo.md) | | [optional] **LogsBlobName** | Pointer to **string** | | [optional] +**Notifications** | Pointer to [**[]Notification**](Notification.md) | | [optional] ## Methods @@ -289,81 +287,6 @@ and a boolean to check if the value has been set. SetUpdatedAt sets UpdatedAt field to given value. -### GetSessionName - -`func (o *RunProcess) GetSessionName() string` - -GetSessionName returns the SessionName field if non-nil, zero value otherwise. - -### GetSessionNameOk - -`func (o *RunProcess) GetSessionNameOk() (*string, bool)` - -GetSessionNameOk returns a tuple with the SessionName field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetSessionName - -`func (o *RunProcess) SetSessionName(v string)` - -SetSessionName sets SessionName field to given value. - -### HasSessionName - -`func (o *RunProcess) HasSessionName() bool` - -HasSessionName returns a boolean if a field has been set. - -### GetSessionRunName - -`func (o *RunProcess) GetSessionRunName() string` - -GetSessionRunName returns the SessionRunName field if non-nil, zero value otherwise. - -### GetSessionRunNameOk - -`func (o *RunProcess) GetSessionRunNameOk() (*string, bool)` - -GetSessionRunNameOk returns a tuple with the SessionRunName field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetSessionRunName - -`func (o *RunProcess) SetSessionRunName(v string)` - -SetSessionRunName sets SessionRunName field to given value. - -### HasSessionRunName - -`func (o *RunProcess) HasSessionRunName() bool` - -HasSessionRunName returns a boolean if a field has been set. - -### GetSessionRunId - -`func (o *RunProcess) GetSessionRunId() string` - -GetSessionRunId returns the SessionRunId field if non-nil, zero value otherwise. - -### GetSessionRunIdOk - -`func (o *RunProcess) GetSessionRunIdOk() (*string, bool)` - -GetSessionRunIdOk returns a tuple with the SessionRunId field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetSessionRunId - -`func (o *RunProcess) SetSessionRunId(v string)` - -SetSessionRunId sets SessionRunId field to given value. - -### HasSessionRunId - -`func (o *RunProcess) HasSessionRunId() bool` - -HasSessionRunId returns a boolean if a field has been set. - ### GetEvents `func (o *RunProcess) GetEvents() []JobEvent` @@ -509,6 +432,31 @@ SetLogsBlobName sets LogsBlobName field to given value. HasLogsBlobName returns a boolean if a field has been set. +### GetNotifications + +`func (o *RunProcess) GetNotifications() []Notification` + +GetNotifications returns the Notifications field if non-nil, zero value otherwise. + +### GetNotificationsOk + +`func (o *RunProcess) GetNotificationsOk() (*[]Notification, bool)` + +GetNotificationsOk returns a tuple with the Notifications field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetNotifications + +`func (o *RunProcess) SetNotifications(v []Notification)` + +SetNotifications sets Notifications field to given value. + +### HasNotifications + +`func (o *RunProcess) HasNotifications() bool` + +HasNotifications returns a boolean if a field has been set. + [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/pkg/tensorleapapi/docs/SampleAnalysisParams.md b/pkg/tensorleapapi/docs/SampleAnalysisParams.md index a2874ed40..2da096252 100644 --- a/pkg/tensorleapapi/docs/SampleAnalysisParams.md +++ b/pkg/tensorleapapi/docs/SampleAnalysisParams.md @@ -4,17 +4,16 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**SessionRunId** | **string** | | +**VersionId** | **string** | | **ProjectId** | **string** | | **SampleIdentity** | [**SampleIdentity**](SampleIdentity.md) | | -**FromEpoch** | **float64** | | **Algo** | [**SampleAnalysisAlgo**](SampleAnalysisAlgo.md) | | ## Methods ### NewSampleAnalysisParams -`func NewSampleAnalysisParams(sessionRunId string, projectId string, sampleIdentity SampleIdentity, fromEpoch float64, algo SampleAnalysisAlgo, ) *SampleAnalysisParams` +`func NewSampleAnalysisParams(versionId string, projectId string, sampleIdentity SampleIdentity, algo SampleAnalysisAlgo, ) *SampleAnalysisParams` NewSampleAnalysisParams instantiates a new SampleAnalysisParams object This constructor will assign default values to properties that have it defined, @@ -29,24 +28,24 @@ NewSampleAnalysisParamsWithDefaults instantiates a new SampleAnalysisParams obje This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set -### GetSessionRunId +### GetVersionId -`func (o *SampleAnalysisParams) GetSessionRunId() string` +`func (o *SampleAnalysisParams) GetVersionId() string` -GetSessionRunId returns the SessionRunId field if non-nil, zero value otherwise. +GetVersionId returns the VersionId field if non-nil, zero value otherwise. -### GetSessionRunIdOk +### GetVersionIdOk -`func (o *SampleAnalysisParams) GetSessionRunIdOk() (*string, bool)` +`func (o *SampleAnalysisParams) GetVersionIdOk() (*string, bool)` -GetSessionRunIdOk returns a tuple with the SessionRunId field if it's non-nil, zero value otherwise +GetVersionIdOk returns a tuple with the VersionId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunId +### SetVersionId -`func (o *SampleAnalysisParams) SetSessionRunId(v string)` +`func (o *SampleAnalysisParams) SetVersionId(v string)` -SetSessionRunId sets SessionRunId field to given value. +SetVersionId sets VersionId field to given value. ### GetProjectId @@ -89,26 +88,6 @@ and a boolean to check if the value has been set. SetSampleIdentity sets SampleIdentity field to given value. -### GetFromEpoch - -`func (o *SampleAnalysisParams) GetFromEpoch() float64` - -GetFromEpoch returns the FromEpoch field if non-nil, zero value otherwise. - -### GetFromEpochOk - -`func (o *SampleAnalysisParams) GetFromEpochOk() (*float64, bool)` - -GetFromEpochOk returns a tuple with the FromEpoch field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetFromEpoch - -`func (o *SampleAnalysisParams) SetFromEpoch(v float64)` - -SetFromEpoch sets FromEpoch field to given value. - - ### GetAlgo `func (o *SampleAnalysisParams) GetAlgo() SampleAnalysisAlgo` diff --git a/pkg/tensorleapapi/docs/SamplesVisualizationsRefreshParams.md b/pkg/tensorleapapi/docs/SamplesVisualizationsRefreshParams.md index 2ef2b745a..3313b20aa 100644 --- a/pkg/tensorleapapi/docs/SamplesVisualizationsRefreshParams.md +++ b/pkg/tensorleapapi/docs/SamplesVisualizationsRefreshParams.md @@ -5,13 +5,13 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **ProjectId** | **string** | | -**SessionRunId** | **string** | | +**VersionId** | **string** | | ## Methods ### NewSamplesVisualizationsRefreshParams -`func NewSamplesVisualizationsRefreshParams(projectId string, sessionRunId string, ) *SamplesVisualizationsRefreshParams` +`func NewSamplesVisualizationsRefreshParams(projectId string, versionId string, ) *SamplesVisualizationsRefreshParams` NewSamplesVisualizationsRefreshParams instantiates a new SamplesVisualizationsRefreshParams object This constructor will assign default values to properties that have it defined, @@ -46,24 +46,24 @@ and a boolean to check if the value has been set. SetProjectId sets ProjectId field to given value. -### GetSessionRunId +### GetVersionId -`func (o *SamplesVisualizationsRefreshParams) GetSessionRunId() string` +`func (o *SamplesVisualizationsRefreshParams) GetVersionId() string` -GetSessionRunId returns the SessionRunId field if non-nil, zero value otherwise. +GetVersionId returns the VersionId field if non-nil, zero value otherwise. -### GetSessionRunIdOk +### GetVersionIdOk -`func (o *SamplesVisualizationsRefreshParams) GetSessionRunIdOk() (*string, bool)` +`func (o *SamplesVisualizationsRefreshParams) GetVersionIdOk() (*string, bool)` -GetSessionRunIdOk returns a tuple with the SessionRunId field if it's non-nil, zero value otherwise +GetVersionIdOk returns a tuple with the VersionId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunId +### SetVersionId -`func (o *SamplesVisualizationsRefreshParams) SetSessionRunId(v string)` +`func (o *SamplesVisualizationsRefreshParams) SetVersionId(v string)` -SetSessionRunId sets SessionRunId field to given value. +SetVersionId sets VersionId field to given value. diff --git a/pkg/tensorleapapi/docs/ScatterInsightBase.md b/pkg/tensorleapapi/docs/ScatterInsightBase.md index c7bec9e53..add402843 100644 --- a/pkg/tensorleapapi/docs/ScatterInsightBase.md +++ b/pkg/tensorleapapi/docs/ScatterInsightBase.md @@ -19,6 +19,7 @@ Name | Type | Description | Notes **AutomaticTests** | Pointer to [**[]InsightAutomaticTest**](InsightAutomaticTest.md) | | [optional] **AutoGenerated** | **bool** | | **EsFiltersUsedInAnalysis** | Pointer to [**[]ESFilter**](ESFilter.md) | | [optional] +**LatentSpace** | Pointer to **string** | | [optional] ## Methods @@ -364,6 +365,31 @@ SetEsFiltersUsedInAnalysis sets EsFiltersUsedInAnalysis field to given value. HasEsFiltersUsedInAnalysis returns a boolean if a field has been set. +### GetLatentSpace + +`func (o *ScatterInsightBase) GetLatentSpace() string` + +GetLatentSpace returns the LatentSpace field if non-nil, zero value otherwise. + +### GetLatentSpaceOk + +`func (o *ScatterInsightBase) GetLatentSpaceOk() (*string, bool)` + +GetLatentSpaceOk returns a tuple with the LatentSpace field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetLatentSpace + +`func (o *ScatterInsightBase) SetLatentSpace(v string)` + +SetLatentSpace sets LatentSpace field to given value. + +### HasLatentSpace + +`func (o *ScatterInsightBase) HasLatentSpace() bool` + +HasLatentSpace returns a boolean if a field has been set. + [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/pkg/tensorleapapi/docs/ScatterVizDataState.md b/pkg/tensorleapapi/docs/ScatterVizDataState.md index 516de7d7d..32fc0980e 100644 --- a/pkg/tensorleapapi/docs/ScatterVizDataState.md +++ b/pkg/tensorleapapi/docs/ScatterVizDataState.md @@ -12,6 +12,7 @@ Name | Type | Description | Notes **ClustersBlobPath** | Pointer to **map[string]interface{}** | Construct a type with a set of properties K of type T | [optional] **DomainGapDist** | Pointer to **map[string]interface{}** | Construct a type with a set of properties K of type T | [optional] **HiddenMetadataKeys** | Pointer to **[]string** | | [optional] +**AvailableLatentSpaces** | Pointer to **[]string** | | [optional] ## Methods @@ -217,6 +218,31 @@ SetHiddenMetadataKeys sets HiddenMetadataKeys field to given value. HasHiddenMetadataKeys returns a boolean if a field has been set. +### GetAvailableLatentSpaces + +`func (o *ScatterVizDataState) GetAvailableLatentSpaces() []string` + +GetAvailableLatentSpaces returns the AvailableLatentSpaces field if non-nil, zero value otherwise. + +### GetAvailableLatentSpacesOk + +`func (o *ScatterVizDataState) GetAvailableLatentSpacesOk() (*[]string, bool)` + +GetAvailableLatentSpacesOk returns a tuple with the AvailableLatentSpaces field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetAvailableLatentSpaces + +`func (o *ScatterVizDataState) SetAvailableLatentSpaces(v []string)` + +SetAvailableLatentSpaces sets AvailableLatentSpaces field to given value. + +### HasAvailableLatentSpaces + +`func (o *ScatterVizDataState) HasAvailableLatentSpaces() bool` + +HasAvailableLatentSpaces returns a boolean if a field has been set. + [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/pkg/tensorleapapi/docs/Session.md b/pkg/tensorleapapi/docs/Session.md deleted file mode 100644 index cc9a7d89d..000000000 --- a/pkg/tensorleapapi/docs/Session.md +++ /dev/null @@ -1,348 +0,0 @@ -# Session - -## Properties - -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**ProjectId** | **string** | | -**Cid** | **string** | | -**ExtId** | Pointer to **string** | | [optional] -**ModelName** | **string** | | -**CreatedAt** | **time.Time** | | -**CreatedBy** | Pointer to **string** | | [optional] -**TeamId** | **string** | | -**Hash** | Pointer to **NullableString** | | [optional] -**TrainingParams** | Pointer to [**TrainingParams**](TrainingParams.md) | | [optional] -**SessionRuns** | Pointer to [**[]SessionRunData**](SessionRunData.md) | | [optional] -**SessionWeights** | Pointer to [**[]SessionWeightData**](SessionWeightData.md) | | [optional] -**Properties** | Pointer to **map[string]interface{}** | Construct a type with a set of properties K of type T | [optional] -**HasExternalEpoch** | **bool** | | - -## Methods - -### NewSession - -`func NewSession(projectId string, cid string, modelName string, createdAt time.Time, teamId string, hasExternalEpoch bool, ) *Session` - -NewSession instantiates a new Session object -This constructor will assign default values to properties that have it defined, -and makes sure properties required by API are set, but the set of arguments -will change when the set of required properties is changed - -### NewSessionWithDefaults - -`func NewSessionWithDefaults() *Session` - -NewSessionWithDefaults instantiates a new Session object -This constructor will only assign default values to properties that have it defined, -but it doesn't guarantee that properties required by API are set - -### GetProjectId - -`func (o *Session) GetProjectId() string` - -GetProjectId returns the ProjectId field if non-nil, zero value otherwise. - -### GetProjectIdOk - -`func (o *Session) GetProjectIdOk() (*string, bool)` - -GetProjectIdOk returns a tuple with the ProjectId field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetProjectId - -`func (o *Session) SetProjectId(v string)` - -SetProjectId sets ProjectId field to given value. - - -### GetCid - -`func (o *Session) GetCid() string` - -GetCid returns the Cid field if non-nil, zero value otherwise. - -### GetCidOk - -`func (o *Session) GetCidOk() (*string, bool)` - -GetCidOk returns a tuple with the Cid field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetCid - -`func (o *Session) SetCid(v string)` - -SetCid sets Cid field to given value. - - -### GetExtId - -`func (o *Session) GetExtId() string` - -GetExtId returns the ExtId field if non-nil, zero value otherwise. - -### GetExtIdOk - -`func (o *Session) GetExtIdOk() (*string, bool)` - -GetExtIdOk returns a tuple with the ExtId field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetExtId - -`func (o *Session) SetExtId(v string)` - -SetExtId sets ExtId field to given value. - -### HasExtId - -`func (o *Session) HasExtId() bool` - -HasExtId returns a boolean if a field has been set. - -### GetModelName - -`func (o *Session) GetModelName() string` - -GetModelName returns the ModelName field if non-nil, zero value otherwise. - -### GetModelNameOk - -`func (o *Session) GetModelNameOk() (*string, bool)` - -GetModelNameOk returns a tuple with the ModelName field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetModelName - -`func (o *Session) SetModelName(v string)` - -SetModelName sets ModelName field to given value. - - -### GetCreatedAt - -`func (o *Session) GetCreatedAt() time.Time` - -GetCreatedAt returns the CreatedAt field if non-nil, zero value otherwise. - -### GetCreatedAtOk - -`func (o *Session) GetCreatedAtOk() (*time.Time, bool)` - -GetCreatedAtOk returns a tuple with the CreatedAt field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetCreatedAt - -`func (o *Session) SetCreatedAt(v time.Time)` - -SetCreatedAt sets CreatedAt field to given value. - - -### GetCreatedBy - -`func (o *Session) GetCreatedBy() string` - -GetCreatedBy returns the CreatedBy field if non-nil, zero value otherwise. - -### GetCreatedByOk - -`func (o *Session) GetCreatedByOk() (*string, bool)` - -GetCreatedByOk returns a tuple with the CreatedBy field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetCreatedBy - -`func (o *Session) SetCreatedBy(v string)` - -SetCreatedBy sets CreatedBy field to given value. - -### HasCreatedBy - -`func (o *Session) HasCreatedBy() bool` - -HasCreatedBy returns a boolean if a field has been set. - -### GetTeamId - -`func (o *Session) GetTeamId() string` - -GetTeamId returns the TeamId field if non-nil, zero value otherwise. - -### GetTeamIdOk - -`func (o *Session) GetTeamIdOk() (*string, bool)` - -GetTeamIdOk returns a tuple with the TeamId field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetTeamId - -`func (o *Session) SetTeamId(v string)` - -SetTeamId sets TeamId field to given value. - - -### GetHash - -`func (o *Session) GetHash() string` - -GetHash returns the Hash field if non-nil, zero value otherwise. - -### GetHashOk - -`func (o *Session) GetHashOk() (*string, bool)` - -GetHashOk returns a tuple with the Hash field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetHash - -`func (o *Session) SetHash(v string)` - -SetHash sets Hash field to given value. - -### HasHash - -`func (o *Session) HasHash() bool` - -HasHash returns a boolean if a field has been set. - -### SetHashNil - -`func (o *Session) SetHashNil(b bool)` - - SetHashNil sets the value for Hash to be an explicit nil - -### UnsetHash -`func (o *Session) UnsetHash()` - -UnsetHash ensures that no value is present for Hash, not even an explicit nil -### GetTrainingParams - -`func (o *Session) GetTrainingParams() TrainingParams` - -GetTrainingParams returns the TrainingParams field if non-nil, zero value otherwise. - -### GetTrainingParamsOk - -`func (o *Session) GetTrainingParamsOk() (*TrainingParams, bool)` - -GetTrainingParamsOk returns a tuple with the TrainingParams field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetTrainingParams - -`func (o *Session) SetTrainingParams(v TrainingParams)` - -SetTrainingParams sets TrainingParams field to given value. - -### HasTrainingParams - -`func (o *Session) HasTrainingParams() bool` - -HasTrainingParams returns a boolean if a field has been set. - -### GetSessionRuns - -`func (o *Session) GetSessionRuns() []SessionRunData` - -GetSessionRuns returns the SessionRuns field if non-nil, zero value otherwise. - -### GetSessionRunsOk - -`func (o *Session) GetSessionRunsOk() (*[]SessionRunData, bool)` - -GetSessionRunsOk returns a tuple with the SessionRuns field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetSessionRuns - -`func (o *Session) SetSessionRuns(v []SessionRunData)` - -SetSessionRuns sets SessionRuns field to given value. - -### HasSessionRuns - -`func (o *Session) HasSessionRuns() bool` - -HasSessionRuns returns a boolean if a field has been set. - -### GetSessionWeights - -`func (o *Session) GetSessionWeights() []SessionWeightData` - -GetSessionWeights returns the SessionWeights field if non-nil, zero value otherwise. - -### GetSessionWeightsOk - -`func (o *Session) GetSessionWeightsOk() (*[]SessionWeightData, bool)` - -GetSessionWeightsOk returns a tuple with the SessionWeights field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetSessionWeights - -`func (o *Session) SetSessionWeights(v []SessionWeightData)` - -SetSessionWeights sets SessionWeights field to given value. - -### HasSessionWeights - -`func (o *Session) HasSessionWeights() bool` - -HasSessionWeights returns a boolean if a field has been set. - -### GetProperties - -`func (o *Session) GetProperties() map[string]interface{}` - -GetProperties returns the Properties field if non-nil, zero value otherwise. - -### GetPropertiesOk - -`func (o *Session) GetPropertiesOk() (*map[string]interface{}, bool)` - -GetPropertiesOk returns a tuple with the Properties field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetProperties - -`func (o *Session) SetProperties(v map[string]interface{})` - -SetProperties sets Properties field to given value. - -### HasProperties - -`func (o *Session) HasProperties() bool` - -HasProperties returns a boolean if a field has been set. - -### GetHasExternalEpoch - -`func (o *Session) GetHasExternalEpoch() bool` - -GetHasExternalEpoch returns the HasExternalEpoch field if non-nil, zero value otherwise. - -### GetHasExternalEpochOk - -`func (o *Session) GetHasExternalEpochOk() (*bool, bool)` - -GetHasExternalEpochOk returns a tuple with the HasExternalEpoch field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetHasExternalEpoch - -`func (o *Session) SetHasExternalEpoch(v bool)` - -SetHasExternalEpoch sets HasExternalEpoch field to given value. - - - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/pkg/tensorleapapi/docs/SessionHashRequestParams.md b/pkg/tensorleapapi/docs/SessionHashRequestParams.md deleted file mode 100644 index a77da9fa5..000000000 --- a/pkg/tensorleapapi/docs/SessionHashRequestParams.md +++ /dev/null @@ -1,72 +0,0 @@ -# SessionHashRequestParams - -## Properties - -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**Hash** | **string** | | -**ProjectId** | **string** | | - -## Methods - -### NewSessionHashRequestParams - -`func NewSessionHashRequestParams(hash string, projectId string, ) *SessionHashRequestParams` - -NewSessionHashRequestParams instantiates a new SessionHashRequestParams object -This constructor will assign default values to properties that have it defined, -and makes sure properties required by API are set, but the set of arguments -will change when the set of required properties is changed - -### NewSessionHashRequestParamsWithDefaults - -`func NewSessionHashRequestParamsWithDefaults() *SessionHashRequestParams` - -NewSessionHashRequestParamsWithDefaults instantiates a new SessionHashRequestParams object -This constructor will only assign default values to properties that have it defined, -but it doesn't guarantee that properties required by API are set - -### GetHash - -`func (o *SessionHashRequestParams) GetHash() string` - -GetHash returns the Hash field if non-nil, zero value otherwise. - -### GetHashOk - -`func (o *SessionHashRequestParams) GetHashOk() (*string, bool)` - -GetHashOk returns a tuple with the Hash field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetHash - -`func (o *SessionHashRequestParams) SetHash(v string)` - -SetHash sets Hash field to given value. - - -### GetProjectId - -`func (o *SessionHashRequestParams) GetProjectId() string` - -GetProjectId returns the ProjectId field if non-nil, zero value otherwise. - -### GetProjectIdOk - -`func (o *SessionHashRequestParams) GetProjectIdOk() (*string, bool)` - -GetProjectIdOk returns a tuple with the ProjectId field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetProjectId - -`func (o *SessionHashRequestParams) SetProjectId(v string)` - -SetProjectId sets ProjectId field to given value. - - - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/pkg/tensorleapapi/docs/SessionPopulatedJob.md b/pkg/tensorleapapi/docs/SessionPopulatedJob.md deleted file mode 100644 index bcc92402e..000000000 --- a/pkg/tensorleapapi/docs/SessionPopulatedJob.md +++ /dev/null @@ -1,280 +0,0 @@ -# SessionPopulatedJob - -## Properties - -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**Cid** | **string** | | -**ExtId** | Pointer to **string** | | [optional] -**ModelName** | **string** | | -**CreatedAt** | **time.Time** | | -**CreatedBy** | Pointer to **string** | | [optional] -**TeamId** | **string** | | -**Hash** | Pointer to **NullableString** | | [optional] -**TrainingParams** | Pointer to [**TrainingParams**](TrainingParams.md) | | [optional] -**SessionRuns** | Pointer to [**[]SessionRunData**](SessionRunData.md) | | [optional] -**SessionWeights** | Pointer to [**[]SessionWeightData**](SessionWeightData.md) | | [optional] - -## Methods - -### NewSessionPopulatedJob - -`func NewSessionPopulatedJob(cid string, modelName string, createdAt time.Time, teamId string, ) *SessionPopulatedJob` - -NewSessionPopulatedJob instantiates a new SessionPopulatedJob object -This constructor will assign default values to properties that have it defined, -and makes sure properties required by API are set, but the set of arguments -will change when the set of required properties is changed - -### NewSessionPopulatedJobWithDefaults - -`func NewSessionPopulatedJobWithDefaults() *SessionPopulatedJob` - -NewSessionPopulatedJobWithDefaults instantiates a new SessionPopulatedJob object -This constructor will only assign default values to properties that have it defined, -but it doesn't guarantee that properties required by API are set - -### GetCid - -`func (o *SessionPopulatedJob) GetCid() string` - -GetCid returns the Cid field if non-nil, zero value otherwise. - -### GetCidOk - -`func (o *SessionPopulatedJob) GetCidOk() (*string, bool)` - -GetCidOk returns a tuple with the Cid field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetCid - -`func (o *SessionPopulatedJob) SetCid(v string)` - -SetCid sets Cid field to given value. - - -### GetExtId - -`func (o *SessionPopulatedJob) GetExtId() string` - -GetExtId returns the ExtId field if non-nil, zero value otherwise. - -### GetExtIdOk - -`func (o *SessionPopulatedJob) GetExtIdOk() (*string, bool)` - -GetExtIdOk returns a tuple with the ExtId field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetExtId - -`func (o *SessionPopulatedJob) SetExtId(v string)` - -SetExtId sets ExtId field to given value. - -### HasExtId - -`func (o *SessionPopulatedJob) HasExtId() bool` - -HasExtId returns a boolean if a field has been set. - -### GetModelName - -`func (o *SessionPopulatedJob) GetModelName() string` - -GetModelName returns the ModelName field if non-nil, zero value otherwise. - -### GetModelNameOk - -`func (o *SessionPopulatedJob) GetModelNameOk() (*string, bool)` - -GetModelNameOk returns a tuple with the ModelName field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetModelName - -`func (o *SessionPopulatedJob) SetModelName(v string)` - -SetModelName sets ModelName field to given value. - - -### GetCreatedAt - -`func (o *SessionPopulatedJob) GetCreatedAt() time.Time` - -GetCreatedAt returns the CreatedAt field if non-nil, zero value otherwise. - -### GetCreatedAtOk - -`func (o *SessionPopulatedJob) GetCreatedAtOk() (*time.Time, bool)` - -GetCreatedAtOk returns a tuple with the CreatedAt field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetCreatedAt - -`func (o *SessionPopulatedJob) SetCreatedAt(v time.Time)` - -SetCreatedAt sets CreatedAt field to given value. - - -### GetCreatedBy - -`func (o *SessionPopulatedJob) GetCreatedBy() string` - -GetCreatedBy returns the CreatedBy field if non-nil, zero value otherwise. - -### GetCreatedByOk - -`func (o *SessionPopulatedJob) GetCreatedByOk() (*string, bool)` - -GetCreatedByOk returns a tuple with the CreatedBy field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetCreatedBy - -`func (o *SessionPopulatedJob) SetCreatedBy(v string)` - -SetCreatedBy sets CreatedBy field to given value. - -### HasCreatedBy - -`func (o *SessionPopulatedJob) HasCreatedBy() bool` - -HasCreatedBy returns a boolean if a field has been set. - -### GetTeamId - -`func (o *SessionPopulatedJob) GetTeamId() string` - -GetTeamId returns the TeamId field if non-nil, zero value otherwise. - -### GetTeamIdOk - -`func (o *SessionPopulatedJob) GetTeamIdOk() (*string, bool)` - -GetTeamIdOk returns a tuple with the TeamId field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetTeamId - -`func (o *SessionPopulatedJob) SetTeamId(v string)` - -SetTeamId sets TeamId field to given value. - - -### GetHash - -`func (o *SessionPopulatedJob) GetHash() string` - -GetHash returns the Hash field if non-nil, zero value otherwise. - -### GetHashOk - -`func (o *SessionPopulatedJob) GetHashOk() (*string, bool)` - -GetHashOk returns a tuple with the Hash field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetHash - -`func (o *SessionPopulatedJob) SetHash(v string)` - -SetHash sets Hash field to given value. - -### HasHash - -`func (o *SessionPopulatedJob) HasHash() bool` - -HasHash returns a boolean if a field has been set. - -### SetHashNil - -`func (o *SessionPopulatedJob) SetHashNil(b bool)` - - SetHashNil sets the value for Hash to be an explicit nil - -### UnsetHash -`func (o *SessionPopulatedJob) UnsetHash()` - -UnsetHash ensures that no value is present for Hash, not even an explicit nil -### GetTrainingParams - -`func (o *SessionPopulatedJob) GetTrainingParams() TrainingParams` - -GetTrainingParams returns the TrainingParams field if non-nil, zero value otherwise. - -### GetTrainingParamsOk - -`func (o *SessionPopulatedJob) GetTrainingParamsOk() (*TrainingParams, bool)` - -GetTrainingParamsOk returns a tuple with the TrainingParams field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetTrainingParams - -`func (o *SessionPopulatedJob) SetTrainingParams(v TrainingParams)` - -SetTrainingParams sets TrainingParams field to given value. - -### HasTrainingParams - -`func (o *SessionPopulatedJob) HasTrainingParams() bool` - -HasTrainingParams returns a boolean if a field has been set. - -### GetSessionRuns - -`func (o *SessionPopulatedJob) GetSessionRuns() []SessionRunData` - -GetSessionRuns returns the SessionRuns field if non-nil, zero value otherwise. - -### GetSessionRunsOk - -`func (o *SessionPopulatedJob) GetSessionRunsOk() (*[]SessionRunData, bool)` - -GetSessionRunsOk returns a tuple with the SessionRuns field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetSessionRuns - -`func (o *SessionPopulatedJob) SetSessionRuns(v []SessionRunData)` - -SetSessionRuns sets SessionRuns field to given value. - -### HasSessionRuns - -`func (o *SessionPopulatedJob) HasSessionRuns() bool` - -HasSessionRuns returns a boolean if a field has been set. - -### GetSessionWeights - -`func (o *SessionPopulatedJob) GetSessionWeights() []SessionWeightData` - -GetSessionWeights returns the SessionWeights field if non-nil, zero value otherwise. - -### GetSessionWeightsOk - -`func (o *SessionPopulatedJob) GetSessionWeightsOk() (*[]SessionWeightData, bool)` - -GetSessionWeightsOk returns a tuple with the SessionWeights field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetSessionWeights - -`func (o *SessionPopulatedJob) SetSessionWeights(v []SessionWeightData)` - -SetSessionWeights sets SessionWeights field to given value. - -### HasSessionWeights - -`func (o *SessionPopulatedJob) HasSessionWeights() bool` - -HasSessionWeights returns a boolean if a field has been set. - - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/pkg/tensorleapapi/docs/SessionRunData.md b/pkg/tensorleapapi/docs/SessionRunData.md deleted file mode 100644 index d5a85b403..000000000 --- a/pkg/tensorleapapi/docs/SessionRunData.md +++ /dev/null @@ -1,339 +0,0 @@ -# SessionRunData - -## Properties - -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**ProjectId** | **string** | | -**Cid** | **string** | | -**SessionId** | **string** | | -**Name** | **string** | | -**TeamId** | **string** | | -**IsEvaluate** | **bool** | | -**CreatedAt** | **time.Time** | | -**CreatedBy** | **string** | | -**WeightAssets** | [**[]WeightAssetData**](WeightAssetData.md) | | -**Jobs** | [**[]Job**](Job.md) | | -**Description** | **string** | | -**EvaluateParams** | Pointer to [**SessionRunEvaluateParams**](SessionRunEvaluateParams.md) | | [optional] -**CanContinueEvaluate** | Pointer to **bool** | | [optional] -**CsvBlobPath** | Pointer to **string** | | [optional] - -## Methods - -### NewSessionRunData - -`func NewSessionRunData(projectId string, cid string, sessionId string, name string, teamId string, isEvaluate bool, createdAt time.Time, createdBy string, weightAssets []WeightAssetData, jobs []Job, description string, ) *SessionRunData` - -NewSessionRunData instantiates a new SessionRunData object -This constructor will assign default values to properties that have it defined, -and makes sure properties required by API are set, but the set of arguments -will change when the set of required properties is changed - -### NewSessionRunDataWithDefaults - -`func NewSessionRunDataWithDefaults() *SessionRunData` - -NewSessionRunDataWithDefaults instantiates a new SessionRunData object -This constructor will only assign default values to properties that have it defined, -but it doesn't guarantee that properties required by API are set - -### GetProjectId - -`func (o *SessionRunData) GetProjectId() string` - -GetProjectId returns the ProjectId field if non-nil, zero value otherwise. - -### GetProjectIdOk - -`func (o *SessionRunData) GetProjectIdOk() (*string, bool)` - -GetProjectIdOk returns a tuple with the ProjectId field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetProjectId - -`func (o *SessionRunData) SetProjectId(v string)` - -SetProjectId sets ProjectId field to given value. - - -### GetCid - -`func (o *SessionRunData) GetCid() string` - -GetCid returns the Cid field if non-nil, zero value otherwise. - -### GetCidOk - -`func (o *SessionRunData) GetCidOk() (*string, bool)` - -GetCidOk returns a tuple with the Cid field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetCid - -`func (o *SessionRunData) SetCid(v string)` - -SetCid sets Cid field to given value. - - -### GetSessionId - -`func (o *SessionRunData) GetSessionId() string` - -GetSessionId returns the SessionId field if non-nil, zero value otherwise. - -### GetSessionIdOk - -`func (o *SessionRunData) GetSessionIdOk() (*string, bool)` - -GetSessionIdOk returns a tuple with the SessionId field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetSessionId - -`func (o *SessionRunData) SetSessionId(v string)` - -SetSessionId sets SessionId field to given value. - - -### GetName - -`func (o *SessionRunData) GetName() string` - -GetName returns the Name field if non-nil, zero value otherwise. - -### GetNameOk - -`func (o *SessionRunData) GetNameOk() (*string, bool)` - -GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetName - -`func (o *SessionRunData) SetName(v string)` - -SetName sets Name field to given value. - - -### GetTeamId - -`func (o *SessionRunData) GetTeamId() string` - -GetTeamId returns the TeamId field if non-nil, zero value otherwise. - -### GetTeamIdOk - -`func (o *SessionRunData) GetTeamIdOk() (*string, bool)` - -GetTeamIdOk returns a tuple with the TeamId field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetTeamId - -`func (o *SessionRunData) SetTeamId(v string)` - -SetTeamId sets TeamId field to given value. - - -### GetIsEvaluate - -`func (o *SessionRunData) GetIsEvaluate() bool` - -GetIsEvaluate returns the IsEvaluate field if non-nil, zero value otherwise. - -### GetIsEvaluateOk - -`func (o *SessionRunData) GetIsEvaluateOk() (*bool, bool)` - -GetIsEvaluateOk returns a tuple with the IsEvaluate field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetIsEvaluate - -`func (o *SessionRunData) SetIsEvaluate(v bool)` - -SetIsEvaluate sets IsEvaluate field to given value. - - -### GetCreatedAt - -`func (o *SessionRunData) GetCreatedAt() time.Time` - -GetCreatedAt returns the CreatedAt field if non-nil, zero value otherwise. - -### GetCreatedAtOk - -`func (o *SessionRunData) GetCreatedAtOk() (*time.Time, bool)` - -GetCreatedAtOk returns a tuple with the CreatedAt field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetCreatedAt - -`func (o *SessionRunData) SetCreatedAt(v time.Time)` - -SetCreatedAt sets CreatedAt field to given value. - - -### GetCreatedBy - -`func (o *SessionRunData) GetCreatedBy() string` - -GetCreatedBy returns the CreatedBy field if non-nil, zero value otherwise. - -### GetCreatedByOk - -`func (o *SessionRunData) GetCreatedByOk() (*string, bool)` - -GetCreatedByOk returns a tuple with the CreatedBy field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetCreatedBy - -`func (o *SessionRunData) SetCreatedBy(v string)` - -SetCreatedBy sets CreatedBy field to given value. - - -### GetWeightAssets - -`func (o *SessionRunData) GetWeightAssets() []WeightAssetData` - -GetWeightAssets returns the WeightAssets field if non-nil, zero value otherwise. - -### GetWeightAssetsOk - -`func (o *SessionRunData) GetWeightAssetsOk() (*[]WeightAssetData, bool)` - -GetWeightAssetsOk returns a tuple with the WeightAssets field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetWeightAssets - -`func (o *SessionRunData) SetWeightAssets(v []WeightAssetData)` - -SetWeightAssets sets WeightAssets field to given value. - - -### GetJobs - -`func (o *SessionRunData) GetJobs() []Job` - -GetJobs returns the Jobs field if non-nil, zero value otherwise. - -### GetJobsOk - -`func (o *SessionRunData) GetJobsOk() (*[]Job, bool)` - -GetJobsOk returns a tuple with the Jobs field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetJobs - -`func (o *SessionRunData) SetJobs(v []Job)` - -SetJobs sets Jobs field to given value. - - -### GetDescription - -`func (o *SessionRunData) GetDescription() string` - -GetDescription returns the Description field if non-nil, zero value otherwise. - -### GetDescriptionOk - -`func (o *SessionRunData) GetDescriptionOk() (*string, bool)` - -GetDescriptionOk returns a tuple with the Description field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetDescription - -`func (o *SessionRunData) SetDescription(v string)` - -SetDescription sets Description field to given value. - - -### GetEvaluateParams - -`func (o *SessionRunData) GetEvaluateParams() SessionRunEvaluateParams` - -GetEvaluateParams returns the EvaluateParams field if non-nil, zero value otherwise. - -### GetEvaluateParamsOk - -`func (o *SessionRunData) GetEvaluateParamsOk() (*SessionRunEvaluateParams, bool)` - -GetEvaluateParamsOk returns a tuple with the EvaluateParams field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetEvaluateParams - -`func (o *SessionRunData) SetEvaluateParams(v SessionRunEvaluateParams)` - -SetEvaluateParams sets EvaluateParams field to given value. - -### HasEvaluateParams - -`func (o *SessionRunData) HasEvaluateParams() bool` - -HasEvaluateParams returns a boolean if a field has been set. - -### GetCanContinueEvaluate - -`func (o *SessionRunData) GetCanContinueEvaluate() bool` - -GetCanContinueEvaluate returns the CanContinueEvaluate field if non-nil, zero value otherwise. - -### GetCanContinueEvaluateOk - -`func (o *SessionRunData) GetCanContinueEvaluateOk() (*bool, bool)` - -GetCanContinueEvaluateOk returns a tuple with the CanContinueEvaluate field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetCanContinueEvaluate - -`func (o *SessionRunData) SetCanContinueEvaluate(v bool)` - -SetCanContinueEvaluate sets CanContinueEvaluate field to given value. - -### HasCanContinueEvaluate - -`func (o *SessionRunData) HasCanContinueEvaluate() bool` - -HasCanContinueEvaluate returns a boolean if a field has been set. - -### GetCsvBlobPath - -`func (o *SessionRunData) GetCsvBlobPath() string` - -GetCsvBlobPath returns the CsvBlobPath field if non-nil, zero value otherwise. - -### GetCsvBlobPathOk - -`func (o *SessionRunData) GetCsvBlobPathOk() (*string, bool)` - -GetCsvBlobPathOk returns a tuple with the CsvBlobPath field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetCsvBlobPath - -`func (o *SessionRunData) SetCsvBlobPath(v string)` - -SetCsvBlobPath sets CsvBlobPath field to given value. - -### HasCsvBlobPath - -`func (o *SessionRunData) HasCsvBlobPath() bool` - -HasCsvBlobPath returns a boolean if a field has been set. - - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/pkg/tensorleapapi/docs/SessionRunToEpoch.md b/pkg/tensorleapapi/docs/SessionRunToEpoch.md deleted file mode 100644 index 3c384169a..000000000 --- a/pkg/tensorleapapi/docs/SessionRunToEpoch.md +++ /dev/null @@ -1,72 +0,0 @@ -# SessionRunToEpoch - -## Properties - -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**SessionRunId** | **string** | | -**Epoch** | **float64** | | - -## Methods - -### NewSessionRunToEpoch - -`func NewSessionRunToEpoch(sessionRunId string, epoch float64, ) *SessionRunToEpoch` - -NewSessionRunToEpoch instantiates a new SessionRunToEpoch object -This constructor will assign default values to properties that have it defined, -and makes sure properties required by API are set, but the set of arguments -will change when the set of required properties is changed - -### NewSessionRunToEpochWithDefaults - -`func NewSessionRunToEpochWithDefaults() *SessionRunToEpoch` - -NewSessionRunToEpochWithDefaults instantiates a new SessionRunToEpoch object -This constructor will only assign default values to properties that have it defined, -but it doesn't guarantee that properties required by API are set - -### GetSessionRunId - -`func (o *SessionRunToEpoch) GetSessionRunId() string` - -GetSessionRunId returns the SessionRunId field if non-nil, zero value otherwise. - -### GetSessionRunIdOk - -`func (o *SessionRunToEpoch) GetSessionRunIdOk() (*string, bool)` - -GetSessionRunIdOk returns a tuple with the SessionRunId field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetSessionRunId - -`func (o *SessionRunToEpoch) SetSessionRunId(v string)` - -SetSessionRunId sets SessionRunId field to given value. - - -### GetEpoch - -`func (o *SessionRunToEpoch) GetEpoch() float64` - -GetEpoch returns the Epoch field if non-nil, zero value otherwise. - -### GetEpochOk - -`func (o *SessionRunToEpoch) GetEpochOk() (*float64, bool)` - -GetEpochOk returns a tuple with the Epoch field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetEpoch - -`func (o *SessionRunToEpoch) SetEpoch(v float64)` - -SetEpoch sets Epoch field to given value. - - - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/pkg/tensorleapapi/docs/SessionTestData.md b/pkg/tensorleapapi/docs/SessionTestData.md index 466908f9a..3b581c980 100644 --- a/pkg/tensorleapapi/docs/SessionTestData.md +++ b/pkg/tensorleapapi/docs/SessionTestData.md @@ -4,7 +4,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**SessionRunId** | **string** | | +**VersionId** | **string** | | **ProjectId** | **string** | | **Epoch** | **float64** | | @@ -12,7 +12,7 @@ Name | Type | Description | Notes ### NewSessionTestData -`func NewSessionTestData(sessionRunId string, projectId string, epoch float64, ) *SessionTestData` +`func NewSessionTestData(versionId string, projectId string, epoch float64, ) *SessionTestData` NewSessionTestData instantiates a new SessionTestData object This constructor will assign default values to properties that have it defined, @@ -27,24 +27,24 @@ NewSessionTestDataWithDefaults instantiates a new SessionTestData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set -### GetSessionRunId +### GetVersionId -`func (o *SessionTestData) GetSessionRunId() string` +`func (o *SessionTestData) GetVersionId() string` -GetSessionRunId returns the SessionRunId field if non-nil, zero value otherwise. +GetVersionId returns the VersionId field if non-nil, zero value otherwise. -### GetSessionRunIdOk +### GetVersionIdOk -`func (o *SessionTestData) GetSessionRunIdOk() (*string, bool)` +`func (o *SessionTestData) GetVersionIdOk() (*string, bool)` -GetSessionRunIdOk returns a tuple with the SessionRunId field if it's non-nil, zero value otherwise +GetVersionIdOk returns a tuple with the VersionId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunId +### SetVersionId -`func (o *SessionTestData) SetSessionRunId(v string)` +`func (o *SessionTestData) SetVersionId(v string)` -SetSessionRunId sets SessionRunId field to given value. +SetVersionId sets VersionId field to given value. ### GetProjectId diff --git a/pkg/tensorleapapi/docs/SessionTestResult.md b/pkg/tensorleapapi/docs/SessionTestResult.md index 28d692e4e..fd035f145 100644 --- a/pkg/tensorleapapi/docs/SessionTestResult.md +++ b/pkg/tensorleapapi/docs/SessionTestResult.md @@ -5,7 +5,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **TestSucceeded** | **bool** | | -**SessionRunId** | **string** | | +**VersionId** | **string** | | **Aggregation** | **float64** | | **SuccefullSamples** | **float64** | | **AllSamples** | **float64** | | @@ -16,7 +16,7 @@ Name | Type | Description | Notes ### NewSessionTestResult -`func NewSessionTestResult(testSucceeded bool, sessionRunId string, aggregation float64, succefullSamples float64, allSamples float64, epoch float64, queryStatus string, ) *SessionTestResult` +`func NewSessionTestResult(testSucceeded bool, versionId string, aggregation float64, succefullSamples float64, allSamples float64, epoch float64, queryStatus string, ) *SessionTestResult` NewSessionTestResult instantiates a new SessionTestResult object This constructor will assign default values to properties that have it defined, @@ -51,24 +51,24 @@ and a boolean to check if the value has been set. SetTestSucceeded sets TestSucceeded field to given value. -### GetSessionRunId +### GetVersionId -`func (o *SessionTestResult) GetSessionRunId() string` +`func (o *SessionTestResult) GetVersionId() string` -GetSessionRunId returns the SessionRunId field if non-nil, zero value otherwise. +GetVersionId returns the VersionId field if non-nil, zero value otherwise. -### GetSessionRunIdOk +### GetVersionIdOk -`func (o *SessionTestResult) GetSessionRunIdOk() (*string, bool)` +`func (o *SessionTestResult) GetVersionIdOk() (*string, bool)` -GetSessionRunIdOk returns a tuple with the SessionRunId field if it's non-nil, zero value otherwise +GetVersionIdOk returns a tuple with the VersionId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunId +### SetVersionId -`func (o *SessionTestResult) SetSessionRunId(v string)` +`func (o *SessionTestResult) SetVersionId(v string)` -SetSessionRunId sets SessionRunId field to given value. +SetVersionId sets VersionId field to given value. ### GetAggregation diff --git a/pkg/tensorleapapi/docs/SessionTestResultError.md b/pkg/tensorleapapi/docs/SessionTestResultError.md index 19df048ba..37ef05f80 100644 --- a/pkg/tensorleapapi/docs/SessionTestResultError.md +++ b/pkg/tensorleapapi/docs/SessionTestResultError.md @@ -4,14 +4,14 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**SessionRunId** | **string** | | +**VersionId** | **string** | | **QueryStatus** | **string** | | ## Methods ### NewSessionTestResultError -`func NewSessionTestResultError(sessionRunId string, queryStatus string, ) *SessionTestResultError` +`func NewSessionTestResultError(versionId string, queryStatus string, ) *SessionTestResultError` NewSessionTestResultError instantiates a new SessionTestResultError object This constructor will assign default values to properties that have it defined, @@ -26,24 +26,24 @@ NewSessionTestResultErrorWithDefaults instantiates a new SessionTestResultError This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set -### GetSessionRunId +### GetVersionId -`func (o *SessionTestResultError) GetSessionRunId() string` +`func (o *SessionTestResultError) GetVersionId() string` -GetSessionRunId returns the SessionRunId field if non-nil, zero value otherwise. +GetVersionId returns the VersionId field if non-nil, zero value otherwise. -### GetSessionRunIdOk +### GetVersionIdOk -`func (o *SessionTestResultError) GetSessionRunIdOk() (*string, bool)` +`func (o *SessionTestResultError) GetVersionIdOk() (*string, bool)` -GetSessionRunIdOk returns a tuple with the SessionRunId field if it's non-nil, zero value otherwise +GetVersionIdOk returns a tuple with the VersionId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunId +### SetVersionId -`func (o *SessionTestResultError) SetSessionRunId(v string)` +`func (o *SessionTestResultError) SetVersionId(v string)` -SetSessionRunId sets SessionRunId field to given value. +SetVersionId sets VersionId field to given value. ### GetQueryStatus diff --git a/pkg/tensorleapapi/docs/SessionTestResultNotFound.md b/pkg/tensorleapapi/docs/SessionTestResultNotFound.md index 535818d77..087921a9a 100644 --- a/pkg/tensorleapapi/docs/SessionTestResultNotFound.md +++ b/pkg/tensorleapapi/docs/SessionTestResultNotFound.md @@ -4,14 +4,14 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- -**SessionRunId** | **string** | | +**VersionId** | **string** | | **QueryStatus** | **string** | | ## Methods ### NewSessionTestResultNotFound -`func NewSessionTestResultNotFound(sessionRunId string, queryStatus string, ) *SessionTestResultNotFound` +`func NewSessionTestResultNotFound(versionId string, queryStatus string, ) *SessionTestResultNotFound` NewSessionTestResultNotFound instantiates a new SessionTestResultNotFound object This constructor will assign default values to properties that have it defined, @@ -26,24 +26,24 @@ NewSessionTestResultNotFoundWithDefaults instantiates a new SessionTestResultNot This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set -### GetSessionRunId +### GetVersionId -`func (o *SessionTestResultNotFound) GetSessionRunId() string` +`func (o *SessionTestResultNotFound) GetVersionId() string` -GetSessionRunId returns the SessionRunId field if non-nil, zero value otherwise. +GetVersionId returns the VersionId field if non-nil, zero value otherwise. -### GetSessionRunIdOk +### GetVersionIdOk -`func (o *SessionTestResultNotFound) GetSessionRunIdOk() (*string, bool)` +`func (o *SessionTestResultNotFound) GetVersionIdOk() (*string, bool)` -GetSessionRunIdOk returns a tuple with the SessionRunId field if it's non-nil, zero value otherwise +GetVersionIdOk returns a tuple with the VersionId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunId +### SetVersionId -`func (o *SessionTestResultNotFound) SetSessionRunId(v string)` +`func (o *SessionTestResultNotFound) SetVersionId(v string)` -SetSessionRunId sets SessionRunId field to given value. +SetVersionId sets VersionId field to given value. ### GetQueryStatus diff --git a/pkg/tensorleapapi/docs/SessionTestResultSuccess.md b/pkg/tensorleapapi/docs/SessionTestResultSuccess.md index 9f13d31a0..877046fa9 100644 --- a/pkg/tensorleapapi/docs/SessionTestResultSuccess.md +++ b/pkg/tensorleapapi/docs/SessionTestResultSuccess.md @@ -5,7 +5,7 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **TestSucceeded** | **bool** | | -**SessionRunId** | **string** | | +**VersionId** | **string** | | **Aggregation** | **float64** | | **SuccefullSamples** | **float64** | | **AllSamples** | **float64** | | @@ -16,7 +16,7 @@ Name | Type | Description | Notes ### NewSessionTestResultSuccess -`func NewSessionTestResultSuccess(testSucceeded bool, sessionRunId string, aggregation float64, succefullSamples float64, allSamples float64, epoch float64, queryStatus string, ) *SessionTestResultSuccess` +`func NewSessionTestResultSuccess(testSucceeded bool, versionId string, aggregation float64, succefullSamples float64, allSamples float64, epoch float64, queryStatus string, ) *SessionTestResultSuccess` NewSessionTestResultSuccess instantiates a new SessionTestResultSuccess object This constructor will assign default values to properties that have it defined, @@ -51,24 +51,24 @@ and a boolean to check if the value has been set. SetTestSucceeded sets TestSucceeded field to given value. -### GetSessionRunId +### GetVersionId -`func (o *SessionTestResultSuccess) GetSessionRunId() string` +`func (o *SessionTestResultSuccess) GetVersionId() string` -GetSessionRunId returns the SessionRunId field if non-nil, zero value otherwise. +GetVersionId returns the VersionId field if non-nil, zero value otherwise. -### GetSessionRunIdOk +### GetVersionIdOk -`func (o *SessionTestResultSuccess) GetSessionRunIdOk() (*string, bool)` +`func (o *SessionTestResultSuccess) GetVersionIdOk() (*string, bool)` -GetSessionRunIdOk returns a tuple with the SessionRunId field if it's non-nil, zero value otherwise +GetVersionIdOk returns a tuple with the VersionId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunId +### SetVersionId -`func (o *SessionTestResultSuccess) SetSessionRunId(v string)` +`func (o *SessionTestResultSuccess) SetVersionId(v string)` -SetSessionRunId sets SessionRunId field to given value. +SetVersionId sets VersionId field to given value. ### GetAggregation diff --git a/pkg/tensorleapapi/docs/SessionWeightData.md b/pkg/tensorleapapi/docs/SessionWeightData.md deleted file mode 100644 index c1925414e..000000000 --- a/pkg/tensorleapapi/docs/SessionWeightData.md +++ /dev/null @@ -1,198 +0,0 @@ -# SessionWeightData - -## Properties - -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**Cid** | **string** | | -**SessionId** | **string** | | -**Epoch** | **float64** | | -**GlobalStep** | **float64** | | -**Status** | [**StatusEnum**](StatusEnum.md) | | -**TeamId** | **string** | | -**CreatedAt** | **time.Time** | | -**CreatedBy** | **string** | | - -## Methods - -### NewSessionWeightData - -`func NewSessionWeightData(cid string, sessionId string, epoch float64, globalStep float64, status StatusEnum, teamId string, createdAt time.Time, createdBy string, ) *SessionWeightData` - -NewSessionWeightData instantiates a new SessionWeightData object -This constructor will assign default values to properties that have it defined, -and makes sure properties required by API are set, but the set of arguments -will change when the set of required properties is changed - -### NewSessionWeightDataWithDefaults - -`func NewSessionWeightDataWithDefaults() *SessionWeightData` - -NewSessionWeightDataWithDefaults instantiates a new SessionWeightData object -This constructor will only assign default values to properties that have it defined, -but it doesn't guarantee that properties required by API are set - -### GetCid - -`func (o *SessionWeightData) GetCid() string` - -GetCid returns the Cid field if non-nil, zero value otherwise. - -### GetCidOk - -`func (o *SessionWeightData) GetCidOk() (*string, bool)` - -GetCidOk returns a tuple with the Cid field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetCid - -`func (o *SessionWeightData) SetCid(v string)` - -SetCid sets Cid field to given value. - - -### GetSessionId - -`func (o *SessionWeightData) GetSessionId() string` - -GetSessionId returns the SessionId field if non-nil, zero value otherwise. - -### GetSessionIdOk - -`func (o *SessionWeightData) GetSessionIdOk() (*string, bool)` - -GetSessionIdOk returns a tuple with the SessionId field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetSessionId - -`func (o *SessionWeightData) SetSessionId(v string)` - -SetSessionId sets SessionId field to given value. - - -### GetEpoch - -`func (o *SessionWeightData) GetEpoch() float64` - -GetEpoch returns the Epoch field if non-nil, zero value otherwise. - -### GetEpochOk - -`func (o *SessionWeightData) GetEpochOk() (*float64, bool)` - -GetEpochOk returns a tuple with the Epoch field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetEpoch - -`func (o *SessionWeightData) SetEpoch(v float64)` - -SetEpoch sets Epoch field to given value. - - -### GetGlobalStep - -`func (o *SessionWeightData) GetGlobalStep() float64` - -GetGlobalStep returns the GlobalStep field if non-nil, zero value otherwise. - -### GetGlobalStepOk - -`func (o *SessionWeightData) GetGlobalStepOk() (*float64, bool)` - -GetGlobalStepOk returns a tuple with the GlobalStep field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetGlobalStep - -`func (o *SessionWeightData) SetGlobalStep(v float64)` - -SetGlobalStep sets GlobalStep field to given value. - - -### GetStatus - -`func (o *SessionWeightData) GetStatus() StatusEnum` - -GetStatus returns the Status field if non-nil, zero value otherwise. - -### GetStatusOk - -`func (o *SessionWeightData) GetStatusOk() (*StatusEnum, bool)` - -GetStatusOk returns a tuple with the Status field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetStatus - -`func (o *SessionWeightData) SetStatus(v StatusEnum)` - -SetStatus sets Status field to given value. - - -### GetTeamId - -`func (o *SessionWeightData) GetTeamId() string` - -GetTeamId returns the TeamId field if non-nil, zero value otherwise. - -### GetTeamIdOk - -`func (o *SessionWeightData) GetTeamIdOk() (*string, bool)` - -GetTeamIdOk returns a tuple with the TeamId field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetTeamId - -`func (o *SessionWeightData) SetTeamId(v string)` - -SetTeamId sets TeamId field to given value. - - -### GetCreatedAt - -`func (o *SessionWeightData) GetCreatedAt() time.Time` - -GetCreatedAt returns the CreatedAt field if non-nil, zero value otherwise. - -### GetCreatedAtOk - -`func (o *SessionWeightData) GetCreatedAtOk() (*time.Time, bool)` - -GetCreatedAtOk returns a tuple with the CreatedAt field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetCreatedAt - -`func (o *SessionWeightData) SetCreatedAt(v time.Time)` - -SetCreatedAt sets CreatedAt field to given value. - - -### GetCreatedBy - -`func (o *SessionWeightData) GetCreatedBy() string` - -GetCreatedBy returns the CreatedBy field if non-nil, zero value otherwise. - -### GetCreatedByOk - -`func (o *SessionWeightData) GetCreatedByOk() (*string, bool)` - -GetCreatedByOk returns a tuple with the CreatedBy field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetCreatedBy - -`func (o *SessionWeightData) SetCreatedBy(v string)` - -SetCreatedBy sets CreatedBy field to given value. - - - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/pkg/tensorleapapi/docs/SessionsResponse.md b/pkg/tensorleapapi/docs/SessionsResponse.md deleted file mode 100644 index 93487b972..000000000 --- a/pkg/tensorleapapi/docs/SessionsResponse.md +++ /dev/null @@ -1,51 +0,0 @@ -# SessionsResponse - -## Properties - -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**Sessions** | [**[]Session**](Session.md) | | - -## Methods - -### NewSessionsResponse - -`func NewSessionsResponse(sessions []Session, ) *SessionsResponse` - -NewSessionsResponse instantiates a new SessionsResponse object -This constructor will assign default values to properties that have it defined, -and makes sure properties required by API are set, but the set of arguments -will change when the set of required properties is changed - -### NewSessionsResponseWithDefaults - -`func NewSessionsResponseWithDefaults() *SessionsResponse` - -NewSessionsResponseWithDefaults instantiates a new SessionsResponse object -This constructor will only assign default values to properties that have it defined, -but it doesn't guarantee that properties required by API are set - -### GetSessions - -`func (o *SessionsResponse) GetSessions() []Session` - -GetSessions returns the Sessions field if non-nil, zero value otherwise. - -### GetSessionsOk - -`func (o *SessionsResponse) GetSessionsOk() (*[]Session, bool)` - -GetSessionsOk returns a tuple with the Sessions field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetSessions - -`func (o *SessionsResponse) SetSessions(v []Session)` - -SetSessions sets Sessions field to given value. - - - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/pkg/tensorleapapi/docs/SlimVersion.md b/pkg/tensorleapapi/docs/SlimVersion.md index d7a28362f..fddf9d310 100644 --- a/pkg/tensorleapapi/docs/SlimVersion.md +++ b/pkg/tensorleapapi/docs/SlimVersion.md @@ -15,14 +15,26 @@ Name | Type | Description | Notes **CodeSnapshotId** | Pointer to **string** | | [optional] **IsFavourite** | **bool** | | **Hash** | Pointer to **NullableString** | | [optional] -**Sessions** | [**[]Session**](Session.md) | | **GraphValidationData** | Pointer to [**GraphValidatorData**](GraphValidatorData.md) | | [optional] +**TeamId** | **string** | | +**Properties** | Pointer to **map[string]interface{}** | Construct a type with a set of properties K of type T | [optional] +**HasExternalEpoch** | **bool** | | +**IsEvaluate** | **bool** | | +**EvaluateParams** | Pointer to [**VersionEvaluateParams**](VersionEvaluateParams.md) | | [optional] +**CanContinueEvaluate** | Pointer to **bool** | | [optional] +**CsvBlobPath** | Pointer to **string** | | [optional] +**Jobs** | [**[]Job**](Job.md) | | +**ModelId** | Pointer to **string** | | [optional] +**VisArtifactId** | Pointer to **string** | | [optional] +**InferenceArtifactId** | Pointer to **string** | | [optional] +**EsMetricIndex** | Pointer to **string** | | [optional] +**EpochTags** | Pointer to **map[string]float64** | | [optional] ## Methods ### NewSlimVersion -`func NewSlimVersion(cid string, createdBy string, projectId string, branchName string, tags string, createdAt time.Time, updatedAt time.Time, notes string, isFavourite bool, sessions []Session, ) *SlimVersion` +`func NewSlimVersion(cid string, createdBy string, projectId string, branchName string, tags string, createdAt time.Time, updatedAt time.Time, notes string, isFavourite bool, teamId string, hasExternalEpoch bool, isEvaluate bool, jobs []Job, ) *SlimVersion` NewSlimVersion instantiates a new SlimVersion object This constructor will assign default values to properties that have it defined, @@ -277,26 +289,6 @@ HasHash returns a boolean if a field has been set. `func (o *SlimVersion) UnsetHash()` UnsetHash ensures that no value is present for Hash, not even an explicit nil -### GetSessions - -`func (o *SlimVersion) GetSessions() []Session` - -GetSessions returns the Sessions field if non-nil, zero value otherwise. - -### GetSessionsOk - -`func (o *SlimVersion) GetSessionsOk() (*[]Session, bool)` - -GetSessionsOk returns a tuple with the Sessions field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetSessions - -`func (o *SlimVersion) SetSessions(v []Session)` - -SetSessions sets Sessions field to given value. - - ### GetGraphValidationData `func (o *SlimVersion) GetGraphValidationData() GraphValidatorData` @@ -322,6 +314,311 @@ SetGraphValidationData sets GraphValidationData field to given value. HasGraphValidationData returns a boolean if a field has been set. +### GetTeamId + +`func (o *SlimVersion) GetTeamId() string` + +GetTeamId returns the TeamId field if non-nil, zero value otherwise. + +### GetTeamIdOk + +`func (o *SlimVersion) GetTeamIdOk() (*string, bool)` + +GetTeamIdOk returns a tuple with the TeamId field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetTeamId + +`func (o *SlimVersion) SetTeamId(v string)` + +SetTeamId sets TeamId field to given value. + + +### GetProperties + +`func (o *SlimVersion) GetProperties() map[string]interface{}` + +GetProperties returns the Properties field if non-nil, zero value otherwise. + +### GetPropertiesOk + +`func (o *SlimVersion) GetPropertiesOk() (*map[string]interface{}, bool)` + +GetPropertiesOk returns a tuple with the Properties field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetProperties + +`func (o *SlimVersion) SetProperties(v map[string]interface{})` + +SetProperties sets Properties field to given value. + +### HasProperties + +`func (o *SlimVersion) HasProperties() bool` + +HasProperties returns a boolean if a field has been set. + +### GetHasExternalEpoch + +`func (o *SlimVersion) GetHasExternalEpoch() bool` + +GetHasExternalEpoch returns the HasExternalEpoch field if non-nil, zero value otherwise. + +### GetHasExternalEpochOk + +`func (o *SlimVersion) GetHasExternalEpochOk() (*bool, bool)` + +GetHasExternalEpochOk returns a tuple with the HasExternalEpoch field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetHasExternalEpoch + +`func (o *SlimVersion) SetHasExternalEpoch(v bool)` + +SetHasExternalEpoch sets HasExternalEpoch field to given value. + + +### GetIsEvaluate + +`func (o *SlimVersion) GetIsEvaluate() bool` + +GetIsEvaluate returns the IsEvaluate field if non-nil, zero value otherwise. + +### GetIsEvaluateOk + +`func (o *SlimVersion) GetIsEvaluateOk() (*bool, bool)` + +GetIsEvaluateOk returns a tuple with the IsEvaluate field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetIsEvaluate + +`func (o *SlimVersion) SetIsEvaluate(v bool)` + +SetIsEvaluate sets IsEvaluate field to given value. + + +### GetEvaluateParams + +`func (o *SlimVersion) GetEvaluateParams() VersionEvaluateParams` + +GetEvaluateParams returns the EvaluateParams field if non-nil, zero value otherwise. + +### GetEvaluateParamsOk + +`func (o *SlimVersion) GetEvaluateParamsOk() (*VersionEvaluateParams, bool)` + +GetEvaluateParamsOk returns a tuple with the EvaluateParams field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetEvaluateParams + +`func (o *SlimVersion) SetEvaluateParams(v VersionEvaluateParams)` + +SetEvaluateParams sets EvaluateParams field to given value. + +### HasEvaluateParams + +`func (o *SlimVersion) HasEvaluateParams() bool` + +HasEvaluateParams returns a boolean if a field has been set. + +### GetCanContinueEvaluate + +`func (o *SlimVersion) GetCanContinueEvaluate() bool` + +GetCanContinueEvaluate returns the CanContinueEvaluate field if non-nil, zero value otherwise. + +### GetCanContinueEvaluateOk + +`func (o *SlimVersion) GetCanContinueEvaluateOk() (*bool, bool)` + +GetCanContinueEvaluateOk returns a tuple with the CanContinueEvaluate field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetCanContinueEvaluate + +`func (o *SlimVersion) SetCanContinueEvaluate(v bool)` + +SetCanContinueEvaluate sets CanContinueEvaluate field to given value. + +### HasCanContinueEvaluate + +`func (o *SlimVersion) HasCanContinueEvaluate() bool` + +HasCanContinueEvaluate returns a boolean if a field has been set. + +### GetCsvBlobPath + +`func (o *SlimVersion) GetCsvBlobPath() string` + +GetCsvBlobPath returns the CsvBlobPath field if non-nil, zero value otherwise. + +### GetCsvBlobPathOk + +`func (o *SlimVersion) GetCsvBlobPathOk() (*string, bool)` + +GetCsvBlobPathOk returns a tuple with the CsvBlobPath field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetCsvBlobPath + +`func (o *SlimVersion) SetCsvBlobPath(v string)` + +SetCsvBlobPath sets CsvBlobPath field to given value. + +### HasCsvBlobPath + +`func (o *SlimVersion) HasCsvBlobPath() bool` + +HasCsvBlobPath returns a boolean if a field has been set. + +### GetJobs + +`func (o *SlimVersion) GetJobs() []Job` + +GetJobs returns the Jobs field if non-nil, zero value otherwise. + +### GetJobsOk + +`func (o *SlimVersion) GetJobsOk() (*[]Job, bool)` + +GetJobsOk returns a tuple with the Jobs field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetJobs + +`func (o *SlimVersion) SetJobs(v []Job)` + +SetJobs sets Jobs field to given value. + + +### GetModelId + +`func (o *SlimVersion) GetModelId() string` + +GetModelId returns the ModelId field if non-nil, zero value otherwise. + +### GetModelIdOk + +`func (o *SlimVersion) GetModelIdOk() (*string, bool)` + +GetModelIdOk returns a tuple with the ModelId field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetModelId + +`func (o *SlimVersion) SetModelId(v string)` + +SetModelId sets ModelId field to given value. + +### HasModelId + +`func (o *SlimVersion) HasModelId() bool` + +HasModelId returns a boolean if a field has been set. + +### GetVisArtifactId + +`func (o *SlimVersion) GetVisArtifactId() string` + +GetVisArtifactId returns the VisArtifactId field if non-nil, zero value otherwise. + +### GetVisArtifactIdOk + +`func (o *SlimVersion) GetVisArtifactIdOk() (*string, bool)` + +GetVisArtifactIdOk returns a tuple with the VisArtifactId field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetVisArtifactId + +`func (o *SlimVersion) SetVisArtifactId(v string)` + +SetVisArtifactId sets VisArtifactId field to given value. + +### HasVisArtifactId + +`func (o *SlimVersion) HasVisArtifactId() bool` + +HasVisArtifactId returns a boolean if a field has been set. + +### GetInferenceArtifactId + +`func (o *SlimVersion) GetInferenceArtifactId() string` + +GetInferenceArtifactId returns the InferenceArtifactId field if non-nil, zero value otherwise. + +### GetInferenceArtifactIdOk + +`func (o *SlimVersion) GetInferenceArtifactIdOk() (*string, bool)` + +GetInferenceArtifactIdOk returns a tuple with the InferenceArtifactId field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetInferenceArtifactId + +`func (o *SlimVersion) SetInferenceArtifactId(v string)` + +SetInferenceArtifactId sets InferenceArtifactId field to given value. + +### HasInferenceArtifactId + +`func (o *SlimVersion) HasInferenceArtifactId() bool` + +HasInferenceArtifactId returns a boolean if a field has been set. + +### GetEsMetricIndex + +`func (o *SlimVersion) GetEsMetricIndex() string` + +GetEsMetricIndex returns the EsMetricIndex field if non-nil, zero value otherwise. + +### GetEsMetricIndexOk + +`func (o *SlimVersion) GetEsMetricIndexOk() (*string, bool)` + +GetEsMetricIndexOk returns a tuple with the EsMetricIndex field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetEsMetricIndex + +`func (o *SlimVersion) SetEsMetricIndex(v string)` + +SetEsMetricIndex sets EsMetricIndex field to given value. + +### HasEsMetricIndex + +`func (o *SlimVersion) HasEsMetricIndex() bool` + +HasEsMetricIndex returns a boolean if a field has been set. + +### GetEpochTags + +`func (o *SlimVersion) GetEpochTags() map[string]float64` + +GetEpochTags returns the EpochTags field if non-nil, zero value otherwise. + +### GetEpochTagsOk + +`func (o *SlimVersion) GetEpochTagsOk() (*map[string]float64, bool)` + +GetEpochTagsOk returns a tuple with the EpochTags field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetEpochTags + +`func (o *SlimVersion) SetEpochTags(v map[string]float64)` + +SetEpochTags sets EpochTags field to given value. + +### HasEpochTags + +`func (o *SlimVersion) HasEpochTags() bool` + +HasEpochTags returns a boolean if a field has been set. + [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/pkg/tensorleapapi/docs/SlimVisualization.md b/pkg/tensorleapapi/docs/SlimVisualization.md index 5da5ea6f3..e93307a34 100644 --- a/pkg/tensorleapapi/docs/SlimVisualization.md +++ b/pkg/tensorleapapi/docs/SlimVisualization.md @@ -7,7 +7,7 @@ Name | Type | Description | Notes **ProjectId** | **string** | | **Cid** | **string** | | **JobId** | **string** | | -**SessionRunId** | **string** | | +**InferenceArtifactId** | **string** | | **JobParms** | Pointer to [**JobParams**](JobParams.md) | | [optional] **Type** | [**AnalyzeTypeEnum**](AnalyzeTypeEnum.md) | | **CreatedAt** | **time.Time** | | @@ -22,7 +22,7 @@ Name | Type | Description | Notes ### NewSlimVisualization -`func NewSlimVisualization(projectId string, cid string, jobId string, sessionRunId string, type_ AnalyzeTypeEnum, createdAt time.Time, epoch float64, visualizationUuid string, blob string, csvBlob string, ) *SlimVisualization` +`func NewSlimVisualization(projectId string, cid string, jobId string, inferenceArtifactId string, type_ AnalyzeTypeEnum, createdAt time.Time, epoch float64, visualizationUuid string, blob string, csvBlob string, ) *SlimVisualization` NewSlimVisualization instantiates a new SlimVisualization object This constructor will assign default values to properties that have it defined, @@ -97,24 +97,24 @@ and a boolean to check if the value has been set. SetJobId sets JobId field to given value. -### GetSessionRunId +### GetInferenceArtifactId -`func (o *SlimVisualization) GetSessionRunId() string` +`func (o *SlimVisualization) GetInferenceArtifactId() string` -GetSessionRunId returns the SessionRunId field if non-nil, zero value otherwise. +GetInferenceArtifactId returns the InferenceArtifactId field if non-nil, zero value otherwise. -### GetSessionRunIdOk +### GetInferenceArtifactIdOk -`func (o *SlimVisualization) GetSessionRunIdOk() (*string, bool)` +`func (o *SlimVisualization) GetInferenceArtifactIdOk() (*string, bool)` -GetSessionRunIdOk returns a tuple with the SessionRunId field if it's non-nil, zero value otherwise +GetInferenceArtifactIdOk returns a tuple with the InferenceArtifactId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunId +### SetInferenceArtifactId -`func (o *SlimVisualization) SetSessionRunId(v string)` +`func (o *SlimVisualization) SetInferenceArtifactId(v string)` -SetSessionRunId sets SessionRunId field to given value. +SetInferenceArtifactId sets InferenceArtifactId field to given value. ### GetJobParms diff --git a/pkg/tensorleapapi/docs/SyntheticData.md b/pkg/tensorleapapi/docs/SyntheticData.md index 4d81e570e..1dc801818 100644 --- a/pkg/tensorleapapi/docs/SyntheticData.md +++ b/pkg/tensorleapapi/docs/SyntheticData.md @@ -6,22 +6,22 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **Id** | **string** | | **JobId** | **string** | | -**SessionRunId** | **string** | | -**SessionRunName** | **string** | | -**Epoch** | **float64** | | +**VersionId** | **string** | | +**VersionName** | **string** | | **CreatedAt** | **time.Time** | | **CreatedBy** | **string** | | **NextTrialsFileUrl** | Pointer to **string** | | [optional] **BestTrialsFileUrl** | Pointer to **string** | | [optional] **Status** | [**JobStatus**](JobStatus.md) | | -**Sources** | [**[]GenerateSyntheticDataParamsSourcesInner**](GenerateSyntheticDataParamsSourcesInner.md) | | +**Sources** | [**[]SyntheticDataJobParamsSourcesInner**](SyntheticDataJobParamsSourcesInner.md) | | **TargetFilters** | [**[]ESFilter**](ESFilter.md) | | +**RunProcess** | Pointer to [**RunProcess**](RunProcess.md) | | [optional] ## Methods ### NewSyntheticData -`func NewSyntheticData(id string, jobId string, sessionRunId string, sessionRunName string, epoch float64, createdAt time.Time, createdBy string, status JobStatus, sources []GenerateSyntheticDataParamsSourcesInner, targetFilters []ESFilter, ) *SyntheticData` +`func NewSyntheticData(id string, jobId string, versionId string, versionName string, createdAt time.Time, createdBy string, status JobStatus, sources []SyntheticDataJobParamsSourcesInner, targetFilters []ESFilter, ) *SyntheticData` NewSyntheticData instantiates a new SyntheticData object This constructor will assign default values to properties that have it defined, @@ -76,64 +76,44 @@ and a boolean to check if the value has been set. SetJobId sets JobId field to given value. -### GetSessionRunId +### GetVersionId -`func (o *SyntheticData) GetSessionRunId() string` +`func (o *SyntheticData) GetVersionId() string` -GetSessionRunId returns the SessionRunId field if non-nil, zero value otherwise. +GetVersionId returns the VersionId field if non-nil, zero value otherwise. -### GetSessionRunIdOk +### GetVersionIdOk -`func (o *SyntheticData) GetSessionRunIdOk() (*string, bool)` +`func (o *SyntheticData) GetVersionIdOk() (*string, bool)` -GetSessionRunIdOk returns a tuple with the SessionRunId field if it's non-nil, zero value otherwise +GetVersionIdOk returns a tuple with the VersionId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunId +### SetVersionId -`func (o *SyntheticData) SetSessionRunId(v string)` +`func (o *SyntheticData) SetVersionId(v string)` -SetSessionRunId sets SessionRunId field to given value. +SetVersionId sets VersionId field to given value. -### GetSessionRunName +### GetVersionName -`func (o *SyntheticData) GetSessionRunName() string` +`func (o *SyntheticData) GetVersionName() string` -GetSessionRunName returns the SessionRunName field if non-nil, zero value otherwise. +GetVersionName returns the VersionName field if non-nil, zero value otherwise. -### GetSessionRunNameOk +### GetVersionNameOk -`func (o *SyntheticData) GetSessionRunNameOk() (*string, bool)` +`func (o *SyntheticData) GetVersionNameOk() (*string, bool)` -GetSessionRunNameOk returns a tuple with the SessionRunName field if it's non-nil, zero value otherwise +GetVersionNameOk returns a tuple with the VersionName field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunName +### SetVersionName -`func (o *SyntheticData) SetSessionRunName(v string)` +`func (o *SyntheticData) SetVersionName(v string)` -SetSessionRunName sets SessionRunName field to given value. - - -### GetEpoch - -`func (o *SyntheticData) GetEpoch() float64` - -GetEpoch returns the Epoch field if non-nil, zero value otherwise. - -### GetEpochOk - -`func (o *SyntheticData) GetEpochOk() (*float64, bool)` - -GetEpochOk returns a tuple with the Epoch field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetEpoch - -`func (o *SyntheticData) SetEpoch(v float64)` - -SetEpoch sets Epoch field to given value. +SetVersionName sets VersionName field to given value. ### GetCreatedAt @@ -248,20 +228,20 @@ SetStatus sets Status field to given value. ### GetSources -`func (o *SyntheticData) GetSources() []GenerateSyntheticDataParamsSourcesInner` +`func (o *SyntheticData) GetSources() []SyntheticDataJobParamsSourcesInner` GetSources returns the Sources field if non-nil, zero value otherwise. ### GetSourcesOk -`func (o *SyntheticData) GetSourcesOk() (*[]GenerateSyntheticDataParamsSourcesInner, bool)` +`func (o *SyntheticData) GetSourcesOk() (*[]SyntheticDataJobParamsSourcesInner, bool)` GetSourcesOk returns a tuple with the Sources field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetSources -`func (o *SyntheticData) SetSources(v []GenerateSyntheticDataParamsSourcesInner)` +`func (o *SyntheticData) SetSources(v []SyntheticDataJobParamsSourcesInner)` SetSources sets Sources field to given value. @@ -286,6 +266,31 @@ and a boolean to check if the value has been set. SetTargetFilters sets TargetFilters field to given value. +### GetRunProcess + +`func (o *SyntheticData) GetRunProcess() RunProcess` + +GetRunProcess returns the RunProcess field if non-nil, zero value otherwise. + +### GetRunProcessOk + +`func (o *SyntheticData) GetRunProcessOk() (*RunProcess, bool)` + +GetRunProcessOk returns a tuple with the RunProcess field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetRunProcess + +`func (o *SyntheticData) SetRunProcess(v RunProcess)` + +SetRunProcess sets RunProcess field to given value. + +### HasRunProcess + +`func (o *SyntheticData) HasRunProcess() bool` + +HasRunProcess returns a boolean if a field has been set. + [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/pkg/tensorleapapi/docs/SyntheticDataJobParams.md b/pkg/tensorleapapi/docs/SyntheticDataJobParams.md index c4c991ca3..18f49ae8d 100644 --- a/pkg/tensorleapapi/docs/SyntheticDataJobParams.md +++ b/pkg/tensorleapapi/docs/SyntheticDataJobParams.md @@ -6,16 +6,16 @@ Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **Digest** | **string** | | **TargetFilters** | [**[]ESFilter**](ESFilter.md) | | -**Sources** | [**[]GenerateSyntheticDataParamsSourcesInner**](GenerateSyntheticDataParamsSourcesInner.md) | | -**FromEpoch** | **float64** | | -**SessionRunId** | **string** | | +**Sources** | [**[]SyntheticDataJobParamsSourcesInner**](SyntheticDataJobParamsSourcesInner.md) | | +**InferenceArtifactId** | **string** | | +**VersionId** | **string** | | **Type** | **string** | | ## Methods ### NewSyntheticDataJobParams -`func NewSyntheticDataJobParams(digest string, targetFilters []ESFilter, sources []GenerateSyntheticDataParamsSourcesInner, fromEpoch float64, sessionRunId string, type_ string, ) *SyntheticDataJobParams` +`func NewSyntheticDataJobParams(digest string, targetFilters []ESFilter, sources []SyntheticDataJobParamsSourcesInner, inferenceArtifactId string, versionId string, type_ string, ) *SyntheticDataJobParams` NewSyntheticDataJobParams instantiates a new SyntheticDataJobParams object This constructor will assign default values to properties that have it defined, @@ -72,62 +72,62 @@ SetTargetFilters sets TargetFilters field to given value. ### GetSources -`func (o *SyntheticDataJobParams) GetSources() []GenerateSyntheticDataParamsSourcesInner` +`func (o *SyntheticDataJobParams) GetSources() []SyntheticDataJobParamsSourcesInner` GetSources returns the Sources field if non-nil, zero value otherwise. ### GetSourcesOk -`func (o *SyntheticDataJobParams) GetSourcesOk() (*[]GenerateSyntheticDataParamsSourcesInner, bool)` +`func (o *SyntheticDataJobParams) GetSourcesOk() (*[]SyntheticDataJobParamsSourcesInner, bool)` GetSourcesOk returns a tuple with the Sources field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetSources -`func (o *SyntheticDataJobParams) SetSources(v []GenerateSyntheticDataParamsSourcesInner)` +`func (o *SyntheticDataJobParams) SetSources(v []SyntheticDataJobParamsSourcesInner)` SetSources sets Sources field to given value. -### GetFromEpoch +### GetInferenceArtifactId -`func (o *SyntheticDataJobParams) GetFromEpoch() float64` +`func (o *SyntheticDataJobParams) GetInferenceArtifactId() string` -GetFromEpoch returns the FromEpoch field if non-nil, zero value otherwise. +GetInferenceArtifactId returns the InferenceArtifactId field if non-nil, zero value otherwise. -### GetFromEpochOk +### GetInferenceArtifactIdOk -`func (o *SyntheticDataJobParams) GetFromEpochOk() (*float64, bool)` +`func (o *SyntheticDataJobParams) GetInferenceArtifactIdOk() (*string, bool)` -GetFromEpochOk returns a tuple with the FromEpoch field if it's non-nil, zero value otherwise +GetInferenceArtifactIdOk returns a tuple with the InferenceArtifactId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetFromEpoch +### SetInferenceArtifactId -`func (o *SyntheticDataJobParams) SetFromEpoch(v float64)` +`func (o *SyntheticDataJobParams) SetInferenceArtifactId(v string)` -SetFromEpoch sets FromEpoch field to given value. +SetInferenceArtifactId sets InferenceArtifactId field to given value. -### GetSessionRunId +### GetVersionId -`func (o *SyntheticDataJobParams) GetSessionRunId() string` +`func (o *SyntheticDataJobParams) GetVersionId() string` -GetSessionRunId returns the SessionRunId field if non-nil, zero value otherwise. +GetVersionId returns the VersionId field if non-nil, zero value otherwise. -### GetSessionRunIdOk +### GetVersionIdOk -`func (o *SyntheticDataJobParams) GetSessionRunIdOk() (*string, bool)` +`func (o *SyntheticDataJobParams) GetVersionIdOk() (*string, bool)` -GetSessionRunIdOk returns a tuple with the SessionRunId field if it's non-nil, zero value otherwise +GetVersionIdOk returns a tuple with the VersionId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunId +### SetVersionId -`func (o *SyntheticDataJobParams) SetSessionRunId(v string)` +`func (o *SyntheticDataJobParams) SetVersionId(v string)` -SetSessionRunId sets SessionRunId field to given value. +SetVersionId sets VersionId field to given value. ### GetType diff --git a/pkg/tensorleapapi/docs/GenerateSyntheticDataParamsSourcesInner.md b/pkg/tensorleapapi/docs/SyntheticDataJobParamsSourcesInner.md similarity index 56% rename from pkg/tensorleapapi/docs/GenerateSyntheticDataParamsSourcesInner.md rename to pkg/tensorleapapi/docs/SyntheticDataJobParamsSourcesInner.md index f907ec70c..f06fd9cdf 100644 --- a/pkg/tensorleapapi/docs/GenerateSyntheticDataParamsSourcesInner.md +++ b/pkg/tensorleapapi/docs/SyntheticDataJobParamsSourcesInner.md @@ -1,4 +1,4 @@ -# GenerateSyntheticDataParamsSourcesInner +# SyntheticDataJobParamsSourcesInner ## Properties @@ -9,59 +9,59 @@ Name | Type | Description | Notes ## Methods -### NewGenerateSyntheticDataParamsSourcesInner +### NewSyntheticDataJobParamsSourcesInner -`func NewGenerateSyntheticDataParamsSourcesInner(metadataKeys []string, filters []ESFilter, ) *GenerateSyntheticDataParamsSourcesInner` +`func NewSyntheticDataJobParamsSourcesInner(metadataKeys []string, filters []ESFilter, ) *SyntheticDataJobParamsSourcesInner` -NewGenerateSyntheticDataParamsSourcesInner instantiates a new GenerateSyntheticDataParamsSourcesInner object +NewSyntheticDataJobParamsSourcesInner instantiates a new SyntheticDataJobParamsSourcesInner object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed -### NewGenerateSyntheticDataParamsSourcesInnerWithDefaults +### NewSyntheticDataJobParamsSourcesInnerWithDefaults -`func NewGenerateSyntheticDataParamsSourcesInnerWithDefaults() *GenerateSyntheticDataParamsSourcesInner` +`func NewSyntheticDataJobParamsSourcesInnerWithDefaults() *SyntheticDataJobParamsSourcesInner` -NewGenerateSyntheticDataParamsSourcesInnerWithDefaults instantiates a new GenerateSyntheticDataParamsSourcesInner object +NewSyntheticDataJobParamsSourcesInnerWithDefaults instantiates a new SyntheticDataJobParamsSourcesInner object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set ### GetMetadataKeys -`func (o *GenerateSyntheticDataParamsSourcesInner) GetMetadataKeys() []string` +`func (o *SyntheticDataJobParamsSourcesInner) GetMetadataKeys() []string` GetMetadataKeys returns the MetadataKeys field if non-nil, zero value otherwise. ### GetMetadataKeysOk -`func (o *GenerateSyntheticDataParamsSourcesInner) GetMetadataKeysOk() (*[]string, bool)` +`func (o *SyntheticDataJobParamsSourcesInner) GetMetadataKeysOk() (*[]string, bool)` GetMetadataKeysOk returns a tuple with the MetadataKeys field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetMetadataKeys -`func (o *GenerateSyntheticDataParamsSourcesInner) SetMetadataKeys(v []string)` +`func (o *SyntheticDataJobParamsSourcesInner) SetMetadataKeys(v []string)` SetMetadataKeys sets MetadataKeys field to given value. ### GetFilters -`func (o *GenerateSyntheticDataParamsSourcesInner) GetFilters() []ESFilter` +`func (o *SyntheticDataJobParamsSourcesInner) GetFilters() []ESFilter` GetFilters returns the Filters field if non-nil, zero value otherwise. ### GetFiltersOk -`func (o *GenerateSyntheticDataParamsSourcesInner) GetFiltersOk() (*[]ESFilter, bool)` +`func (o *SyntheticDataJobParamsSourcesInner) GetFiltersOk() (*[]ESFilter, bool)` GetFiltersOk returns a tuple with the Filters field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetFilters -`func (o *GenerateSyntheticDataParamsSourcesInner) SetFilters(v []ESFilter)` +`func (o *SyntheticDataJobParamsSourcesInner) SetFilters(v []ESFilter)` SetFilters sets Filters field to given value. diff --git a/pkg/tensorleapapi/docs/TrainingParams.md b/pkg/tensorleapapi/docs/TrainingParams.md deleted file mode 100644 index 31716304a..000000000 --- a/pkg/tensorleapapi/docs/TrainingParams.md +++ /dev/null @@ -1,98 +0,0 @@ -# TrainingParams - -## Properties - -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**Epochs** | **float64** | | -**BatchSize** | **float64** | | -**EarlyStopParams** | Pointer to [**EarlyStopParams**](EarlyStopParams.md) | | [optional] - -## Methods - -### NewTrainingParams - -`func NewTrainingParams(epochs float64, batchSize float64, ) *TrainingParams` - -NewTrainingParams instantiates a new TrainingParams object -This constructor will assign default values to properties that have it defined, -and makes sure properties required by API are set, but the set of arguments -will change when the set of required properties is changed - -### NewTrainingParamsWithDefaults - -`func NewTrainingParamsWithDefaults() *TrainingParams` - -NewTrainingParamsWithDefaults instantiates a new TrainingParams object -This constructor will only assign default values to properties that have it defined, -but it doesn't guarantee that properties required by API are set - -### GetEpochs - -`func (o *TrainingParams) GetEpochs() float64` - -GetEpochs returns the Epochs field if non-nil, zero value otherwise. - -### GetEpochsOk - -`func (o *TrainingParams) GetEpochsOk() (*float64, bool)` - -GetEpochsOk returns a tuple with the Epochs field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetEpochs - -`func (o *TrainingParams) SetEpochs(v float64)` - -SetEpochs sets Epochs field to given value. - - -### GetBatchSize - -`func (o *TrainingParams) GetBatchSize() float64` - -GetBatchSize returns the BatchSize field if non-nil, zero value otherwise. - -### GetBatchSizeOk - -`func (o *TrainingParams) GetBatchSizeOk() (*float64, bool)` - -GetBatchSizeOk returns a tuple with the BatchSize field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetBatchSize - -`func (o *TrainingParams) SetBatchSize(v float64)` - -SetBatchSize sets BatchSize field to given value. - - -### GetEarlyStopParams - -`func (o *TrainingParams) GetEarlyStopParams() EarlyStopParams` - -GetEarlyStopParams returns the EarlyStopParams field if non-nil, zero value otherwise. - -### GetEarlyStopParamsOk - -`func (o *TrainingParams) GetEarlyStopParamsOk() (*EarlyStopParams, bool)` - -GetEarlyStopParamsOk returns a tuple with the EarlyStopParams field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetEarlyStopParams - -`func (o *TrainingParams) SetEarlyStopParams(v EarlyStopParams)` - -SetEarlyStopParams sets EarlyStopParams field to given value. - -### HasEarlyStopParams - -`func (o *TrainingParams) HasEarlyStopParams() bool` - -HasEarlyStopParams returns a boolean if a field has been set. - - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/pkg/tensorleapapi/docs/UnderRepresentationInsight.md b/pkg/tensorleapapi/docs/UnderRepresentationInsight.md index 3ca77671b..e0970a8c3 100644 --- a/pkg/tensorleapapi/docs/UnderRepresentationInsight.md +++ b/pkg/tensorleapapi/docs/UnderRepresentationInsight.md @@ -19,6 +19,7 @@ Name | Type | Description | Notes **AutomaticTests** | Pointer to [**[]InsightAutomaticTest**](InsightAutomaticTest.md) | | [optional] **AutoGenerated** | **bool** | | **EsFiltersUsedInAnalysis** | Pointer to [**[]ESFilter**](ESFilter.md) | | [optional] +**LatentSpace** | Pointer to **string** | | [optional] **UnderRepresentationDataset** | [**DataStateType**](DataStateType.md) | | **UnderRepresentationNSamples** | **float64** | | **OverRepresentationDataset** | [**DataStateType**](DataStateType.md) | | @@ -368,6 +369,31 @@ SetEsFiltersUsedInAnalysis sets EsFiltersUsedInAnalysis field to given value. HasEsFiltersUsedInAnalysis returns a boolean if a field has been set. +### GetLatentSpace + +`func (o *UnderRepresentationInsight) GetLatentSpace() string` + +GetLatentSpace returns the LatentSpace field if non-nil, zero value otherwise. + +### GetLatentSpaceOk + +`func (o *UnderRepresentationInsight) GetLatentSpaceOk() (*string, bool)` + +GetLatentSpaceOk returns a tuple with the LatentSpace field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetLatentSpace + +`func (o *UnderRepresentationInsight) SetLatentSpace(v string)` + +SetLatentSpace sets LatentSpace field to given value. + +### HasLatentSpace + +`func (o *UnderRepresentationInsight) HasLatentSpace() bool` + +HasLatentSpace returns a boolean if a field has been set. + ### GetUnderRepresentationDataset `func (o *UnderRepresentationInsight) GetUnderRepresentationDataset() DataStateType` diff --git a/pkg/tensorleapapi/docs/UpdateSessionNameParams.md b/pkg/tensorleapapi/docs/UpdateSessionNameParams.md deleted file mode 100644 index 5e50dc444..000000000 --- a/pkg/tensorleapapi/docs/UpdateSessionNameParams.md +++ /dev/null @@ -1,93 +0,0 @@ -# UpdateSessionNameParams - -## Properties - -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**Cid** | **string** | | -**ProjectId** | **string** | | -**Name** | **string** | | - -## Methods - -### NewUpdateSessionNameParams - -`func NewUpdateSessionNameParams(cid string, projectId string, name string, ) *UpdateSessionNameParams` - -NewUpdateSessionNameParams instantiates a new UpdateSessionNameParams object -This constructor will assign default values to properties that have it defined, -and makes sure properties required by API are set, but the set of arguments -will change when the set of required properties is changed - -### NewUpdateSessionNameParamsWithDefaults - -`func NewUpdateSessionNameParamsWithDefaults() *UpdateSessionNameParams` - -NewUpdateSessionNameParamsWithDefaults instantiates a new UpdateSessionNameParams object -This constructor will only assign default values to properties that have it defined, -but it doesn't guarantee that properties required by API are set - -### GetCid - -`func (o *UpdateSessionNameParams) GetCid() string` - -GetCid returns the Cid field if non-nil, zero value otherwise. - -### GetCidOk - -`func (o *UpdateSessionNameParams) GetCidOk() (*string, bool)` - -GetCidOk returns a tuple with the Cid field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetCid - -`func (o *UpdateSessionNameParams) SetCid(v string)` - -SetCid sets Cid field to given value. - - -### GetProjectId - -`func (o *UpdateSessionNameParams) GetProjectId() string` - -GetProjectId returns the ProjectId field if non-nil, zero value otherwise. - -### GetProjectIdOk - -`func (o *UpdateSessionNameParams) GetProjectIdOk() (*string, bool)` - -GetProjectIdOk returns a tuple with the ProjectId field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetProjectId - -`func (o *UpdateSessionNameParams) SetProjectId(v string)` - -SetProjectId sets ProjectId field to given value. - - -### GetName - -`func (o *UpdateSessionNameParams) GetName() string` - -GetName returns the Name field if non-nil, zero value otherwise. - -### GetNameOk - -`func (o *UpdateSessionNameParams) GetNameOk() (*string, bool)` - -GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetName - -`func (o *UpdateSessionNameParams) SetName(v string)` - -SetName sets Name field to given value. - - - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/pkg/tensorleapapi/docs/UpdateSessionRunNameParams.md b/pkg/tensorleapapi/docs/UpdateSessionRunNameParams.md deleted file mode 100644 index b533db30e..000000000 --- a/pkg/tensorleapapi/docs/UpdateSessionRunNameParams.md +++ /dev/null @@ -1,114 +0,0 @@ -# UpdateSessionRunNameParams - -## Properties - -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**Cid** | **string** | | -**Name** | **string** | | -**Description** | **string** | | -**ProjectId** | **string** | | - -## Methods - -### NewUpdateSessionRunNameParams - -`func NewUpdateSessionRunNameParams(cid string, name string, description string, projectId string, ) *UpdateSessionRunNameParams` - -NewUpdateSessionRunNameParams instantiates a new UpdateSessionRunNameParams object -This constructor will assign default values to properties that have it defined, -and makes sure properties required by API are set, but the set of arguments -will change when the set of required properties is changed - -### NewUpdateSessionRunNameParamsWithDefaults - -`func NewUpdateSessionRunNameParamsWithDefaults() *UpdateSessionRunNameParams` - -NewUpdateSessionRunNameParamsWithDefaults instantiates a new UpdateSessionRunNameParams object -This constructor will only assign default values to properties that have it defined, -but it doesn't guarantee that properties required by API are set - -### GetCid - -`func (o *UpdateSessionRunNameParams) GetCid() string` - -GetCid returns the Cid field if non-nil, zero value otherwise. - -### GetCidOk - -`func (o *UpdateSessionRunNameParams) GetCidOk() (*string, bool)` - -GetCidOk returns a tuple with the Cid field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetCid - -`func (o *UpdateSessionRunNameParams) SetCid(v string)` - -SetCid sets Cid field to given value. - - -### GetName - -`func (o *UpdateSessionRunNameParams) GetName() string` - -GetName returns the Name field if non-nil, zero value otherwise. - -### GetNameOk - -`func (o *UpdateSessionRunNameParams) GetNameOk() (*string, bool)` - -GetNameOk returns a tuple with the Name field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetName - -`func (o *UpdateSessionRunNameParams) SetName(v string)` - -SetName sets Name field to given value. - - -### GetDescription - -`func (o *UpdateSessionRunNameParams) GetDescription() string` - -GetDescription returns the Description field if non-nil, zero value otherwise. - -### GetDescriptionOk - -`func (o *UpdateSessionRunNameParams) GetDescriptionOk() (*string, bool)` - -GetDescriptionOk returns a tuple with the Description field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetDescription - -`func (o *UpdateSessionRunNameParams) SetDescription(v string)` - -SetDescription sets Description field to given value. - - -### GetProjectId - -`func (o *UpdateSessionRunNameParams) GetProjectId() string` - -GetProjectId returns the ProjectId field if non-nil, zero value otherwise. - -### GetProjectIdOk - -`func (o *UpdateSessionRunNameParams) GetProjectIdOk() (*string, bool)` - -GetProjectIdOk returns a tuple with the ProjectId field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetProjectId - -`func (o *UpdateSessionRunNameParams) SetProjectId(v string)` - -SetProjectId sets ProjectId field to given value. - - - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/pkg/tensorleapapi/docs/Version.md b/pkg/tensorleapapi/docs/Version.md index eeb2ade4b..e0641a005 100644 --- a/pkg/tensorleapapi/docs/Version.md +++ b/pkg/tensorleapapi/docs/Version.md @@ -14,17 +14,23 @@ Name | Type | Description | Notes **CreatedAt** | **time.Time** | | **UpdatedAt** | **time.Time** | | **Notes** | **string** | | -**Status** | **string** | | +**Status** | [**VersionStatus**](VersionStatus.md) | | **IsFavourite** | **bool** | | **CodeSnapshotId** | Pointer to **string** | | [optional] **Hash** | Pointer to **string** | | [optional] **GraphValidationData** | Pointer to [**GraphValidatorData**](GraphValidatorData.md) | | [optional] +**ModelId** | Pointer to **string** | | [optional] +**EpochTags** | Pointer to **map[string]float64** | | [optional] +**VisArtifactId** | Pointer to **string** | | [optional] +**InferenceArtifactId** | Pointer to **string** | | [optional] +**EsMetricIndex** | Pointer to **string** | | [optional] +**EsInspectionIndex** | Pointer to **string** | | [optional] ## Methods ### NewVersion -`func NewVersion(cid string, createdBy string, teamId string, projectId string, branch string, tag string, createdAt time.Time, updatedAt time.Time, notes string, status string, isFavourite bool, ) *Version` +`func NewVersion(cid string, createdBy string, teamId string, projectId string, branch string, tag string, createdAt time.Time, updatedAt time.Time, notes string, status VersionStatus, isFavourite bool, ) *Version` NewVersion instantiates a new Version object This constructor will assign default values to properties that have it defined, @@ -246,20 +252,20 @@ SetNotes sets Notes field to given value. ### GetStatus -`func (o *Version) GetStatus() string` +`func (o *Version) GetStatus() VersionStatus` GetStatus returns the Status field if non-nil, zero value otherwise. ### GetStatusOk -`func (o *Version) GetStatusOk() (*string, bool)` +`func (o *Version) GetStatusOk() (*VersionStatus, bool)` GetStatusOk returns a tuple with the Status field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetStatus -`func (o *Version) SetStatus(v string)` +`func (o *Version) SetStatus(v VersionStatus)` SetStatus sets Status field to given value. @@ -359,6 +365,156 @@ SetGraphValidationData sets GraphValidationData field to given value. HasGraphValidationData returns a boolean if a field has been set. +### GetModelId + +`func (o *Version) GetModelId() string` + +GetModelId returns the ModelId field if non-nil, zero value otherwise. + +### GetModelIdOk + +`func (o *Version) GetModelIdOk() (*string, bool)` + +GetModelIdOk returns a tuple with the ModelId field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetModelId + +`func (o *Version) SetModelId(v string)` + +SetModelId sets ModelId field to given value. + +### HasModelId + +`func (o *Version) HasModelId() bool` + +HasModelId returns a boolean if a field has been set. + +### GetEpochTags + +`func (o *Version) GetEpochTags() map[string]float64` + +GetEpochTags returns the EpochTags field if non-nil, zero value otherwise. + +### GetEpochTagsOk + +`func (o *Version) GetEpochTagsOk() (*map[string]float64, bool)` + +GetEpochTagsOk returns a tuple with the EpochTags field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetEpochTags + +`func (o *Version) SetEpochTags(v map[string]float64)` + +SetEpochTags sets EpochTags field to given value. + +### HasEpochTags + +`func (o *Version) HasEpochTags() bool` + +HasEpochTags returns a boolean if a field has been set. + +### GetVisArtifactId + +`func (o *Version) GetVisArtifactId() string` + +GetVisArtifactId returns the VisArtifactId field if non-nil, zero value otherwise. + +### GetVisArtifactIdOk + +`func (o *Version) GetVisArtifactIdOk() (*string, bool)` + +GetVisArtifactIdOk returns a tuple with the VisArtifactId field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetVisArtifactId + +`func (o *Version) SetVisArtifactId(v string)` + +SetVisArtifactId sets VisArtifactId field to given value. + +### HasVisArtifactId + +`func (o *Version) HasVisArtifactId() bool` + +HasVisArtifactId returns a boolean if a field has been set. + +### GetInferenceArtifactId + +`func (o *Version) GetInferenceArtifactId() string` + +GetInferenceArtifactId returns the InferenceArtifactId field if non-nil, zero value otherwise. + +### GetInferenceArtifactIdOk + +`func (o *Version) GetInferenceArtifactIdOk() (*string, bool)` + +GetInferenceArtifactIdOk returns a tuple with the InferenceArtifactId field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetInferenceArtifactId + +`func (o *Version) SetInferenceArtifactId(v string)` + +SetInferenceArtifactId sets InferenceArtifactId field to given value. + +### HasInferenceArtifactId + +`func (o *Version) HasInferenceArtifactId() bool` + +HasInferenceArtifactId returns a boolean if a field has been set. + +### GetEsMetricIndex + +`func (o *Version) GetEsMetricIndex() string` + +GetEsMetricIndex returns the EsMetricIndex field if non-nil, zero value otherwise. + +### GetEsMetricIndexOk + +`func (o *Version) GetEsMetricIndexOk() (*string, bool)` + +GetEsMetricIndexOk returns a tuple with the EsMetricIndex field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetEsMetricIndex + +`func (o *Version) SetEsMetricIndex(v string)` + +SetEsMetricIndex sets EsMetricIndex field to given value. + +### HasEsMetricIndex + +`func (o *Version) HasEsMetricIndex() bool` + +HasEsMetricIndex returns a boolean if a field has been set. + +### GetEsInspectionIndex + +`func (o *Version) GetEsInspectionIndex() string` + +GetEsInspectionIndex returns the EsInspectionIndex field if non-nil, zero value otherwise. + +### GetEsInspectionIndexOk + +`func (o *Version) GetEsInspectionIndexOk() (*string, bool)` + +GetEsInspectionIndexOk returns a tuple with the EsInspectionIndex field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetEsInspectionIndex + +`func (o *Version) SetEsInspectionIndex(v string)` + +SetEsInspectionIndex sets EsInspectionIndex field to given value. + +### HasEsInspectionIndex + +`func (o *Version) HasEsInspectionIndex() bool` + +HasEsInspectionIndex returns a boolean if a field has been set. + [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) diff --git a/pkg/tensorleapapi/docs/SessionRunEvaluateParams.md b/pkg/tensorleapapi/docs/VersionEvaluateParams.md similarity index 62% rename from pkg/tensorleapapi/docs/SessionRunEvaluateParams.md rename to pkg/tensorleapapi/docs/VersionEvaluateParams.md index e967c6c38..04db443ea 100644 --- a/pkg/tensorleapapi/docs/SessionRunEvaluateParams.md +++ b/pkg/tensorleapapi/docs/VersionEvaluateParams.md @@ -1,4 +1,4 @@ -# SessionRunEvaluateParams +# VersionEvaluateParams ## Properties @@ -10,79 +10,79 @@ Name | Type | Description | Notes ## Methods -### NewSessionRunEvaluateParams +### NewVersionEvaluateParams -`func NewSessionRunEvaluateParams(dataStates []DataStateType, batchSize float64, evaluatedEpoch float64, ) *SessionRunEvaluateParams` +`func NewVersionEvaluateParams(dataStates []DataStateType, batchSize float64, evaluatedEpoch float64, ) *VersionEvaluateParams` -NewSessionRunEvaluateParams instantiates a new SessionRunEvaluateParams object +NewVersionEvaluateParams instantiates a new VersionEvaluateParams object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed -### NewSessionRunEvaluateParamsWithDefaults +### NewVersionEvaluateParamsWithDefaults -`func NewSessionRunEvaluateParamsWithDefaults() *SessionRunEvaluateParams` +`func NewVersionEvaluateParamsWithDefaults() *VersionEvaluateParams` -NewSessionRunEvaluateParamsWithDefaults instantiates a new SessionRunEvaluateParams object +NewVersionEvaluateParamsWithDefaults instantiates a new VersionEvaluateParams object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set ### GetDataStates -`func (o *SessionRunEvaluateParams) GetDataStates() []DataStateType` +`func (o *VersionEvaluateParams) GetDataStates() []DataStateType` GetDataStates returns the DataStates field if non-nil, zero value otherwise. ### GetDataStatesOk -`func (o *SessionRunEvaluateParams) GetDataStatesOk() (*[]DataStateType, bool)` +`func (o *VersionEvaluateParams) GetDataStatesOk() (*[]DataStateType, bool)` GetDataStatesOk returns a tuple with the DataStates field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetDataStates -`func (o *SessionRunEvaluateParams) SetDataStates(v []DataStateType)` +`func (o *VersionEvaluateParams) SetDataStates(v []DataStateType)` SetDataStates sets DataStates field to given value. ### GetBatchSize -`func (o *SessionRunEvaluateParams) GetBatchSize() float64` +`func (o *VersionEvaluateParams) GetBatchSize() float64` GetBatchSize returns the BatchSize field if non-nil, zero value otherwise. ### GetBatchSizeOk -`func (o *SessionRunEvaluateParams) GetBatchSizeOk() (*float64, bool)` +`func (o *VersionEvaluateParams) GetBatchSizeOk() (*float64, bool)` GetBatchSizeOk returns a tuple with the BatchSize field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetBatchSize -`func (o *SessionRunEvaluateParams) SetBatchSize(v float64)` +`func (o *VersionEvaluateParams) SetBatchSize(v float64)` SetBatchSize sets BatchSize field to given value. ### GetEvaluatedEpoch -`func (o *SessionRunEvaluateParams) GetEvaluatedEpoch() float64` +`func (o *VersionEvaluateParams) GetEvaluatedEpoch() float64` GetEvaluatedEpoch returns the EvaluatedEpoch field if non-nil, zero value otherwise. ### GetEvaluatedEpochOk -`func (o *SessionRunEvaluateParams) GetEvaluatedEpochOk() (*float64, bool)` +`func (o *VersionEvaluateParams) GetEvaluatedEpochOk() (*float64, bool)` GetEvaluatedEpochOk returns a tuple with the EvaluatedEpoch field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. ### SetEvaluatedEpoch -`func (o *SessionRunEvaluateParams) SetEvaluatedEpoch(v float64)` +`func (o *VersionEvaluateParams) SetEvaluatedEpoch(v float64)` SetEvaluatedEpoch sets EvaluatedEpoch field to given value. diff --git a/pkg/tensorleapapi/docs/VersionPopulatedJob.md b/pkg/tensorleapapi/docs/VersionPopulatedJob.md new file mode 100644 index 000000000..82f2a0c95 --- /dev/null +++ b/pkg/tensorleapapi/docs/VersionPopulatedJob.md @@ -0,0 +1,202 @@ +# VersionPopulatedJob + +## Properties + +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**Cid** | **string** | | +**ExtId** | Pointer to **string** | | [optional] +**ModelName** | **string** | | +**CreatedAt** | **time.Time** | | +**CreatedBy** | Pointer to **string** | | [optional] +**TeamId** | **string** | | +**Hash** | Pointer to **NullableString** | | [optional] + +## Methods + +### NewVersionPopulatedJob + +`func NewVersionPopulatedJob(cid string, modelName string, createdAt time.Time, teamId string, ) *VersionPopulatedJob` + +NewVersionPopulatedJob instantiates a new VersionPopulatedJob object +This constructor will assign default values to properties that have it defined, +and makes sure properties required by API are set, but the set of arguments +will change when the set of required properties is changed + +### NewVersionPopulatedJobWithDefaults + +`func NewVersionPopulatedJobWithDefaults() *VersionPopulatedJob` + +NewVersionPopulatedJobWithDefaults instantiates a new VersionPopulatedJob object +This constructor will only assign default values to properties that have it defined, +but it doesn't guarantee that properties required by API are set + +### GetCid + +`func (o *VersionPopulatedJob) GetCid() string` + +GetCid returns the Cid field if non-nil, zero value otherwise. + +### GetCidOk + +`func (o *VersionPopulatedJob) GetCidOk() (*string, bool)` + +GetCidOk returns a tuple with the Cid field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetCid + +`func (o *VersionPopulatedJob) SetCid(v string)` + +SetCid sets Cid field to given value. + + +### GetExtId + +`func (o *VersionPopulatedJob) GetExtId() string` + +GetExtId returns the ExtId field if non-nil, zero value otherwise. + +### GetExtIdOk + +`func (o *VersionPopulatedJob) GetExtIdOk() (*string, bool)` + +GetExtIdOk returns a tuple with the ExtId field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetExtId + +`func (o *VersionPopulatedJob) SetExtId(v string)` + +SetExtId sets ExtId field to given value. + +### HasExtId + +`func (o *VersionPopulatedJob) HasExtId() bool` + +HasExtId returns a boolean if a field has been set. + +### GetModelName + +`func (o *VersionPopulatedJob) GetModelName() string` + +GetModelName returns the ModelName field if non-nil, zero value otherwise. + +### GetModelNameOk + +`func (o *VersionPopulatedJob) GetModelNameOk() (*string, bool)` + +GetModelNameOk returns a tuple with the ModelName field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetModelName + +`func (o *VersionPopulatedJob) SetModelName(v string)` + +SetModelName sets ModelName field to given value. + + +### GetCreatedAt + +`func (o *VersionPopulatedJob) GetCreatedAt() time.Time` + +GetCreatedAt returns the CreatedAt field if non-nil, zero value otherwise. + +### GetCreatedAtOk + +`func (o *VersionPopulatedJob) GetCreatedAtOk() (*time.Time, bool)` + +GetCreatedAtOk returns a tuple with the CreatedAt field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetCreatedAt + +`func (o *VersionPopulatedJob) SetCreatedAt(v time.Time)` + +SetCreatedAt sets CreatedAt field to given value. + + +### GetCreatedBy + +`func (o *VersionPopulatedJob) GetCreatedBy() string` + +GetCreatedBy returns the CreatedBy field if non-nil, zero value otherwise. + +### GetCreatedByOk + +`func (o *VersionPopulatedJob) GetCreatedByOk() (*string, bool)` + +GetCreatedByOk returns a tuple with the CreatedBy field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetCreatedBy + +`func (o *VersionPopulatedJob) SetCreatedBy(v string)` + +SetCreatedBy sets CreatedBy field to given value. + +### HasCreatedBy + +`func (o *VersionPopulatedJob) HasCreatedBy() bool` + +HasCreatedBy returns a boolean if a field has been set. + +### GetTeamId + +`func (o *VersionPopulatedJob) GetTeamId() string` + +GetTeamId returns the TeamId field if non-nil, zero value otherwise. + +### GetTeamIdOk + +`func (o *VersionPopulatedJob) GetTeamIdOk() (*string, bool)` + +GetTeamIdOk returns a tuple with the TeamId field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetTeamId + +`func (o *VersionPopulatedJob) SetTeamId(v string)` + +SetTeamId sets TeamId field to given value. + + +### GetHash + +`func (o *VersionPopulatedJob) GetHash() string` + +GetHash returns the Hash field if non-nil, zero value otherwise. + +### GetHashOk + +`func (o *VersionPopulatedJob) GetHashOk() (*string, bool)` + +GetHashOk returns a tuple with the Hash field if it's non-nil, zero value otherwise +and a boolean to check if the value has been set. + +### SetHash + +`func (o *VersionPopulatedJob) SetHash(v string)` + +SetHash sets Hash field to given value. + +### HasHash + +`func (o *VersionPopulatedJob) HasHash() bool` + +HasHash returns a boolean if a field has been set. + +### SetHashNil + +`func (o *VersionPopulatedJob) SetHashNil(b bool)` + + SetHashNil sets the value for Hash to be an explicit nil + +### UnsetHash +`func (o *VersionPopulatedJob) UnsetHash()` + +UnsetHash ensures that no value is present for Hash, not even an explicit nil + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/pkg/tensorleapapi/docs/VersionStatus.md b/pkg/tensorleapapi/docs/VersionStatus.md new file mode 100644 index 000000000..10aa382a0 --- /dev/null +++ b/pkg/tensorleapapi/docs/VersionStatus.md @@ -0,0 +1,19 @@ +# VersionStatus + +## Enum + + +* `DRAFT` (value: `"draft"`) + +* `VALID` (value: `"valid"`) + +* `INVALID` (value: `"invalid"`) + +* `TRASH` (value: `"trash"`) + +* `VISIBLE` (value: `"visible"`) + + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/pkg/tensorleapapi/docs/Visualization.md b/pkg/tensorleapapi/docs/Visualization.md index 6ea77d114..25e450c38 100644 --- a/pkg/tensorleapapi/docs/Visualization.md +++ b/pkg/tensorleapapi/docs/Visualization.md @@ -7,7 +7,7 @@ Name | Type | Description | Notes **ProjectId** | **string** | | **Cid** | **string** | | **JobId** | **string** | | -**SessionRunId** | **string** | | +**InferenceArtifactId** | **string** | | **JobParms** | Pointer to [**JobParams**](JobParams.md) | | [optional] **Type** | [**AnalyzeTypeEnum**](AnalyzeTypeEnum.md) | | **CreatedAt** | **time.Time** | | @@ -23,7 +23,7 @@ Name | Type | Description | Notes ### NewVisualization -`func NewVisualization(projectId string, cid string, jobId string, sessionRunId string, type_ AnalyzeTypeEnum, createdAt time.Time, epoch float64, visualizationUuid string, blob string, csvBlob string, data VisualizationResponse, ) *Visualization` +`func NewVisualization(projectId string, cid string, jobId string, inferenceArtifactId string, type_ AnalyzeTypeEnum, createdAt time.Time, epoch float64, visualizationUuid string, blob string, csvBlob string, data VisualizationResponse, ) *Visualization` NewVisualization instantiates a new Visualization object This constructor will assign default values to properties that have it defined, @@ -98,24 +98,24 @@ and a boolean to check if the value has been set. SetJobId sets JobId field to given value. -### GetSessionRunId +### GetInferenceArtifactId -`func (o *Visualization) GetSessionRunId() string` +`func (o *Visualization) GetInferenceArtifactId() string` -GetSessionRunId returns the SessionRunId field if non-nil, zero value otherwise. +GetInferenceArtifactId returns the InferenceArtifactId field if non-nil, zero value otherwise. -### GetSessionRunIdOk +### GetInferenceArtifactIdOk -`func (o *Visualization) GetSessionRunIdOk() (*string, bool)` +`func (o *Visualization) GetInferenceArtifactIdOk() (*string, bool)` -GetSessionRunIdOk returns a tuple with the SessionRunId field if it's non-nil, zero value otherwise +GetInferenceArtifactIdOk returns a tuple with the InferenceArtifactId field if it's non-nil, zero value otherwise and a boolean to check if the value has been set. -### SetSessionRunId +### SetInferenceArtifactId -`func (o *Visualization) SetSessionRunId(v string)` +`func (o *Visualization) SetInferenceArtifactId(v string)` -SetSessionRunId sets SessionRunId field to given value. +SetInferenceArtifactId sets InferenceArtifactId field to given value. ### GetJobParms diff --git a/pkg/tensorleapapi/docs/WeightAssetData.md b/pkg/tensorleapapi/docs/WeightAssetData.md deleted file mode 100644 index 280e15451..000000000 --- a/pkg/tensorleapapi/docs/WeightAssetData.md +++ /dev/null @@ -1,72 +0,0 @@ -# WeightAssetData - -## Properties - -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**SessionWeightId** | **string** | | -**EsMetricIndex** | **string** | | - -## Methods - -### NewWeightAssetData - -`func NewWeightAssetData(sessionWeightId string, esMetricIndex string, ) *WeightAssetData` - -NewWeightAssetData instantiates a new WeightAssetData object -This constructor will assign default values to properties that have it defined, -and makes sure properties required by API are set, but the set of arguments -will change when the set of required properties is changed - -### NewWeightAssetDataWithDefaults - -`func NewWeightAssetDataWithDefaults() *WeightAssetData` - -NewWeightAssetDataWithDefaults instantiates a new WeightAssetData object -This constructor will only assign default values to properties that have it defined, -but it doesn't guarantee that properties required by API are set - -### GetSessionWeightId - -`func (o *WeightAssetData) GetSessionWeightId() string` - -GetSessionWeightId returns the SessionWeightId field if non-nil, zero value otherwise. - -### GetSessionWeightIdOk - -`func (o *WeightAssetData) GetSessionWeightIdOk() (*string, bool)` - -GetSessionWeightIdOk returns a tuple with the SessionWeightId field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetSessionWeightId - -`func (o *WeightAssetData) SetSessionWeightId(v string)` - -SetSessionWeightId sets SessionWeightId field to given value. - - -### GetEsMetricIndex - -`func (o *WeightAssetData) GetEsMetricIndex() string` - -GetEsMetricIndex returns the EsMetricIndex field if non-nil, zero value otherwise. - -### GetEsMetricIndexOk - -`func (o *WeightAssetData) GetEsMetricIndexOk() (*string, bool)` - -GetEsMetricIndexOk returns a tuple with the EsMetricIndex field if it's non-nil, zero value otherwise -and a boolean to check if the value has been set. - -### SetEsMetricIndex - -`func (o *WeightAssetData) SetEsMetricIndex(v string)` - -SetEsMetricIndex sets EsMetricIndex field to given value. - - - -[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) - - diff --git a/pkg/tensorleapapi/model_action_assignment_element.go b/pkg/tensorleapapi/model_action_assignment_element.go index 0d237eaa0..15f8fe3a4 100644 --- a/pkg/tensorleapapi/model_action_assignment_element.go +++ b/pkg/tensorleapapi/model_action_assignment_element.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_action_comment_element.go b/pkg/tensorleapapi/model_action_comment_element.go index 97dda1cfe..8d39dc7b0 100644 --- a/pkg/tensorleapapi/model_action_comment_element.go +++ b/pkg/tensorleapapi/model_action_comment_element.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_action_tag_element.go b/pkg/tensorleapapi/model_action_tag_element.go index ff11b3d7b..ec7822bc9 100644 --- a/pkg/tensorleapapi/model_action_tag_element.go +++ b/pkg/tensorleapapi/model_action_tag_element.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_activation_params.go b/pkg/tensorleapapi/model_activation_params.go index c5567e779..c2793751d 100644 --- a/pkg/tensorleapapi/model_activation_params.go +++ b/pkg/tensorleapapi/model_activation_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_add_dashboard_params.go b/pkg/tensorleapapi/model_add_dashboard_params.go index 0fc4b9370..70d41e622 100644 --- a/pkg/tensorleapapi/model_add_dashboard_params.go +++ b/pkg/tensorleapapi/model_add_dashboard_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_add_dashboard_response.go b/pkg/tensorleapapi/model_add_dashboard_response.go index e43ac82f0..d058470ea 100644 --- a/pkg/tensorleapapi/model_add_dashboard_response.go +++ b/pkg/tensorleapapi/model_add_dashboard_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_add_export_model_job_params.go b/pkg/tensorleapapi/model_add_export_model_job_params.go index e8ea24047..60b85c351 100644 --- a/pkg/tensorleapapi/model_add_export_model_job_params.go +++ b/pkg/tensorleapapi/model_add_export_model_job_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -21,7 +21,7 @@ var _ MappedNullable = &AddExportModelJobParams{} // AddExportModelJobParams struct for AddExportModelJobParams type AddExportModelJobParams struct { ProjectId string `json:"projectId"` - SessionWeightId string `json:"sessionWeightId"` + ModelId string `json:"modelId"` ExportModelType ExportModelTypeEnum `json:"exportModelType"` Title string `json:"title"` PruneModel bool `json:"pruneModel"` @@ -34,10 +34,10 @@ type _AddExportModelJobParams AddExportModelJobParams // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewAddExportModelJobParams(projectId string, sessionWeightId string, exportModelType ExportModelTypeEnum, title string, pruneModel bool) *AddExportModelJobParams { +func NewAddExportModelJobParams(projectId string, modelId string, exportModelType ExportModelTypeEnum, title string, pruneModel bool) *AddExportModelJobParams { this := AddExportModelJobParams{} this.ProjectId = projectId - this.SessionWeightId = sessionWeightId + this.ModelId = modelId this.ExportModelType = exportModelType this.Title = title this.PruneModel = pruneModel @@ -76,28 +76,28 @@ func (o *AddExportModelJobParams) SetProjectId(v string) { o.ProjectId = v } -// GetSessionWeightId returns the SessionWeightId field value -func (o *AddExportModelJobParams) GetSessionWeightId() string { +// GetModelId returns the ModelId field value +func (o *AddExportModelJobParams) GetModelId() string { if o == nil { var ret string return ret } - return o.SessionWeightId + return o.ModelId } -// GetSessionWeightIdOk returns a tuple with the SessionWeightId field value +// GetModelIdOk returns a tuple with the ModelId field value // and a boolean to check if the value has been set. -func (o *AddExportModelJobParams) GetSessionWeightIdOk() (*string, bool) { +func (o *AddExportModelJobParams) GetModelIdOk() (*string, bool) { if o == nil { return nil, false } - return &o.SessionWeightId, true + return &o.ModelId, true } -// SetSessionWeightId sets field value -func (o *AddExportModelJobParams) SetSessionWeightId(v string) { - o.SessionWeightId = v +// SetModelId sets field value +func (o *AddExportModelJobParams) SetModelId(v string) { + o.ModelId = v } // GetExportModelType returns the ExportModelType field value @@ -183,7 +183,7 @@ func (o AddExportModelJobParams) MarshalJSON() ([]byte, error) { func (o AddExportModelJobParams) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} toSerialize["projectId"] = o.ProjectId - toSerialize["sessionWeightId"] = o.SessionWeightId + toSerialize["modelId"] = o.ModelId toSerialize["exportModelType"] = o.ExportModelType toSerialize["title"] = o.Title toSerialize["pruneModel"] = o.PruneModel @@ -201,7 +201,7 @@ func (o *AddExportModelJobParams) UnmarshalJSON(data []byte) (err error) { // that every required field exists as a key in the generic map. requiredProperties := []string{ "projectId", - "sessionWeightId", + "modelId", "exportModelType", "title", "pruneModel", @@ -235,7 +235,7 @@ func (o *AddExportModelJobParams) UnmarshalJSON(data []byte) (err error) { if err = json.Unmarshal(data, &additionalProperties); err == nil { delete(additionalProperties, "projectId") - delete(additionalProperties, "sessionWeightId") + delete(additionalProperties, "modelId") delete(additionalProperties, "exportModelType") delete(additionalProperties, "title") delete(additionalProperties, "pruneModel") diff --git a/pkg/tensorleapapi/model_add_issue_params.go b/pkg/tensorleapapi/model_add_issue_params.go index 4368403a7..e7bf022b7 100644 --- a/pkg/tensorleapapi/model_add_issue_params.go +++ b/pkg/tensorleapapi/model_add_issue_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_add_project_response.go b/pkg/tensorleapapi/model_add_project_response.go index 7aab4e248..3cdd3fc8a 100644 --- a/pkg/tensorleapapi/model_add_project_response.go +++ b/pkg/tensorleapapi/model_add_project_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_add_sample_collection_params.go b/pkg/tensorleapapi/model_add_sample_collection_params.go index 380212754..d710df983 100644 --- a/pkg/tensorleapapi/model_add_sample_collection_params.go +++ b/pkg/tensorleapapi/model_add_sample_collection_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_add_sample_collection_response.go b/pkg/tensorleapapi/model_add_sample_collection_response.go index 0870e94b1..dc06429e7 100644 --- a/pkg/tensorleapapi/model_add_sample_collection_response.go +++ b/pkg/tensorleapapi/model_add_sample_collection_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_add_secret_manager_params.go b/pkg/tensorleapapi/model_add_secret_manager_params.go index bee00da1c..d17ed4a90 100644 --- a/pkg/tensorleapapi/model_add_secret_manager_params.go +++ b/pkg/tensorleapapi/model_add_secret_manager_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_add_secret_manager_response.go b/pkg/tensorleapapi/model_add_secret_manager_response.go index c553289be..504a1135e 100644 --- a/pkg/tensorleapapi/model_add_secret_manager_response.go +++ b/pkg/tensorleapapi/model_add_secret_manager_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_aggregation_method.go b/pkg/tensorleapapi/model_aggregation_method.go index c882131f6..f8c4e69dd 100644 --- a/pkg/tensorleapapi/model_aggregation_method.go +++ b/pkg/tensorleapapi/model_aggregation_method.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_aggregations.go b/pkg/tensorleapapi/model_aggregations.go index d797a9518..d6b520033 100644 --- a/pkg/tensorleapapi/model_aggregations.go +++ b/pkg/tensorleapapi/model_aggregations.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_aggressor_fixing.go b/pkg/tensorleapapi/model_aggressor_fixing.go new file mode 100644 index 000000000..e03800ecd --- /dev/null +++ b/pkg/tensorleapapi/model_aggressor_fixing.go @@ -0,0 +1,224 @@ +/* +node-server + +No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + +API version: 11.0.23 +*/ + +// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. + +package tensorleapapi + +import ( + "encoding/json" + "fmt" +) + +// checks if the AggressorFixing type satisfies the MappedNullable interface at compile time +var _ MappedNullable = &AggressorFixing{} + +// AggressorFixing struct for AggressorFixing +type AggressorFixing struct { + NumOfSamplesToLabel float64 `json:"num_of_samples_to_label"` + NumOfSamplesToAcquire float64 `json:"num_of_samples_to_acquire"` + CsvPath string `json:"csv_path"` + AdditionalProperties map[string]interface{} +} + +type _AggressorFixing AggressorFixing + +// NewAggressorFixing instantiates a new AggressorFixing object +// This constructor will assign default values to properties that have it defined, +// and makes sure properties required by API are set, but the set of arguments +// will change when the set of required properties is changed +func NewAggressorFixing(numOfSamplesToLabel float64, numOfSamplesToAcquire float64, csvPath string) *AggressorFixing { + this := AggressorFixing{} + this.NumOfSamplesToLabel = numOfSamplesToLabel + this.NumOfSamplesToAcquire = numOfSamplesToAcquire + this.CsvPath = csvPath + return &this +} + +// NewAggressorFixingWithDefaults instantiates a new AggressorFixing object +// This constructor will only assign default values to properties that have it defined, +// but it doesn't guarantee that properties required by API are set +func NewAggressorFixingWithDefaults() *AggressorFixing { + this := AggressorFixing{} + return &this +} + +// GetNumOfSamplesToLabel returns the NumOfSamplesToLabel field value +func (o *AggressorFixing) GetNumOfSamplesToLabel() float64 { + if o == nil { + var ret float64 + return ret + } + + return o.NumOfSamplesToLabel +} + +// GetNumOfSamplesToLabelOk returns a tuple with the NumOfSamplesToLabel field value +// and a boolean to check if the value has been set. +func (o *AggressorFixing) GetNumOfSamplesToLabelOk() (*float64, bool) { + if o == nil { + return nil, false + } + return &o.NumOfSamplesToLabel, true +} + +// SetNumOfSamplesToLabel sets field value +func (o *AggressorFixing) SetNumOfSamplesToLabel(v float64) { + o.NumOfSamplesToLabel = v +} + +// GetNumOfSamplesToAcquire returns the NumOfSamplesToAcquire field value +func (o *AggressorFixing) GetNumOfSamplesToAcquire() float64 { + if o == nil { + var ret float64 + return ret + } + + return o.NumOfSamplesToAcquire +} + +// GetNumOfSamplesToAcquireOk returns a tuple with the NumOfSamplesToAcquire field value +// and a boolean to check if the value has been set. +func (o *AggressorFixing) GetNumOfSamplesToAcquireOk() (*float64, bool) { + if o == nil { + return nil, false + } + return &o.NumOfSamplesToAcquire, true +} + +// SetNumOfSamplesToAcquire sets field value +func (o *AggressorFixing) SetNumOfSamplesToAcquire(v float64) { + o.NumOfSamplesToAcquire = v +} + +// GetCsvPath returns the CsvPath field value +func (o *AggressorFixing) GetCsvPath() string { + if o == nil { + var ret string + return ret + } + + return o.CsvPath +} + +// GetCsvPathOk returns a tuple with the CsvPath field value +// and a boolean to check if the value has been set. +func (o *AggressorFixing) GetCsvPathOk() (*string, bool) { + if o == nil { + return nil, false + } + return &o.CsvPath, true +} + +// SetCsvPath sets field value +func (o *AggressorFixing) SetCsvPath(v string) { + o.CsvPath = v +} + +func (o AggressorFixing) MarshalJSON() ([]byte, error) { + toSerialize, err := o.ToMap() + if err != nil { + return []byte{}, err + } + return json.Marshal(toSerialize) +} + +func (o AggressorFixing) ToMap() (map[string]interface{}, error) { + toSerialize := map[string]interface{}{} + toSerialize["num_of_samples_to_label"] = o.NumOfSamplesToLabel + toSerialize["num_of_samples_to_acquire"] = o.NumOfSamplesToAcquire + toSerialize["csv_path"] = o.CsvPath + + for key, value := range o.AdditionalProperties { + toSerialize[key] = value + } + + return toSerialize, nil +} + +func (o *AggressorFixing) UnmarshalJSON(data []byte) (err error) { + // This validates that all required properties are included in the JSON object + // by unmarshalling the object into a generic map with string keys and checking + // that every required field exists as a key in the generic map. + requiredProperties := []string{ + "num_of_samples_to_label", + "num_of_samples_to_acquire", + "csv_path", + } + + allProperties := make(map[string]interface{}) + + err = json.Unmarshal(data, &allProperties) + + if err != nil { + return err + } + + for _, requiredProperty := range requiredProperties { + if _, exists := allProperties[requiredProperty]; !exists { + return fmt.Errorf("no value given for required property %v", requiredProperty) + } + } + + varAggressorFixing := _AggressorFixing{} + + err = json.Unmarshal(data, &varAggressorFixing) + + if err != nil { + return err + } + + *o = AggressorFixing(varAggressorFixing) + + additionalProperties := make(map[string]interface{}) + + if err = json.Unmarshal(data, &additionalProperties); err == nil { + delete(additionalProperties, "num_of_samples_to_label") + delete(additionalProperties, "num_of_samples_to_acquire") + delete(additionalProperties, "csv_path") + o.AdditionalProperties = additionalProperties + } + + return err +} + +type NullableAggressorFixing struct { + value *AggressorFixing + isSet bool +} + +func (v NullableAggressorFixing) Get() *AggressorFixing { + return v.value +} + +func (v *NullableAggressorFixing) Set(val *AggressorFixing) { + v.value = val + v.isSet = true +} + +func (v NullableAggressorFixing) IsSet() bool { + return v.isSet +} + +func (v *NullableAggressorFixing) Unset() { + v.value = nil + v.isSet = false +} + +func NewNullableAggressorFixing(val *AggressorFixing) *NullableAggressorFixing { + return &NullableAggressorFixing{value: val, isSet: true} +} + +func (v NullableAggressorFixing) MarshalJSON() ([]byte, error) { + return json.Marshal(v.value) +} + +func (v *NullableAggressorFixing) UnmarshalJSON(src []byte) error { + v.isSet = true + return json.Unmarshal(src, &v.value) +} diff --git a/pkg/tensorleapapi/model_all_sessions_test_results.go b/pkg/tensorleapapi/model_all_sessions_test_results.go index 6bda7d57a..de0cf7b4c 100644 --- a/pkg/tensorleapapi/model_all_sessions_test_results.go +++ b/pkg/tensorleapapi/model_all_sessions_test_results.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_analytics_dashlet.go b/pkg/tensorleapapi/model_analytics_dashlet.go index a6a5185cd..e89f0c107 100644 --- a/pkg/tensorleapapi/model_analytics_dashlet.go +++ b/pkg/tensorleapapi/model_analytics_dashlet.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_analytics_dashlet_data.go b/pkg/tensorleapapi/model_analytics_dashlet_data.go index 0ef005c63..f6d093937 100644 --- a/pkg/tensorleapapi/model_analytics_dashlet_data.go +++ b/pkg/tensorleapapi/model_analytics_dashlet_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_analytics_dashlet_type.go b/pkg/tensorleapapi/model_analytics_dashlet_type.go index 23480e81f..d037ee603 100644 --- a/pkg/tensorleapapi/model_analytics_dashlet_type.go +++ b/pkg/tensorleapapi/model_analytics_dashlet_type.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_analyze_params.go b/pkg/tensorleapapi/model_analyze_params.go index f85e24564..3831efd98 100644 --- a/pkg/tensorleapapi/model_analyze_params.go +++ b/pkg/tensorleapapi/model_analyze_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -21,7 +21,7 @@ var _ MappedNullable = &AnalyzeParams{} // AnalyzeParams struct for AnalyzeParams type AnalyzeParams struct { Type AnalyzeTypeEnum `json:"type"` - FromEpoch float64 `json:"fromEpoch"` + InferenceArtifactId *string `json:"inferenceArtifactId,omitempty"` BatchSize *float64 `json:"batchSize,omitempty"` SampleIdentity *SampleIdentity `json:"sampleIdentity,omitempty"` FromDatasetSlice *DataStateType `json:"fromDatasetSlice,omitempty"` @@ -35,10 +35,9 @@ type _AnalyzeParams AnalyzeParams // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewAnalyzeParams(type_ AnalyzeTypeEnum, fromEpoch float64, extId string) *AnalyzeParams { +func NewAnalyzeParams(type_ AnalyzeTypeEnum, extId string) *AnalyzeParams { this := AnalyzeParams{} this.Type = type_ - this.FromEpoch = fromEpoch this.ExtId = extId return &this } @@ -75,28 +74,36 @@ func (o *AnalyzeParams) SetType(v AnalyzeTypeEnum) { o.Type = v } -// GetFromEpoch returns the FromEpoch field value -func (o *AnalyzeParams) GetFromEpoch() float64 { - if o == nil { - var ret float64 +// GetInferenceArtifactId returns the InferenceArtifactId field value if set, zero value otherwise. +func (o *AnalyzeParams) GetInferenceArtifactId() string { + if o == nil || IsNil(o.InferenceArtifactId) { + var ret string return ret } - - return o.FromEpoch + return *o.InferenceArtifactId } -// GetFromEpochOk returns a tuple with the FromEpoch field value +// GetInferenceArtifactIdOk returns a tuple with the InferenceArtifactId field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *AnalyzeParams) GetFromEpochOk() (*float64, bool) { - if o == nil { +func (o *AnalyzeParams) GetInferenceArtifactIdOk() (*string, bool) { + if o == nil || IsNil(o.InferenceArtifactId) { return nil, false } - return &o.FromEpoch, true + return o.InferenceArtifactId, true +} + +// HasInferenceArtifactId returns a boolean if a field has been set. +func (o *AnalyzeParams) HasInferenceArtifactId() bool { + if o != nil && !IsNil(o.InferenceArtifactId) { + return true + } + + return false } -// SetFromEpoch sets field value -func (o *AnalyzeParams) SetFromEpoch(v float64) { - o.FromEpoch = v +// SetInferenceArtifactId gets a reference to the given string and assigns it to the InferenceArtifactId field. +func (o *AnalyzeParams) SetInferenceArtifactId(v string) { + o.InferenceArtifactId = &v } // GetBatchSize returns the BatchSize field value if set, zero value otherwise. @@ -230,7 +237,9 @@ func (o AnalyzeParams) MarshalJSON() ([]byte, error) { func (o AnalyzeParams) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} toSerialize["type"] = o.Type - toSerialize["fromEpoch"] = o.FromEpoch + if !IsNil(o.InferenceArtifactId) { + toSerialize["inferenceArtifactId"] = o.InferenceArtifactId + } if !IsNil(o.BatchSize) { toSerialize["batchSize"] = o.BatchSize } @@ -255,7 +264,6 @@ func (o *AnalyzeParams) UnmarshalJSON(data []byte) (err error) { // that every required field exists as a key in the generic map. requiredProperties := []string{ "type", - "fromEpoch", "extId", } @@ -287,7 +295,7 @@ func (o *AnalyzeParams) UnmarshalJSON(data []byte) (err error) { if err = json.Unmarshal(data, &additionalProperties); err == nil { delete(additionalProperties, "type") - delete(additionalProperties, "fromEpoch") + delete(additionalProperties, "inferenceArtifactId") delete(additionalProperties, "batchSize") delete(additionalProperties, "sampleIdentity") delete(additionalProperties, "fromDatasetSlice") diff --git a/pkg/tensorleapapi/model_analyze_type_enum.go b/pkg/tensorleapapi/model_analyze_type_enum.go index 2026c194a..9e5385b38 100644 --- a/pkg/tensorleapapi/model_analyze_type_enum.go +++ b/pkg/tensorleapapi/model_analyze_type_enum.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_apply_insights_status_params.go b/pkg/tensorleapapi/model_apply_insights_status_params.go index 08b33b266..aca72042e 100644 --- a/pkg/tensorleapapi/model_apply_insights_status_params.go +++ b/pkg/tensorleapapi/model_apply_insights_status_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_auth_provider_enum.go b/pkg/tensorleapapi/model_auth_provider_enum.go index fd5c6442a..729b0948f 100644 --- a/pkg/tensorleapapi/model_auth_provider_enum.go +++ b/pkg/tensorleapapi/model_auth_provider_enum.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_auth_status.go b/pkg/tensorleapapi/model_auth_status.go index 420c8ac28..fce2f5405 100644 --- a/pkg/tensorleapapi/model_auth_status.go +++ b/pkg/tensorleapapi/model_auth_status.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_b_box_image_data.go b/pkg/tensorleapapi/model_b_box_image_data.go index c2753cbb7..7c3f50f94 100644 --- a/pkg/tensorleapapi/model_b_box_image_data.go +++ b/pkg/tensorleapapi/model_b_box_image_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_b_box_image_viz.go b/pkg/tensorleapapi/model_b_box_image_viz.go index 7043e2417..bdcb31051 100644 --- a/pkg/tensorleapapi/model_b_box_image_viz.go +++ b/pkg/tensorleapapi/model_b_box_image_viz.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_base_split_agg.go b/pkg/tensorleapapi/model_base_split_agg.go index 5bf7044ac..d50f52282 100644 --- a/pkg/tensorleapapi/model_base_split_agg.go +++ b/pkg/tensorleapapi/model_base_split_agg.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_basic_visualization_info.go b/pkg/tensorleapapi/model_basic_visualization_info.go index e785b2a36..4bd537eb2 100644 --- a/pkg/tensorleapapi/model_basic_visualization_info.go +++ b/pkg/tensorleapapi/model_basic_visualization_info.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_bool_schema.go b/pkg/tensorleapapi/model_bool_schema.go index 50a7c1994..58ac0f443 100644 --- a/pkg/tensorleapapi/model_bool_schema.go +++ b/pkg/tensorleapapi/model_bool_schema.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_bounding_box.go b/pkg/tensorleapapi/model_bounding_box.go index b436cb427..8537a1566 100644 --- a/pkg/tensorleapapi/model_bounding_box.go +++ b/pkg/tensorleapapi/model_bounding_box.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_calc_population_exploration_digest_params.go b/pkg/tensorleapapi/model_calc_population_exploration_digest_params.go index c87def4d0..d96cb6a07 100644 --- a/pkg/tensorleapapi/model_calc_population_exploration_digest_params.go +++ b/pkg/tensorleapapi/model_calc_population_exploration_digest_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_calc_population_exploration_digest_response.go b/pkg/tensorleapapi/model_calc_population_exploration_digest_response.go index 99a4774be..abda91fa1 100644 --- a/pkg/tensorleapapi/model_calc_population_exploration_digest_response.go +++ b/pkg/tensorleapapi/model_calc_population_exploration_digest_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_chart_data.go b/pkg/tensorleapapi/model_chart_data.go index ca6923d49..5b6613a9e 100644 --- a/pkg/tensorleapapi/model_chart_data.go +++ b/pkg/tensorleapapi/model_chart_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_client_filter_params.go b/pkg/tensorleapapi/model_client_filter_params.go index 26157f860..6e3e829aa 100644 --- a/pkg/tensorleapapi/model_client_filter_params.go +++ b/pkg/tensorleapapi/model_client_filter_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_clusters.go b/pkg/tensorleapapi/model_clusters.go index 3185b39c8..c30ac7303 100644 --- a/pkg/tensorleapapi/model_clusters.go +++ b/pkg/tensorleapapi/model_clusters.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_code_snapshot.go b/pkg/tensorleapapi/model_code_snapshot.go index a199d0aa5..540610c53 100644 --- a/pkg/tensorleapapi/model_code_snapshot.go +++ b/pkg/tensorleapapi/model_code_snapshot.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_code_snapshot_info.go b/pkg/tensorleapapi/model_code_snapshot_info.go index 1c3c9895b..41ebfac1b 100644 --- a/pkg/tensorleapapi/model_code_snapshot_info.go +++ b/pkg/tensorleapapi/model_code_snapshot_info.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_code_snapshot_result.go b/pkg/tensorleapapi/model_code_snapshot_result.go index 06a63eabb..2e22a02e2 100644 --- a/pkg/tensorleapapi/model_code_snapshot_result.go +++ b/pkg/tensorleapapi/model_code_snapshot_result.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_code_snapshot_setup_status.go b/pkg/tensorleapapi/model_code_snapshot_setup_status.go index ac8460f8a..23b46c6d5 100644 --- a/pkg/tensorleapapi/model_code_snapshot_setup_status.go +++ b/pkg/tensorleapapi/model_code_snapshot_setup_status.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_code_snapshot_upload_url_response.go b/pkg/tensorleapapi/model_code_snapshot_upload_url_response.go index 7caa4816d..1367cbfac 100644 --- a/pkg/tensorleapapi/model_code_snapshot_upload_url_response.go +++ b/pkg/tensorleapapi/model_code_snapshot_upload_url_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_collection_display_data.go b/pkg/tensorleapapi/model_collection_display_data.go new file mode 100644 index 000000000..95f150317 --- /dev/null +++ b/pkg/tensorleapapi/model_collection_display_data.go @@ -0,0 +1,261 @@ +/* +node-server + +No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + +API version: 11.0.23 +*/ + +// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. + +package tensorleapapi + +import ( + "encoding/json" + "fmt" +) + +// checks if the CollectionDisplayData type satisfies the MappedNullable interface at compile time +var _ MappedNullable = &CollectionDisplayData{} + +// CollectionDisplayData struct for CollectionDisplayData +type CollectionDisplayData struct { + SampleIdentitiesPreview []SampleIdentity `json:"sampleIdentitiesPreview"` + SamplesCount float64 `json:"samplesCount"` + Description *string `json:"description,omitempty"` + Name string `json:"name"` + AdditionalProperties map[string]interface{} +} + +type _CollectionDisplayData CollectionDisplayData + +// NewCollectionDisplayData instantiates a new CollectionDisplayData object +// This constructor will assign default values to properties that have it defined, +// and makes sure properties required by API are set, but the set of arguments +// will change when the set of required properties is changed +func NewCollectionDisplayData(sampleIdentitiesPreview []SampleIdentity, samplesCount float64, name string) *CollectionDisplayData { + this := CollectionDisplayData{} + this.SampleIdentitiesPreview = sampleIdentitiesPreview + this.SamplesCount = samplesCount + this.Name = name + return &this +} + +// NewCollectionDisplayDataWithDefaults instantiates a new CollectionDisplayData object +// This constructor will only assign default values to properties that have it defined, +// but it doesn't guarantee that properties required by API are set +func NewCollectionDisplayDataWithDefaults() *CollectionDisplayData { + this := CollectionDisplayData{} + return &this +} + +// GetSampleIdentitiesPreview returns the SampleIdentitiesPreview field value +func (o *CollectionDisplayData) GetSampleIdentitiesPreview() []SampleIdentity { + if o == nil { + var ret []SampleIdentity + return ret + } + + return o.SampleIdentitiesPreview +} + +// GetSampleIdentitiesPreviewOk returns a tuple with the SampleIdentitiesPreview field value +// and a boolean to check if the value has been set. +func (o *CollectionDisplayData) GetSampleIdentitiesPreviewOk() ([]SampleIdentity, bool) { + if o == nil { + return nil, false + } + return o.SampleIdentitiesPreview, true +} + +// SetSampleIdentitiesPreview sets field value +func (o *CollectionDisplayData) SetSampleIdentitiesPreview(v []SampleIdentity) { + o.SampleIdentitiesPreview = v +} + +// GetSamplesCount returns the SamplesCount field value +func (o *CollectionDisplayData) GetSamplesCount() float64 { + if o == nil { + var ret float64 + return ret + } + + return o.SamplesCount +} + +// GetSamplesCountOk returns a tuple with the SamplesCount field value +// and a boolean to check if the value has been set. +func (o *CollectionDisplayData) GetSamplesCountOk() (*float64, bool) { + if o == nil { + return nil, false + } + return &o.SamplesCount, true +} + +// SetSamplesCount sets field value +func (o *CollectionDisplayData) SetSamplesCount(v float64) { + o.SamplesCount = v +} + +// GetDescription returns the Description field value if set, zero value otherwise. +func (o *CollectionDisplayData) GetDescription() string { + if o == nil || IsNil(o.Description) { + var ret string + return ret + } + return *o.Description +} + +// GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *CollectionDisplayData) GetDescriptionOk() (*string, bool) { + if o == nil || IsNil(o.Description) { + return nil, false + } + return o.Description, true +} + +// HasDescription returns a boolean if a field has been set. +func (o *CollectionDisplayData) HasDescription() bool { + if o != nil && !IsNil(o.Description) { + return true + } + + return false +} + +// SetDescription gets a reference to the given string and assigns it to the Description field. +func (o *CollectionDisplayData) SetDescription(v string) { + o.Description = &v +} + +// GetName returns the Name field value +func (o *CollectionDisplayData) GetName() string { + if o == nil { + var ret string + return ret + } + + return o.Name +} + +// GetNameOk returns a tuple with the Name field value +// and a boolean to check if the value has been set. +func (o *CollectionDisplayData) GetNameOk() (*string, bool) { + if o == nil { + return nil, false + } + return &o.Name, true +} + +// SetName sets field value +func (o *CollectionDisplayData) SetName(v string) { + o.Name = v +} + +func (o CollectionDisplayData) MarshalJSON() ([]byte, error) { + toSerialize, err := o.ToMap() + if err != nil { + return []byte{}, err + } + return json.Marshal(toSerialize) +} + +func (o CollectionDisplayData) ToMap() (map[string]interface{}, error) { + toSerialize := map[string]interface{}{} + toSerialize["sampleIdentitiesPreview"] = o.SampleIdentitiesPreview + toSerialize["samplesCount"] = o.SamplesCount + if !IsNil(o.Description) { + toSerialize["description"] = o.Description + } + toSerialize["name"] = o.Name + + for key, value := range o.AdditionalProperties { + toSerialize[key] = value + } + + return toSerialize, nil +} + +func (o *CollectionDisplayData) UnmarshalJSON(data []byte) (err error) { + // This validates that all required properties are included in the JSON object + // by unmarshalling the object into a generic map with string keys and checking + // that every required field exists as a key in the generic map. + requiredProperties := []string{ + "sampleIdentitiesPreview", + "samplesCount", + "name", + } + + allProperties := make(map[string]interface{}) + + err = json.Unmarshal(data, &allProperties) + + if err != nil { + return err + } + + for _, requiredProperty := range requiredProperties { + if _, exists := allProperties[requiredProperty]; !exists { + return fmt.Errorf("no value given for required property %v", requiredProperty) + } + } + + varCollectionDisplayData := _CollectionDisplayData{} + + err = json.Unmarshal(data, &varCollectionDisplayData) + + if err != nil { + return err + } + + *o = CollectionDisplayData(varCollectionDisplayData) + + additionalProperties := make(map[string]interface{}) + + if err = json.Unmarshal(data, &additionalProperties); err == nil { + delete(additionalProperties, "sampleIdentitiesPreview") + delete(additionalProperties, "samplesCount") + delete(additionalProperties, "description") + delete(additionalProperties, "name") + o.AdditionalProperties = additionalProperties + } + + return err +} + +type NullableCollectionDisplayData struct { + value *CollectionDisplayData + isSet bool +} + +func (v NullableCollectionDisplayData) Get() *CollectionDisplayData { + return v.value +} + +func (v *NullableCollectionDisplayData) Set(val *CollectionDisplayData) { + v.value = val + v.isSet = true +} + +func (v NullableCollectionDisplayData) IsSet() bool { + return v.isSet +} + +func (v *NullableCollectionDisplayData) Unset() { + v.value = nil + v.isSet = false +} + +func NewNullableCollectionDisplayData(val *CollectionDisplayData) *NullableCollectionDisplayData { + return &NullableCollectionDisplayData{value: val, isSet: true} +} + +func (v NullableCollectionDisplayData) MarshalJSON() ([]byte, error) { + return json.Marshal(v.value) +} + +func (v *NullableCollectionDisplayData) UnmarshalJSON(src []byte) error { + v.isSet = true + return json.Unmarshal(src, &v.value) +} diff --git a/pkg/tensorleapapi/model_collection_filter_display_data.go b/pkg/tensorleapapi/model_collection_filter_display_data.go new file mode 100644 index 000000000..a12b7fde9 --- /dev/null +++ b/pkg/tensorleapapi/model_collection_filter_display_data.go @@ -0,0 +1,224 @@ +/* +node-server + +No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + +API version: 11.0.23 +*/ + +// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. + +package tensorleapapi + +import ( + "encoding/json" + "fmt" +) + +// checks if the CollectionFilterDisplayData type satisfies the MappedNullable interface at compile time +var _ MappedNullable = &CollectionFilterDisplayData{} + +// CollectionFilterDisplayData struct for CollectionFilterDisplayData +type CollectionFilterDisplayData struct { + Type string `json:"type"` + CollectionId string `json:"collectionId"` + ProjectId string `json:"projectId"` + AdditionalProperties map[string]interface{} +} + +type _CollectionFilterDisplayData CollectionFilterDisplayData + +// NewCollectionFilterDisplayData instantiates a new CollectionFilterDisplayData object +// This constructor will assign default values to properties that have it defined, +// and makes sure properties required by API are set, but the set of arguments +// will change when the set of required properties is changed +func NewCollectionFilterDisplayData(type_ string, collectionId string, projectId string) *CollectionFilterDisplayData { + this := CollectionFilterDisplayData{} + this.Type = type_ + this.CollectionId = collectionId + this.ProjectId = projectId + return &this +} + +// NewCollectionFilterDisplayDataWithDefaults instantiates a new CollectionFilterDisplayData object +// This constructor will only assign default values to properties that have it defined, +// but it doesn't guarantee that properties required by API are set +func NewCollectionFilterDisplayDataWithDefaults() *CollectionFilterDisplayData { + this := CollectionFilterDisplayData{} + return &this +} + +// GetType returns the Type field value +func (o *CollectionFilterDisplayData) GetType() string { + if o == nil { + var ret string + return ret + } + + return o.Type +} + +// GetTypeOk returns a tuple with the Type field value +// and a boolean to check if the value has been set. +func (o *CollectionFilterDisplayData) GetTypeOk() (*string, bool) { + if o == nil { + return nil, false + } + return &o.Type, true +} + +// SetType sets field value +func (o *CollectionFilterDisplayData) SetType(v string) { + o.Type = v +} + +// GetCollectionId returns the CollectionId field value +func (o *CollectionFilterDisplayData) GetCollectionId() string { + if o == nil { + var ret string + return ret + } + + return o.CollectionId +} + +// GetCollectionIdOk returns a tuple with the CollectionId field value +// and a boolean to check if the value has been set. +func (o *CollectionFilterDisplayData) GetCollectionIdOk() (*string, bool) { + if o == nil { + return nil, false + } + return &o.CollectionId, true +} + +// SetCollectionId sets field value +func (o *CollectionFilterDisplayData) SetCollectionId(v string) { + o.CollectionId = v +} + +// GetProjectId returns the ProjectId field value +func (o *CollectionFilterDisplayData) GetProjectId() string { + if o == nil { + var ret string + return ret + } + + return o.ProjectId +} + +// GetProjectIdOk returns a tuple with the ProjectId field value +// and a boolean to check if the value has been set. +func (o *CollectionFilterDisplayData) GetProjectIdOk() (*string, bool) { + if o == nil { + return nil, false + } + return &o.ProjectId, true +} + +// SetProjectId sets field value +func (o *CollectionFilterDisplayData) SetProjectId(v string) { + o.ProjectId = v +} + +func (o CollectionFilterDisplayData) MarshalJSON() ([]byte, error) { + toSerialize, err := o.ToMap() + if err != nil { + return []byte{}, err + } + return json.Marshal(toSerialize) +} + +func (o CollectionFilterDisplayData) ToMap() (map[string]interface{}, error) { + toSerialize := map[string]interface{}{} + toSerialize["type"] = o.Type + toSerialize["collectionId"] = o.CollectionId + toSerialize["projectId"] = o.ProjectId + + for key, value := range o.AdditionalProperties { + toSerialize[key] = value + } + + return toSerialize, nil +} + +func (o *CollectionFilterDisplayData) UnmarshalJSON(data []byte) (err error) { + // This validates that all required properties are included in the JSON object + // by unmarshalling the object into a generic map with string keys and checking + // that every required field exists as a key in the generic map. + requiredProperties := []string{ + "type", + "collectionId", + "projectId", + } + + allProperties := make(map[string]interface{}) + + err = json.Unmarshal(data, &allProperties) + + if err != nil { + return err + } + + for _, requiredProperty := range requiredProperties { + if _, exists := allProperties[requiredProperty]; !exists { + return fmt.Errorf("no value given for required property %v", requiredProperty) + } + } + + varCollectionFilterDisplayData := _CollectionFilterDisplayData{} + + err = json.Unmarshal(data, &varCollectionFilterDisplayData) + + if err != nil { + return err + } + + *o = CollectionFilterDisplayData(varCollectionFilterDisplayData) + + additionalProperties := make(map[string]interface{}) + + if err = json.Unmarshal(data, &additionalProperties); err == nil { + delete(additionalProperties, "type") + delete(additionalProperties, "collectionId") + delete(additionalProperties, "projectId") + o.AdditionalProperties = additionalProperties + } + + return err +} + +type NullableCollectionFilterDisplayData struct { + value *CollectionFilterDisplayData + isSet bool +} + +func (v NullableCollectionFilterDisplayData) Get() *CollectionFilterDisplayData { + return v.value +} + +func (v *NullableCollectionFilterDisplayData) Set(val *CollectionFilterDisplayData) { + v.value = val + v.isSet = true +} + +func (v NullableCollectionFilterDisplayData) IsSet() bool { + return v.isSet +} + +func (v *NullableCollectionFilterDisplayData) Unset() { + v.value = nil + v.isSet = false +} + +func NewNullableCollectionFilterDisplayData(val *CollectionFilterDisplayData) *NullableCollectionFilterDisplayData { + return &NullableCollectionFilterDisplayData{value: val, isSet: true} +} + +func (v NullableCollectionFilterDisplayData) MarshalJSON() ([]byte, error) { + return json.Marshal(v.value) +} + +func (v *NullableCollectionFilterDisplayData) UnmarshalJSON(src []byte) error { + v.isSet = true + return json.Unmarshal(src, &v.value) +} diff --git a/pkg/tensorleapapi/model_composite_viz_data.go b/pkg/tensorleapapi/model_composite_viz_data.go index 2c847e8db..ed4063d22 100644 --- a/pkg/tensorleapapi/model_composite_viz_data.go +++ b/pkg/tensorleapapi/model_composite_viz_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_composite_viz_item.go b/pkg/tensorleapapi/model_composite_viz_item.go index f924a7214..77efd6236 100644 --- a/pkg/tensorleapapi/model_composite_viz_item.go +++ b/pkg/tensorleapapi/model_composite_viz_item.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_confusion_matrix_labels_response.go b/pkg/tensorleapapi/model_confusion_matrix_labels_response.go index 71722e1dc..28a26e7e6 100644 --- a/pkg/tensorleapapi/model_confusion_matrix_labels_response.go +++ b/pkg/tensorleapapi/model_confusion_matrix_labels_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_confusion_matrix_params.go b/pkg/tensorleapapi/model_confusion_matrix_params.go index 3d8693b30..6135595d0 100644 --- a/pkg/tensorleapapi/model_confusion_matrix_params.go +++ b/pkg/tensorleapapi/model_confusion_matrix_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -20,15 +20,15 @@ var _ MappedNullable = &ConfusionMatrixParams{} // ConfusionMatrixParams struct for ConfusionMatrixParams type ConfusionMatrixParams struct { - ProjectId string `json:"projectId"` - SessionRunsToEpochs []SessionRunToEpoch `json:"sessionRunsToEpochs"` - X SplitAgg `json:"x"` - VerticalSplit *SplitAgg `json:"verticalSplit,omitempty"` - HorizontalSplit *SplitAgg `json:"horizontalSplit,omitempty"` - InnerSplit *SplitAgg `json:"innerSplit,omitempty"` - Threshold *float64 `json:"threshold,omitempty"` - CustomMetricName string `json:"customMetricName"` - Filters []ESFilter `json:"filters,omitempty"` + ProjectId string `json:"projectId"` + InferenceArtifactIds []string `json:"inferenceArtifactIds"` + X SplitAgg `json:"x"` + VerticalSplit *SplitAgg `json:"verticalSplit,omitempty"` + HorizontalSplit *SplitAgg `json:"horizontalSplit,omitempty"` + InnerSplit *SplitAgg `json:"innerSplit,omitempty"` + Threshold *float64 `json:"threshold,omitempty"` + CustomMetricName string `json:"customMetricName"` + Filters []ESFilter `json:"filters,omitempty"` AdditionalProperties map[string]interface{} } @@ -38,10 +38,10 @@ type _ConfusionMatrixParams ConfusionMatrixParams // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewConfusionMatrixParams(projectId string, sessionRunsToEpochs []SessionRunToEpoch, x SplitAgg, customMetricName string) *ConfusionMatrixParams { +func NewConfusionMatrixParams(projectId string, inferenceArtifactIds []string, x SplitAgg, customMetricName string) *ConfusionMatrixParams { this := ConfusionMatrixParams{} this.ProjectId = projectId - this.SessionRunsToEpochs = sessionRunsToEpochs + this.InferenceArtifactIds = inferenceArtifactIds this.X = x this.CustomMetricName = customMetricName return &this @@ -79,28 +79,28 @@ func (o *ConfusionMatrixParams) SetProjectId(v string) { o.ProjectId = v } -// GetSessionRunsToEpochs returns the SessionRunsToEpochs field value -func (o *ConfusionMatrixParams) GetSessionRunsToEpochs() []SessionRunToEpoch { +// GetInferenceArtifactIds returns the InferenceArtifactIds field value +func (o *ConfusionMatrixParams) GetInferenceArtifactIds() []string { if o == nil { - var ret []SessionRunToEpoch + var ret []string return ret } - return o.SessionRunsToEpochs + return o.InferenceArtifactIds } -// GetSessionRunsToEpochsOk returns a tuple with the SessionRunsToEpochs field value +// GetInferenceArtifactIdsOk returns a tuple with the InferenceArtifactIds field value // and a boolean to check if the value has been set. -func (o *ConfusionMatrixParams) GetSessionRunsToEpochsOk() ([]SessionRunToEpoch, bool) { +func (o *ConfusionMatrixParams) GetInferenceArtifactIdsOk() ([]string, bool) { if o == nil { return nil, false } - return o.SessionRunsToEpochs, true + return o.InferenceArtifactIds, true } -// SetSessionRunsToEpochs sets field value -func (o *ConfusionMatrixParams) SetSessionRunsToEpochs(v []SessionRunToEpoch) { - o.SessionRunsToEpochs = v +// SetInferenceArtifactIds sets field value +func (o *ConfusionMatrixParams) SetInferenceArtifactIds(v []string) { + o.InferenceArtifactIds = v } // GetX returns the X field value @@ -322,7 +322,7 @@ func (o ConfusionMatrixParams) MarshalJSON() ([]byte, error) { func (o ConfusionMatrixParams) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} toSerialize["projectId"] = o.ProjectId - toSerialize["sessionRunsToEpochs"] = o.SessionRunsToEpochs + toSerialize["inferenceArtifactIds"] = o.InferenceArtifactIds toSerialize["x"] = o.X if !IsNil(o.VerticalSplit) { toSerialize["verticalSplit"] = o.VerticalSplit @@ -354,7 +354,7 @@ func (o *ConfusionMatrixParams) UnmarshalJSON(data []byte) (err error) { // that every required field exists as a key in the generic map. requiredProperties := []string{ "projectId", - "sessionRunsToEpochs", + "inferenceArtifactIds", "x", "customMetricName", } @@ -387,7 +387,7 @@ func (o *ConfusionMatrixParams) UnmarshalJSON(data []byte) (err error) { if err = json.Unmarshal(data, &additionalProperties); err == nil { delete(additionalProperties, "projectId") - delete(additionalProperties, "sessionRunsToEpochs") + delete(additionalProperties, "inferenceArtifactIds") delete(additionalProperties, "x") delete(additionalProperties, "verticalSplit") delete(additionalProperties, "horizontalSplit") diff --git a/pkg/tensorleapapi/model_confusion_matrix_table_params.go b/pkg/tensorleapapi/model_confusion_matrix_table_params.go index b36e990de..5ef1936db 100644 --- a/pkg/tensorleapapi/model_confusion_matrix_table_params.go +++ b/pkg/tensorleapapi/model_confusion_matrix_table_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -20,17 +20,17 @@ var _ MappedNullable = &ConfusionMatrixTableParams{} // ConfusionMatrixTableParams struct for ConfusionMatrixTableParams type ConfusionMatrixTableParams struct { - SessionRunsToEpochs []SessionRunToEpoch `json:"sessionRunsToEpochs"` - ProjectId string `json:"projectId"` - CustomMetricName string `json:"customMetricName"` - VerticalSplit *SplitAgg `json:"verticalSplit,omitempty"` - HorizontalSplit *SplitAgg `json:"horizontalSplit,omitempty"` - Filters []ESFilter `json:"filters,omitempty"` - ElementInstance *bool `json:"elementInstance,omitempty"` - SplitByLabelOrder *OrderType `json:"splitByLabelOrder,omitempty"` - SplitByLabel bool `json:"splitByLabel"` - FilterLabels []string `json:"filterLabels,omitempty"` - Threshold *float64 `json:"threshold,omitempty"` + InferenceArtifactIds []string `json:"inferenceArtifactIds"` + ProjectId string `json:"projectId"` + CustomMetricName string `json:"customMetricName"` + VerticalSplit *SplitAgg `json:"verticalSplit,omitempty"` + HorizontalSplit *SplitAgg `json:"horizontalSplit,omitempty"` + Filters []ESFilter `json:"filters,omitempty"` + ElementInstance *bool `json:"elementInstance,omitempty"` + SplitByLabelOrder *OrderType `json:"splitByLabelOrder,omitempty"` + SplitByLabel bool `json:"splitByLabel"` + FilterLabels []string `json:"filterLabels,omitempty"` + Threshold *float64 `json:"threshold,omitempty"` AdditionalProperties map[string]interface{} } @@ -40,9 +40,9 @@ type _ConfusionMatrixTableParams ConfusionMatrixTableParams // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewConfusionMatrixTableParams(sessionRunsToEpochs []SessionRunToEpoch, projectId string, customMetricName string, splitByLabel bool) *ConfusionMatrixTableParams { +func NewConfusionMatrixTableParams(inferenceArtifactIds []string, projectId string, customMetricName string, splitByLabel bool) *ConfusionMatrixTableParams { this := ConfusionMatrixTableParams{} - this.SessionRunsToEpochs = sessionRunsToEpochs + this.InferenceArtifactIds = inferenceArtifactIds this.ProjectId = projectId this.CustomMetricName = customMetricName this.SplitByLabel = splitByLabel @@ -57,28 +57,28 @@ func NewConfusionMatrixTableParamsWithDefaults() *ConfusionMatrixTableParams { return &this } -// GetSessionRunsToEpochs returns the SessionRunsToEpochs field value -func (o *ConfusionMatrixTableParams) GetSessionRunsToEpochs() []SessionRunToEpoch { +// GetInferenceArtifactIds returns the InferenceArtifactIds field value +func (o *ConfusionMatrixTableParams) GetInferenceArtifactIds() []string { if o == nil { - var ret []SessionRunToEpoch + var ret []string return ret } - return o.SessionRunsToEpochs + return o.InferenceArtifactIds } -// GetSessionRunsToEpochsOk returns a tuple with the SessionRunsToEpochs field value +// GetInferenceArtifactIdsOk returns a tuple with the InferenceArtifactIds field value // and a boolean to check if the value has been set. -func (o *ConfusionMatrixTableParams) GetSessionRunsToEpochsOk() ([]SessionRunToEpoch, bool) { +func (o *ConfusionMatrixTableParams) GetInferenceArtifactIdsOk() ([]string, bool) { if o == nil { return nil, false } - return o.SessionRunsToEpochs, true + return o.InferenceArtifactIds, true } -// SetSessionRunsToEpochs sets field value -func (o *ConfusionMatrixTableParams) SetSessionRunsToEpochs(v []SessionRunToEpoch) { - o.SessionRunsToEpochs = v +// SetInferenceArtifactIds sets field value +func (o *ConfusionMatrixTableParams) SetInferenceArtifactIds(v []string) { + o.InferenceArtifactIds = v } // GetProjectId returns the ProjectId field value @@ -387,7 +387,7 @@ func (o ConfusionMatrixTableParams) MarshalJSON() ([]byte, error) { func (o ConfusionMatrixTableParams) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} - toSerialize["sessionRunsToEpochs"] = o.SessionRunsToEpochs + toSerialize["inferenceArtifactIds"] = o.InferenceArtifactIds toSerialize["projectId"] = o.ProjectId toSerialize["customMetricName"] = o.CustomMetricName if !IsNil(o.VerticalSplit) { @@ -425,7 +425,7 @@ func (o *ConfusionMatrixTableParams) UnmarshalJSON(data []byte) (err error) { // by unmarshalling the object into a generic map with string keys and checking // that every required field exists as a key in the generic map. requiredProperties := []string{ - "sessionRunsToEpochs", + "inferenceArtifactIds", "projectId", "customMetricName", "splitByLabel", @@ -458,7 +458,7 @@ func (o *ConfusionMatrixTableParams) UnmarshalJSON(data []byte) (err error) { additionalProperties := make(map[string]interface{}) if err = json.Unmarshal(data, &additionalProperties); err == nil { - delete(additionalProperties, "sessionRunsToEpochs") + delete(additionalProperties, "inferenceArtifactIds") delete(additionalProperties, "projectId") delete(additionalProperties, "customMetricName") delete(additionalProperties, "verticalSplit") diff --git a/pkg/tensorleapapi/model_confusion_metric_names_params.go b/pkg/tensorleapapi/model_confusion_metric_names_params.go index f7b1e6f8b..7f939dfe4 100644 --- a/pkg/tensorleapapi/model_confusion_metric_names_params.go +++ b/pkg/tensorleapapi/model_confusion_metric_names_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -20,7 +20,7 @@ var _ MappedNullable = &ConfusionMetricNamesParams{} // ConfusionMetricNamesParams struct for ConfusionMetricNamesParams type ConfusionMetricNamesParams struct { - SessionRunIds []string `json:"sessionRunIds"` + InferenceArtifactIds []string `json:"inferenceArtifactIds"` ProjectId string `json:"projectId"` AdditionalProperties map[string]interface{} } @@ -31,9 +31,9 @@ type _ConfusionMetricNamesParams ConfusionMetricNamesParams // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewConfusionMetricNamesParams(sessionRunIds []string, projectId string) *ConfusionMetricNamesParams { +func NewConfusionMetricNamesParams(inferenceArtifactIds []string, projectId string) *ConfusionMetricNamesParams { this := ConfusionMetricNamesParams{} - this.SessionRunIds = sessionRunIds + this.InferenceArtifactIds = inferenceArtifactIds this.ProjectId = projectId return &this } @@ -46,28 +46,28 @@ func NewConfusionMetricNamesParamsWithDefaults() *ConfusionMetricNamesParams { return &this } -// GetSessionRunIds returns the SessionRunIds field value -func (o *ConfusionMetricNamesParams) GetSessionRunIds() []string { +// GetInferenceArtifactIds returns the InferenceArtifactIds field value +func (o *ConfusionMetricNamesParams) GetInferenceArtifactIds() []string { if o == nil { var ret []string return ret } - return o.SessionRunIds + return o.InferenceArtifactIds } -// GetSessionRunIdsOk returns a tuple with the SessionRunIds field value +// GetInferenceArtifactIdsOk returns a tuple with the InferenceArtifactIds field value // and a boolean to check if the value has been set. -func (o *ConfusionMetricNamesParams) GetSessionRunIdsOk() ([]string, bool) { +func (o *ConfusionMetricNamesParams) GetInferenceArtifactIdsOk() ([]string, bool) { if o == nil { return nil, false } - return o.SessionRunIds, true + return o.InferenceArtifactIds, true } -// SetSessionRunIds sets field value -func (o *ConfusionMetricNamesParams) SetSessionRunIds(v []string) { - o.SessionRunIds = v +// SetInferenceArtifactIds sets field value +func (o *ConfusionMetricNamesParams) SetInferenceArtifactIds(v []string) { + o.InferenceArtifactIds = v } // GetProjectId returns the ProjectId field value @@ -104,7 +104,7 @@ func (o ConfusionMetricNamesParams) MarshalJSON() ([]byte, error) { func (o ConfusionMetricNamesParams) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} - toSerialize["sessionRunIds"] = o.SessionRunIds + toSerialize["inferenceArtifactIds"] = o.InferenceArtifactIds toSerialize["projectId"] = o.ProjectId for key, value := range o.AdditionalProperties { @@ -119,7 +119,7 @@ func (o *ConfusionMetricNamesParams) UnmarshalJSON(data []byte) (err error) { // by unmarshalling the object into a generic map with string keys and checking // that every required field exists as a key in the generic map. requiredProperties := []string{ - "sessionRunIds", + "inferenceArtifactIds", "projectId", } @@ -150,7 +150,7 @@ func (o *ConfusionMetricNamesParams) UnmarshalJSON(data []byte) (err error) { additionalProperties := make(map[string]interface{}) if err = json.Unmarshal(data, &additionalProperties); err == nil { - delete(additionalProperties, "sessionRunIds") + delete(additionalProperties, "inferenceArtifactIds") delete(additionalProperties, "projectId") o.AdditionalProperties = additionalProperties } diff --git a/pkg/tensorleapapi/model_confusion_metric_names_response.go b/pkg/tensorleapapi/model_confusion_metric_names_response.go index fbb0a2a5e..ff7e719c2 100644 --- a/pkg/tensorleapapi/model_confusion_metric_names_response.go +++ b/pkg/tensorleapapi/model_confusion_metric_names_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_continue_evaluate_params.go b/pkg/tensorleapapi/model_continue_evaluate_params.go index 1af6e8511..4b1637e88 100644 --- a/pkg/tensorleapapi/model_continue_evaluate_params.go +++ b/pkg/tensorleapapi/model_continue_evaluate_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -18,9 +18,10 @@ import ( // checks if the ContinueEvaluateParams type satisfies the MappedNullable interface at compile time var _ MappedNullable = &ContinueEvaluateParams{} -// ContinueEvaluateParams Params for continuing an evaluate job. If evaluateParams are not stored on the sessionRun (backward compatibility), the user must provide dataStates and batchSize. +// ContinueEvaluateParams Params for continuing an evaluate job. If evaluateParams are not stored on the version (backward compatibility), the user must provide dataStates and batchSize. type ContinueEvaluateParams struct { - SessionRunId string `json:"sessionRunId"` + VersionId string `json:"versionId"` + InferenceArtifactId *string `json:"inferenceArtifactId,omitempty"` ProjectId string `json:"projectId"` BatchSize *float64 `json:"batchSize,omitempty"` AdditionalProperties map[string]interface{} @@ -32,9 +33,9 @@ type _ContinueEvaluateParams ContinueEvaluateParams // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewContinueEvaluateParams(sessionRunId string, projectId string) *ContinueEvaluateParams { +func NewContinueEvaluateParams(versionId string, projectId string) *ContinueEvaluateParams { this := ContinueEvaluateParams{} - this.SessionRunId = sessionRunId + this.VersionId = versionId this.ProjectId = projectId return &this } @@ -47,28 +48,60 @@ func NewContinueEvaluateParamsWithDefaults() *ContinueEvaluateParams { return &this } -// GetSessionRunId returns the SessionRunId field value -func (o *ContinueEvaluateParams) GetSessionRunId() string { +// GetVersionId returns the VersionId field value +func (o *ContinueEvaluateParams) GetVersionId() string { if o == nil { var ret string return ret } - return o.SessionRunId + return o.VersionId } -// GetSessionRunIdOk returns a tuple with the SessionRunId field value +// GetVersionIdOk returns a tuple with the VersionId field value // and a boolean to check if the value has been set. -func (o *ContinueEvaluateParams) GetSessionRunIdOk() (*string, bool) { +func (o *ContinueEvaluateParams) GetVersionIdOk() (*string, bool) { if o == nil { return nil, false } - return &o.SessionRunId, true + return &o.VersionId, true } -// SetSessionRunId sets field value -func (o *ContinueEvaluateParams) SetSessionRunId(v string) { - o.SessionRunId = v +// SetVersionId sets field value +func (o *ContinueEvaluateParams) SetVersionId(v string) { + o.VersionId = v +} + +// GetInferenceArtifactId returns the InferenceArtifactId field value if set, zero value otherwise. +func (o *ContinueEvaluateParams) GetInferenceArtifactId() string { + if o == nil || IsNil(o.InferenceArtifactId) { + var ret string + return ret + } + return *o.InferenceArtifactId +} + +// GetInferenceArtifactIdOk returns a tuple with the InferenceArtifactId field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *ContinueEvaluateParams) GetInferenceArtifactIdOk() (*string, bool) { + if o == nil || IsNil(o.InferenceArtifactId) { + return nil, false + } + return o.InferenceArtifactId, true +} + +// HasInferenceArtifactId returns a boolean if a field has been set. +func (o *ContinueEvaluateParams) HasInferenceArtifactId() bool { + if o != nil && !IsNil(o.InferenceArtifactId) { + return true + } + + return false +} + +// SetInferenceArtifactId gets a reference to the given string and assigns it to the InferenceArtifactId field. +func (o *ContinueEvaluateParams) SetInferenceArtifactId(v string) { + o.InferenceArtifactId = &v } // GetProjectId returns the ProjectId field value @@ -137,7 +170,10 @@ func (o ContinueEvaluateParams) MarshalJSON() ([]byte, error) { func (o ContinueEvaluateParams) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} - toSerialize["sessionRunId"] = o.SessionRunId + toSerialize["versionId"] = o.VersionId + if !IsNil(o.InferenceArtifactId) { + toSerialize["inferenceArtifactId"] = o.InferenceArtifactId + } toSerialize["projectId"] = o.ProjectId if !IsNil(o.BatchSize) { toSerialize["batchSize"] = o.BatchSize @@ -155,7 +191,7 @@ func (o *ContinueEvaluateParams) UnmarshalJSON(data []byte) (err error) { // by unmarshalling the object into a generic map with string keys and checking // that every required field exists as a key in the generic map. requiredProperties := []string{ - "sessionRunId", + "versionId", "projectId", } @@ -186,7 +222,8 @@ func (o *ContinueEvaluateParams) UnmarshalJSON(data []byte) (err error) { additionalProperties := make(map[string]interface{}) if err = json.Unmarshal(data, &additionalProperties); err == nil { - delete(additionalProperties, "sessionRunId") + delete(additionalProperties, "versionId") + delete(additionalProperties, "inferenceArtifactId") delete(additionalProperties, "projectId") delete(additionalProperties, "batchSize") o.AdditionalProperties = additionalProperties diff --git a/pkg/tensorleapapi/model_continues_agg.go b/pkg/tensorleapapi/model_continues_agg.go index 182ff4f1e..46eadba85 100644 --- a/pkg/tensorleapapi/model_continues_agg.go +++ b/pkg/tensorleapapi/model_continues_agg.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_create_sample_visualizations_params.go b/pkg/tensorleapapi/model_create_sample_visualizations_params.go index c20b0cc92..760aa16a1 100644 --- a/pkg/tensorleapapi/model_create_sample_visualizations_params.go +++ b/pkg/tensorleapapi/model_create_sample_visualizations_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -21,8 +21,7 @@ var _ MappedNullable = &CreateSampleVisualizationsParams{} // CreateSampleVisualizationsParams struct for CreateSampleVisualizationsParams type CreateSampleVisualizationsParams struct { ProjectId string `json:"projectId"` - SessionRunId string `json:"sessionRunId"` - Epoch float64 `json:"epoch"` + VersionId string `json:"versionId"` SampleIdentities []SampleIdentity `json:"sampleIdentities,omitempty"` Digest string `json:"digest"` Refresh *bool `json:"refresh,omitempty"` @@ -36,11 +35,10 @@ type _CreateSampleVisualizationsParams CreateSampleVisualizationsParams // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewCreateSampleVisualizationsParams(projectId string, sessionRunId string, epoch float64, digest string) *CreateSampleVisualizationsParams { +func NewCreateSampleVisualizationsParams(projectId string, versionId string, digest string) *CreateSampleVisualizationsParams { this := CreateSampleVisualizationsParams{} this.ProjectId = projectId - this.SessionRunId = sessionRunId - this.Epoch = epoch + this.VersionId = versionId this.Digest = digest return &this } @@ -77,52 +75,28 @@ func (o *CreateSampleVisualizationsParams) SetProjectId(v string) { o.ProjectId = v } -// GetSessionRunId returns the SessionRunId field value -func (o *CreateSampleVisualizationsParams) GetSessionRunId() string { +// GetVersionId returns the VersionId field value +func (o *CreateSampleVisualizationsParams) GetVersionId() string { if o == nil { var ret string return ret } - return o.SessionRunId + return o.VersionId } -// GetSessionRunIdOk returns a tuple with the SessionRunId field value +// GetVersionIdOk returns a tuple with the VersionId field value // and a boolean to check if the value has been set. -func (o *CreateSampleVisualizationsParams) GetSessionRunIdOk() (*string, bool) { +func (o *CreateSampleVisualizationsParams) GetVersionIdOk() (*string, bool) { if o == nil { return nil, false } - return &o.SessionRunId, true + return &o.VersionId, true } -// SetSessionRunId sets field value -func (o *CreateSampleVisualizationsParams) SetSessionRunId(v string) { - o.SessionRunId = v -} - -// GetEpoch returns the Epoch field value -func (o *CreateSampleVisualizationsParams) GetEpoch() float64 { - if o == nil { - var ret float64 - return ret - } - - return o.Epoch -} - -// GetEpochOk returns a tuple with the Epoch field value -// and a boolean to check if the value has been set. -func (o *CreateSampleVisualizationsParams) GetEpochOk() (*float64, bool) { - if o == nil { - return nil, false - } - return &o.Epoch, true -} - -// SetEpoch sets field value -func (o *CreateSampleVisualizationsParams) SetEpoch(v float64) { - o.Epoch = v +// SetVersionId sets field value +func (o *CreateSampleVisualizationsParams) SetVersionId(v string) { + o.VersionId = v } // GetSampleIdentities returns the SampleIdentities field value if set, zero value otherwise. @@ -256,8 +230,7 @@ func (o CreateSampleVisualizationsParams) MarshalJSON() ([]byte, error) { func (o CreateSampleVisualizationsParams) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} toSerialize["projectId"] = o.ProjectId - toSerialize["sessionRunId"] = o.SessionRunId - toSerialize["epoch"] = o.Epoch + toSerialize["versionId"] = o.VersionId if !IsNil(o.SampleIdentities) { toSerialize["sampleIdentities"] = o.SampleIdentities } @@ -282,8 +255,7 @@ func (o *CreateSampleVisualizationsParams) UnmarshalJSON(data []byte) (err error // that every required field exists as a key in the generic map. requiredProperties := []string{ "projectId", - "sessionRunId", - "epoch", + "versionId", "digest", } @@ -315,8 +287,7 @@ func (o *CreateSampleVisualizationsParams) UnmarshalJSON(data []byte) (err error if err = json.Unmarshal(data, &additionalProperties); err == nil { delete(additionalProperties, "projectId") - delete(additionalProperties, "sessionRunId") - delete(additionalProperties, "epoch") + delete(additionalProperties, "versionId") delete(additionalProperties, "sampleIdentities") delete(additionalProperties, "digest") delete(additionalProperties, "refresh") diff --git a/pkg/tensorleapapi/model_create_session_test_request.go b/pkg/tensorleapapi/model_create_session_test_request.go index 7dc73e744..907eef9bc 100644 --- a/pkg/tensorleapapi/model_create_session_test_request.go +++ b/pkg/tensorleapapi/model_create_session_test_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_create_streaming_samples_vis_job_params.go b/pkg/tensorleapapi/model_create_streaming_samples_vis_job_params.go index 36d11e7ff..01f72b238 100644 --- a/pkg/tensorleapapi/model_create_streaming_samples_vis_job_params.go +++ b/pkg/tensorleapapi/model_create_streaming_samples_vis_job_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -20,7 +20,7 @@ var _ MappedNullable = &CreateStreamingSamplesVisJobParams{} // CreateStreamingSamplesVisJobParams struct for CreateStreamingSamplesVisJobParams type CreateStreamingSamplesVisJobParams struct { - SessionRunId string `json:"sessionRunId"` + VersionId string `json:"versionId"` ProjectId string `json:"projectId"` AdditionalProperties map[string]interface{} } @@ -31,9 +31,9 @@ type _CreateStreamingSamplesVisJobParams CreateStreamingSamplesVisJobParams // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewCreateStreamingSamplesVisJobParams(sessionRunId string, projectId string) *CreateStreamingSamplesVisJobParams { +func NewCreateStreamingSamplesVisJobParams(versionId string, projectId string) *CreateStreamingSamplesVisJobParams { this := CreateStreamingSamplesVisJobParams{} - this.SessionRunId = sessionRunId + this.VersionId = versionId this.ProjectId = projectId return &this } @@ -46,28 +46,28 @@ func NewCreateStreamingSamplesVisJobParamsWithDefaults() *CreateStreamingSamples return &this } -// GetSessionRunId returns the SessionRunId field value -func (o *CreateStreamingSamplesVisJobParams) GetSessionRunId() string { +// GetVersionId returns the VersionId field value +func (o *CreateStreamingSamplesVisJobParams) GetVersionId() string { if o == nil { var ret string return ret } - return o.SessionRunId + return o.VersionId } -// GetSessionRunIdOk returns a tuple with the SessionRunId field value +// GetVersionIdOk returns a tuple with the VersionId field value // and a boolean to check if the value has been set. -func (o *CreateStreamingSamplesVisJobParams) GetSessionRunIdOk() (*string, bool) { +func (o *CreateStreamingSamplesVisJobParams) GetVersionIdOk() (*string, bool) { if o == nil { return nil, false } - return &o.SessionRunId, true + return &o.VersionId, true } -// SetSessionRunId sets field value -func (o *CreateStreamingSamplesVisJobParams) SetSessionRunId(v string) { - o.SessionRunId = v +// SetVersionId sets field value +func (o *CreateStreamingSamplesVisJobParams) SetVersionId(v string) { + o.VersionId = v } // GetProjectId returns the ProjectId field value @@ -104,7 +104,7 @@ func (o CreateStreamingSamplesVisJobParams) MarshalJSON() ([]byte, error) { func (o CreateStreamingSamplesVisJobParams) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} - toSerialize["sessionRunId"] = o.SessionRunId + toSerialize["versionId"] = o.VersionId toSerialize["projectId"] = o.ProjectId for key, value := range o.AdditionalProperties { @@ -119,7 +119,7 @@ func (o *CreateStreamingSamplesVisJobParams) UnmarshalJSON(data []byte) (err err // by unmarshalling the object into a generic map with string keys and checking // that every required field exists as a key in the generic map. requiredProperties := []string{ - "sessionRunId", + "versionId", "projectId", } @@ -150,7 +150,7 @@ func (o *CreateStreamingSamplesVisJobParams) UnmarshalJSON(data []byte) (err err additionalProperties := make(map[string]interface{}) if err = json.Unmarshal(data, &additionalProperties); err == nil { - delete(additionalProperties, "sessionRunId") + delete(additionalProperties, "versionId") delete(additionalProperties, "projectId") o.AdditionalProperties = additionalProperties } diff --git a/pkg/tensorleapapi/model_create_streaming_samples_vis_job_response.go b/pkg/tensorleapapi/model_create_streaming_samples_vis_job_response.go index 743e7373e..ba82b44cb 100644 --- a/pkg/tensorleapapi/model_create_streaming_samples_vis_job_response.go +++ b/pkg/tensorleapapi/model_create_streaming_samples_vis_job_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_create_team_request.go b/pkg/tensorleapapi/model_create_team_request.go index 467c3b8f8..f5fd96db0 100644 --- a/pkg/tensorleapapi/model_create_team_request.go +++ b/pkg/tensorleapapi/model_create_team_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_create_team_response.go b/pkg/tensorleapapi/model_create_team_response.go index b9ac02f15..f3d834bf9 100644 --- a/pkg/tensorleapapi/model_create_team_response.go +++ b/pkg/tensorleapapi/model_create_team_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_custom_layer_instance.go b/pkg/tensorleapapi/model_custom_layer_instance.go index 145ff483d..fe3fbedbd 100644 --- a/pkg/tensorleapapi/model_custom_layer_instance.go +++ b/pkg/tensorleapapi/model_custom_layer_instance.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_custom_loss_instance.go b/pkg/tensorleapapi/model_custom_loss_instance.go index 5d66eb709..a91c75268 100644 --- a/pkg/tensorleapapi/model_custom_loss_instance.go +++ b/pkg/tensorleapapi/model_custom_loss_instance.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_custom_message_data.go b/pkg/tensorleapapi/model_custom_message_data.go index f5db75756..2a17d232f 100644 --- a/pkg/tensorleapapi/model_custom_message_data.go +++ b/pkg/tensorleapapi/model_custom_message_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_custom_message_data_params.go b/pkg/tensorleapapi/model_custom_message_data_params.go index e4d6f18ad..153b4e9d0 100644 --- a/pkg/tensorleapapi/model_custom_message_data_params.go +++ b/pkg/tensorleapapi/model_custom_message_data_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_dashboard.go b/pkg/tensorleapapi/model_dashboard.go index f8e6bb7bb..cf161ef3d 100644 --- a/pkg/tensorleapapi/model_dashboard.go +++ b/pkg/tensorleapapi/model_dashboard.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_dashlet.go b/pkg/tensorleapapi/model_dashlet.go index 0929645fe..d0d2292a5 100644 --- a/pkg/tensorleapapi/model_dashlet.go +++ b/pkg/tensorleapapi/model_dashlet.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_data_leakage_insight.go b/pkg/tensorleapapi/model_data_leakage_insight.go index 6983f31a8..18ce9a5ec 100644 --- a/pkg/tensorleapapi/model_data_leakage_insight.go +++ b/pkg/tensorleapapi/model_data_leakage_insight.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -35,6 +35,7 @@ type DataLeakageInsight struct { AutomaticTests []InsightAutomaticTest `json:"automatic_tests,omitempty"` AutoGenerated bool `json:"auto_generated"` EsFiltersUsedInAnalysis []ESFilter `json:"es_filters_used_in_analysis,omitempty"` + LatentSpace *string `json:"latent_space,omitempty"` FirstSubset DataStateType `json:"first_subset"` SecondSubset DataStateType `json:"second_subset"` AdditionalProperties map[string]interface{} @@ -471,6 +472,38 @@ func (o *DataLeakageInsight) SetEsFiltersUsedInAnalysis(v []ESFilter) { o.EsFiltersUsedInAnalysis = v } +// GetLatentSpace returns the LatentSpace field value if set, zero value otherwise. +func (o *DataLeakageInsight) GetLatentSpace() string { + if o == nil || IsNil(o.LatentSpace) { + var ret string + return ret + } + return *o.LatentSpace +} + +// GetLatentSpaceOk returns a tuple with the LatentSpace field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *DataLeakageInsight) GetLatentSpaceOk() (*string, bool) { + if o == nil || IsNil(o.LatentSpace) { + return nil, false + } + return o.LatentSpace, true +} + +// HasLatentSpace returns a boolean if a field has been set. +func (o *DataLeakageInsight) HasLatentSpace() bool { + if o != nil && !IsNil(o.LatentSpace) { + return true + } + + return false +} + +// SetLatentSpace gets a reference to the given string and assigns it to the LatentSpace field. +func (o *DataLeakageInsight) SetLatentSpace(v string) { + o.LatentSpace = &v +} + // GetFirstSubset returns the FirstSubset field value func (o *DataLeakageInsight) GetFirstSubset() DataStateType { if o == nil { @@ -554,6 +587,9 @@ func (o DataLeakageInsight) ToMap() (map[string]interface{}, error) { if !IsNil(o.EsFiltersUsedInAnalysis) { toSerialize["es_filters_used_in_analysis"] = o.EsFiltersUsedInAnalysis } + if !IsNil(o.LatentSpace) { + toSerialize["latent_space"] = o.LatentSpace + } toSerialize["first_subset"] = o.FirstSubset toSerialize["second_subset"] = o.SecondSubset @@ -625,6 +661,7 @@ func (o *DataLeakageInsight) UnmarshalJSON(data []byte) (err error) { delete(additionalProperties, "automatic_tests") delete(additionalProperties, "auto_generated") delete(additionalProperties, "es_filters_used_in_analysis") + delete(additionalProperties, "latent_space") delete(additionalProperties, "first_subset") delete(additionalProperties, "second_subset") o.AdditionalProperties = additionalProperties diff --git a/pkg/tensorleapapi/model_data_state_type.go b/pkg/tensorleapapi/model_data_state_type.go index c3b5d8b55..c2e8babee 100644 --- a/pkg/tensorleapapi/model_data_state_type.go +++ b/pkg/tensorleapapi/model_data_state_type.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_data_type_enum.go b/pkg/tensorleapapi/model_data_type_enum.go index 323a7c0e1..d06cca3e8 100644 --- a/pkg/tensorleapapi/model_data_type_enum.go +++ b/pkg/tensorleapapi/model_data_type_enum.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_dataset_balancing.go b/pkg/tensorleapapi/model_dataset_balancing.go index 3895dc782..03652b9de 100644 --- a/pkg/tensorleapapi/model_dataset_balancing.go +++ b/pkg/tensorleapapi/model_dataset_balancing.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -21,21 +21,21 @@ var _ MappedNullable = &DatasetBalancing{} // DatasetBalancing struct for DatasetBalancing type DatasetBalancing struct { - Id string `json:"id"` - JobId string `json:"jobId"` - SessionRunId string `json:"sessionRunId"` - SessionRunName string `json:"sessionRunName"` - Epoch float64 `json:"epoch"` - CreatedAt time.Time `json:"createdAt"` - CreatedBy string `json:"createdBy"` - FileUrl *string `json:"fileUrl,omitempty"` - FilterFileUrl *string `json:"filterFileUrl,omitempty"` - Status JobStatus `json:"status"` - IsDeleted bool `json:"isDeleted"` - Filters []ESFilter `json:"filters,omitempty"` - MetadataTags []string `json:"metadataTags"` - PrioritizedMetadataTags []string `json:"prioritizedMetadataTags,omitempty"` - PercentageOfSamplesToPrune *float64 `json:"percentageOfSamplesToPrune,omitempty"` + Id string `json:"id"` + JobId string `json:"jobId"` + VersionId string `json:"versionId"` + VersionName string `json:"versionName"` + CreatedAt time.Time `json:"createdAt"` + CreatedBy string `json:"createdBy"` + FileUrl *string `json:"fileUrl,omitempty"` + FilterFileUrl *string `json:"filterFileUrl,omitempty"` + Status JobStatus `json:"status"` + IsDeleted bool `json:"isDeleted"` + Filters []ESFilter `json:"filters,omitempty"` + MetadataTags []string `json:"metadataTags"` + PrioritizedMetadataTags []string `json:"prioritizedMetadataTags,omitempty"` + PercentageOfSamplesToPrune *float64 `json:"percentageOfSamplesToPrune,omitempty"` + RunProcess *RunProcess `json:"runProcess,omitempty"` AdditionalProperties map[string]interface{} } @@ -45,13 +45,12 @@ type _DatasetBalancing DatasetBalancing // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewDatasetBalancing(id string, jobId string, sessionRunId string, sessionRunName string, epoch float64, createdAt time.Time, createdBy string, status JobStatus, isDeleted bool, metadataTags []string) *DatasetBalancing { +func NewDatasetBalancing(id string, jobId string, versionId string, versionName string, createdAt time.Time, createdBy string, status JobStatus, isDeleted bool, metadataTags []string) *DatasetBalancing { this := DatasetBalancing{} this.Id = id this.JobId = jobId - this.SessionRunId = sessionRunId - this.SessionRunName = sessionRunName - this.Epoch = epoch + this.VersionId = versionId + this.VersionName = versionName this.CreatedAt = createdAt this.CreatedBy = createdBy this.Status = status @@ -116,76 +115,52 @@ func (o *DatasetBalancing) SetJobId(v string) { o.JobId = v } -// GetSessionRunId returns the SessionRunId field value -func (o *DatasetBalancing) GetSessionRunId() string { +// GetVersionId returns the VersionId field value +func (o *DatasetBalancing) GetVersionId() string { if o == nil { var ret string return ret } - return o.SessionRunId + return o.VersionId } -// GetSessionRunIdOk returns a tuple with the SessionRunId field value +// GetVersionIdOk returns a tuple with the VersionId field value // and a boolean to check if the value has been set. -func (o *DatasetBalancing) GetSessionRunIdOk() (*string, bool) { +func (o *DatasetBalancing) GetVersionIdOk() (*string, bool) { if o == nil { return nil, false } - return &o.SessionRunId, true + return &o.VersionId, true } -// SetSessionRunId sets field value -func (o *DatasetBalancing) SetSessionRunId(v string) { - o.SessionRunId = v +// SetVersionId sets field value +func (o *DatasetBalancing) SetVersionId(v string) { + o.VersionId = v } -// GetSessionRunName returns the SessionRunName field value -func (o *DatasetBalancing) GetSessionRunName() string { +// GetVersionName returns the VersionName field value +func (o *DatasetBalancing) GetVersionName() string { if o == nil { var ret string return ret } - return o.SessionRunName + return o.VersionName } -// GetSessionRunNameOk returns a tuple with the SessionRunName field value +// GetVersionNameOk returns a tuple with the VersionName field value // and a boolean to check if the value has been set. -func (o *DatasetBalancing) GetSessionRunNameOk() (*string, bool) { +func (o *DatasetBalancing) GetVersionNameOk() (*string, bool) { if o == nil { return nil, false } - return &o.SessionRunName, true + return &o.VersionName, true } -// SetSessionRunName sets field value -func (o *DatasetBalancing) SetSessionRunName(v string) { - o.SessionRunName = v -} - -// GetEpoch returns the Epoch field value -func (o *DatasetBalancing) GetEpoch() float64 { - if o == nil { - var ret float64 - return ret - } - - return o.Epoch -} - -// GetEpochOk returns a tuple with the Epoch field value -// and a boolean to check if the value has been set. -func (o *DatasetBalancing) GetEpochOk() (*float64, bool) { - if o == nil { - return nil, false - } - return &o.Epoch, true -} - -// SetEpoch sets field value -func (o *DatasetBalancing) SetEpoch(v float64) { - o.Epoch = v +// SetVersionName sets field value +func (o *DatasetBalancing) SetVersionName(v string) { + o.VersionName = v } // GetCreatedAt returns the CreatedAt field value @@ -468,6 +443,38 @@ func (o *DatasetBalancing) SetPercentageOfSamplesToPrune(v float64) { o.PercentageOfSamplesToPrune = &v } +// GetRunProcess returns the RunProcess field value if set, zero value otherwise. +func (o *DatasetBalancing) GetRunProcess() RunProcess { + if o == nil || IsNil(o.RunProcess) { + var ret RunProcess + return ret + } + return *o.RunProcess +} + +// GetRunProcessOk returns a tuple with the RunProcess field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *DatasetBalancing) GetRunProcessOk() (*RunProcess, bool) { + if o == nil || IsNil(o.RunProcess) { + return nil, false + } + return o.RunProcess, true +} + +// HasRunProcess returns a boolean if a field has been set. +func (o *DatasetBalancing) HasRunProcess() bool { + if o != nil && !IsNil(o.RunProcess) { + return true + } + + return false +} + +// SetRunProcess gets a reference to the given RunProcess and assigns it to the RunProcess field. +func (o *DatasetBalancing) SetRunProcess(v RunProcess) { + o.RunProcess = &v +} + func (o DatasetBalancing) MarshalJSON() ([]byte, error) { toSerialize, err := o.ToMap() if err != nil { @@ -480,9 +487,8 @@ func (o DatasetBalancing) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} toSerialize["id"] = o.Id toSerialize["jobId"] = o.JobId - toSerialize["sessionRunId"] = o.SessionRunId - toSerialize["sessionRunName"] = o.SessionRunName - toSerialize["epoch"] = o.Epoch + toSerialize["versionId"] = o.VersionId + toSerialize["versionName"] = o.VersionName toSerialize["createdAt"] = o.CreatedAt toSerialize["createdBy"] = o.CreatedBy if !IsNil(o.FileUrl) { @@ -503,6 +509,9 @@ func (o DatasetBalancing) ToMap() (map[string]interface{}, error) { if !IsNil(o.PercentageOfSamplesToPrune) { toSerialize["percentageOfSamplesToPrune"] = o.PercentageOfSamplesToPrune } + if !IsNil(o.RunProcess) { + toSerialize["runProcess"] = o.RunProcess + } for key, value := range o.AdditionalProperties { toSerialize[key] = value @@ -518,9 +527,8 @@ func (o *DatasetBalancing) UnmarshalJSON(data []byte) (err error) { requiredProperties := []string{ "id", "jobId", - "sessionRunId", - "sessionRunName", - "epoch", + "versionId", + "versionName", "createdAt", "createdBy", "status", @@ -557,9 +565,8 @@ func (o *DatasetBalancing) UnmarshalJSON(data []byte) (err error) { if err = json.Unmarshal(data, &additionalProperties); err == nil { delete(additionalProperties, "id") delete(additionalProperties, "jobId") - delete(additionalProperties, "sessionRunId") - delete(additionalProperties, "sessionRunName") - delete(additionalProperties, "epoch") + delete(additionalProperties, "versionId") + delete(additionalProperties, "versionName") delete(additionalProperties, "createdAt") delete(additionalProperties, "createdBy") delete(additionalProperties, "fileUrl") @@ -570,6 +577,7 @@ func (o *DatasetBalancing) UnmarshalJSON(data []byte) (err error) { delete(additionalProperties, "metadataTags") delete(additionalProperties, "prioritizedMetadataTags") delete(additionalProperties, "percentageOfSamplesToPrune") + delete(additionalProperties, "runProcess") o.AdditionalProperties = additionalProperties } diff --git a/pkg/tensorleapapi/model_dataset_balancing_job_params.go b/pkg/tensorleapapi/model_dataset_balancing_job_params.go index b3828c2b8..8c67a4acc 100644 --- a/pkg/tensorleapapi/model_dataset_balancing_job_params.go +++ b/pkg/tensorleapapi/model_dataset_balancing_job_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -25,8 +25,8 @@ type DatasetBalancingJobParams struct { PrioritizedMetadataTags []string `json:"prioritizedMetadataTags,omitempty"` MetadataTags []string `json:"metadataTags"` Filters []ESFilter `json:"filters,omitempty"` - FromEpoch float64 `json:"fromEpoch"` - SessionRunId string `json:"sessionRunId"` + InferenceArtifactId string `json:"inferenceArtifactId"` + VersionId string `json:"versionId"` Type string `json:"type"` AdditionalProperties map[string]interface{} } @@ -37,12 +37,12 @@ type _DatasetBalancingJobParams DatasetBalancingJobParams // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewDatasetBalancingJobParams(digest string, metadataTags []string, fromEpoch float64, sessionRunId string, type_ string) *DatasetBalancingJobParams { +func NewDatasetBalancingJobParams(digest string, metadataTags []string, inferenceArtifactId string, versionId string, type_ string) *DatasetBalancingJobParams { this := DatasetBalancingJobParams{} this.Digest = digest this.MetadataTags = metadataTags - this.FromEpoch = fromEpoch - this.SessionRunId = sessionRunId + this.InferenceArtifactId = inferenceArtifactId + this.VersionId = versionId this.Type = type_ return &this } @@ -199,52 +199,52 @@ func (o *DatasetBalancingJobParams) SetFilters(v []ESFilter) { o.Filters = v } -// GetFromEpoch returns the FromEpoch field value -func (o *DatasetBalancingJobParams) GetFromEpoch() float64 { +// GetInferenceArtifactId returns the InferenceArtifactId field value +func (o *DatasetBalancingJobParams) GetInferenceArtifactId() string { if o == nil { - var ret float64 + var ret string return ret } - return o.FromEpoch + return o.InferenceArtifactId } -// GetFromEpochOk returns a tuple with the FromEpoch field value +// GetInferenceArtifactIdOk returns a tuple with the InferenceArtifactId field value // and a boolean to check if the value has been set. -func (o *DatasetBalancingJobParams) GetFromEpochOk() (*float64, bool) { +func (o *DatasetBalancingJobParams) GetInferenceArtifactIdOk() (*string, bool) { if o == nil { return nil, false } - return &o.FromEpoch, true + return &o.InferenceArtifactId, true } -// SetFromEpoch sets field value -func (o *DatasetBalancingJobParams) SetFromEpoch(v float64) { - o.FromEpoch = v +// SetInferenceArtifactId sets field value +func (o *DatasetBalancingJobParams) SetInferenceArtifactId(v string) { + o.InferenceArtifactId = v } -// GetSessionRunId returns the SessionRunId field value -func (o *DatasetBalancingJobParams) GetSessionRunId() string { +// GetVersionId returns the VersionId field value +func (o *DatasetBalancingJobParams) GetVersionId() string { if o == nil { var ret string return ret } - return o.SessionRunId + return o.VersionId } -// GetSessionRunIdOk returns a tuple with the SessionRunId field value +// GetVersionIdOk returns a tuple with the VersionId field value // and a boolean to check if the value has been set. -func (o *DatasetBalancingJobParams) GetSessionRunIdOk() (*string, bool) { +func (o *DatasetBalancingJobParams) GetVersionIdOk() (*string, bool) { if o == nil { return nil, false } - return &o.SessionRunId, true + return &o.VersionId, true } -// SetSessionRunId sets field value -func (o *DatasetBalancingJobParams) SetSessionRunId(v string) { - o.SessionRunId = v +// SetVersionId sets field value +func (o *DatasetBalancingJobParams) SetVersionId(v string) { + o.VersionId = v } // GetType returns the Type field value @@ -292,8 +292,8 @@ func (o DatasetBalancingJobParams) ToMap() (map[string]interface{}, error) { if !IsNil(o.Filters) { toSerialize["filters"] = o.Filters } - toSerialize["fromEpoch"] = o.FromEpoch - toSerialize["sessionRunId"] = o.SessionRunId + toSerialize["inferenceArtifactId"] = o.InferenceArtifactId + toSerialize["versionId"] = o.VersionId toSerialize["type"] = o.Type for key, value := range o.AdditionalProperties { @@ -310,8 +310,8 @@ func (o *DatasetBalancingJobParams) UnmarshalJSON(data []byte) (err error) { requiredProperties := []string{ "digest", "metadataTags", - "fromEpoch", - "sessionRunId", + "inferenceArtifactId", + "versionId", "type", } @@ -347,8 +347,8 @@ func (o *DatasetBalancingJobParams) UnmarshalJSON(data []byte) (err error) { delete(additionalProperties, "prioritizedMetadataTags") delete(additionalProperties, "metadataTags") delete(additionalProperties, "filters") - delete(additionalProperties, "fromEpoch") - delete(additionalProperties, "sessionRunId") + delete(additionalProperties, "inferenceArtifactId") + delete(additionalProperties, "versionId") delete(additionalProperties, "type") o.AdditionalProperties = additionalProperties } diff --git a/pkg/tensorleapapi/model_dataset_balancing_response.go b/pkg/tensorleapapi/model_dataset_balancing_response.go index 13fd2a752..08286e88b 100644 --- a/pkg/tensorleapapi/model_dataset_balancing_response.go +++ b/pkg/tensorleapapi/model_dataset_balancing_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_dataset_input_instance.go b/pkg/tensorleapapi/model_dataset_input_instance.go index ee1f604e2..8fe4f2e0c 100644 --- a/pkg/tensorleapapi/model_dataset_input_instance.go +++ b/pkg/tensorleapapi/model_dataset_input_instance.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_dataset_message_params.go b/pkg/tensorleapapi/model_dataset_message_params.go index d1d42d717..538267131 100644 --- a/pkg/tensorleapapi/model_dataset_message_params.go +++ b/pkg/tensorleapapi/model_dataset_message_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_dataset_metadata_instance.go b/pkg/tensorleapapi/model_dataset_metadata_instance.go index 7e5fd278a..42b7e88c1 100644 --- a/pkg/tensorleapapi/model_dataset_metadata_instance.go +++ b/pkg/tensorleapapi/model_dataset_metadata_instance.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_dataset_metadata_type.go b/pkg/tensorleapapi/model_dataset_metadata_type.go index 160577092..c0e26537c 100644 --- a/pkg/tensorleapapi/model_dataset_metadata_type.go +++ b/pkg/tensorleapapi/model_dataset_metadata_type.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_dataset_output_instance.go b/pkg/tensorleapapi/model_dataset_output_instance.go index 81c862485..77cfc76d7 100644 --- a/pkg/tensorleapapi/model_dataset_output_instance.go +++ b/pkg/tensorleapapi/model_dataset_output_instance.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_dataset_preprocess.go b/pkg/tensorleapapi/model_dataset_preprocess.go index d8239adba..9323ef25f 100644 --- a/pkg/tensorleapapi/model_dataset_preprocess.go +++ b/pkg/tensorleapapi/model_dataset_preprocess.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_dataset_setup.go b/pkg/tensorleapapi/model_dataset_setup.go index 905ccf92f..4cf1141b1 100644 --- a/pkg/tensorleapapi/model_dataset_setup.go +++ b/pkg/tensorleapapi/model_dataset_setup.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_dataset_test_result_payload.go b/pkg/tensorleapapi/model_dataset_test_result_payload.go index 9a05faf2f..e1714c6c1 100644 --- a/pkg/tensorleapapi/model_dataset_test_result_payload.go +++ b/pkg/tensorleapapi/model_dataset_test_result_payload.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_delete_dashboard_params.go b/pkg/tensorleapapi/model_delete_dashboard_params.go index 8f91c6cd8..2bdb265ab 100644 --- a/pkg/tensorleapapi/model_delete_dashboard_params.go +++ b/pkg/tensorleapapi/model_delete_dashboard_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_delete_dataset_balancing_params.go b/pkg/tensorleapapi/model_delete_dataset_balancing_params.go index f9e040165..93cdf11de 100644 --- a/pkg/tensorleapapi/model_delete_dataset_balancing_params.go +++ b/pkg/tensorleapapi/model_delete_dataset_balancing_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_delete_generated_label_params.go b/pkg/tensorleapapi/model_delete_generated_label_params.go index 8fb2af99e..85d9e7b03 100644 --- a/pkg/tensorleapapi/model_delete_generated_label_params.go +++ b/pkg/tensorleapapi/model_delete_generated_label_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_delete_issue_params.go b/pkg/tensorleapapi/model_delete_issue_params.go index ba7f8c2fc..aa607c534 100644 --- a/pkg/tensorleapapi/model_delete_issue_params.go +++ b/pkg/tensorleapapi/model_delete_issue_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_delete_project_params.go b/pkg/tensorleapapi/model_delete_project_params.go index 46c2fbb9b..437210091 100644 --- a/pkg/tensorleapapi/model_delete_project_params.go +++ b/pkg/tensorleapapi/model_delete_project_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_delete_samples_analysis_params.go b/pkg/tensorleapapi/model_delete_samples_analysis_params.go index b81ceff2d..11f3c595a 100644 --- a/pkg/tensorleapapi/model_delete_samples_analysis_params.go +++ b/pkg/tensorleapapi/model_delete_samples_analysis_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -21,7 +21,7 @@ var _ MappedNullable = &DeleteSamplesAnalysisParams{} // DeleteSamplesAnalysisParams struct for DeleteSamplesAnalysisParams type DeleteSamplesAnalysisParams struct { ProjectId string `json:"projectId"` - SessionRunIds []string `json:"sessionRunIds"` + VersionIds []string `json:"versionIds"` SamplesIdentities []SampleIdentity `json:"samplesIdentities"` AdditionalProperties map[string]interface{} } @@ -32,10 +32,10 @@ type _DeleteSamplesAnalysisParams DeleteSamplesAnalysisParams // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewDeleteSamplesAnalysisParams(projectId string, sessionRunIds []string, samplesIdentities []SampleIdentity) *DeleteSamplesAnalysisParams { +func NewDeleteSamplesAnalysisParams(projectId string, versionIds []string, samplesIdentities []SampleIdentity) *DeleteSamplesAnalysisParams { this := DeleteSamplesAnalysisParams{} this.ProjectId = projectId - this.SessionRunIds = sessionRunIds + this.VersionIds = versionIds this.SamplesIdentities = samplesIdentities return &this } @@ -72,28 +72,28 @@ func (o *DeleteSamplesAnalysisParams) SetProjectId(v string) { o.ProjectId = v } -// GetSessionRunIds returns the SessionRunIds field value -func (o *DeleteSamplesAnalysisParams) GetSessionRunIds() []string { +// GetVersionIds returns the VersionIds field value +func (o *DeleteSamplesAnalysisParams) GetVersionIds() []string { if o == nil { var ret []string return ret } - return o.SessionRunIds + return o.VersionIds } -// GetSessionRunIdsOk returns a tuple with the SessionRunIds field value +// GetVersionIdsOk returns a tuple with the VersionIds field value // and a boolean to check if the value has been set. -func (o *DeleteSamplesAnalysisParams) GetSessionRunIdsOk() ([]string, bool) { +func (o *DeleteSamplesAnalysisParams) GetVersionIdsOk() ([]string, bool) { if o == nil { return nil, false } - return o.SessionRunIds, true + return o.VersionIds, true } -// SetSessionRunIds sets field value -func (o *DeleteSamplesAnalysisParams) SetSessionRunIds(v []string) { - o.SessionRunIds = v +// SetVersionIds sets field value +func (o *DeleteSamplesAnalysisParams) SetVersionIds(v []string) { + o.VersionIds = v } // GetSamplesIdentities returns the SamplesIdentities field value @@ -131,7 +131,7 @@ func (o DeleteSamplesAnalysisParams) MarshalJSON() ([]byte, error) { func (o DeleteSamplesAnalysisParams) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} toSerialize["projectId"] = o.ProjectId - toSerialize["sessionRunIds"] = o.SessionRunIds + toSerialize["versionIds"] = o.VersionIds toSerialize["samplesIdentities"] = o.SamplesIdentities for key, value := range o.AdditionalProperties { @@ -147,7 +147,7 @@ func (o *DeleteSamplesAnalysisParams) UnmarshalJSON(data []byte) (err error) { // that every required field exists as a key in the generic map. requiredProperties := []string{ "projectId", - "sessionRunIds", + "versionIds", "samplesIdentities", } @@ -179,7 +179,7 @@ func (o *DeleteSamplesAnalysisParams) UnmarshalJSON(data []byte) (err error) { if err = json.Unmarshal(data, &additionalProperties); err == nil { delete(additionalProperties, "projectId") - delete(additionalProperties, "sessionRunIds") + delete(additionalProperties, "versionIds") delete(additionalProperties, "samplesIdentities") o.AdditionalProperties = additionalProperties } diff --git a/pkg/tensorleapapi/model_delete_session_params.go b/pkg/tensorleapapi/model_delete_session_params.go deleted file mode 100644 index a2a5a2ddf..000000000 --- a/pkg/tensorleapapi/model_delete_session_params.go +++ /dev/null @@ -1,195 +0,0 @@ -/* -node-server - -No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - -API version: 11.0.7 -*/ - -// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. - -package tensorleapapi - -import ( - "encoding/json" - "fmt" -) - -// checks if the DeleteSessionParams type satisfies the MappedNullable interface at compile time -var _ MappedNullable = &DeleteSessionParams{} - -// DeleteSessionParams struct for DeleteSessionParams -type DeleteSessionParams struct { - SessionId string `json:"sessionId"` - ProjectId string `json:"projectId"` - AdditionalProperties map[string]interface{} -} - -type _DeleteSessionParams DeleteSessionParams - -// NewDeleteSessionParams instantiates a new DeleteSessionParams object -// This constructor will assign default values to properties that have it defined, -// and makes sure properties required by API are set, but the set of arguments -// will change when the set of required properties is changed -func NewDeleteSessionParams(sessionId string, projectId string) *DeleteSessionParams { - this := DeleteSessionParams{} - this.SessionId = sessionId - this.ProjectId = projectId - return &this -} - -// NewDeleteSessionParamsWithDefaults instantiates a new DeleteSessionParams object -// This constructor will only assign default values to properties that have it defined, -// but it doesn't guarantee that properties required by API are set -func NewDeleteSessionParamsWithDefaults() *DeleteSessionParams { - this := DeleteSessionParams{} - return &this -} - -// GetSessionId returns the SessionId field value -func (o *DeleteSessionParams) GetSessionId() string { - if o == nil { - var ret string - return ret - } - - return o.SessionId -} - -// GetSessionIdOk returns a tuple with the SessionId field value -// and a boolean to check if the value has been set. -func (o *DeleteSessionParams) GetSessionIdOk() (*string, bool) { - if o == nil { - return nil, false - } - return &o.SessionId, true -} - -// SetSessionId sets field value -func (o *DeleteSessionParams) SetSessionId(v string) { - o.SessionId = v -} - -// GetProjectId returns the ProjectId field value -func (o *DeleteSessionParams) GetProjectId() string { - if o == nil { - var ret string - return ret - } - - return o.ProjectId -} - -// GetProjectIdOk returns a tuple with the ProjectId field value -// and a boolean to check if the value has been set. -func (o *DeleteSessionParams) GetProjectIdOk() (*string, bool) { - if o == nil { - return nil, false - } - return &o.ProjectId, true -} - -// SetProjectId sets field value -func (o *DeleteSessionParams) SetProjectId(v string) { - o.ProjectId = v -} - -func (o DeleteSessionParams) MarshalJSON() ([]byte, error) { - toSerialize, err := o.ToMap() - if err != nil { - return []byte{}, err - } - return json.Marshal(toSerialize) -} - -func (o DeleteSessionParams) ToMap() (map[string]interface{}, error) { - toSerialize := map[string]interface{}{} - toSerialize["sessionId"] = o.SessionId - toSerialize["projectId"] = o.ProjectId - - for key, value := range o.AdditionalProperties { - toSerialize[key] = value - } - - return toSerialize, nil -} - -func (o *DeleteSessionParams) UnmarshalJSON(data []byte) (err error) { - // This validates that all required properties are included in the JSON object - // by unmarshalling the object into a generic map with string keys and checking - // that every required field exists as a key in the generic map. - requiredProperties := []string{ - "sessionId", - "projectId", - } - - allProperties := make(map[string]interface{}) - - err = json.Unmarshal(data, &allProperties) - - if err != nil { - return err - } - - for _, requiredProperty := range requiredProperties { - if _, exists := allProperties[requiredProperty]; !exists { - return fmt.Errorf("no value given for required property %v", requiredProperty) - } - } - - varDeleteSessionParams := _DeleteSessionParams{} - - err = json.Unmarshal(data, &varDeleteSessionParams) - - if err != nil { - return err - } - - *o = DeleteSessionParams(varDeleteSessionParams) - - additionalProperties := make(map[string]interface{}) - - if err = json.Unmarshal(data, &additionalProperties); err == nil { - delete(additionalProperties, "sessionId") - delete(additionalProperties, "projectId") - o.AdditionalProperties = additionalProperties - } - - return err -} - -type NullableDeleteSessionParams struct { - value *DeleteSessionParams - isSet bool -} - -func (v NullableDeleteSessionParams) Get() *DeleteSessionParams { - return v.value -} - -func (v *NullableDeleteSessionParams) Set(val *DeleteSessionParams) { - v.value = val - v.isSet = true -} - -func (v NullableDeleteSessionParams) IsSet() bool { - return v.isSet -} - -func (v *NullableDeleteSessionParams) Unset() { - v.value = nil - v.isSet = false -} - -func NewNullableDeleteSessionParams(val *DeleteSessionParams) *NullableDeleteSessionParams { - return &NullableDeleteSessionParams{value: val, isSet: true} -} - -func (v NullableDeleteSessionParams) MarshalJSON() ([]byte, error) { - return json.Marshal(v.value) -} - -func (v *NullableDeleteSessionParams) UnmarshalJSON(src []byte) error { - v.isSet = true - return json.Unmarshal(src, &v.value) -} diff --git a/pkg/tensorleapapi/model_delete_session_test_request.go b/pkg/tensorleapapi/model_delete_session_test_request.go index 779e21564..93e721235 100644 --- a/pkg/tensorleapapi/model_delete_session_test_request.go +++ b/pkg/tensorleapapi/model_delete_session_test_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_delete_synthetic_data_params.go b/pkg/tensorleapapi/model_delete_synthetic_data_params.go index 9a704cb7b..16ed05503 100644 --- a/pkg/tensorleapapi/model_delete_synthetic_data_params.go +++ b/pkg/tensorleapapi/model_delete_synthetic_data_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_delete_team_request.go b/pkg/tensorleapapi/model_delete_team_request.go index f0a261207..60cb818bb 100644 --- a/pkg/tensorleapapi/model_delete_team_request.go +++ b/pkg/tensorleapapi/model_delete_team_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_delete_user_by_id_request.go b/pkg/tensorleapapi/model_delete_user_by_id_request.go index 0a21a2c6b..6bf8a1b0a 100644 --- a/pkg/tensorleapapi/model_delete_user_by_id_request.go +++ b/pkg/tensorleapapi/model_delete_user_by_id_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_delete_version_params.go b/pkg/tensorleapapi/model_delete_version_params.go index 9e17b4e33..2b6a11b9c 100644 --- a/pkg/tensorleapapi/model_delete_version_params.go +++ b/pkg/tensorleapapi/model_delete_version_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_delete_visualizations_params.go b/pkg/tensorleapapi/model_delete_visualizations_params.go index e51b90695..819a44423 100644 --- a/pkg/tensorleapapi/model_delete_visualizations_params.go +++ b/pkg/tensorleapapi/model_delete_visualizations_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_direction.go b/pkg/tensorleapapi/model_direction.go index f5964233d..d88088d69 100644 --- a/pkg/tensorleapapi/model_direction.go +++ b/pkg/tensorleapapi/model_direction.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_distinct_agg.go b/pkg/tensorleapapi/model_distinct_agg.go index 2febeff84..053cb08bd 100644 --- a/pkg/tensorleapapi/model_distinct_agg.go +++ b/pkg/tensorleapapi/model_distinct_agg.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_domain_gap_insight.go b/pkg/tensorleapapi/model_domain_gap_insight.go index 09a664028..44bb7299d 100644 --- a/pkg/tensorleapapi/model_domain_gap_insight.go +++ b/pkg/tensorleapapi/model_domain_gap_insight.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -35,6 +35,7 @@ type DomainGapInsight struct { AutomaticTests []InsightAutomaticTest `json:"automatic_tests,omitempty"` AutoGenerated bool `json:"auto_generated"` EsFiltersUsedInAnalysis []ESFilter `json:"es_filters_used_in_analysis,omitempty"` + LatentSpace *string `json:"latent_space,omitempty"` MetadataName string `json:"metadata_name"` DomainGapScore float64 `json:"domain_gap_score"` DomainA string `json:"domain_a"` @@ -475,6 +476,38 @@ func (o *DomainGapInsight) SetEsFiltersUsedInAnalysis(v []ESFilter) { o.EsFiltersUsedInAnalysis = v } +// GetLatentSpace returns the LatentSpace field value if set, zero value otherwise. +func (o *DomainGapInsight) GetLatentSpace() string { + if o == nil || IsNil(o.LatentSpace) { + var ret string + return ret + } + return *o.LatentSpace +} + +// GetLatentSpaceOk returns a tuple with the LatentSpace field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *DomainGapInsight) GetLatentSpaceOk() (*string, bool) { + if o == nil || IsNil(o.LatentSpace) { + return nil, false + } + return o.LatentSpace, true +} + +// HasLatentSpace returns a boolean if a field has been set. +func (o *DomainGapInsight) HasLatentSpace() bool { + if o != nil && !IsNil(o.LatentSpace) { + return true + } + + return false +} + +// SetLatentSpace gets a reference to the given string and assigns it to the LatentSpace field. +func (o *DomainGapInsight) SetLatentSpace(v string) { + o.LatentSpace = &v +} + // GetMetadataName returns the MetadataName field value func (o *DomainGapInsight) GetMetadataName() string { if o == nil { @@ -606,6 +639,9 @@ func (o DomainGapInsight) ToMap() (map[string]interface{}, error) { if !IsNil(o.EsFiltersUsedInAnalysis) { toSerialize["es_filters_used_in_analysis"] = o.EsFiltersUsedInAnalysis } + if !IsNil(o.LatentSpace) { + toSerialize["latent_space"] = o.LatentSpace + } toSerialize["metadata_name"] = o.MetadataName toSerialize["domain_gap_score"] = o.DomainGapScore toSerialize["domain_a"] = o.DomainA @@ -681,6 +717,7 @@ func (o *DomainGapInsight) UnmarshalJSON(data []byte) (err error) { delete(additionalProperties, "automatic_tests") delete(additionalProperties, "auto_generated") delete(additionalProperties, "es_filters_used_in_analysis") + delete(additionalProperties, "latent_space") delete(additionalProperties, "metadata_name") delete(additionalProperties, "domain_gap_score") delete(additionalProperties, "domain_a") diff --git a/pkg/tensorleapapi/model_duplication_insight.go b/pkg/tensorleapapi/model_duplication_insight.go index 86c4b3eea..17e1fc4fd 100644 --- a/pkg/tensorleapapi/model_duplication_insight.go +++ b/pkg/tensorleapapi/model_duplication_insight.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -35,6 +35,7 @@ type DuplicationInsight struct { AutomaticTests []InsightAutomaticTest `json:"automatic_tests,omitempty"` AutoGenerated bool `json:"auto_generated"` EsFiltersUsedInAnalysis []ESFilter `json:"es_filters_used_in_analysis,omitempty"` + LatentSpace *string `json:"latent_space,omitempty"` Subset DataStateType `json:"subset"` AdditionalProperties map[string]interface{} } @@ -469,6 +470,38 @@ func (o *DuplicationInsight) SetEsFiltersUsedInAnalysis(v []ESFilter) { o.EsFiltersUsedInAnalysis = v } +// GetLatentSpace returns the LatentSpace field value if set, zero value otherwise. +func (o *DuplicationInsight) GetLatentSpace() string { + if o == nil || IsNil(o.LatentSpace) { + var ret string + return ret + } + return *o.LatentSpace +} + +// GetLatentSpaceOk returns a tuple with the LatentSpace field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *DuplicationInsight) GetLatentSpaceOk() (*string, bool) { + if o == nil || IsNil(o.LatentSpace) { + return nil, false + } + return o.LatentSpace, true +} + +// HasLatentSpace returns a boolean if a field has been set. +func (o *DuplicationInsight) HasLatentSpace() bool { + if o != nil && !IsNil(o.LatentSpace) { + return true + } + + return false +} + +// SetLatentSpace gets a reference to the given string and assigns it to the LatentSpace field. +func (o *DuplicationInsight) SetLatentSpace(v string) { + o.LatentSpace = &v +} + // GetSubset returns the Subset field value func (o *DuplicationInsight) GetSubset() DataStateType { if o == nil { @@ -528,6 +561,9 @@ func (o DuplicationInsight) ToMap() (map[string]interface{}, error) { if !IsNil(o.EsFiltersUsedInAnalysis) { toSerialize["es_filters_used_in_analysis"] = o.EsFiltersUsedInAnalysis } + if !IsNil(o.LatentSpace) { + toSerialize["latent_space"] = o.LatentSpace + } toSerialize["subset"] = o.Subset for key, value := range o.AdditionalProperties { @@ -597,6 +633,7 @@ func (o *DuplicationInsight) UnmarshalJSON(data []byte) (err error) { delete(additionalProperties, "automatic_tests") delete(additionalProperties, "auto_generated") delete(additionalProperties, "es_filters_used_in_analysis") + delete(additionalProperties, "latent_space") delete(additionalProperties, "subset") o.AdditionalProperties = additionalProperties } diff --git a/pkg/tensorleapapi/model_early_stop_params.go b/pkg/tensorleapapi/model_early_stop_params.go deleted file mode 100644 index 13a3a85af..000000000 --- a/pkg/tensorleapapi/model_early_stop_params.go +++ /dev/null @@ -1,166 +0,0 @@ -/* -node-server - -No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - -API version: 11.0.7 -*/ - -// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. - -package tensorleapapi - -import ( - "encoding/json" - "fmt" -) - -// checks if the EarlyStopParams type satisfies the MappedNullable interface at compile time -var _ MappedNullable = &EarlyStopParams{} - -// EarlyStopParams struct for EarlyStopParams -type EarlyStopParams struct { - Patience float64 `json:"patience"` - AdditionalProperties map[string]interface{} -} - -type _EarlyStopParams EarlyStopParams - -// NewEarlyStopParams instantiates a new EarlyStopParams object -// This constructor will assign default values to properties that have it defined, -// and makes sure properties required by API are set, but the set of arguments -// will change when the set of required properties is changed -func NewEarlyStopParams(patience float64) *EarlyStopParams { - this := EarlyStopParams{} - this.Patience = patience - return &this -} - -// NewEarlyStopParamsWithDefaults instantiates a new EarlyStopParams object -// This constructor will only assign default values to properties that have it defined, -// but it doesn't guarantee that properties required by API are set -func NewEarlyStopParamsWithDefaults() *EarlyStopParams { - this := EarlyStopParams{} - return &this -} - -// GetPatience returns the Patience field value -func (o *EarlyStopParams) GetPatience() float64 { - if o == nil { - var ret float64 - return ret - } - - return o.Patience -} - -// GetPatienceOk returns a tuple with the Patience field value -// and a boolean to check if the value has been set. -func (o *EarlyStopParams) GetPatienceOk() (*float64, bool) { - if o == nil { - return nil, false - } - return &o.Patience, true -} - -// SetPatience sets field value -func (o *EarlyStopParams) SetPatience(v float64) { - o.Patience = v -} - -func (o EarlyStopParams) MarshalJSON() ([]byte, error) { - toSerialize, err := o.ToMap() - if err != nil { - return []byte{}, err - } - return json.Marshal(toSerialize) -} - -func (o EarlyStopParams) ToMap() (map[string]interface{}, error) { - toSerialize := map[string]interface{}{} - toSerialize["patience"] = o.Patience - - for key, value := range o.AdditionalProperties { - toSerialize[key] = value - } - - return toSerialize, nil -} - -func (o *EarlyStopParams) UnmarshalJSON(data []byte) (err error) { - // This validates that all required properties are included in the JSON object - // by unmarshalling the object into a generic map with string keys and checking - // that every required field exists as a key in the generic map. - requiredProperties := []string{ - "patience", - } - - allProperties := make(map[string]interface{}) - - err = json.Unmarshal(data, &allProperties) - - if err != nil { - return err - } - - for _, requiredProperty := range requiredProperties { - if _, exists := allProperties[requiredProperty]; !exists { - return fmt.Errorf("no value given for required property %v", requiredProperty) - } - } - - varEarlyStopParams := _EarlyStopParams{} - - err = json.Unmarshal(data, &varEarlyStopParams) - - if err != nil { - return err - } - - *o = EarlyStopParams(varEarlyStopParams) - - additionalProperties := make(map[string]interface{}) - - if err = json.Unmarshal(data, &additionalProperties); err == nil { - delete(additionalProperties, "patience") - o.AdditionalProperties = additionalProperties - } - - return err -} - -type NullableEarlyStopParams struct { - value *EarlyStopParams - isSet bool -} - -func (v NullableEarlyStopParams) Get() *EarlyStopParams { - return v.value -} - -func (v *NullableEarlyStopParams) Set(val *EarlyStopParams) { - v.value = val - v.isSet = true -} - -func (v NullableEarlyStopParams) IsSet() bool { - return v.isSet -} - -func (v *NullableEarlyStopParams) Unset() { - v.value = nil - v.isSet = false -} - -func NewNullableEarlyStopParams(val *EarlyStopParams) *NullableEarlyStopParams { - return &NullableEarlyStopParams{value: val, isSet: true} -} - -func (v NullableEarlyStopParams) MarshalJSON() ([]byte, error) { - return json.Marshal(v.value) -} - -func (v *NullableEarlyStopParams) UnmarshalJSON(src []byte) error { - v.isSet = true - return json.Unmarshal(src, &v.value) -} diff --git a/pkg/tensorleapapi/model_engine_setting_key.go b/pkg/tensorleapapi/model_engine_setting_key.go index a81b8fa78..657884c80 100644 --- a/pkg/tensorleapapi/model_engine_setting_key.go +++ b/pkg/tensorleapapi/model_engine_setting_key.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -39,7 +39,6 @@ const ( ENGINESETTINGKEY_SLIM_JOB_CPU_LIMIT EngineSettingKey = "SLIM_JOB_CPU_LIMIT" ENGINESETTINGKEY_SLIM_JOB_REQUIRED_MEMORY EngineSettingKey = "SLIM_JOB_REQUIRED_MEMORY" ENGINESETTINGKEY_SLIM_JOB_LIMIT_MEMORY EngineSettingKey = "SLIM_JOB_LIMIT_MEMORY" - ENGINESETTINGKEY_SLIM_JOB_TIME_TO_LIVE EngineSettingKey = "SLIM_JOB_TIME_TO_LIVE" ENGINESETTINGKEY_PIP_INDEX_URL EngineSettingKey = "PIP_INDEX_URL" ENGINESETTINGKEY_PIP_EXTRA_INDEX_URL EngineSettingKey = "PIP_EXTRA_INDEX_URL" ENGINESETTINGKEY_WARMUP_TIMEOUT_MINUTES EngineSettingKey = "WARMUP_TIMEOUT_MINUTES" @@ -67,7 +66,6 @@ var AllowedEngineSettingKeyEnumValues = []EngineSettingKey{ "SLIM_JOB_CPU_LIMIT", "SLIM_JOB_REQUIRED_MEMORY", "SLIM_JOB_LIMIT_MEMORY", - "SLIM_JOB_TIME_TO_LIVE", "PIP_INDEX_URL", "PIP_EXTRA_INDEX_URL", "WARMUP_TIMEOUT_MINUTES", diff --git a/pkg/tensorleapapi/model_epoch_data.go b/pkg/tensorleapapi/model_epoch_data.go index 575659c5b..45259bad0 100644 --- a/pkg/tensorleapapi/model_epoch_data.go +++ b/pkg/tensorleapapi/model_epoch_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -20,12 +20,10 @@ var _ MappedNullable = &EpochData{} // EpochData struct for EpochData type EpochData struct { - SessionId string `json:"sessionId"` + VersionId string `json:"versionId"` Epoch float64 `json:"epoch"` Tags []string `json:"tags"` - WeightsData *SessionWeightData `json:"weightsData,omitempty"` UploadedModelFilePath *string `json:"uploadedModelFilePath,omitempty"` - Runs []SessionRunData `json:"runs"` ExternalData *EpochDataExternalData `json:"externalData,omitempty"` AdditionalProperties map[string]interface{} } @@ -36,12 +34,11 @@ type _EpochData EpochData // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewEpochData(sessionId string, epoch float64, tags []string, runs []SessionRunData) *EpochData { +func NewEpochData(versionId string, epoch float64, tags []string) *EpochData { this := EpochData{} - this.SessionId = sessionId + this.VersionId = versionId this.Epoch = epoch this.Tags = tags - this.Runs = runs return &this } @@ -53,28 +50,28 @@ func NewEpochDataWithDefaults() *EpochData { return &this } -// GetSessionId returns the SessionId field value -func (o *EpochData) GetSessionId() string { +// GetVersionId returns the VersionId field value +func (o *EpochData) GetVersionId() string { if o == nil { var ret string return ret } - return o.SessionId + return o.VersionId } -// GetSessionIdOk returns a tuple with the SessionId field value +// GetVersionIdOk returns a tuple with the VersionId field value // and a boolean to check if the value has been set. -func (o *EpochData) GetSessionIdOk() (*string, bool) { +func (o *EpochData) GetVersionIdOk() (*string, bool) { if o == nil { return nil, false } - return &o.SessionId, true + return &o.VersionId, true } -// SetSessionId sets field value -func (o *EpochData) SetSessionId(v string) { - o.SessionId = v +// SetVersionId sets field value +func (o *EpochData) SetVersionId(v string) { + o.VersionId = v } // GetEpoch returns the Epoch field value @@ -125,38 +122,6 @@ func (o *EpochData) SetTags(v []string) { o.Tags = v } -// GetWeightsData returns the WeightsData field value if set, zero value otherwise. -func (o *EpochData) GetWeightsData() SessionWeightData { - if o == nil || IsNil(o.WeightsData) { - var ret SessionWeightData - return ret - } - return *o.WeightsData -} - -// GetWeightsDataOk returns a tuple with the WeightsData field value if set, nil otherwise -// and a boolean to check if the value has been set. -func (o *EpochData) GetWeightsDataOk() (*SessionWeightData, bool) { - if o == nil || IsNil(o.WeightsData) { - return nil, false - } - return o.WeightsData, true -} - -// HasWeightsData returns a boolean if a field has been set. -func (o *EpochData) HasWeightsData() bool { - if o != nil && !IsNil(o.WeightsData) { - return true - } - - return false -} - -// SetWeightsData gets a reference to the given SessionWeightData and assigns it to the WeightsData field. -func (o *EpochData) SetWeightsData(v SessionWeightData) { - o.WeightsData = &v -} - // GetUploadedModelFilePath returns the UploadedModelFilePath field value if set, zero value otherwise. func (o *EpochData) GetUploadedModelFilePath() string { if o == nil || IsNil(o.UploadedModelFilePath) { @@ -189,30 +154,6 @@ func (o *EpochData) SetUploadedModelFilePath(v string) { o.UploadedModelFilePath = &v } -// GetRuns returns the Runs field value -func (o *EpochData) GetRuns() []SessionRunData { - if o == nil { - var ret []SessionRunData - return ret - } - - return o.Runs -} - -// GetRunsOk returns a tuple with the Runs field value -// and a boolean to check if the value has been set. -func (o *EpochData) GetRunsOk() ([]SessionRunData, bool) { - if o == nil { - return nil, false - } - return o.Runs, true -} - -// SetRuns sets field value -func (o *EpochData) SetRuns(v []SessionRunData) { - o.Runs = v -} - // GetExternalData returns the ExternalData field value if set, zero value otherwise. func (o *EpochData) GetExternalData() EpochDataExternalData { if o == nil || IsNil(o.ExternalData) { @@ -255,16 +196,12 @@ func (o EpochData) MarshalJSON() ([]byte, error) { func (o EpochData) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} - toSerialize["sessionId"] = o.SessionId + toSerialize["versionId"] = o.VersionId toSerialize["epoch"] = o.Epoch toSerialize["tags"] = o.Tags - if !IsNil(o.WeightsData) { - toSerialize["weightsData"] = o.WeightsData - } if !IsNil(o.UploadedModelFilePath) { toSerialize["uploadedModelFilePath"] = o.UploadedModelFilePath } - toSerialize["runs"] = o.Runs if !IsNil(o.ExternalData) { toSerialize["externalData"] = o.ExternalData } @@ -281,10 +218,9 @@ func (o *EpochData) UnmarshalJSON(data []byte) (err error) { // by unmarshalling the object into a generic map with string keys and checking // that every required field exists as a key in the generic map. requiredProperties := []string{ - "sessionId", + "versionId", "epoch", "tags", - "runs", } allProperties := make(map[string]interface{}) @@ -314,12 +250,10 @@ func (o *EpochData) UnmarshalJSON(data []byte) (err error) { additionalProperties := make(map[string]interface{}) if err = json.Unmarshal(data, &additionalProperties); err == nil { - delete(additionalProperties, "sessionId") + delete(additionalProperties, "versionId") delete(additionalProperties, "epoch") delete(additionalProperties, "tags") - delete(additionalProperties, "weightsData") delete(additionalProperties, "uploadedModelFilePath") - delete(additionalProperties, "runs") delete(additionalProperties, "externalData") o.AdditionalProperties = additionalProperties } diff --git a/pkg/tensorleapapi/model_epoch_data_external_data.go b/pkg/tensorleapapi/model_epoch_data_external_data.go index 44be14c6b..06cba5504 100644 --- a/pkg/tensorleapapi/model_epoch_data_external_data.go +++ b/pkg/tensorleapapi/model_epoch_data_external_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_epoch_metrics_value.go b/pkg/tensorleapapi/model_epoch_metrics_value.go index 5ae87120c..eab627e11 100644 --- a/pkg/tensorleapapi/model_epoch_metrics_value.go +++ b/pkg/tensorleapapi/model_epoch_metrics_value.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_epoch_metrics_value_any_of.go b/pkg/tensorleapapi/model_epoch_metrics_value_any_of.go index 121cfa297..7a6b6023c 100644 --- a/pkg/tensorleapapi/model_epoch_metrics_value_any_of.go +++ b/pkg/tensorleapapi/model_epoch_metrics_value_any_of.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_epoch_metrics_value_any_of_1.go b/pkg/tensorleapapi/model_epoch_metrics_value_any_of_1.go index 4f8f4662e..d2647d09c 100644 --- a/pkg/tensorleapapi/model_epoch_metrics_value_any_of_1.go +++ b/pkg/tensorleapapi/model_epoch_metrics_value_any_of_1.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_epoch_metrics_value_any_of_2.go b/pkg/tensorleapapi/model_epoch_metrics_value_any_of_2.go index 6ae47f0fb..22684220d 100644 --- a/pkg/tensorleapapi/model_epoch_metrics_value_any_of_2.go +++ b/pkg/tensorleapapi/model_epoch_metrics_value_any_of_2.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_es_filter.go b/pkg/tensorleapapi/model_es_filter.go index d217736b7..7d337142b 100644 --- a/pkg/tensorleapapi/model_es_filter.go +++ b/pkg/tensorleapapi/model_es_filter.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_es_filter_value.go b/pkg/tensorleapapi/model_es_filter_value.go index d5a05fbd7..4e50c275a 100644 --- a/pkg/tensorleapapi/model_es_filter_value.go +++ b/pkg/tensorleapapi/model_es_filter_value.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_evaluate_existing_session_params.go b/pkg/tensorleapapi/model_evaluate_existing_version_params.go similarity index 51% rename from pkg/tensorleapapi/model_evaluate_existing_session_params.go rename to pkg/tensorleapapi/model_evaluate_existing_version_params.go index 78ff43489..0aa3f4f43 100644 --- a/pkg/tensorleapapi/model_evaluate_existing_session_params.go +++ b/pkg/tensorleapapi/model_evaluate_existing_version_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -15,50 +15,45 @@ import ( "fmt" ) -// checks if the EvaluateExistingSessionParams type satisfies the MappedNullable interface at compile time -var _ MappedNullable = &EvaluateExistingSessionParams{} +// checks if the EvaluateExistingVersionParams type satisfies the MappedNullable interface at compile time +var _ MappedNullable = &EvaluateExistingVersionParams{} -// EvaluateExistingSessionParams struct for EvaluateExistingSessionParams -type EvaluateExistingSessionParams struct { +// EvaluateExistingVersionParams struct for EvaluateExistingVersionParams +type EvaluateExistingVersionParams struct { VersionId string `json:"versionId"` + InferenceArtifactId *string `json:"inferenceArtifactId,omitempty"` ProjectId string `json:"projectId"` BatchSize float64 `json:"batchSize"` - Name string `json:"name"` - Description string `json:"description"` Monitor *bool `json:"monitor,omitempty"` EvaluatedEpoch float64 `json:"evaluatedEpoch"` - SessionId string `json:"sessionId"` AdditionalProperties map[string]interface{} } -type _EvaluateExistingSessionParams EvaluateExistingSessionParams +type _EvaluateExistingVersionParams EvaluateExistingVersionParams -// NewEvaluateExistingSessionParams instantiates a new EvaluateExistingSessionParams object +// NewEvaluateExistingVersionParams instantiates a new EvaluateExistingVersionParams object // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewEvaluateExistingSessionParams(versionId string, projectId string, batchSize float64, name string, description string, evaluatedEpoch float64, sessionId string) *EvaluateExistingSessionParams { - this := EvaluateExistingSessionParams{} +func NewEvaluateExistingVersionParams(versionId string, projectId string, batchSize float64, evaluatedEpoch float64) *EvaluateExistingVersionParams { + this := EvaluateExistingVersionParams{} this.VersionId = versionId this.ProjectId = projectId this.BatchSize = batchSize - this.Name = name - this.Description = description this.EvaluatedEpoch = evaluatedEpoch - this.SessionId = sessionId return &this } -// NewEvaluateExistingSessionParamsWithDefaults instantiates a new EvaluateExistingSessionParams object +// NewEvaluateExistingVersionParamsWithDefaults instantiates a new EvaluateExistingVersionParams object // This constructor will only assign default values to properties that have it defined, // but it doesn't guarantee that properties required by API are set -func NewEvaluateExistingSessionParamsWithDefaults() *EvaluateExistingSessionParams { - this := EvaluateExistingSessionParams{} +func NewEvaluateExistingVersionParamsWithDefaults() *EvaluateExistingVersionParams { + this := EvaluateExistingVersionParams{} return &this } // GetVersionId returns the VersionId field value -func (o *EvaluateExistingSessionParams) GetVersionId() string { +func (o *EvaluateExistingVersionParams) GetVersionId() string { if o == nil { var ret string return ret @@ -69,7 +64,7 @@ func (o *EvaluateExistingSessionParams) GetVersionId() string { // GetVersionIdOk returns a tuple with the VersionId field value // and a boolean to check if the value has been set. -func (o *EvaluateExistingSessionParams) GetVersionIdOk() (*string, bool) { +func (o *EvaluateExistingVersionParams) GetVersionIdOk() (*string, bool) { if o == nil { return nil, false } @@ -77,108 +72,92 @@ func (o *EvaluateExistingSessionParams) GetVersionIdOk() (*string, bool) { } // SetVersionId sets field value -func (o *EvaluateExistingSessionParams) SetVersionId(v string) { +func (o *EvaluateExistingVersionParams) SetVersionId(v string) { o.VersionId = v } -// GetProjectId returns the ProjectId field value -func (o *EvaluateExistingSessionParams) GetProjectId() string { - if o == nil { +// GetInferenceArtifactId returns the InferenceArtifactId field value if set, zero value otherwise. +func (o *EvaluateExistingVersionParams) GetInferenceArtifactId() string { + if o == nil || IsNil(o.InferenceArtifactId) { var ret string return ret } - - return o.ProjectId + return *o.InferenceArtifactId } -// GetProjectIdOk returns a tuple with the ProjectId field value +// GetInferenceArtifactIdOk returns a tuple with the InferenceArtifactId field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *EvaluateExistingSessionParams) GetProjectIdOk() (*string, bool) { - if o == nil { +func (o *EvaluateExistingVersionParams) GetInferenceArtifactIdOk() (*string, bool) { + if o == nil || IsNil(o.InferenceArtifactId) { return nil, false } - return &o.ProjectId, true + return o.InferenceArtifactId, true } -// SetProjectId sets field value -func (o *EvaluateExistingSessionParams) SetProjectId(v string) { - o.ProjectId = v -} - -// GetBatchSize returns the BatchSize field value -func (o *EvaluateExistingSessionParams) GetBatchSize() float64 { - if o == nil { - var ret float64 - return ret +// HasInferenceArtifactId returns a boolean if a field has been set. +func (o *EvaluateExistingVersionParams) HasInferenceArtifactId() bool { + if o != nil && !IsNil(o.InferenceArtifactId) { + return true } - return o.BatchSize -} - -// GetBatchSizeOk returns a tuple with the BatchSize field value -// and a boolean to check if the value has been set. -func (o *EvaluateExistingSessionParams) GetBatchSizeOk() (*float64, bool) { - if o == nil { - return nil, false - } - return &o.BatchSize, true + return false } -// SetBatchSize sets field value -func (o *EvaluateExistingSessionParams) SetBatchSize(v float64) { - o.BatchSize = v +// SetInferenceArtifactId gets a reference to the given string and assigns it to the InferenceArtifactId field. +func (o *EvaluateExistingVersionParams) SetInferenceArtifactId(v string) { + o.InferenceArtifactId = &v } -// GetName returns the Name field value -func (o *EvaluateExistingSessionParams) GetName() string { +// GetProjectId returns the ProjectId field value +func (o *EvaluateExistingVersionParams) GetProjectId() string { if o == nil { var ret string return ret } - return o.Name + return o.ProjectId } -// GetNameOk returns a tuple with the Name field value +// GetProjectIdOk returns a tuple with the ProjectId field value // and a boolean to check if the value has been set. -func (o *EvaluateExistingSessionParams) GetNameOk() (*string, bool) { +func (o *EvaluateExistingVersionParams) GetProjectIdOk() (*string, bool) { if o == nil { return nil, false } - return &o.Name, true + return &o.ProjectId, true } -// SetName sets field value -func (o *EvaluateExistingSessionParams) SetName(v string) { - o.Name = v +// SetProjectId sets field value +func (o *EvaluateExistingVersionParams) SetProjectId(v string) { + o.ProjectId = v } -// GetDescription returns the Description field value -func (o *EvaluateExistingSessionParams) GetDescription() string { +// GetBatchSize returns the BatchSize field value +func (o *EvaluateExistingVersionParams) GetBatchSize() float64 { if o == nil { - var ret string + var ret float64 return ret } - return o.Description + return o.BatchSize } -// GetDescriptionOk returns a tuple with the Description field value +// GetBatchSizeOk returns a tuple with the BatchSize field value // and a boolean to check if the value has been set. -func (o *EvaluateExistingSessionParams) GetDescriptionOk() (*string, bool) { +func (o *EvaluateExistingVersionParams) GetBatchSizeOk() (*float64, bool) { if o == nil { return nil, false } - return &o.Description, true + return &o.BatchSize, true } -// SetDescription sets field value -func (o *EvaluateExistingSessionParams) SetDescription(v string) { - o.Description = v +// SetBatchSize sets field value +func (o *EvaluateExistingVersionParams) SetBatchSize(v float64) { + o.BatchSize = v } // GetMonitor returns the Monitor field value if set, zero value otherwise. -func (o *EvaluateExistingSessionParams) GetMonitor() bool { +func (o *EvaluateExistingVersionParams) GetMonitor() bool { if o == nil || IsNil(o.Monitor) { var ret bool return ret @@ -188,7 +167,7 @@ func (o *EvaluateExistingSessionParams) GetMonitor() bool { // GetMonitorOk returns a tuple with the Monitor field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *EvaluateExistingSessionParams) GetMonitorOk() (*bool, bool) { +func (o *EvaluateExistingVersionParams) GetMonitorOk() (*bool, bool) { if o == nil || IsNil(o.Monitor) { return nil, false } @@ -196,7 +175,7 @@ func (o *EvaluateExistingSessionParams) GetMonitorOk() (*bool, bool) { } // HasMonitor returns a boolean if a field has been set. -func (o *EvaluateExistingSessionParams) HasMonitor() bool { +func (o *EvaluateExistingVersionParams) HasMonitor() bool { if o != nil && !IsNil(o.Monitor) { return true } @@ -205,12 +184,12 @@ func (o *EvaluateExistingSessionParams) HasMonitor() bool { } // SetMonitor gets a reference to the given bool and assigns it to the Monitor field. -func (o *EvaluateExistingSessionParams) SetMonitor(v bool) { +func (o *EvaluateExistingVersionParams) SetMonitor(v bool) { o.Monitor = &v } // GetEvaluatedEpoch returns the EvaluatedEpoch field value -func (o *EvaluateExistingSessionParams) GetEvaluatedEpoch() float64 { +func (o *EvaluateExistingVersionParams) GetEvaluatedEpoch() float64 { if o == nil { var ret float64 return ret @@ -221,7 +200,7 @@ func (o *EvaluateExistingSessionParams) GetEvaluatedEpoch() float64 { // GetEvaluatedEpochOk returns a tuple with the EvaluatedEpoch field value // and a boolean to check if the value has been set. -func (o *EvaluateExistingSessionParams) GetEvaluatedEpochOk() (*float64, bool) { +func (o *EvaluateExistingVersionParams) GetEvaluatedEpochOk() (*float64, bool) { if o == nil { return nil, false } @@ -229,35 +208,11 @@ func (o *EvaluateExistingSessionParams) GetEvaluatedEpochOk() (*float64, bool) { } // SetEvaluatedEpoch sets field value -func (o *EvaluateExistingSessionParams) SetEvaluatedEpoch(v float64) { +func (o *EvaluateExistingVersionParams) SetEvaluatedEpoch(v float64) { o.EvaluatedEpoch = v } -// GetSessionId returns the SessionId field value -func (o *EvaluateExistingSessionParams) GetSessionId() string { - if o == nil { - var ret string - return ret - } - - return o.SessionId -} - -// GetSessionIdOk returns a tuple with the SessionId field value -// and a boolean to check if the value has been set. -func (o *EvaluateExistingSessionParams) GetSessionIdOk() (*string, bool) { - if o == nil { - return nil, false - } - return &o.SessionId, true -} - -// SetSessionId sets field value -func (o *EvaluateExistingSessionParams) SetSessionId(v string) { - o.SessionId = v -} - -func (o EvaluateExistingSessionParams) MarshalJSON() ([]byte, error) { +func (o EvaluateExistingVersionParams) MarshalJSON() ([]byte, error) { toSerialize, err := o.ToMap() if err != nil { return []byte{}, err @@ -265,18 +220,18 @@ func (o EvaluateExistingSessionParams) MarshalJSON() ([]byte, error) { return json.Marshal(toSerialize) } -func (o EvaluateExistingSessionParams) ToMap() (map[string]interface{}, error) { +func (o EvaluateExistingVersionParams) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} toSerialize["versionId"] = o.VersionId + if !IsNil(o.InferenceArtifactId) { + toSerialize["inferenceArtifactId"] = o.InferenceArtifactId + } toSerialize["projectId"] = o.ProjectId toSerialize["batchSize"] = o.BatchSize - toSerialize["name"] = o.Name - toSerialize["description"] = o.Description if !IsNil(o.Monitor) { toSerialize["monitor"] = o.Monitor } toSerialize["evaluatedEpoch"] = o.EvaluatedEpoch - toSerialize["sessionId"] = o.SessionId for key, value := range o.AdditionalProperties { toSerialize[key] = value @@ -285,7 +240,7 @@ func (o EvaluateExistingSessionParams) ToMap() (map[string]interface{}, error) { return toSerialize, nil } -func (o *EvaluateExistingSessionParams) UnmarshalJSON(data []byte) (err error) { +func (o *EvaluateExistingVersionParams) UnmarshalJSON(data []byte) (err error) { // This validates that all required properties are included in the JSON object // by unmarshalling the object into a generic map with string keys and checking // that every required field exists as a key in the generic map. @@ -293,10 +248,7 @@ func (o *EvaluateExistingSessionParams) UnmarshalJSON(data []byte) (err error) { "versionId", "projectId", "batchSize", - "name", - "description", "evaluatedEpoch", - "sessionId", } allProperties := make(map[string]interface{}) @@ -313,65 +265,63 @@ func (o *EvaluateExistingSessionParams) UnmarshalJSON(data []byte) (err error) { } } - varEvaluateExistingSessionParams := _EvaluateExistingSessionParams{} + varEvaluateExistingVersionParams := _EvaluateExistingVersionParams{} - err = json.Unmarshal(data, &varEvaluateExistingSessionParams) + err = json.Unmarshal(data, &varEvaluateExistingVersionParams) if err != nil { return err } - *o = EvaluateExistingSessionParams(varEvaluateExistingSessionParams) + *o = EvaluateExistingVersionParams(varEvaluateExistingVersionParams) additionalProperties := make(map[string]interface{}) if err = json.Unmarshal(data, &additionalProperties); err == nil { delete(additionalProperties, "versionId") + delete(additionalProperties, "inferenceArtifactId") delete(additionalProperties, "projectId") delete(additionalProperties, "batchSize") - delete(additionalProperties, "name") - delete(additionalProperties, "description") delete(additionalProperties, "monitor") delete(additionalProperties, "evaluatedEpoch") - delete(additionalProperties, "sessionId") o.AdditionalProperties = additionalProperties } return err } -type NullableEvaluateExistingSessionParams struct { - value *EvaluateExistingSessionParams +type NullableEvaluateExistingVersionParams struct { + value *EvaluateExistingVersionParams isSet bool } -func (v NullableEvaluateExistingSessionParams) Get() *EvaluateExistingSessionParams { +func (v NullableEvaluateExistingVersionParams) Get() *EvaluateExistingVersionParams { return v.value } -func (v *NullableEvaluateExistingSessionParams) Set(val *EvaluateExistingSessionParams) { +func (v *NullableEvaluateExistingVersionParams) Set(val *EvaluateExistingVersionParams) { v.value = val v.isSet = true } -func (v NullableEvaluateExistingSessionParams) IsSet() bool { +func (v NullableEvaluateExistingVersionParams) IsSet() bool { return v.isSet } -func (v *NullableEvaluateExistingSessionParams) Unset() { +func (v *NullableEvaluateExistingVersionParams) Unset() { v.value = nil v.isSet = false } -func NewNullableEvaluateExistingSessionParams(val *EvaluateExistingSessionParams) *NullableEvaluateExistingSessionParams { - return &NullableEvaluateExistingSessionParams{value: val, isSet: true} +func NewNullableEvaluateExistingVersionParams(val *EvaluateExistingVersionParams) *NullableEvaluateExistingVersionParams { + return &NullableEvaluateExistingVersionParams{value: val, isSet: true} } -func (v NullableEvaluateExistingSessionParams) MarshalJSON() ([]byte, error) { +func (v NullableEvaluateExistingVersionParams) MarshalJSON() ([]byte, error) { return json.Marshal(v.value) } -func (v *NullableEvaluateExistingSessionParams) UnmarshalJSON(src []byte) error { +func (v *NullableEvaluateExistingVersionParams) UnmarshalJSON(src []byte) error { v.isSet = true return json.Unmarshal(src, &v.value) } diff --git a/pkg/tensorleapapi/model_evaluate_new_session_params.go b/pkg/tensorleapapi/model_evaluate_new_version_params.go similarity index 55% rename from pkg/tensorleapapi/model_evaluate_new_session_params.go rename to pkg/tensorleapapi/model_evaluate_new_version_params.go index 0c915d006..2de521898 100644 --- a/pkg/tensorleapapi/model_evaluate_new_session_params.go +++ b/pkg/tensorleapapi/model_evaluate_new_version_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -15,46 +15,43 @@ import ( "fmt" ) -// checks if the EvaluateNewSessionParams type satisfies the MappedNullable interface at compile time -var _ MappedNullable = &EvaluateNewSessionParams{} +// checks if the EvaluateNewVersionParams type satisfies the MappedNullable interface at compile time +var _ MappedNullable = &EvaluateNewVersionParams{} -// EvaluateNewSessionParams struct for EvaluateNewSessionParams -type EvaluateNewSessionParams struct { +// EvaluateNewVersionParams struct for EvaluateNewVersionParams +type EvaluateNewVersionParams struct { VersionId string `json:"versionId"` + InferenceArtifactId *string `json:"inferenceArtifactId,omitempty"` ProjectId string `json:"projectId"` BatchSize float64 `json:"batchSize"` - Name string `json:"name"` - Description string `json:"description"` Monitor *bool `json:"monitor,omitempty"` AdditionalProperties map[string]interface{} } -type _EvaluateNewSessionParams EvaluateNewSessionParams +type _EvaluateNewVersionParams EvaluateNewVersionParams -// NewEvaluateNewSessionParams instantiates a new EvaluateNewSessionParams object +// NewEvaluateNewVersionParams instantiates a new EvaluateNewVersionParams object // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewEvaluateNewSessionParams(versionId string, projectId string, batchSize float64, name string, description string) *EvaluateNewSessionParams { - this := EvaluateNewSessionParams{} +func NewEvaluateNewVersionParams(versionId string, projectId string, batchSize float64) *EvaluateNewVersionParams { + this := EvaluateNewVersionParams{} this.VersionId = versionId this.ProjectId = projectId this.BatchSize = batchSize - this.Name = name - this.Description = description return &this } -// NewEvaluateNewSessionParamsWithDefaults instantiates a new EvaluateNewSessionParams object +// NewEvaluateNewVersionParamsWithDefaults instantiates a new EvaluateNewVersionParams object // This constructor will only assign default values to properties that have it defined, // but it doesn't guarantee that properties required by API are set -func NewEvaluateNewSessionParamsWithDefaults() *EvaluateNewSessionParams { - this := EvaluateNewSessionParams{} +func NewEvaluateNewVersionParamsWithDefaults() *EvaluateNewVersionParams { + this := EvaluateNewVersionParams{} return &this } // GetVersionId returns the VersionId field value -func (o *EvaluateNewSessionParams) GetVersionId() string { +func (o *EvaluateNewVersionParams) GetVersionId() string { if o == nil { var ret string return ret @@ -65,7 +62,7 @@ func (o *EvaluateNewSessionParams) GetVersionId() string { // GetVersionIdOk returns a tuple with the VersionId field value // and a boolean to check if the value has been set. -func (o *EvaluateNewSessionParams) GetVersionIdOk() (*string, bool) { +func (o *EvaluateNewVersionParams) GetVersionIdOk() (*string, bool) { if o == nil { return nil, false } @@ -73,108 +70,92 @@ func (o *EvaluateNewSessionParams) GetVersionIdOk() (*string, bool) { } // SetVersionId sets field value -func (o *EvaluateNewSessionParams) SetVersionId(v string) { +func (o *EvaluateNewVersionParams) SetVersionId(v string) { o.VersionId = v } -// GetProjectId returns the ProjectId field value -func (o *EvaluateNewSessionParams) GetProjectId() string { - if o == nil { +// GetInferenceArtifactId returns the InferenceArtifactId field value if set, zero value otherwise. +func (o *EvaluateNewVersionParams) GetInferenceArtifactId() string { + if o == nil || IsNil(o.InferenceArtifactId) { var ret string return ret } - - return o.ProjectId + return *o.InferenceArtifactId } -// GetProjectIdOk returns a tuple with the ProjectId field value +// GetInferenceArtifactIdOk returns a tuple with the InferenceArtifactId field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *EvaluateNewSessionParams) GetProjectIdOk() (*string, bool) { - if o == nil { +func (o *EvaluateNewVersionParams) GetInferenceArtifactIdOk() (*string, bool) { + if o == nil || IsNil(o.InferenceArtifactId) { return nil, false } - return &o.ProjectId, true -} - -// SetProjectId sets field value -func (o *EvaluateNewSessionParams) SetProjectId(v string) { - o.ProjectId = v + return o.InferenceArtifactId, true } -// GetBatchSize returns the BatchSize field value -func (o *EvaluateNewSessionParams) GetBatchSize() float64 { - if o == nil { - var ret float64 - return ret +// HasInferenceArtifactId returns a boolean if a field has been set. +func (o *EvaluateNewVersionParams) HasInferenceArtifactId() bool { + if o != nil && !IsNil(o.InferenceArtifactId) { + return true } - return o.BatchSize -} - -// GetBatchSizeOk returns a tuple with the BatchSize field value -// and a boolean to check if the value has been set. -func (o *EvaluateNewSessionParams) GetBatchSizeOk() (*float64, bool) { - if o == nil { - return nil, false - } - return &o.BatchSize, true + return false } -// SetBatchSize sets field value -func (o *EvaluateNewSessionParams) SetBatchSize(v float64) { - o.BatchSize = v +// SetInferenceArtifactId gets a reference to the given string and assigns it to the InferenceArtifactId field. +func (o *EvaluateNewVersionParams) SetInferenceArtifactId(v string) { + o.InferenceArtifactId = &v } -// GetName returns the Name field value -func (o *EvaluateNewSessionParams) GetName() string { +// GetProjectId returns the ProjectId field value +func (o *EvaluateNewVersionParams) GetProjectId() string { if o == nil { var ret string return ret } - return o.Name + return o.ProjectId } -// GetNameOk returns a tuple with the Name field value +// GetProjectIdOk returns a tuple with the ProjectId field value // and a boolean to check if the value has been set. -func (o *EvaluateNewSessionParams) GetNameOk() (*string, bool) { +func (o *EvaluateNewVersionParams) GetProjectIdOk() (*string, bool) { if o == nil { return nil, false } - return &o.Name, true + return &o.ProjectId, true } -// SetName sets field value -func (o *EvaluateNewSessionParams) SetName(v string) { - o.Name = v +// SetProjectId sets field value +func (o *EvaluateNewVersionParams) SetProjectId(v string) { + o.ProjectId = v } -// GetDescription returns the Description field value -func (o *EvaluateNewSessionParams) GetDescription() string { +// GetBatchSize returns the BatchSize field value +func (o *EvaluateNewVersionParams) GetBatchSize() float64 { if o == nil { - var ret string + var ret float64 return ret } - return o.Description + return o.BatchSize } -// GetDescriptionOk returns a tuple with the Description field value +// GetBatchSizeOk returns a tuple with the BatchSize field value // and a boolean to check if the value has been set. -func (o *EvaluateNewSessionParams) GetDescriptionOk() (*string, bool) { +func (o *EvaluateNewVersionParams) GetBatchSizeOk() (*float64, bool) { if o == nil { return nil, false } - return &o.Description, true + return &o.BatchSize, true } -// SetDescription sets field value -func (o *EvaluateNewSessionParams) SetDescription(v string) { - o.Description = v +// SetBatchSize sets field value +func (o *EvaluateNewVersionParams) SetBatchSize(v float64) { + o.BatchSize = v } // GetMonitor returns the Monitor field value if set, zero value otherwise. -func (o *EvaluateNewSessionParams) GetMonitor() bool { +func (o *EvaluateNewVersionParams) GetMonitor() bool { if o == nil || IsNil(o.Monitor) { var ret bool return ret @@ -184,7 +165,7 @@ func (o *EvaluateNewSessionParams) GetMonitor() bool { // GetMonitorOk returns a tuple with the Monitor field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *EvaluateNewSessionParams) GetMonitorOk() (*bool, bool) { +func (o *EvaluateNewVersionParams) GetMonitorOk() (*bool, bool) { if o == nil || IsNil(o.Monitor) { return nil, false } @@ -192,7 +173,7 @@ func (o *EvaluateNewSessionParams) GetMonitorOk() (*bool, bool) { } // HasMonitor returns a boolean if a field has been set. -func (o *EvaluateNewSessionParams) HasMonitor() bool { +func (o *EvaluateNewVersionParams) HasMonitor() bool { if o != nil && !IsNil(o.Monitor) { return true } @@ -201,11 +182,11 @@ func (o *EvaluateNewSessionParams) HasMonitor() bool { } // SetMonitor gets a reference to the given bool and assigns it to the Monitor field. -func (o *EvaluateNewSessionParams) SetMonitor(v bool) { +func (o *EvaluateNewVersionParams) SetMonitor(v bool) { o.Monitor = &v } -func (o EvaluateNewSessionParams) MarshalJSON() ([]byte, error) { +func (o EvaluateNewVersionParams) MarshalJSON() ([]byte, error) { toSerialize, err := o.ToMap() if err != nil { return []byte{}, err @@ -213,13 +194,14 @@ func (o EvaluateNewSessionParams) MarshalJSON() ([]byte, error) { return json.Marshal(toSerialize) } -func (o EvaluateNewSessionParams) ToMap() (map[string]interface{}, error) { +func (o EvaluateNewVersionParams) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} toSerialize["versionId"] = o.VersionId + if !IsNil(o.InferenceArtifactId) { + toSerialize["inferenceArtifactId"] = o.InferenceArtifactId + } toSerialize["projectId"] = o.ProjectId toSerialize["batchSize"] = o.BatchSize - toSerialize["name"] = o.Name - toSerialize["description"] = o.Description if !IsNil(o.Monitor) { toSerialize["monitor"] = o.Monitor } @@ -231,7 +213,7 @@ func (o EvaluateNewSessionParams) ToMap() (map[string]interface{}, error) { return toSerialize, nil } -func (o *EvaluateNewSessionParams) UnmarshalJSON(data []byte) (err error) { +func (o *EvaluateNewVersionParams) UnmarshalJSON(data []byte) (err error) { // This validates that all required properties are included in the JSON object // by unmarshalling the object into a generic map with string keys and checking // that every required field exists as a key in the generic map. @@ -239,8 +221,6 @@ func (o *EvaluateNewSessionParams) UnmarshalJSON(data []byte) (err error) { "versionId", "projectId", "batchSize", - "name", - "description", } allProperties := make(map[string]interface{}) @@ -257,24 +237,23 @@ func (o *EvaluateNewSessionParams) UnmarshalJSON(data []byte) (err error) { } } - varEvaluateNewSessionParams := _EvaluateNewSessionParams{} + varEvaluateNewVersionParams := _EvaluateNewVersionParams{} - err = json.Unmarshal(data, &varEvaluateNewSessionParams) + err = json.Unmarshal(data, &varEvaluateNewVersionParams) if err != nil { return err } - *o = EvaluateNewSessionParams(varEvaluateNewSessionParams) + *o = EvaluateNewVersionParams(varEvaluateNewVersionParams) additionalProperties := make(map[string]interface{}) if err = json.Unmarshal(data, &additionalProperties); err == nil { delete(additionalProperties, "versionId") + delete(additionalProperties, "inferenceArtifactId") delete(additionalProperties, "projectId") delete(additionalProperties, "batchSize") - delete(additionalProperties, "name") - delete(additionalProperties, "description") delete(additionalProperties, "monitor") o.AdditionalProperties = additionalProperties } @@ -282,38 +261,38 @@ func (o *EvaluateNewSessionParams) UnmarshalJSON(data []byte) (err error) { return err } -type NullableEvaluateNewSessionParams struct { - value *EvaluateNewSessionParams +type NullableEvaluateNewVersionParams struct { + value *EvaluateNewVersionParams isSet bool } -func (v NullableEvaluateNewSessionParams) Get() *EvaluateNewSessionParams { +func (v NullableEvaluateNewVersionParams) Get() *EvaluateNewVersionParams { return v.value } -func (v *NullableEvaluateNewSessionParams) Set(val *EvaluateNewSessionParams) { +func (v *NullableEvaluateNewVersionParams) Set(val *EvaluateNewVersionParams) { v.value = val v.isSet = true } -func (v NullableEvaluateNewSessionParams) IsSet() bool { +func (v NullableEvaluateNewVersionParams) IsSet() bool { return v.isSet } -func (v *NullableEvaluateNewSessionParams) Unset() { +func (v *NullableEvaluateNewVersionParams) Unset() { v.value = nil v.isSet = false } -func NewNullableEvaluateNewSessionParams(val *EvaluateNewSessionParams) *NullableEvaluateNewSessionParams { - return &NullableEvaluateNewSessionParams{value: val, isSet: true} +func NewNullableEvaluateNewVersionParams(val *EvaluateNewVersionParams) *NullableEvaluateNewVersionParams { + return &NullableEvaluateNewVersionParams{value: val, isSet: true} } -func (v NullableEvaluateNewSessionParams) MarshalJSON() ([]byte, error) { +func (v NullableEvaluateNewVersionParams) MarshalJSON() ([]byte, error) { return json.Marshal(v.value) } -func (v *NullableEvaluateNewSessionParams) UnmarshalJSON(src []byte) error { +func (v *NullableEvaluateNewVersionParams) UnmarshalJSON(src []byte) error { v.isSet = true return json.Unmarshal(src, &v.value) } diff --git a/pkg/tensorleapapi/model_evaluate_params.go b/pkg/tensorleapapi/model_evaluate_params.go index f8b5d1fad..4eb5e9c38 100644 --- a/pkg/tensorleapapi/model_evaluate_params.go +++ b/pkg/tensorleapapi/model_evaluate_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -16,37 +16,37 @@ import ( // EvaluateParams struct for EvaluateParams type EvaluateParams struct { - EvaluateExistingSessionParams *EvaluateExistingSessionParams - EvaluateNewSessionParams *EvaluateNewSessionParams + EvaluateExistingVersionParams *EvaluateExistingVersionParams + EvaluateNewVersionParams *EvaluateNewVersionParams } // Unmarshal JSON data into any of the pointers in the struct func (dst *EvaluateParams) UnmarshalJSON(data []byte) error { var err error - // try to unmarshal JSON data into EvaluateExistingSessionParams - err = json.Unmarshal(data, &dst.EvaluateExistingSessionParams) + // try to unmarshal JSON data into EvaluateExistingVersionParams + err = json.Unmarshal(data, &dst.EvaluateExistingVersionParams) if err == nil { - jsonEvaluateExistingSessionParams, _ := json.Marshal(dst.EvaluateExistingSessionParams) - if string(jsonEvaluateExistingSessionParams) == "{}" { // empty struct - dst.EvaluateExistingSessionParams = nil + jsonEvaluateExistingVersionParams, _ := json.Marshal(dst.EvaluateExistingVersionParams) + if string(jsonEvaluateExistingVersionParams) == "{}" { // empty struct + dst.EvaluateExistingVersionParams = nil } else { - return nil // data stored in dst.EvaluateExistingSessionParams, return on the first match + return nil // data stored in dst.EvaluateExistingVersionParams, return on the first match } } else { - dst.EvaluateExistingSessionParams = nil + dst.EvaluateExistingVersionParams = nil } - // try to unmarshal JSON data into EvaluateNewSessionParams - err = json.Unmarshal(data, &dst.EvaluateNewSessionParams) + // try to unmarshal JSON data into EvaluateNewVersionParams + err = json.Unmarshal(data, &dst.EvaluateNewVersionParams) if err == nil { - jsonEvaluateNewSessionParams, _ := json.Marshal(dst.EvaluateNewSessionParams) - if string(jsonEvaluateNewSessionParams) == "{}" { // empty struct - dst.EvaluateNewSessionParams = nil + jsonEvaluateNewVersionParams, _ := json.Marshal(dst.EvaluateNewVersionParams) + if string(jsonEvaluateNewVersionParams) == "{}" { // empty struct + dst.EvaluateNewVersionParams = nil } else { - return nil // data stored in dst.EvaluateNewSessionParams, return on the first match + return nil // data stored in dst.EvaluateNewVersionParams, return on the first match } } else { - dst.EvaluateNewSessionParams = nil + dst.EvaluateNewVersionParams = nil } return nil @@ -54,12 +54,12 @@ func (dst *EvaluateParams) UnmarshalJSON(data []byte) error { // Marshal data from the first non-nil pointers in the struct to JSON func (src EvaluateParams) MarshalJSON() ([]byte, error) { - if src.EvaluateExistingSessionParams != nil { - return json.Marshal(&src.EvaluateExistingSessionParams) + if src.EvaluateExistingVersionParams != nil { + return json.Marshal(&src.EvaluateExistingVersionParams) } - if src.EvaluateNewSessionParams != nil { - return json.Marshal(&src.EvaluateNewSessionParams) + if src.EvaluateNewVersionParams != nil { + return json.Marshal(&src.EvaluateNewVersionParams) } return nil, nil // no data in anyOf schemas diff --git a/pkg/tensorleapapi/model_events_snapshot.go b/pkg/tensorleapapi/model_events_snapshot.go index 1a7a22048..9cda4fa97 100644 --- a/pkg/tensorleapapi/model_events_snapshot.go +++ b/pkg/tensorleapapi/model_events_snapshot.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_export_model_params.go b/pkg/tensorleapapi/model_export_model_params.go index 197443cfc..745a31709 100644 --- a/pkg/tensorleapapi/model_export_model_params.go +++ b/pkg/tensorleapapi/model_export_model_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_export_model_type_enum.go b/pkg/tensorleapapi/model_export_model_type_enum.go index acae724e4..a30c5ca32 100644 --- a/pkg/tensorleapapi/model_export_model_type_enum.go +++ b/pkg/tensorleapapi/model_export_model_type_enum.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_export_options.go b/pkg/tensorleapapi/model_export_options.go index b715e5b68..baf3c540f 100644 --- a/pkg/tensorleapapi/model_export_options.go +++ b/pkg/tensorleapapi/model_export_options.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_export_project_meta.go b/pkg/tensorleapapi/model_export_project_meta.go index 097101af4..4d9e24d1e 100644 --- a/pkg/tensorleapapi/model_export_project_meta.go +++ b/pkg/tensorleapapi/model_export_project_meta.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_export_project_params.go b/pkg/tensorleapapi/model_export_project_params.go index bd0056588..6b66ec9a0 100644 --- a/pkg/tensorleapapi/model_export_project_params.go +++ b/pkg/tensorleapapi/model_export_project_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_export_project_request.go b/pkg/tensorleapapi/model_export_project_request.go index 9ed123ef9..00d5f93b4 100644 --- a/pkg/tensorleapapi/model_export_project_request.go +++ b/pkg/tensorleapapi/model_export_project_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_export_project_response.go b/pkg/tensorleapapi/model_export_project_response.go index a13cb8b87..1e7a85f03 100644 --- a/pkg/tensorleapapi/model_export_project_response.go +++ b/pkg/tensorleapapi/model_export_project_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_exported_model_data.go b/pkg/tensorleapapi/model_exported_model_data.go index 25bc53283..feeaaa95e 100644 --- a/pkg/tensorleapapi/model_exported_model_data.go +++ b/pkg/tensorleapapi/model_exported_model_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -23,10 +23,10 @@ var _ MappedNullable = &ExportedModelData{} type ExportedModelData struct { Cid string `json:"cid"` JobId string `json:"jobId"` - SessionWeightId string `json:"sessionWeightId"` + ModelId string `json:"modelId"` Blob string `json:"blob"` Status string `json:"status"` - SessionId string `json:"sessionId"` + VersionId string `json:"versionId"` Title string `json:"title"` CreatedAt time.Time `json:"createdAt"` UpdatedAt time.Time `json:"updatedAt"` @@ -41,14 +41,14 @@ type _ExportedModelData ExportedModelData // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewExportedModelData(cid string, jobId string, sessionWeightId string, blob string, status string, sessionId string, title string, createdAt time.Time, updatedAt time.Time, createdBy string, fileType string) *ExportedModelData { +func NewExportedModelData(cid string, jobId string, modelId string, blob string, status string, versionId string, title string, createdAt time.Time, updatedAt time.Time, createdBy string, fileType string) *ExportedModelData { this := ExportedModelData{} this.Cid = cid this.JobId = jobId - this.SessionWeightId = sessionWeightId + this.ModelId = modelId this.Blob = blob this.Status = status - this.SessionId = sessionId + this.VersionId = versionId this.Title = title this.CreatedAt = createdAt this.UpdatedAt = updatedAt @@ -113,28 +113,28 @@ func (o *ExportedModelData) SetJobId(v string) { o.JobId = v } -// GetSessionWeightId returns the SessionWeightId field value -func (o *ExportedModelData) GetSessionWeightId() string { +// GetModelId returns the ModelId field value +func (o *ExportedModelData) GetModelId() string { if o == nil { var ret string return ret } - return o.SessionWeightId + return o.ModelId } -// GetSessionWeightIdOk returns a tuple with the SessionWeightId field value +// GetModelIdOk returns a tuple with the ModelId field value // and a boolean to check if the value has been set. -func (o *ExportedModelData) GetSessionWeightIdOk() (*string, bool) { +func (o *ExportedModelData) GetModelIdOk() (*string, bool) { if o == nil { return nil, false } - return &o.SessionWeightId, true + return &o.ModelId, true } -// SetSessionWeightId sets field value -func (o *ExportedModelData) SetSessionWeightId(v string) { - o.SessionWeightId = v +// SetModelId sets field value +func (o *ExportedModelData) SetModelId(v string) { + o.ModelId = v } // GetBlob returns the Blob field value @@ -185,28 +185,28 @@ func (o *ExportedModelData) SetStatus(v string) { o.Status = v } -// GetSessionId returns the SessionId field value -func (o *ExportedModelData) GetSessionId() string { +// GetVersionId returns the VersionId field value +func (o *ExportedModelData) GetVersionId() string { if o == nil { var ret string return ret } - return o.SessionId + return o.VersionId } -// GetSessionIdOk returns a tuple with the SessionId field value +// GetVersionIdOk returns a tuple with the VersionId field value // and a boolean to check if the value has been set. -func (o *ExportedModelData) GetSessionIdOk() (*string, bool) { +func (o *ExportedModelData) GetVersionIdOk() (*string, bool) { if o == nil { return nil, false } - return &o.SessionId, true + return &o.VersionId, true } -// SetSessionId sets field value -func (o *ExportedModelData) SetSessionId(v string) { - o.SessionId = v +// SetVersionId sets field value +func (o *ExportedModelData) SetVersionId(v string) { + o.VersionId = v } // GetTitle returns the Title field value @@ -341,10 +341,10 @@ func (o ExportedModelData) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} toSerialize["cid"] = o.Cid toSerialize["jobId"] = o.JobId - toSerialize["sessionWeightId"] = o.SessionWeightId + toSerialize["modelId"] = o.ModelId toSerialize["blob"] = o.Blob toSerialize["status"] = o.Status - toSerialize["sessionId"] = o.SessionId + toSerialize["versionId"] = o.VersionId toSerialize["title"] = o.Title toSerialize["createdAt"] = o.CreatedAt toSerialize["updatedAt"] = o.UpdatedAt @@ -365,10 +365,10 @@ func (o *ExportedModelData) UnmarshalJSON(data []byte) (err error) { requiredProperties := []string{ "cid", "jobId", - "sessionWeightId", + "modelId", "blob", "status", - "sessionId", + "versionId", "title", "createdAt", "updatedAt", @@ -405,10 +405,10 @@ func (o *ExportedModelData) UnmarshalJSON(data []byte) (err error) { if err = json.Unmarshal(data, &additionalProperties); err == nil { delete(additionalProperties, "cid") delete(additionalProperties, "jobId") - delete(additionalProperties, "sessionWeightId") + delete(additionalProperties, "modelId") delete(additionalProperties, "blob") delete(additionalProperties, "status") - delete(additionalProperties, "sessionId") + delete(additionalProperties, "versionId") delete(additionalProperties, "title") delete(additionalProperties, "createdAt") delete(additionalProperties, "updatedAt") diff --git a/pkg/tensorleapapi/model_extend_trial_params.go b/pkg/tensorleapapi/model_extend_trial_params.go index 6d06e84e0..13e238042 100644 --- a/pkg/tensorleapapi/model_extend_trial_params.go +++ b/pkg/tensorleapapi/model_extend_trial_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_extend_trial_response.go b/pkg/tensorleapapi/model_extend_trial_response.go index d8e895995..b30e884cb 100644 --- a/pkg/tensorleapapi/model_extend_trial_response.go +++ b/pkg/tensorleapapi/model_extend_trial_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_external_import_model_storage.go b/pkg/tensorleapapi/model_external_import_model_storage.go index a87efb665..162ef27a0 100644 --- a/pkg/tensorleapapi/model_external_import_model_storage.go +++ b/pkg/tensorleapapi/model_external_import_model_storage.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_failure_info.go b/pkg/tensorleapapi/model_failure_info.go index 878a0749e..fd02cfce6 100644 --- a/pkg/tensorleapapi/model_failure_info.go +++ b/pkg/tensorleapapi/model_failure_info.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_fetch_similar_filter_display_data.go b/pkg/tensorleapapi/model_fetch_similar_filter_display_data.go index f0a257d2a..97d3a1920 100644 --- a/pkg/tensorleapapi/model_fetch_similar_filter_display_data.go +++ b/pkg/tensorleapapi/model_fetch_similar_filter_display_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -23,9 +23,8 @@ type FetchSimilarFilterDisplayData struct { Type string `json:"type"` Limit float64 `json:"limit"` SampleIds []SampleIdentity `json:"sampleIds"` - Epoch float64 `json:"epoch"` FiltersUsed []string `json:"filtersUsed"` - SessionRun FilterSessionRun `json:"sessionRun"` + Version FilterVersion `json:"version"` AdditionalProperties map[string]interface{} } @@ -35,14 +34,13 @@ type _FetchSimilarFilterDisplayData FetchSimilarFilterDisplayData // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewFetchSimilarFilterDisplayData(type_ string, limit float64, sampleIds []SampleIdentity, epoch float64, filtersUsed []string, sessionRun FilterSessionRun) *FetchSimilarFilterDisplayData { +func NewFetchSimilarFilterDisplayData(type_ string, limit float64, sampleIds []SampleIdentity, filtersUsed []string, version FilterVersion) *FetchSimilarFilterDisplayData { this := FetchSimilarFilterDisplayData{} this.Type = type_ this.Limit = limit this.SampleIds = sampleIds - this.Epoch = epoch this.FiltersUsed = filtersUsed - this.SessionRun = sessionRun + this.Version = version return &this } @@ -126,30 +124,6 @@ func (o *FetchSimilarFilterDisplayData) SetSampleIds(v []SampleIdentity) { o.SampleIds = v } -// GetEpoch returns the Epoch field value -func (o *FetchSimilarFilterDisplayData) GetEpoch() float64 { - if o == nil { - var ret float64 - return ret - } - - return o.Epoch -} - -// GetEpochOk returns a tuple with the Epoch field value -// and a boolean to check if the value has been set. -func (o *FetchSimilarFilterDisplayData) GetEpochOk() (*float64, bool) { - if o == nil { - return nil, false - } - return &o.Epoch, true -} - -// SetEpoch sets field value -func (o *FetchSimilarFilterDisplayData) SetEpoch(v float64) { - o.Epoch = v -} - // GetFiltersUsed returns the FiltersUsed field value func (o *FetchSimilarFilterDisplayData) GetFiltersUsed() []string { if o == nil { @@ -174,28 +148,28 @@ func (o *FetchSimilarFilterDisplayData) SetFiltersUsed(v []string) { o.FiltersUsed = v } -// GetSessionRun returns the SessionRun field value -func (o *FetchSimilarFilterDisplayData) GetSessionRun() FilterSessionRun { +// GetVersion returns the Version field value +func (o *FetchSimilarFilterDisplayData) GetVersion() FilterVersion { if o == nil { - var ret FilterSessionRun + var ret FilterVersion return ret } - return o.SessionRun + return o.Version } -// GetSessionRunOk returns a tuple with the SessionRun field value +// GetVersionOk returns a tuple with the Version field value // and a boolean to check if the value has been set. -func (o *FetchSimilarFilterDisplayData) GetSessionRunOk() (*FilterSessionRun, bool) { +func (o *FetchSimilarFilterDisplayData) GetVersionOk() (*FilterVersion, bool) { if o == nil { return nil, false } - return &o.SessionRun, true + return &o.Version, true } -// SetSessionRun sets field value -func (o *FetchSimilarFilterDisplayData) SetSessionRun(v FilterSessionRun) { - o.SessionRun = v +// SetVersion sets field value +func (o *FetchSimilarFilterDisplayData) SetVersion(v FilterVersion) { + o.Version = v } func (o FetchSimilarFilterDisplayData) MarshalJSON() ([]byte, error) { @@ -211,9 +185,8 @@ func (o FetchSimilarFilterDisplayData) ToMap() (map[string]interface{}, error) { toSerialize["type"] = o.Type toSerialize["limit"] = o.Limit toSerialize["sampleIds"] = o.SampleIds - toSerialize["epoch"] = o.Epoch toSerialize["filtersUsed"] = o.FiltersUsed - toSerialize["sessionRun"] = o.SessionRun + toSerialize["version"] = o.Version for key, value := range o.AdditionalProperties { toSerialize[key] = value @@ -230,9 +203,8 @@ func (o *FetchSimilarFilterDisplayData) UnmarshalJSON(data []byte) (err error) { "type", "limit", "sampleIds", - "epoch", "filtersUsed", - "sessionRun", + "version", } allProperties := make(map[string]interface{}) @@ -265,9 +237,8 @@ func (o *FetchSimilarFilterDisplayData) UnmarshalJSON(data []byte) (err error) { delete(additionalProperties, "type") delete(additionalProperties, "limit") delete(additionalProperties, "sampleIds") - delete(additionalProperties, "epoch") delete(additionalProperties, "filtersUsed") - delete(additionalProperties, "sessionRun") + delete(additionalProperties, "version") o.AdditionalProperties = additionalProperties } diff --git a/pkg/tensorleapapi/model_fetch_similar_job_params.go b/pkg/tensorleapapi/model_fetch_similar_job_params.go index 9b2450b4a..55ebbdaf4 100644 --- a/pkg/tensorleapapi/model_fetch_similar_job_params.go +++ b/pkg/tensorleapapi/model_fetch_similar_job_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -22,10 +22,10 @@ var _ MappedNullable = &FetchSimilarJobParams{} type FetchSimilarJobParams struct { Digest string `json:"digest"` Filters []ESFilter `json:"filters,omitempty"` - Epoch float64 `json:"epoch"` SampleIds []SampleIdentity `json:"sampleIds"` Limit float64 `json:"limit"` - SessionRunId string `json:"sessionRunId"` + InferenceArtifactId string `json:"inferenceArtifactId"` + VersionId string `json:"versionId"` Type string `json:"type"` AdditionalProperties map[string]interface{} } @@ -36,13 +36,13 @@ type _FetchSimilarJobParams FetchSimilarJobParams // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewFetchSimilarJobParams(digest string, epoch float64, sampleIds []SampleIdentity, limit float64, sessionRunId string, type_ string) *FetchSimilarJobParams { +func NewFetchSimilarJobParams(digest string, sampleIds []SampleIdentity, limit float64, inferenceArtifactId string, versionId string, type_ string) *FetchSimilarJobParams { this := FetchSimilarJobParams{} this.Digest = digest - this.Epoch = epoch this.SampleIds = sampleIds this.Limit = limit - this.SessionRunId = sessionRunId + this.InferenceArtifactId = inferenceArtifactId + this.VersionId = versionId this.Type = type_ return &this } @@ -111,30 +111,6 @@ func (o *FetchSimilarJobParams) SetFilters(v []ESFilter) { o.Filters = v } -// GetEpoch returns the Epoch field value -func (o *FetchSimilarJobParams) GetEpoch() float64 { - if o == nil { - var ret float64 - return ret - } - - return o.Epoch -} - -// GetEpochOk returns a tuple with the Epoch field value -// and a boolean to check if the value has been set. -func (o *FetchSimilarJobParams) GetEpochOk() (*float64, bool) { - if o == nil { - return nil, false - } - return &o.Epoch, true -} - -// SetEpoch sets field value -func (o *FetchSimilarJobParams) SetEpoch(v float64) { - o.Epoch = v -} - // GetSampleIds returns the SampleIds field value func (o *FetchSimilarJobParams) GetSampleIds() []SampleIdentity { if o == nil { @@ -183,28 +159,52 @@ func (o *FetchSimilarJobParams) SetLimit(v float64) { o.Limit = v } -// GetSessionRunId returns the SessionRunId field value -func (o *FetchSimilarJobParams) GetSessionRunId() string { +// GetInferenceArtifactId returns the InferenceArtifactId field value +func (o *FetchSimilarJobParams) GetInferenceArtifactId() string { + if o == nil { + var ret string + return ret + } + + return o.InferenceArtifactId +} + +// GetInferenceArtifactIdOk returns a tuple with the InferenceArtifactId field value +// and a boolean to check if the value has been set. +func (o *FetchSimilarJobParams) GetInferenceArtifactIdOk() (*string, bool) { + if o == nil { + return nil, false + } + return &o.InferenceArtifactId, true +} + +// SetInferenceArtifactId sets field value +func (o *FetchSimilarJobParams) SetInferenceArtifactId(v string) { + o.InferenceArtifactId = v +} + +// GetVersionId returns the VersionId field value +func (o *FetchSimilarJobParams) GetVersionId() string { if o == nil { var ret string return ret } - return o.SessionRunId + return o.VersionId } -// GetSessionRunIdOk returns a tuple with the SessionRunId field value +// GetVersionIdOk returns a tuple with the VersionId field value // and a boolean to check if the value has been set. -func (o *FetchSimilarJobParams) GetSessionRunIdOk() (*string, bool) { +func (o *FetchSimilarJobParams) GetVersionIdOk() (*string, bool) { if o == nil { return nil, false } - return &o.SessionRunId, true + return &o.VersionId, true } -// SetSessionRunId sets field value -func (o *FetchSimilarJobParams) SetSessionRunId(v string) { - o.SessionRunId = v +// SetVersionId sets field value +func (o *FetchSimilarJobParams) SetVersionId(v string) { + o.VersionId = v } // GetType returns the Type field value @@ -245,10 +245,10 @@ func (o FetchSimilarJobParams) ToMap() (map[string]interface{}, error) { if !IsNil(o.Filters) { toSerialize["filters"] = o.Filters } - toSerialize["epoch"] = o.Epoch toSerialize["sampleIds"] = o.SampleIds toSerialize["limit"] = o.Limit - toSerialize["sessionRunId"] = o.SessionRunId + toSerialize["inferenceArtifactId"] = o.InferenceArtifactId + toSerialize["versionId"] = o.VersionId toSerialize["type"] = o.Type for key, value := range o.AdditionalProperties { @@ -264,10 +264,10 @@ func (o *FetchSimilarJobParams) UnmarshalJSON(data []byte) (err error) { // that every required field exists as a key in the generic map. requiredProperties := []string{ "digest", - "epoch", "sampleIds", "limit", - "sessionRunId", + "inferenceArtifactId", + "versionId", "type", } @@ -300,10 +300,10 @@ func (o *FetchSimilarJobParams) UnmarshalJSON(data []byte) (err error) { if err = json.Unmarshal(data, &additionalProperties); err == nil { delete(additionalProperties, "digest") delete(additionalProperties, "filters") - delete(additionalProperties, "epoch") delete(additionalProperties, "sampleIds") delete(additionalProperties, "limit") - delete(additionalProperties, "sessionRunId") + delete(additionalProperties, "inferenceArtifactId") + delete(additionalProperties, "versionId") delete(additionalProperties, "type") o.AdditionalProperties = additionalProperties } diff --git a/pkg/tensorleapapi/model_fetch_similar_request_params.go b/pkg/tensorleapapi/model_fetch_similar_request_params.go index 8aeffad5c..813415ca8 100644 --- a/pkg/tensorleapapi/model_fetch_similar_request_params.go +++ b/pkg/tensorleapapi/model_fetch_similar_request_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -20,11 +20,10 @@ var _ MappedNullable = &FetchSimilarRequestParams{} // FetchSimilarRequestParams struct for FetchSimilarRequestParams type FetchSimilarRequestParams struct { - SessionRunId string `json:"sessionRunId"` + VersionId string `json:"versionId"` ProjectId string `json:"projectId"` Limit float64 `json:"limit"` SampleIds []SampleIdentity `json:"sampleIds"` - Epoch float64 `json:"epoch"` Filters []ESFilter `json:"filters,omitempty"` Digest string `json:"digest"` AdditionalProperties map[string]interface{} @@ -36,13 +35,12 @@ type _FetchSimilarRequestParams FetchSimilarRequestParams // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewFetchSimilarRequestParams(sessionRunId string, projectId string, limit float64, sampleIds []SampleIdentity, epoch float64, digest string) *FetchSimilarRequestParams { +func NewFetchSimilarRequestParams(versionId string, projectId string, limit float64, sampleIds []SampleIdentity, digest string) *FetchSimilarRequestParams { this := FetchSimilarRequestParams{} - this.SessionRunId = sessionRunId + this.VersionId = versionId this.ProjectId = projectId this.Limit = limit this.SampleIds = sampleIds - this.Epoch = epoch this.Digest = digest return &this } @@ -55,28 +53,28 @@ func NewFetchSimilarRequestParamsWithDefaults() *FetchSimilarRequestParams { return &this } -// GetSessionRunId returns the SessionRunId field value -func (o *FetchSimilarRequestParams) GetSessionRunId() string { +// GetVersionId returns the VersionId field value +func (o *FetchSimilarRequestParams) GetVersionId() string { if o == nil { var ret string return ret } - return o.SessionRunId + return o.VersionId } -// GetSessionRunIdOk returns a tuple with the SessionRunId field value +// GetVersionIdOk returns a tuple with the VersionId field value // and a boolean to check if the value has been set. -func (o *FetchSimilarRequestParams) GetSessionRunIdOk() (*string, bool) { +func (o *FetchSimilarRequestParams) GetVersionIdOk() (*string, bool) { if o == nil { return nil, false } - return &o.SessionRunId, true + return &o.VersionId, true } -// SetSessionRunId sets field value -func (o *FetchSimilarRequestParams) SetSessionRunId(v string) { - o.SessionRunId = v +// SetVersionId sets field value +func (o *FetchSimilarRequestParams) SetVersionId(v string) { + o.VersionId = v } // GetProjectId returns the ProjectId field value @@ -151,30 +149,6 @@ func (o *FetchSimilarRequestParams) SetSampleIds(v []SampleIdentity) { o.SampleIds = v } -// GetEpoch returns the Epoch field value -func (o *FetchSimilarRequestParams) GetEpoch() float64 { - if o == nil { - var ret float64 - return ret - } - - return o.Epoch -} - -// GetEpochOk returns a tuple with the Epoch field value -// and a boolean to check if the value has been set. -func (o *FetchSimilarRequestParams) GetEpochOk() (*float64, bool) { - if o == nil { - return nil, false - } - return &o.Epoch, true -} - -// SetEpoch sets field value -func (o *FetchSimilarRequestParams) SetEpoch(v float64) { - o.Epoch = v -} - // GetFilters returns the Filters field value if set, zero value otherwise. func (o *FetchSimilarRequestParams) GetFilters() []ESFilter { if o == nil || IsNil(o.Filters) { @@ -241,11 +215,10 @@ func (o FetchSimilarRequestParams) MarshalJSON() ([]byte, error) { func (o FetchSimilarRequestParams) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} - toSerialize["sessionRunId"] = o.SessionRunId + toSerialize["versionId"] = o.VersionId toSerialize["projectId"] = o.ProjectId toSerialize["limit"] = o.Limit toSerialize["sampleIds"] = o.SampleIds - toSerialize["epoch"] = o.Epoch if !IsNil(o.Filters) { toSerialize["filters"] = o.Filters } @@ -263,11 +236,10 @@ func (o *FetchSimilarRequestParams) UnmarshalJSON(data []byte) (err error) { // by unmarshalling the object into a generic map with string keys and checking // that every required field exists as a key in the generic map. requiredProperties := []string{ - "sessionRunId", + "versionId", "projectId", "limit", "sampleIds", - "epoch", "digest", } @@ -298,11 +270,10 @@ func (o *FetchSimilarRequestParams) UnmarshalJSON(data []byte) (err error) { additionalProperties := make(map[string]interface{}) if err = json.Unmarshal(data, &additionalProperties); err == nil { - delete(additionalProperties, "sessionRunId") + delete(additionalProperties, "versionId") delete(additionalProperties, "projectId") delete(additionalProperties, "limit") delete(additionalProperties, "sampleIds") - delete(additionalProperties, "epoch") delete(additionalProperties, "filters") delete(additionalProperties, "digest") o.AdditionalProperties = additionalProperties diff --git a/pkg/tensorleapapi/model_fetch_similar_response.go b/pkg/tensorleapapi/model_fetch_similar_response.go index 90547bf71..0fb8107c1 100644 --- a/pkg/tensorleapapi/model_fetch_similar_response.go +++ b/pkg/tensorleapapi/model_fetch_similar_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_fetch_similar_response_ready_artifacts.go b/pkg/tensorleapapi/model_fetch_similar_response_ready_artifacts.go index 2f92fda7d..6eb12ab1d 100644 --- a/pkg/tensorleapapi/model_fetch_similar_response_ready_artifacts.go +++ b/pkg/tensorleapapi/model_fetch_similar_response_ready_artifacts.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_filter_display_data.go b/pkg/tensorleapapi/model_filter_display_data.go index 61116fff9..897d66012 100644 --- a/pkg/tensorleapapi/model_filter_display_data.go +++ b/pkg/tensorleapapi/model_filter_display_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -16,6 +16,7 @@ import ( // FilterDisplayData struct for FilterDisplayData type FilterDisplayData struct { + CollectionFilterDisplayData *CollectionFilterDisplayData FetchSimilarFilterDisplayData *FetchSimilarFilterDisplayData InsightFilterDisplayData *InsightFilterDisplayData } @@ -23,6 +24,19 @@ type FilterDisplayData struct { // Unmarshal JSON data into any of the pointers in the struct func (dst *FilterDisplayData) UnmarshalJSON(data []byte) error { var err error + // try to unmarshal JSON data into CollectionFilterDisplayData + err = json.Unmarshal(data, &dst.CollectionFilterDisplayData) + if err == nil { + jsonCollectionFilterDisplayData, _ := json.Marshal(dst.CollectionFilterDisplayData) + if string(jsonCollectionFilterDisplayData) == "{}" { // empty struct + dst.CollectionFilterDisplayData = nil + } else { + return nil // data stored in dst.CollectionFilterDisplayData, return on the first match + } + } else { + dst.CollectionFilterDisplayData = nil + } + // try to unmarshal JSON data into FetchSimilarFilterDisplayData err = json.Unmarshal(data, &dst.FetchSimilarFilterDisplayData) if err == nil { @@ -54,6 +68,10 @@ func (dst *FilterDisplayData) UnmarshalJSON(data []byte) error { // Marshal data from the first non-nil pointers in the struct to JSON func (src FilterDisplayData) MarshalJSON() ([]byte, error) { + if src.CollectionFilterDisplayData != nil { + return json.Marshal(&src.CollectionFilterDisplayData) + } + if src.FetchSimilarFilterDisplayData != nil { return json.Marshal(&src.FetchSimilarFilterDisplayData) } diff --git a/pkg/tensorleapapi/model_filter_operator_type.go b/pkg/tensorleapapi/model_filter_operator_type.go index 04a164159..dcc41b2ff 100644 --- a/pkg/tensorleapapi/model_filter_operator_type.go +++ b/pkg/tensorleapapi/model_filter_operator_type.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_filter_session_run.go b/pkg/tensorleapapi/model_filter_session_run.go deleted file mode 100644 index 425fff502..000000000 --- a/pkg/tensorleapapi/model_filter_session_run.go +++ /dev/null @@ -1,253 +0,0 @@ -/* -node-server - -No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - -API version: 11.0.7 -*/ - -// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. - -package tensorleapapi - -import ( - "encoding/json" - "fmt" -) - -// checks if the FilterSessionRun type satisfies the MappedNullable interface at compile time -var _ MappedNullable = &FilterSessionRun{} - -// FilterSessionRun struct for FilterSessionRun -type FilterSessionRun struct { - Name string `json:"name"` - Id string `json:"id"` - SessionId string `json:"sessionId"` - Epoch float64 `json:"epoch"` - AdditionalProperties map[string]interface{} -} - -type _FilterSessionRun FilterSessionRun - -// NewFilterSessionRun instantiates a new FilterSessionRun object -// This constructor will assign default values to properties that have it defined, -// and makes sure properties required by API are set, but the set of arguments -// will change when the set of required properties is changed -func NewFilterSessionRun(name string, id string, sessionId string, epoch float64) *FilterSessionRun { - this := FilterSessionRun{} - this.Name = name - this.Id = id - this.SessionId = sessionId - this.Epoch = epoch - return &this -} - -// NewFilterSessionRunWithDefaults instantiates a new FilterSessionRun object -// This constructor will only assign default values to properties that have it defined, -// but it doesn't guarantee that properties required by API are set -func NewFilterSessionRunWithDefaults() *FilterSessionRun { - this := FilterSessionRun{} - return &this -} - -// GetName returns the Name field value -func (o *FilterSessionRun) GetName() string { - if o == nil { - var ret string - return ret - } - - return o.Name -} - -// GetNameOk returns a tuple with the Name field value -// and a boolean to check if the value has been set. -func (o *FilterSessionRun) GetNameOk() (*string, bool) { - if o == nil { - return nil, false - } - return &o.Name, true -} - -// SetName sets field value -func (o *FilterSessionRun) SetName(v string) { - o.Name = v -} - -// GetId returns the Id field value -func (o *FilterSessionRun) GetId() string { - if o == nil { - var ret string - return ret - } - - return o.Id -} - -// GetIdOk returns a tuple with the Id field value -// and a boolean to check if the value has been set. -func (o *FilterSessionRun) GetIdOk() (*string, bool) { - if o == nil { - return nil, false - } - return &o.Id, true -} - -// SetId sets field value -func (o *FilterSessionRun) SetId(v string) { - o.Id = v -} - -// GetSessionId returns the SessionId field value -func (o *FilterSessionRun) GetSessionId() string { - if o == nil { - var ret string - return ret - } - - return o.SessionId -} - -// GetSessionIdOk returns a tuple with the SessionId field value -// and a boolean to check if the value has been set. -func (o *FilterSessionRun) GetSessionIdOk() (*string, bool) { - if o == nil { - return nil, false - } - return &o.SessionId, true -} - -// SetSessionId sets field value -func (o *FilterSessionRun) SetSessionId(v string) { - o.SessionId = v -} - -// GetEpoch returns the Epoch field value -func (o *FilterSessionRun) GetEpoch() float64 { - if o == nil { - var ret float64 - return ret - } - - return o.Epoch -} - -// GetEpochOk returns a tuple with the Epoch field value -// and a boolean to check if the value has been set. -func (o *FilterSessionRun) GetEpochOk() (*float64, bool) { - if o == nil { - return nil, false - } - return &o.Epoch, true -} - -// SetEpoch sets field value -func (o *FilterSessionRun) SetEpoch(v float64) { - o.Epoch = v -} - -func (o FilterSessionRun) MarshalJSON() ([]byte, error) { - toSerialize, err := o.ToMap() - if err != nil { - return []byte{}, err - } - return json.Marshal(toSerialize) -} - -func (o FilterSessionRun) ToMap() (map[string]interface{}, error) { - toSerialize := map[string]interface{}{} - toSerialize["name"] = o.Name - toSerialize["id"] = o.Id - toSerialize["sessionId"] = o.SessionId - toSerialize["epoch"] = o.Epoch - - for key, value := range o.AdditionalProperties { - toSerialize[key] = value - } - - return toSerialize, nil -} - -func (o *FilterSessionRun) UnmarshalJSON(data []byte) (err error) { - // This validates that all required properties are included in the JSON object - // by unmarshalling the object into a generic map with string keys and checking - // that every required field exists as a key in the generic map. - requiredProperties := []string{ - "name", - "id", - "sessionId", - "epoch", - } - - allProperties := make(map[string]interface{}) - - err = json.Unmarshal(data, &allProperties) - - if err != nil { - return err - } - - for _, requiredProperty := range requiredProperties { - if _, exists := allProperties[requiredProperty]; !exists { - return fmt.Errorf("no value given for required property %v", requiredProperty) - } - } - - varFilterSessionRun := _FilterSessionRun{} - - err = json.Unmarshal(data, &varFilterSessionRun) - - if err != nil { - return err - } - - *o = FilterSessionRun(varFilterSessionRun) - - additionalProperties := make(map[string]interface{}) - - if err = json.Unmarshal(data, &additionalProperties); err == nil { - delete(additionalProperties, "name") - delete(additionalProperties, "id") - delete(additionalProperties, "sessionId") - delete(additionalProperties, "epoch") - o.AdditionalProperties = additionalProperties - } - - return err -} - -type NullableFilterSessionRun struct { - value *FilterSessionRun - isSet bool -} - -func (v NullableFilterSessionRun) Get() *FilterSessionRun { - return v.value -} - -func (v *NullableFilterSessionRun) Set(val *FilterSessionRun) { - v.value = val - v.isSet = true -} - -func (v NullableFilterSessionRun) IsSet() bool { - return v.isSet -} - -func (v *NullableFilterSessionRun) Unset() { - v.value = nil - v.isSet = false -} - -func NewNullableFilterSessionRun(val *FilterSessionRun) *NullableFilterSessionRun { - return &NullableFilterSessionRun{value: val, isSet: true} -} - -func (v NullableFilterSessionRun) MarshalJSON() ([]byte, error) { - return json.Marshal(v.value) -} - -func (v *NullableFilterSessionRun) UnmarshalJSON(src []byte) error { - v.isSet = true - return json.Unmarshal(src, &v.value) -} diff --git a/pkg/tensorleapapi/model_filter_version.go b/pkg/tensorleapapi/model_filter_version.go new file mode 100644 index 000000000..cd58f1ad6 --- /dev/null +++ b/pkg/tensorleapapi/model_filter_version.go @@ -0,0 +1,195 @@ +/* +node-server + +No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + +API version: 11.0.23 +*/ + +// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. + +package tensorleapapi + +import ( + "encoding/json" + "fmt" +) + +// checks if the FilterVersion type satisfies the MappedNullable interface at compile time +var _ MappedNullable = &FilterVersion{} + +// FilterVersion struct for FilterVersion +type FilterVersion struct { + Name string `json:"name"` + Id string `json:"id"` + AdditionalProperties map[string]interface{} +} + +type _FilterVersion FilterVersion + +// NewFilterVersion instantiates a new FilterVersion object +// This constructor will assign default values to properties that have it defined, +// and makes sure properties required by API are set, but the set of arguments +// will change when the set of required properties is changed +func NewFilterVersion(name string, id string) *FilterVersion { + this := FilterVersion{} + this.Name = name + this.Id = id + return &this +} + +// NewFilterVersionWithDefaults instantiates a new FilterVersion object +// This constructor will only assign default values to properties that have it defined, +// but it doesn't guarantee that properties required by API are set +func NewFilterVersionWithDefaults() *FilterVersion { + this := FilterVersion{} + return &this +} + +// GetName returns the Name field value +func (o *FilterVersion) GetName() string { + if o == nil { + var ret string + return ret + } + + return o.Name +} + +// GetNameOk returns a tuple with the Name field value +// and a boolean to check if the value has been set. +func (o *FilterVersion) GetNameOk() (*string, bool) { + if o == nil { + return nil, false + } + return &o.Name, true +} + +// SetName sets field value +func (o *FilterVersion) SetName(v string) { + o.Name = v +} + +// GetId returns the Id field value +func (o *FilterVersion) GetId() string { + if o == nil { + var ret string + return ret + } + + return o.Id +} + +// GetIdOk returns a tuple with the Id field value +// and a boolean to check if the value has been set. +func (o *FilterVersion) GetIdOk() (*string, bool) { + if o == nil { + return nil, false + } + return &o.Id, true +} + +// SetId sets field value +func (o *FilterVersion) SetId(v string) { + o.Id = v +} + +func (o FilterVersion) MarshalJSON() ([]byte, error) { + toSerialize, err := o.ToMap() + if err != nil { + return []byte{}, err + } + return json.Marshal(toSerialize) +} + +func (o FilterVersion) ToMap() (map[string]interface{}, error) { + toSerialize := map[string]interface{}{} + toSerialize["name"] = o.Name + toSerialize["id"] = o.Id + + for key, value := range o.AdditionalProperties { + toSerialize[key] = value + } + + return toSerialize, nil +} + +func (o *FilterVersion) UnmarshalJSON(data []byte) (err error) { + // This validates that all required properties are included in the JSON object + // by unmarshalling the object into a generic map with string keys and checking + // that every required field exists as a key in the generic map. + requiredProperties := []string{ + "name", + "id", + } + + allProperties := make(map[string]interface{}) + + err = json.Unmarshal(data, &allProperties) + + if err != nil { + return err + } + + for _, requiredProperty := range requiredProperties { + if _, exists := allProperties[requiredProperty]; !exists { + return fmt.Errorf("no value given for required property %v", requiredProperty) + } + } + + varFilterVersion := _FilterVersion{} + + err = json.Unmarshal(data, &varFilterVersion) + + if err != nil { + return err + } + + *o = FilterVersion(varFilterVersion) + + additionalProperties := make(map[string]interface{}) + + if err = json.Unmarshal(data, &additionalProperties); err == nil { + delete(additionalProperties, "name") + delete(additionalProperties, "id") + o.AdditionalProperties = additionalProperties + } + + return err +} + +type NullableFilterVersion struct { + value *FilterVersion + isSet bool +} + +func (v NullableFilterVersion) Get() *FilterVersion { + return v.value +} + +func (v *NullableFilterVersion) Set(val *FilterVersion) { + v.value = val + v.isSet = true +} + +func (v NullableFilterVersion) IsSet() bool { + return v.isSet +} + +func (v *NullableFilterVersion) Unset() { + v.value = nil + v.isSet = false +} + +func NewNullableFilterVersion(val *FilterVersion) *NullableFilterVersion { + return &NullableFilterVersion{value: val, isSet: true} +} + +func (v NullableFilterVersion) MarshalJSON() ([]byte, error) { + return json.Marshal(v.value) +} + +func (v *NullableFilterVersion) UnmarshalJSON(src []byte) error { + v.isSet = true + return json.Unmarshal(src, &v.value) +} diff --git a/pkg/tensorleapapi/model_general_message_params.go b/pkg/tensorleapapi/model_general_message_params.go index b0d9e4b1c..3d1d1a266 100644 --- a/pkg/tensorleapapi/model_general_message_params.go +++ b/pkg/tensorleapapi/model_general_message_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_generate_dataset_balancing_params.go b/pkg/tensorleapapi/model_generate_dataset_balancing_params.go index cff662940..aae7afc60 100644 --- a/pkg/tensorleapapi/model_generate_dataset_balancing_params.go +++ b/pkg/tensorleapapi/model_generate_dataset_balancing_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -21,8 +21,7 @@ var _ MappedNullable = &GenerateDatasetBalancingParams{} // GenerateDatasetBalancingParams struct for GenerateDatasetBalancingParams type GenerateDatasetBalancingParams struct { ProjectId string `json:"projectId"` - SessionRunId string `json:"sessionRunId"` - Epoch float64 `json:"epoch"` + VersionId string `json:"versionId"` Filters []ESFilter `json:"filters,omitempty"` MetadataTags []string `json:"metadataTags"` PrioritizedMetadataTags []string `json:"prioritizedMetadataTags,omitempty"` @@ -36,11 +35,10 @@ type _GenerateDatasetBalancingParams GenerateDatasetBalancingParams // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewGenerateDatasetBalancingParams(projectId string, sessionRunId string, epoch float64, metadataTags []string) *GenerateDatasetBalancingParams { +func NewGenerateDatasetBalancingParams(projectId string, versionId string, metadataTags []string) *GenerateDatasetBalancingParams { this := GenerateDatasetBalancingParams{} this.ProjectId = projectId - this.SessionRunId = sessionRunId - this.Epoch = epoch + this.VersionId = versionId this.MetadataTags = metadataTags return &this } @@ -77,52 +75,28 @@ func (o *GenerateDatasetBalancingParams) SetProjectId(v string) { o.ProjectId = v } -// GetSessionRunId returns the SessionRunId field value -func (o *GenerateDatasetBalancingParams) GetSessionRunId() string { +// GetVersionId returns the VersionId field value +func (o *GenerateDatasetBalancingParams) GetVersionId() string { if o == nil { var ret string return ret } - return o.SessionRunId + return o.VersionId } -// GetSessionRunIdOk returns a tuple with the SessionRunId field value +// GetVersionIdOk returns a tuple with the VersionId field value // and a boolean to check if the value has been set. -func (o *GenerateDatasetBalancingParams) GetSessionRunIdOk() (*string, bool) { +func (o *GenerateDatasetBalancingParams) GetVersionIdOk() (*string, bool) { if o == nil { return nil, false } - return &o.SessionRunId, true + return &o.VersionId, true } -// SetSessionRunId sets field value -func (o *GenerateDatasetBalancingParams) SetSessionRunId(v string) { - o.SessionRunId = v -} - -// GetEpoch returns the Epoch field value -func (o *GenerateDatasetBalancingParams) GetEpoch() float64 { - if o == nil { - var ret float64 - return ret - } - - return o.Epoch -} - -// GetEpochOk returns a tuple with the Epoch field value -// and a boolean to check if the value has been set. -func (o *GenerateDatasetBalancingParams) GetEpochOk() (*float64, bool) { - if o == nil { - return nil, false - } - return &o.Epoch, true -} - -// SetEpoch sets field value -func (o *GenerateDatasetBalancingParams) SetEpoch(v float64) { - o.Epoch = v +// SetVersionId sets field value +func (o *GenerateDatasetBalancingParams) SetVersionId(v string) { + o.VersionId = v } // GetFilters returns the Filters field value if set, zero value otherwise. @@ -256,8 +230,7 @@ func (o GenerateDatasetBalancingParams) MarshalJSON() ([]byte, error) { func (o GenerateDatasetBalancingParams) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} toSerialize["projectId"] = o.ProjectId - toSerialize["sessionRunId"] = o.SessionRunId - toSerialize["epoch"] = o.Epoch + toSerialize["versionId"] = o.VersionId if !IsNil(o.Filters) { toSerialize["filters"] = o.Filters } @@ -282,8 +255,7 @@ func (o *GenerateDatasetBalancingParams) UnmarshalJSON(data []byte) (err error) // that every required field exists as a key in the generic map. requiredProperties := []string{ "projectId", - "sessionRunId", - "epoch", + "versionId", "metadataTags", } @@ -315,8 +287,7 @@ func (o *GenerateDatasetBalancingParams) UnmarshalJSON(data []byte) (err error) if err = json.Unmarshal(data, &additionalProperties); err == nil { delete(additionalProperties, "projectId") - delete(additionalProperties, "sessionRunId") - delete(additionalProperties, "epoch") + delete(additionalProperties, "versionId") delete(additionalProperties, "filters") delete(additionalProperties, "metadataTags") delete(additionalProperties, "prioritizedMetadataTags") diff --git a/pkg/tensorleapapi/model_generate_insights_params.go b/pkg/tensorleapapi/model_generate_insights_params.go index 02dab8b23..11da98734 100644 --- a/pkg/tensorleapapi/model_generate_insights_params.go +++ b/pkg/tensorleapapi/model_generate_insights_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -21,7 +21,7 @@ var _ MappedNullable = &GenerateInsightsParams{} // GenerateInsightsParams struct for GenerateInsightsParams type GenerateInsightsParams struct { ProjectId string `json:"projectId"` - SessionRunId string `json:"sessionRunId"` + VersionId *string `json:"versionId,omitempty"` Filters []ESFilter `json:"filters,omitempty"` Refresh *bool `json:"refresh,omitempty"` AdditionalProperties map[string]interface{} @@ -33,10 +33,9 @@ type _GenerateInsightsParams GenerateInsightsParams // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewGenerateInsightsParams(projectId string, sessionRunId string) *GenerateInsightsParams { +func NewGenerateInsightsParams(projectId string) *GenerateInsightsParams { this := GenerateInsightsParams{} this.ProjectId = projectId - this.SessionRunId = sessionRunId return &this } @@ -72,28 +71,36 @@ func (o *GenerateInsightsParams) SetProjectId(v string) { o.ProjectId = v } -// GetSessionRunId returns the SessionRunId field value -func (o *GenerateInsightsParams) GetSessionRunId() string { - if o == nil { +// GetVersionId returns the VersionId field value if set, zero value otherwise. +func (o *GenerateInsightsParams) GetVersionId() string { + if o == nil || IsNil(o.VersionId) { var ret string return ret } - - return o.SessionRunId + return *o.VersionId } -// GetSessionRunIdOk returns a tuple with the SessionRunId field value +// GetVersionIdOk returns a tuple with the VersionId field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *GenerateInsightsParams) GetSessionRunIdOk() (*string, bool) { - if o == nil { +func (o *GenerateInsightsParams) GetVersionIdOk() (*string, bool) { + if o == nil || IsNil(o.VersionId) { return nil, false } - return &o.SessionRunId, true + return o.VersionId, true +} + +// HasVersionId returns a boolean if a field has been set. +func (o *GenerateInsightsParams) HasVersionId() bool { + if o != nil && !IsNil(o.VersionId) { + return true + } + + return false } -// SetSessionRunId sets field value -func (o *GenerateInsightsParams) SetSessionRunId(v string) { - o.SessionRunId = v +// SetVersionId gets a reference to the given string and assigns it to the VersionId field. +func (o *GenerateInsightsParams) SetVersionId(v string) { + o.VersionId = &v } // GetFilters returns the Filters field value if set, zero value otherwise. @@ -171,7 +178,9 @@ func (o GenerateInsightsParams) MarshalJSON() ([]byte, error) { func (o GenerateInsightsParams) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} toSerialize["projectId"] = o.ProjectId - toSerialize["sessionRunId"] = o.SessionRunId + if !IsNil(o.VersionId) { + toSerialize["versionId"] = o.VersionId + } if !IsNil(o.Filters) { toSerialize["filters"] = o.Filters } @@ -192,7 +201,6 @@ func (o *GenerateInsightsParams) UnmarshalJSON(data []byte) (err error) { // that every required field exists as a key in the generic map. requiredProperties := []string{ "projectId", - "sessionRunId", } allProperties := make(map[string]interface{}) @@ -223,7 +231,7 @@ func (o *GenerateInsightsParams) UnmarshalJSON(data []byte) (err error) { if err = json.Unmarshal(data, &additionalProperties); err == nil { delete(additionalProperties, "projectId") - delete(additionalProperties, "sessionRunId") + delete(additionalProperties, "versionId") delete(additionalProperties, "filters") delete(additionalProperties, "refresh") o.AdditionalProperties = additionalProperties diff --git a/pkg/tensorleapapi/model_generate_label_params.go b/pkg/tensorleapapi/model_generate_label_params.go index de4cb8aed..2b5e0fe86 100644 --- a/pkg/tensorleapapi/model_generate_label_params.go +++ b/pkg/tensorleapapi/model_generate_label_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -21,8 +21,7 @@ var _ MappedNullable = &GenerateLabelParams{} // GenerateLabelParams struct for GenerateLabelParams type GenerateLabelParams struct { ProjectId string `json:"projectId"` - SessionRunId string `json:"sessionRunId"` - Epoch float64 `json:"epoch"` + VersionId string `json:"versionId"` NumOfSamplesToLabel *float64 `json:"numOfSamplesToLabel,omitempty"` Filters []ESFilter `json:"filters,omitempty"` AdditionalProperties map[string]interface{} @@ -34,11 +33,10 @@ type _GenerateLabelParams GenerateLabelParams // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewGenerateLabelParams(projectId string, sessionRunId string, epoch float64) *GenerateLabelParams { +func NewGenerateLabelParams(projectId string, versionId string) *GenerateLabelParams { this := GenerateLabelParams{} this.ProjectId = projectId - this.SessionRunId = sessionRunId - this.Epoch = epoch + this.VersionId = versionId return &this } @@ -74,52 +72,28 @@ func (o *GenerateLabelParams) SetProjectId(v string) { o.ProjectId = v } -// GetSessionRunId returns the SessionRunId field value -func (o *GenerateLabelParams) GetSessionRunId() string { +// GetVersionId returns the VersionId field value +func (o *GenerateLabelParams) GetVersionId() string { if o == nil { var ret string return ret } - return o.SessionRunId + return o.VersionId } -// GetSessionRunIdOk returns a tuple with the SessionRunId field value +// GetVersionIdOk returns a tuple with the VersionId field value // and a boolean to check if the value has been set. -func (o *GenerateLabelParams) GetSessionRunIdOk() (*string, bool) { +func (o *GenerateLabelParams) GetVersionIdOk() (*string, bool) { if o == nil { return nil, false } - return &o.SessionRunId, true + return &o.VersionId, true } -// SetSessionRunId sets field value -func (o *GenerateLabelParams) SetSessionRunId(v string) { - o.SessionRunId = v -} - -// GetEpoch returns the Epoch field value -func (o *GenerateLabelParams) GetEpoch() float64 { - if o == nil { - var ret float64 - return ret - } - - return o.Epoch -} - -// GetEpochOk returns a tuple with the Epoch field value -// and a boolean to check if the value has been set. -func (o *GenerateLabelParams) GetEpochOk() (*float64, bool) { - if o == nil { - return nil, false - } - return &o.Epoch, true -} - -// SetEpoch sets field value -func (o *GenerateLabelParams) SetEpoch(v float64) { - o.Epoch = v +// SetVersionId sets field value +func (o *GenerateLabelParams) SetVersionId(v string) { + o.VersionId = v } // GetNumOfSamplesToLabel returns the NumOfSamplesToLabel field value if set, zero value otherwise. @@ -197,8 +171,7 @@ func (o GenerateLabelParams) MarshalJSON() ([]byte, error) { func (o GenerateLabelParams) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} toSerialize["projectId"] = o.ProjectId - toSerialize["sessionRunId"] = o.SessionRunId - toSerialize["epoch"] = o.Epoch + toSerialize["versionId"] = o.VersionId if !IsNil(o.NumOfSamplesToLabel) { toSerialize["numOfSamplesToLabel"] = o.NumOfSamplesToLabel } @@ -219,8 +192,7 @@ func (o *GenerateLabelParams) UnmarshalJSON(data []byte) (err error) { // that every required field exists as a key in the generic map. requiredProperties := []string{ "projectId", - "sessionRunId", - "epoch", + "versionId", } allProperties := make(map[string]interface{}) @@ -251,8 +223,7 @@ func (o *GenerateLabelParams) UnmarshalJSON(data []byte) (err error) { if err = json.Unmarshal(data, &additionalProperties); err == nil { delete(additionalProperties, "projectId") - delete(additionalProperties, "sessionRunId") - delete(additionalProperties, "epoch") + delete(additionalProperties, "versionId") delete(additionalProperties, "numOfSamplesToLabel") delete(additionalProperties, "filters") o.AdditionalProperties = additionalProperties diff --git a/pkg/tensorleapapi/model_generate_streaming_samples_vis_params.go b/pkg/tensorleapapi/model_generate_streaming_samples_vis_params.go index 3471f685c..e98d75177 100644 --- a/pkg/tensorleapapi/model_generate_streaming_samples_vis_params.go +++ b/pkg/tensorleapapi/model_generate_streaming_samples_vis_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -22,7 +22,7 @@ var _ MappedNullable = &GenerateStreamingSamplesVisParams{} type GenerateStreamingSamplesVisParams struct { VisualizationType string `json:"visualizationType"` SampleIdentities []SampleIdentity `json:"sampleIdentities"` - SessionRunId string `json:"sessionRunId"` + VisArtifactId string `json:"visArtifactId"` ProjectId string `json:"projectId"` AdditionalProperties map[string]interface{} } @@ -33,11 +33,11 @@ type _GenerateStreamingSamplesVisParams GenerateStreamingSamplesVisParams // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewGenerateStreamingSamplesVisParams(visualizationType string, sampleIdentities []SampleIdentity, sessionRunId string, projectId string) *GenerateStreamingSamplesVisParams { +func NewGenerateStreamingSamplesVisParams(visualizationType string, sampleIdentities []SampleIdentity, visArtifactId string, projectId string) *GenerateStreamingSamplesVisParams { this := GenerateStreamingSamplesVisParams{} this.VisualizationType = visualizationType this.SampleIdentities = sampleIdentities - this.SessionRunId = sessionRunId + this.VisArtifactId = visArtifactId this.ProjectId = projectId return &this } @@ -98,28 +98,28 @@ func (o *GenerateStreamingSamplesVisParams) SetSampleIdentities(v []SampleIdenti o.SampleIdentities = v } -// GetSessionRunId returns the SessionRunId field value -func (o *GenerateStreamingSamplesVisParams) GetSessionRunId() string { +// GetVisArtifactId returns the VisArtifactId field value +func (o *GenerateStreamingSamplesVisParams) GetVisArtifactId() string { if o == nil { var ret string return ret } - return o.SessionRunId + return o.VisArtifactId } -// GetSessionRunIdOk returns a tuple with the SessionRunId field value +// GetVisArtifactIdOk returns a tuple with the VisArtifactId field value // and a boolean to check if the value has been set. -func (o *GenerateStreamingSamplesVisParams) GetSessionRunIdOk() (*string, bool) { +func (o *GenerateStreamingSamplesVisParams) GetVisArtifactIdOk() (*string, bool) { if o == nil { return nil, false } - return &o.SessionRunId, true + return &o.VisArtifactId, true } -// SetSessionRunId sets field value -func (o *GenerateStreamingSamplesVisParams) SetSessionRunId(v string) { - o.SessionRunId = v +// SetVisArtifactId sets field value +func (o *GenerateStreamingSamplesVisParams) SetVisArtifactId(v string) { + o.VisArtifactId = v } // GetProjectId returns the ProjectId field value @@ -158,7 +158,7 @@ func (o GenerateStreamingSamplesVisParams) ToMap() (map[string]interface{}, erro toSerialize := map[string]interface{}{} toSerialize["visualizationType"] = o.VisualizationType toSerialize["sampleIdentities"] = o.SampleIdentities - toSerialize["sessionRunId"] = o.SessionRunId + toSerialize["visArtifactId"] = o.VisArtifactId toSerialize["projectId"] = o.ProjectId for key, value := range o.AdditionalProperties { @@ -175,7 +175,7 @@ func (o *GenerateStreamingSamplesVisParams) UnmarshalJSON(data []byte) (err erro requiredProperties := []string{ "visualizationType", "sampleIdentities", - "sessionRunId", + "visArtifactId", "projectId", } @@ -208,7 +208,7 @@ func (o *GenerateStreamingSamplesVisParams) UnmarshalJSON(data []byte) (err erro if err = json.Unmarshal(data, &additionalProperties); err == nil { delete(additionalProperties, "visualizationType") delete(additionalProperties, "sampleIdentities") - delete(additionalProperties, "sessionRunId") + delete(additionalProperties, "visArtifactId") delete(additionalProperties, "projectId") o.AdditionalProperties = additionalProperties } diff --git a/pkg/tensorleapapi/model_generate_synthetic_data_params.go b/pkg/tensorleapapi/model_generate_synthetic_data_params.go index 4a6e41325..b6eccaa9c 100644 --- a/pkg/tensorleapapi/model_generate_synthetic_data_params.go +++ b/pkg/tensorleapapi/model_generate_synthetic_data_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -20,11 +20,10 @@ var _ MappedNullable = &GenerateSyntheticDataParams{} // GenerateSyntheticDataParams struct for GenerateSyntheticDataParams type GenerateSyntheticDataParams struct { - ProjectId string `json:"projectId"` - SessionRunId string `json:"sessionRunId"` - Epoch float64 `json:"epoch"` - Sources []GenerateSyntheticDataParamsSourcesInner `json:"sources"` - TargetFilters []ESFilter `json:"targetFilters"` + ProjectId string `json:"projectId"` + VersionId string `json:"versionId"` + Sources []SyntheticDataJobParamsSourcesInner `json:"sources"` + TargetFilters []ESFilter `json:"targetFilters"` AdditionalProperties map[string]interface{} } @@ -34,11 +33,10 @@ type _GenerateSyntheticDataParams GenerateSyntheticDataParams // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewGenerateSyntheticDataParams(projectId string, sessionRunId string, epoch float64, sources []GenerateSyntheticDataParamsSourcesInner, targetFilters []ESFilter) *GenerateSyntheticDataParams { +func NewGenerateSyntheticDataParams(projectId string, versionId string, sources []SyntheticDataJobParamsSourcesInner, targetFilters []ESFilter) *GenerateSyntheticDataParams { this := GenerateSyntheticDataParams{} this.ProjectId = projectId - this.SessionRunId = sessionRunId - this.Epoch = epoch + this.VersionId = versionId this.Sources = sources this.TargetFilters = targetFilters return &this @@ -76,58 +74,34 @@ func (o *GenerateSyntheticDataParams) SetProjectId(v string) { o.ProjectId = v } -// GetSessionRunId returns the SessionRunId field value -func (o *GenerateSyntheticDataParams) GetSessionRunId() string { +// GetVersionId returns the VersionId field value +func (o *GenerateSyntheticDataParams) GetVersionId() string { if o == nil { var ret string return ret } - return o.SessionRunId + return o.VersionId } -// GetSessionRunIdOk returns a tuple with the SessionRunId field value +// GetVersionIdOk returns a tuple with the VersionId field value // and a boolean to check if the value has been set. -func (o *GenerateSyntheticDataParams) GetSessionRunIdOk() (*string, bool) { +func (o *GenerateSyntheticDataParams) GetVersionIdOk() (*string, bool) { if o == nil { return nil, false } - return &o.SessionRunId, true + return &o.VersionId, true } -// SetSessionRunId sets field value -func (o *GenerateSyntheticDataParams) SetSessionRunId(v string) { - o.SessionRunId = v -} - -// GetEpoch returns the Epoch field value -func (o *GenerateSyntheticDataParams) GetEpoch() float64 { - if o == nil { - var ret float64 - return ret - } - - return o.Epoch -} - -// GetEpochOk returns a tuple with the Epoch field value -// and a boolean to check if the value has been set. -func (o *GenerateSyntheticDataParams) GetEpochOk() (*float64, bool) { - if o == nil { - return nil, false - } - return &o.Epoch, true -} - -// SetEpoch sets field value -func (o *GenerateSyntheticDataParams) SetEpoch(v float64) { - o.Epoch = v +// SetVersionId sets field value +func (o *GenerateSyntheticDataParams) SetVersionId(v string) { + o.VersionId = v } // GetSources returns the Sources field value -func (o *GenerateSyntheticDataParams) GetSources() []GenerateSyntheticDataParamsSourcesInner { +func (o *GenerateSyntheticDataParams) GetSources() []SyntheticDataJobParamsSourcesInner { if o == nil { - var ret []GenerateSyntheticDataParamsSourcesInner + var ret []SyntheticDataJobParamsSourcesInner return ret } @@ -136,7 +110,7 @@ func (o *GenerateSyntheticDataParams) GetSources() []GenerateSyntheticDataParams // GetSourcesOk returns a tuple with the Sources field value // and a boolean to check if the value has been set. -func (o *GenerateSyntheticDataParams) GetSourcesOk() ([]GenerateSyntheticDataParamsSourcesInner, bool) { +func (o *GenerateSyntheticDataParams) GetSourcesOk() ([]SyntheticDataJobParamsSourcesInner, bool) { if o == nil { return nil, false } @@ -144,7 +118,7 @@ func (o *GenerateSyntheticDataParams) GetSourcesOk() ([]GenerateSyntheticDataPar } // SetSources sets field value -func (o *GenerateSyntheticDataParams) SetSources(v []GenerateSyntheticDataParamsSourcesInner) { +func (o *GenerateSyntheticDataParams) SetSources(v []SyntheticDataJobParamsSourcesInner) { o.Sources = v } @@ -183,8 +157,7 @@ func (o GenerateSyntheticDataParams) MarshalJSON() ([]byte, error) { func (o GenerateSyntheticDataParams) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} toSerialize["projectId"] = o.ProjectId - toSerialize["sessionRunId"] = o.SessionRunId - toSerialize["epoch"] = o.Epoch + toSerialize["versionId"] = o.VersionId toSerialize["sources"] = o.Sources toSerialize["targetFilters"] = o.TargetFilters @@ -201,8 +174,7 @@ func (o *GenerateSyntheticDataParams) UnmarshalJSON(data []byte) (err error) { // that every required field exists as a key in the generic map. requiredProperties := []string{ "projectId", - "sessionRunId", - "epoch", + "versionId", "sources", "targetFilters", } @@ -235,8 +207,7 @@ func (o *GenerateSyntheticDataParams) UnmarshalJSON(data []byte) (err error) { if err = json.Unmarshal(data, &additionalProperties); err == nil { delete(additionalProperties, "projectId") - delete(additionalProperties, "sessionRunId") - delete(additionalProperties, "epoch") + delete(additionalProperties, "versionId") delete(additionalProperties, "sources") delete(additionalProperties, "targetFilters") o.AdditionalProperties = additionalProperties diff --git a/pkg/tensorleapapi/model_generated_label.go b/pkg/tensorleapapi/model_generated_label.go index eca4240be..e22c273af 100644 --- a/pkg/tensorleapapi/model_generated_label.go +++ b/pkg/tensorleapapi/model_generated_label.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -21,20 +21,20 @@ var _ MappedNullable = &GeneratedLabel{} // GeneratedLabel struct for GeneratedLabel type GeneratedLabel struct { - Id string `json:"id"` - JobId string `json:"jobId"` - SessionRunId string `json:"sessionRunId"` - SessionRunName string `json:"sessionRunName"` - Epoch float64 `json:"epoch"` - NumOfSamples *float64 `json:"numOfSamples,omitempty"` - CreatedAt time.Time `json:"createdAt"` - CreatedBy string `json:"createdBy"` - FilePath string `json:"filePath"` - FileUrl *string `json:"fileUrl,omitempty"` - FilterFileUrl *string `json:"filterFileUrl,omitempty"` - Status JobStatus `json:"status"` - IsDeleted bool `json:"isDeleted"` - Filters []ESFilter `json:"filters,omitempty"` + Id string `json:"id"` + JobId string `json:"jobId"` + VersionId string `json:"versionId"` + VersionName string `json:"versionName"` + NumOfSamples *float64 `json:"numOfSamples,omitempty"` + CreatedAt time.Time `json:"createdAt"` + CreatedBy string `json:"createdBy"` + FilePath string `json:"filePath"` + FileUrl *string `json:"fileUrl,omitempty"` + FilterFileUrl *string `json:"filterFileUrl,omitempty"` + Status JobStatus `json:"status"` + IsDeleted bool `json:"isDeleted"` + Filters []ESFilter `json:"filters,omitempty"` + RunProcess *RunProcess `json:"runProcess,omitempty"` AdditionalProperties map[string]interface{} } @@ -44,13 +44,12 @@ type _GeneratedLabel GeneratedLabel // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewGeneratedLabel(id string, jobId string, sessionRunId string, sessionRunName string, epoch float64, createdAt time.Time, createdBy string, filePath string, status JobStatus, isDeleted bool) *GeneratedLabel { +func NewGeneratedLabel(id string, jobId string, versionId string, versionName string, createdAt time.Time, createdBy string, filePath string, status JobStatus, isDeleted bool) *GeneratedLabel { this := GeneratedLabel{} this.Id = id this.JobId = jobId - this.SessionRunId = sessionRunId - this.SessionRunName = sessionRunName - this.Epoch = epoch + this.VersionId = versionId + this.VersionName = versionName this.CreatedAt = createdAt this.CreatedBy = createdBy this.FilePath = filePath @@ -115,76 +114,52 @@ func (o *GeneratedLabel) SetJobId(v string) { o.JobId = v } -// GetSessionRunId returns the SessionRunId field value -func (o *GeneratedLabel) GetSessionRunId() string { +// GetVersionId returns the VersionId field value +func (o *GeneratedLabel) GetVersionId() string { if o == nil { var ret string return ret } - return o.SessionRunId + return o.VersionId } -// GetSessionRunIdOk returns a tuple with the SessionRunId field value +// GetVersionIdOk returns a tuple with the VersionId field value // and a boolean to check if the value has been set. -func (o *GeneratedLabel) GetSessionRunIdOk() (*string, bool) { +func (o *GeneratedLabel) GetVersionIdOk() (*string, bool) { if o == nil { return nil, false } - return &o.SessionRunId, true + return &o.VersionId, true } -// SetSessionRunId sets field value -func (o *GeneratedLabel) SetSessionRunId(v string) { - o.SessionRunId = v +// SetVersionId sets field value +func (o *GeneratedLabel) SetVersionId(v string) { + o.VersionId = v } -// GetSessionRunName returns the SessionRunName field value -func (o *GeneratedLabel) GetSessionRunName() string { +// GetVersionName returns the VersionName field value +func (o *GeneratedLabel) GetVersionName() string { if o == nil { var ret string return ret } - return o.SessionRunName + return o.VersionName } -// GetSessionRunNameOk returns a tuple with the SessionRunName field value +// GetVersionNameOk returns a tuple with the VersionName field value // and a boolean to check if the value has been set. -func (o *GeneratedLabel) GetSessionRunNameOk() (*string, bool) { +func (o *GeneratedLabel) GetVersionNameOk() (*string, bool) { if o == nil { return nil, false } - return &o.SessionRunName, true + return &o.VersionName, true } -// SetSessionRunName sets field value -func (o *GeneratedLabel) SetSessionRunName(v string) { - o.SessionRunName = v -} - -// GetEpoch returns the Epoch field value -func (o *GeneratedLabel) GetEpoch() float64 { - if o == nil { - var ret float64 - return ret - } - - return o.Epoch -} - -// GetEpochOk returns a tuple with the Epoch field value -// and a boolean to check if the value has been set. -func (o *GeneratedLabel) GetEpochOk() (*float64, bool) { - if o == nil { - return nil, false - } - return &o.Epoch, true -} - -// SetEpoch sets field value -func (o *GeneratedLabel) SetEpoch(v float64) { - o.Epoch = v +// SetVersionName sets field value +func (o *GeneratedLabel) SetVersionName(v string) { + o.VersionName = v } // GetNumOfSamples returns the NumOfSamples field value if set, zero value otherwise. @@ -435,6 +410,38 @@ func (o *GeneratedLabel) SetFilters(v []ESFilter) { o.Filters = v } +// GetRunProcess returns the RunProcess field value if set, zero value otherwise. +func (o *GeneratedLabel) GetRunProcess() RunProcess { + if o == nil || IsNil(o.RunProcess) { + var ret RunProcess + return ret + } + return *o.RunProcess +} + +// GetRunProcessOk returns a tuple with the RunProcess field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *GeneratedLabel) GetRunProcessOk() (*RunProcess, bool) { + if o == nil || IsNil(o.RunProcess) { + return nil, false + } + return o.RunProcess, true +} + +// HasRunProcess returns a boolean if a field has been set. +func (o *GeneratedLabel) HasRunProcess() bool { + if o != nil && !IsNil(o.RunProcess) { + return true + } + + return false +} + +// SetRunProcess gets a reference to the given RunProcess and assigns it to the RunProcess field. +func (o *GeneratedLabel) SetRunProcess(v RunProcess) { + o.RunProcess = &v +} + func (o GeneratedLabel) MarshalJSON() ([]byte, error) { toSerialize, err := o.ToMap() if err != nil { @@ -447,9 +454,8 @@ func (o GeneratedLabel) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} toSerialize["id"] = o.Id toSerialize["jobId"] = o.JobId - toSerialize["sessionRunId"] = o.SessionRunId - toSerialize["sessionRunName"] = o.SessionRunName - toSerialize["epoch"] = o.Epoch + toSerialize["versionId"] = o.VersionId + toSerialize["versionName"] = o.VersionName if !IsNil(o.NumOfSamples) { toSerialize["numOfSamples"] = o.NumOfSamples } @@ -467,6 +473,9 @@ func (o GeneratedLabel) ToMap() (map[string]interface{}, error) { if !IsNil(o.Filters) { toSerialize["filters"] = o.Filters } + if !IsNil(o.RunProcess) { + toSerialize["runProcess"] = o.RunProcess + } for key, value := range o.AdditionalProperties { toSerialize[key] = value @@ -482,9 +491,8 @@ func (o *GeneratedLabel) UnmarshalJSON(data []byte) (err error) { requiredProperties := []string{ "id", "jobId", - "sessionRunId", - "sessionRunName", - "epoch", + "versionId", + "versionName", "createdAt", "createdBy", "filePath", @@ -521,9 +529,8 @@ func (o *GeneratedLabel) UnmarshalJSON(data []byte) (err error) { if err = json.Unmarshal(data, &additionalProperties); err == nil { delete(additionalProperties, "id") delete(additionalProperties, "jobId") - delete(additionalProperties, "sessionRunId") - delete(additionalProperties, "sessionRunName") - delete(additionalProperties, "epoch") + delete(additionalProperties, "versionId") + delete(additionalProperties, "versionName") delete(additionalProperties, "numOfSamples") delete(additionalProperties, "createdAt") delete(additionalProperties, "createdBy") @@ -533,6 +540,7 @@ func (o *GeneratedLabel) UnmarshalJSON(data []byte) (err error) { delete(additionalProperties, "status") delete(additionalProperties, "isDeleted") delete(additionalProperties, "filters") + delete(additionalProperties, "runProcess") o.AdditionalProperties = additionalProperties } diff --git a/pkg/tensorleapapi/model_generated_labels_response.go b/pkg/tensorleapapi/model_generated_labels_response.go index 3cea52a6f..690232475 100644 --- a/pkg/tensorleapapi/model_generated_labels_response.go +++ b/pkg/tensorleapapi/model_generated_labels_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_generic_base_image.go b/pkg/tensorleapapi/model_generic_base_image.go index 58994d1c7..84282c050 100644 --- a/pkg/tensorleapapi/model_generic_base_image.go +++ b/pkg/tensorleapapi/model_generic_base_image.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_generic_data_item.go b/pkg/tensorleapapi/model_generic_data_item.go index a28761c07..734431ac6 100644 --- a/pkg/tensorleapapi/model_generic_data_item.go +++ b/pkg/tensorleapapi/model_generic_data_item.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_generic_data_query_params.go b/pkg/tensorleapapi/model_generic_data_query_params.go index f32cd9db9..1d8633906 100644 --- a/pkg/tensorleapapi/model_generic_data_query_params.go +++ b/pkg/tensorleapapi/model_generic_data_query_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -20,16 +20,16 @@ var _ MappedNullable = &GenericDataQueryParams{} // GenericDataQueryParams struct for GenericDataQueryParams type GenericDataQueryParams struct { - ProjectId string `json:"projectId"` - SessionRunsToEpochs []SessionRunToEpoch `json:"sessionRunsToEpochs"` - ShowAllEpochs bool `json:"showAllEpochs"` - Filters []ESFilter `json:"filters,omitempty"` - VerticalSplit *SplitAgg `json:"verticalSplit,omitempty"` - HorizontalSplit *SplitAgg `json:"horizontalSplit,omitempty"` - InnerSplit *SplitAgg `json:"innerSplit,omitempty"` - Aggregations []Aggregations `json:"aggregations"` - Buckets []SplitAgg `json:"buckets"` - ElementInstance *bool `json:"elementInstance,omitempty"` + ProjectId string `json:"projectId"` + InferenceArtifactIds []string `json:"inferenceArtifactIds"` + ShowAllEpochs bool `json:"showAllEpochs"` + Filters []ESFilter `json:"filters,omitempty"` + VerticalSplit *SplitAgg `json:"verticalSplit,omitempty"` + HorizontalSplit *SplitAgg `json:"horizontalSplit,omitempty"` + InnerSplit *SplitAgg `json:"innerSplit,omitempty"` + Aggregations []Aggregations `json:"aggregations"` + Buckets []SplitAgg `json:"buckets"` + ElementInstance *bool `json:"elementInstance,omitempty"` AdditionalProperties map[string]interface{} } @@ -39,10 +39,10 @@ type _GenericDataQueryParams GenericDataQueryParams // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewGenericDataQueryParams(projectId string, sessionRunsToEpochs []SessionRunToEpoch, showAllEpochs bool, aggregations []Aggregations, buckets []SplitAgg) *GenericDataQueryParams { +func NewGenericDataQueryParams(projectId string, inferenceArtifactIds []string, showAllEpochs bool, aggregations []Aggregations, buckets []SplitAgg) *GenericDataQueryParams { this := GenericDataQueryParams{} this.ProjectId = projectId - this.SessionRunsToEpochs = sessionRunsToEpochs + this.InferenceArtifactIds = inferenceArtifactIds this.ShowAllEpochs = showAllEpochs this.Aggregations = aggregations this.Buckets = buckets @@ -81,28 +81,28 @@ func (o *GenericDataQueryParams) SetProjectId(v string) { o.ProjectId = v } -// GetSessionRunsToEpochs returns the SessionRunsToEpochs field value -func (o *GenericDataQueryParams) GetSessionRunsToEpochs() []SessionRunToEpoch { +// GetInferenceArtifactIds returns the InferenceArtifactIds field value +func (o *GenericDataQueryParams) GetInferenceArtifactIds() []string { if o == nil { - var ret []SessionRunToEpoch + var ret []string return ret } - return o.SessionRunsToEpochs + return o.InferenceArtifactIds } -// GetSessionRunsToEpochsOk returns a tuple with the SessionRunsToEpochs field value +// GetInferenceArtifactIdsOk returns a tuple with the InferenceArtifactIds field value // and a boolean to check if the value has been set. -func (o *GenericDataQueryParams) GetSessionRunsToEpochsOk() ([]SessionRunToEpoch, bool) { +func (o *GenericDataQueryParams) GetInferenceArtifactIdsOk() ([]string, bool) { if o == nil { return nil, false } - return o.SessionRunsToEpochs, true + return o.InferenceArtifactIds, true } -// SetSessionRunsToEpochs sets field value -func (o *GenericDataQueryParams) SetSessionRunsToEpochs(v []SessionRunToEpoch) { - o.SessionRunsToEpochs = v +// SetInferenceArtifactIds sets field value +func (o *GenericDataQueryParams) SetInferenceArtifactIds(v []string) { + o.InferenceArtifactIds = v } // GetShowAllEpochs returns the ShowAllEpochs field value @@ -348,7 +348,7 @@ func (o GenericDataQueryParams) MarshalJSON() ([]byte, error) { func (o GenericDataQueryParams) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} toSerialize["projectId"] = o.ProjectId - toSerialize["sessionRunsToEpochs"] = o.SessionRunsToEpochs + toSerialize["inferenceArtifactIds"] = o.InferenceArtifactIds toSerialize["showAllEpochs"] = o.ShowAllEpochs if !IsNil(o.Filters) { toSerialize["filters"] = o.Filters @@ -381,7 +381,7 @@ func (o *GenericDataQueryParams) UnmarshalJSON(data []byte) (err error) { // that every required field exists as a key in the generic map. requiredProperties := []string{ "projectId", - "sessionRunsToEpochs", + "inferenceArtifactIds", "showAllEpochs", "aggregations", "buckets", @@ -415,7 +415,7 @@ func (o *GenericDataQueryParams) UnmarshalJSON(data []byte) (err error) { if err = json.Unmarshal(data, &additionalProperties); err == nil { delete(additionalProperties, "projectId") - delete(additionalProperties, "sessionRunsToEpochs") + delete(additionalProperties, "inferenceArtifactIds") delete(additionalProperties, "showAllEpochs") delete(additionalProperties, "filters") delete(additionalProperties, "verticalSplit") diff --git a/pkg/tensorleapapi/model_generic_data_response.go b/pkg/tensorleapapi/model_generic_data_response.go index 60c2902f8..44443937d 100644 --- a/pkg/tensorleapapi/model_generic_data_response.go +++ b/pkg/tensorleapapi/model_generic_data_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_all_project_session_tests_request.go b/pkg/tensorleapapi/model_get_all_project_session_tests_request.go index 532bcb95f..a2bf80d32 100644 --- a/pkg/tensorleapapi/model_get_all_project_session_tests_request.go +++ b/pkg/tensorleapapi/model_get_all_project_session_tests_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_api_key_by_code_request.go b/pkg/tensorleapapi/model_get_api_key_by_code_request.go index 2467c26a5..dc3c2cfce 100644 --- a/pkg/tensorleapapi/model_get_api_key_by_code_request.go +++ b/pkg/tensorleapapi/model_get_api_key_by_code_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_auth_provider_response.go b/pkg/tensorleapapi/model_get_auth_provider_response.go index 8f508a67c..32f14a431 100644 --- a/pkg/tensorleapapi/model_get_auth_provider_response.go +++ b/pkg/tensorleapapi/model_get_auth_provider_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_auth_status_response.go b/pkg/tensorleapapi/model_get_auth_status_response.go index 4488f8c1c..f49966d80 100644 --- a/pkg/tensorleapapi/model_get_auth_status_response.go +++ b/pkg/tensorleapapi/model_get_auth_status_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_code_snapshot_params.go b/pkg/tensorleapapi/model_get_code_snapshot_params.go index 9bc9b52d9..c0b114d79 100644 --- a/pkg/tensorleapapi/model_get_code_snapshot_params.go +++ b/pkg/tensorleapapi/model_get_code_snapshot_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_code_snapshot_response.go b/pkg/tensorleapapi/model_get_code_snapshot_response.go index 417b3ee9e..fabd5311d 100644 --- a/pkg/tensorleapapi/model_get_code_snapshot_response.go +++ b/pkg/tensorleapapi/model_get_code_snapshot_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_code_snapshot_upload_url_params.go b/pkg/tensorleapapi/model_get_code_snapshot_upload_url_params.go index b3c1d997f..15d173e5f 100644 --- a/pkg/tensorleapapi/model_get_code_snapshot_upload_url_params.go +++ b/pkg/tensorleapapi/model_get_code_snapshot_upload_url_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_collection_display_data_params.go b/pkg/tensorleapapi/model_get_collection_display_data_params.go new file mode 100644 index 000000000..964999780 --- /dev/null +++ b/pkg/tensorleapapi/model_get_collection_display_data_params.go @@ -0,0 +1,195 @@ +/* +node-server + +No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + +API version: 11.0.23 +*/ + +// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. + +package tensorleapapi + +import ( + "encoding/json" + "fmt" +) + +// checks if the GetCollectionDisplayDataParams type satisfies the MappedNullable interface at compile time +var _ MappedNullable = &GetCollectionDisplayDataParams{} + +// GetCollectionDisplayDataParams struct for GetCollectionDisplayDataParams +type GetCollectionDisplayDataParams struct { + CollectionId string `json:"collectionId"` + ProjectId string `json:"projectId"` + AdditionalProperties map[string]interface{} +} + +type _GetCollectionDisplayDataParams GetCollectionDisplayDataParams + +// NewGetCollectionDisplayDataParams instantiates a new GetCollectionDisplayDataParams object +// This constructor will assign default values to properties that have it defined, +// and makes sure properties required by API are set, but the set of arguments +// will change when the set of required properties is changed +func NewGetCollectionDisplayDataParams(collectionId string, projectId string) *GetCollectionDisplayDataParams { + this := GetCollectionDisplayDataParams{} + this.CollectionId = collectionId + this.ProjectId = projectId + return &this +} + +// NewGetCollectionDisplayDataParamsWithDefaults instantiates a new GetCollectionDisplayDataParams object +// This constructor will only assign default values to properties that have it defined, +// but it doesn't guarantee that properties required by API are set +func NewGetCollectionDisplayDataParamsWithDefaults() *GetCollectionDisplayDataParams { + this := GetCollectionDisplayDataParams{} + return &this +} + +// GetCollectionId returns the CollectionId field value +func (o *GetCollectionDisplayDataParams) GetCollectionId() string { + if o == nil { + var ret string + return ret + } + + return o.CollectionId +} + +// GetCollectionIdOk returns a tuple with the CollectionId field value +// and a boolean to check if the value has been set. +func (o *GetCollectionDisplayDataParams) GetCollectionIdOk() (*string, bool) { + if o == nil { + return nil, false + } + return &o.CollectionId, true +} + +// SetCollectionId sets field value +func (o *GetCollectionDisplayDataParams) SetCollectionId(v string) { + o.CollectionId = v +} + +// GetProjectId returns the ProjectId field value +func (o *GetCollectionDisplayDataParams) GetProjectId() string { + if o == nil { + var ret string + return ret + } + + return o.ProjectId +} + +// GetProjectIdOk returns a tuple with the ProjectId field value +// and a boolean to check if the value has been set. +func (o *GetCollectionDisplayDataParams) GetProjectIdOk() (*string, bool) { + if o == nil { + return nil, false + } + return &o.ProjectId, true +} + +// SetProjectId sets field value +func (o *GetCollectionDisplayDataParams) SetProjectId(v string) { + o.ProjectId = v +} + +func (o GetCollectionDisplayDataParams) MarshalJSON() ([]byte, error) { + toSerialize, err := o.ToMap() + if err != nil { + return []byte{}, err + } + return json.Marshal(toSerialize) +} + +func (o GetCollectionDisplayDataParams) ToMap() (map[string]interface{}, error) { + toSerialize := map[string]interface{}{} + toSerialize["collectionId"] = o.CollectionId + toSerialize["projectId"] = o.ProjectId + + for key, value := range o.AdditionalProperties { + toSerialize[key] = value + } + + return toSerialize, nil +} + +func (o *GetCollectionDisplayDataParams) UnmarshalJSON(data []byte) (err error) { + // This validates that all required properties are included in the JSON object + // by unmarshalling the object into a generic map with string keys and checking + // that every required field exists as a key in the generic map. + requiredProperties := []string{ + "collectionId", + "projectId", + } + + allProperties := make(map[string]interface{}) + + err = json.Unmarshal(data, &allProperties) + + if err != nil { + return err + } + + for _, requiredProperty := range requiredProperties { + if _, exists := allProperties[requiredProperty]; !exists { + return fmt.Errorf("no value given for required property %v", requiredProperty) + } + } + + varGetCollectionDisplayDataParams := _GetCollectionDisplayDataParams{} + + err = json.Unmarshal(data, &varGetCollectionDisplayDataParams) + + if err != nil { + return err + } + + *o = GetCollectionDisplayDataParams(varGetCollectionDisplayDataParams) + + additionalProperties := make(map[string]interface{}) + + if err = json.Unmarshal(data, &additionalProperties); err == nil { + delete(additionalProperties, "collectionId") + delete(additionalProperties, "projectId") + o.AdditionalProperties = additionalProperties + } + + return err +} + +type NullableGetCollectionDisplayDataParams struct { + value *GetCollectionDisplayDataParams + isSet bool +} + +func (v NullableGetCollectionDisplayDataParams) Get() *GetCollectionDisplayDataParams { + return v.value +} + +func (v *NullableGetCollectionDisplayDataParams) Set(val *GetCollectionDisplayDataParams) { + v.value = val + v.isSet = true +} + +func (v NullableGetCollectionDisplayDataParams) IsSet() bool { + return v.isSet +} + +func (v *NullableGetCollectionDisplayDataParams) Unset() { + v.value = nil + v.isSet = false +} + +func NewNullableGetCollectionDisplayDataParams(val *GetCollectionDisplayDataParams) *NullableGetCollectionDisplayDataParams { + return &NullableGetCollectionDisplayDataParams{value: val, isSet: true} +} + +func (v NullableGetCollectionDisplayDataParams) MarshalJSON() ([]byte, error) { + return json.Marshal(v.value) +} + +func (v *NullableGetCollectionDisplayDataParams) UnmarshalJSON(src []byte) error { + v.isSet = true + return json.Unmarshal(src, &v.value) +} diff --git a/pkg/tensorleapapi/model_get_collection_display_data_response.go b/pkg/tensorleapapi/model_get_collection_display_data_response.go new file mode 100644 index 000000000..7989757f2 --- /dev/null +++ b/pkg/tensorleapapi/model_get_collection_display_data_response.go @@ -0,0 +1,166 @@ +/* +node-server + +No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + +API version: 11.0.23 +*/ + +// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. + +package tensorleapapi + +import ( + "encoding/json" + "fmt" +) + +// checks if the GetCollectionDisplayDataResponse type satisfies the MappedNullable interface at compile time +var _ MappedNullable = &GetCollectionDisplayDataResponse{} + +// GetCollectionDisplayDataResponse struct for GetCollectionDisplayDataResponse +type GetCollectionDisplayDataResponse struct { + Data CollectionDisplayData `json:"data"` + AdditionalProperties map[string]interface{} +} + +type _GetCollectionDisplayDataResponse GetCollectionDisplayDataResponse + +// NewGetCollectionDisplayDataResponse instantiates a new GetCollectionDisplayDataResponse object +// This constructor will assign default values to properties that have it defined, +// and makes sure properties required by API are set, but the set of arguments +// will change when the set of required properties is changed +func NewGetCollectionDisplayDataResponse(data CollectionDisplayData) *GetCollectionDisplayDataResponse { + this := GetCollectionDisplayDataResponse{} + this.Data = data + return &this +} + +// NewGetCollectionDisplayDataResponseWithDefaults instantiates a new GetCollectionDisplayDataResponse object +// This constructor will only assign default values to properties that have it defined, +// but it doesn't guarantee that properties required by API are set +func NewGetCollectionDisplayDataResponseWithDefaults() *GetCollectionDisplayDataResponse { + this := GetCollectionDisplayDataResponse{} + return &this +} + +// GetData returns the Data field value +func (o *GetCollectionDisplayDataResponse) GetData() CollectionDisplayData { + if o == nil { + var ret CollectionDisplayData + return ret + } + + return o.Data +} + +// GetDataOk returns a tuple with the Data field value +// and a boolean to check if the value has been set. +func (o *GetCollectionDisplayDataResponse) GetDataOk() (*CollectionDisplayData, bool) { + if o == nil { + return nil, false + } + return &o.Data, true +} + +// SetData sets field value +func (o *GetCollectionDisplayDataResponse) SetData(v CollectionDisplayData) { + o.Data = v +} + +func (o GetCollectionDisplayDataResponse) MarshalJSON() ([]byte, error) { + toSerialize, err := o.ToMap() + if err != nil { + return []byte{}, err + } + return json.Marshal(toSerialize) +} + +func (o GetCollectionDisplayDataResponse) ToMap() (map[string]interface{}, error) { + toSerialize := map[string]interface{}{} + toSerialize["data"] = o.Data + + for key, value := range o.AdditionalProperties { + toSerialize[key] = value + } + + return toSerialize, nil +} + +func (o *GetCollectionDisplayDataResponse) UnmarshalJSON(data []byte) (err error) { + // This validates that all required properties are included in the JSON object + // by unmarshalling the object into a generic map with string keys and checking + // that every required field exists as a key in the generic map. + requiredProperties := []string{ + "data", + } + + allProperties := make(map[string]interface{}) + + err = json.Unmarshal(data, &allProperties) + + if err != nil { + return err + } + + for _, requiredProperty := range requiredProperties { + if _, exists := allProperties[requiredProperty]; !exists { + return fmt.Errorf("no value given for required property %v", requiredProperty) + } + } + + varGetCollectionDisplayDataResponse := _GetCollectionDisplayDataResponse{} + + err = json.Unmarshal(data, &varGetCollectionDisplayDataResponse) + + if err != nil { + return err + } + + *o = GetCollectionDisplayDataResponse(varGetCollectionDisplayDataResponse) + + additionalProperties := make(map[string]interface{}) + + if err = json.Unmarshal(data, &additionalProperties); err == nil { + delete(additionalProperties, "data") + o.AdditionalProperties = additionalProperties + } + + return err +} + +type NullableGetCollectionDisplayDataResponse struct { + value *GetCollectionDisplayDataResponse + isSet bool +} + +func (v NullableGetCollectionDisplayDataResponse) Get() *GetCollectionDisplayDataResponse { + return v.value +} + +func (v *NullableGetCollectionDisplayDataResponse) Set(val *GetCollectionDisplayDataResponse) { + v.value = val + v.isSet = true +} + +func (v NullableGetCollectionDisplayDataResponse) IsSet() bool { + return v.isSet +} + +func (v *NullableGetCollectionDisplayDataResponse) Unset() { + v.value = nil + v.isSet = false +} + +func NewNullableGetCollectionDisplayDataResponse(val *GetCollectionDisplayDataResponse) *NullableGetCollectionDisplayDataResponse { + return &NullableGetCollectionDisplayDataResponse{value: val, isSet: true} +} + +func (v NullableGetCollectionDisplayDataResponse) MarshalJSON() ([]byte, error) { + return json.Marshal(v.value) +} + +func (v *NullableGetCollectionDisplayDataResponse) UnmarshalJSON(src []byte) error { + v.isSet = true + return json.Unmarshal(src, &v.value) +} diff --git a/pkg/tensorleapapi/model_get_confusion_matrix_labels.go b/pkg/tensorleapapi/model_get_confusion_matrix_labels.go index 476c262d3..f3a948a0d 100644 --- a/pkg/tensorleapapi/model_get_confusion_matrix_labels.go +++ b/pkg/tensorleapapi/model_get_confusion_matrix_labels.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -21,7 +21,7 @@ var _ MappedNullable = &GetConfusionMatrixLabels{} // GetConfusionMatrixLabels struct for GetConfusionMatrixLabels type GetConfusionMatrixLabels struct { ProjectId string `json:"projectId"` - SessionRunIds []string `json:"sessionRunIds"` + InferenceArtifactIds []string `json:"inferenceArtifactIds"` AdditionalProperties map[string]interface{} } @@ -31,10 +31,10 @@ type _GetConfusionMatrixLabels GetConfusionMatrixLabels // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewGetConfusionMatrixLabels(projectId string, sessionRunIds []string) *GetConfusionMatrixLabels { +func NewGetConfusionMatrixLabels(projectId string, inferenceArtifactIds []string) *GetConfusionMatrixLabels { this := GetConfusionMatrixLabels{} this.ProjectId = projectId - this.SessionRunIds = sessionRunIds + this.InferenceArtifactIds = inferenceArtifactIds return &this } @@ -70,28 +70,28 @@ func (o *GetConfusionMatrixLabels) SetProjectId(v string) { o.ProjectId = v } -// GetSessionRunIds returns the SessionRunIds field value -func (o *GetConfusionMatrixLabels) GetSessionRunIds() []string { +// GetInferenceArtifactIds returns the InferenceArtifactIds field value +func (o *GetConfusionMatrixLabels) GetInferenceArtifactIds() []string { if o == nil { var ret []string return ret } - return o.SessionRunIds + return o.InferenceArtifactIds } -// GetSessionRunIdsOk returns a tuple with the SessionRunIds field value +// GetInferenceArtifactIdsOk returns a tuple with the InferenceArtifactIds field value // and a boolean to check if the value has been set. -func (o *GetConfusionMatrixLabels) GetSessionRunIdsOk() ([]string, bool) { +func (o *GetConfusionMatrixLabels) GetInferenceArtifactIdsOk() ([]string, bool) { if o == nil { return nil, false } - return o.SessionRunIds, true + return o.InferenceArtifactIds, true } -// SetSessionRunIds sets field value -func (o *GetConfusionMatrixLabels) SetSessionRunIds(v []string) { - o.SessionRunIds = v +// SetInferenceArtifactIds sets field value +func (o *GetConfusionMatrixLabels) SetInferenceArtifactIds(v []string) { + o.InferenceArtifactIds = v } func (o GetConfusionMatrixLabels) MarshalJSON() ([]byte, error) { @@ -105,7 +105,7 @@ func (o GetConfusionMatrixLabels) MarshalJSON() ([]byte, error) { func (o GetConfusionMatrixLabels) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} toSerialize["projectId"] = o.ProjectId - toSerialize["sessionRunIds"] = o.SessionRunIds + toSerialize["inferenceArtifactIds"] = o.InferenceArtifactIds for key, value := range o.AdditionalProperties { toSerialize[key] = value @@ -120,7 +120,7 @@ func (o *GetConfusionMatrixLabels) UnmarshalJSON(data []byte) (err error) { // that every required field exists as a key in the generic map. requiredProperties := []string{ "projectId", - "sessionRunIds", + "inferenceArtifactIds", } allProperties := make(map[string]interface{}) @@ -151,7 +151,7 @@ func (o *GetConfusionMatrixLabels) UnmarshalJSON(data []byte) (err error) { if err = json.Unmarshal(data, &additionalProperties); err == nil { delete(additionalProperties, "projectId") - delete(additionalProperties, "sessionRunIds") + delete(additionalProperties, "inferenceArtifactIds") o.AdditionalProperties = additionalProperties } diff --git a/pkg/tensorleapapi/model_get_confusion_matrix_result_combinations_params.go b/pkg/tensorleapapi/model_get_confusion_matrix_result_combinations_params.go index 51023ad09..46d65b1f4 100644 --- a/pkg/tensorleapapi/model_get_confusion_matrix_result_combinations_params.go +++ b/pkg/tensorleapapi/model_get_confusion_matrix_result_combinations_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -20,16 +20,16 @@ var _ MappedNullable = &GetConfusionMatrixResultCombinationsParams{} // GetConfusionMatrixResultCombinationsParams struct for GetConfusionMatrixResultCombinationsParams type GetConfusionMatrixResultCombinationsParams struct { - ProjectId string `json:"projectId"` - SessionRunsToEpochs []SessionRunToEpoch `json:"sessionRunsToEpochs"` - X SplitAgg `json:"x"` - VerticalSplit *SplitAgg `json:"verticalSplit,omitempty"` - HorizontalSplit *SplitAgg `json:"horizontalSplit,omitempty"` - InnerSplit *SplitAgg `json:"innerSplit,omitempty"` - Threshold *float64 `json:"threshold,omitempty"` - CustomMetricName string `json:"customMetricName"` - Filters []ESFilter `json:"filters,omitempty"` - FilterLabels []string `json:"filterLabels,omitempty"` + ProjectId string `json:"projectId"` + InferenceArtifactIds []string `json:"inferenceArtifactIds"` + X SplitAgg `json:"x"` + VerticalSplit *SplitAgg `json:"verticalSplit,omitempty"` + HorizontalSplit *SplitAgg `json:"horizontalSplit,omitempty"` + InnerSplit *SplitAgg `json:"innerSplit,omitempty"` + Threshold *float64 `json:"threshold,omitempty"` + CustomMetricName string `json:"customMetricName"` + Filters []ESFilter `json:"filters,omitempty"` + FilterLabels []string `json:"filterLabels,omitempty"` AdditionalProperties map[string]interface{} } @@ -39,10 +39,10 @@ type _GetConfusionMatrixResultCombinationsParams GetConfusionMatrixResultCombina // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewGetConfusionMatrixResultCombinationsParams(projectId string, sessionRunsToEpochs []SessionRunToEpoch, x SplitAgg, customMetricName string) *GetConfusionMatrixResultCombinationsParams { +func NewGetConfusionMatrixResultCombinationsParams(projectId string, inferenceArtifactIds []string, x SplitAgg, customMetricName string) *GetConfusionMatrixResultCombinationsParams { this := GetConfusionMatrixResultCombinationsParams{} this.ProjectId = projectId - this.SessionRunsToEpochs = sessionRunsToEpochs + this.InferenceArtifactIds = inferenceArtifactIds this.X = x this.CustomMetricName = customMetricName return &this @@ -80,28 +80,28 @@ func (o *GetConfusionMatrixResultCombinationsParams) SetProjectId(v string) { o.ProjectId = v } -// GetSessionRunsToEpochs returns the SessionRunsToEpochs field value -func (o *GetConfusionMatrixResultCombinationsParams) GetSessionRunsToEpochs() []SessionRunToEpoch { +// GetInferenceArtifactIds returns the InferenceArtifactIds field value +func (o *GetConfusionMatrixResultCombinationsParams) GetInferenceArtifactIds() []string { if o == nil { - var ret []SessionRunToEpoch + var ret []string return ret } - return o.SessionRunsToEpochs + return o.InferenceArtifactIds } -// GetSessionRunsToEpochsOk returns a tuple with the SessionRunsToEpochs field value +// GetInferenceArtifactIdsOk returns a tuple with the InferenceArtifactIds field value // and a boolean to check if the value has been set. -func (o *GetConfusionMatrixResultCombinationsParams) GetSessionRunsToEpochsOk() ([]SessionRunToEpoch, bool) { +func (o *GetConfusionMatrixResultCombinationsParams) GetInferenceArtifactIdsOk() ([]string, bool) { if o == nil { return nil, false } - return o.SessionRunsToEpochs, true + return o.InferenceArtifactIds, true } -// SetSessionRunsToEpochs sets field value -func (o *GetConfusionMatrixResultCombinationsParams) SetSessionRunsToEpochs(v []SessionRunToEpoch) { - o.SessionRunsToEpochs = v +// SetInferenceArtifactIds sets field value +func (o *GetConfusionMatrixResultCombinationsParams) SetInferenceArtifactIds(v []string) { + o.InferenceArtifactIds = v } // GetX returns the X field value @@ -355,7 +355,7 @@ func (o GetConfusionMatrixResultCombinationsParams) MarshalJSON() ([]byte, error func (o GetConfusionMatrixResultCombinationsParams) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} toSerialize["projectId"] = o.ProjectId - toSerialize["sessionRunsToEpochs"] = o.SessionRunsToEpochs + toSerialize["inferenceArtifactIds"] = o.InferenceArtifactIds toSerialize["x"] = o.X if !IsNil(o.VerticalSplit) { toSerialize["verticalSplit"] = o.VerticalSplit @@ -390,7 +390,7 @@ func (o *GetConfusionMatrixResultCombinationsParams) UnmarshalJSON(data []byte) // that every required field exists as a key in the generic map. requiredProperties := []string{ "projectId", - "sessionRunsToEpochs", + "inferenceArtifactIds", "x", "customMetricName", } @@ -423,7 +423,7 @@ func (o *GetConfusionMatrixResultCombinationsParams) UnmarshalJSON(data []byte) if err = json.Unmarshal(data, &additionalProperties); err == nil { delete(additionalProperties, "projectId") - delete(additionalProperties, "sessionRunsToEpochs") + delete(additionalProperties, "inferenceArtifactIds") delete(additionalProperties, "x") delete(additionalProperties, "verticalSplit") delete(additionalProperties, "horizontalSplit") diff --git a/pkg/tensorleapapi/model_get_current_project_version_params.go b/pkg/tensorleapapi/model_get_current_project_version_params.go index c0e8c61a8..9832474e5 100644 --- a/pkg/tensorleapapi/model_get_current_project_version_params.go +++ b/pkg/tensorleapapi/model_get_current_project_version_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_current_project_version_response.go b/pkg/tensorleapapi/model_get_current_project_version_response.go index 7c0be8d0e..ab6530e7d 100644 --- a/pkg/tensorleapapi/model_get_current_project_version_response.go +++ b/pkg/tensorleapapi/model_get_current_project_version_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_dashboard_params.go b/pkg/tensorleapapi/model_get_dashboard_params.go index d746cce1f..6a1da7e59 100644 --- a/pkg/tensorleapapi/model_get_dashboard_params.go +++ b/pkg/tensorleapapi/model_get_dashboard_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_dashboard_response.go b/pkg/tensorleapapi/model_get_dashboard_response.go index ad62c29cc..b7105f346 100644 --- a/pkg/tensorleapapi/model_get_dashboard_response.go +++ b/pkg/tensorleapapi/model_get_dashboard_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_dashlet_fields_params.go b/pkg/tensorleapapi/model_get_dashlet_fields_params.go index 6dd0d35c9..166dfd71e 100644 --- a/pkg/tensorleapapi/model_get_dashlet_fields_params.go +++ b/pkg/tensorleapapi/model_get_dashlet_fields_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -21,7 +21,7 @@ var _ MappedNullable = &GetDashletFieldsParams{} // GetDashletFieldsParams struct for GetDashletFieldsParams type GetDashletFieldsParams struct { ProjectId string `json:"projectId"` - SessionRunIds []string `json:"sessionRunIds"` + InferenceArtifactIds []string `json:"inferenceArtifactIds"` AdditionalProperties map[string]interface{} } @@ -31,10 +31,10 @@ type _GetDashletFieldsParams GetDashletFieldsParams // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewGetDashletFieldsParams(projectId string, sessionRunIds []string) *GetDashletFieldsParams { +func NewGetDashletFieldsParams(projectId string, inferenceArtifactIds []string) *GetDashletFieldsParams { this := GetDashletFieldsParams{} this.ProjectId = projectId - this.SessionRunIds = sessionRunIds + this.InferenceArtifactIds = inferenceArtifactIds return &this } @@ -70,28 +70,28 @@ func (o *GetDashletFieldsParams) SetProjectId(v string) { o.ProjectId = v } -// GetSessionRunIds returns the SessionRunIds field value -func (o *GetDashletFieldsParams) GetSessionRunIds() []string { +// GetInferenceArtifactIds returns the InferenceArtifactIds field value +func (o *GetDashletFieldsParams) GetInferenceArtifactIds() []string { if o == nil { var ret []string return ret } - return o.SessionRunIds + return o.InferenceArtifactIds } -// GetSessionRunIdsOk returns a tuple with the SessionRunIds field value +// GetInferenceArtifactIdsOk returns a tuple with the InferenceArtifactIds field value // and a boolean to check if the value has been set. -func (o *GetDashletFieldsParams) GetSessionRunIdsOk() ([]string, bool) { +func (o *GetDashletFieldsParams) GetInferenceArtifactIdsOk() ([]string, bool) { if o == nil { return nil, false } - return o.SessionRunIds, true + return o.InferenceArtifactIds, true } -// SetSessionRunIds sets field value -func (o *GetDashletFieldsParams) SetSessionRunIds(v []string) { - o.SessionRunIds = v +// SetInferenceArtifactIds sets field value +func (o *GetDashletFieldsParams) SetInferenceArtifactIds(v []string) { + o.InferenceArtifactIds = v } func (o GetDashletFieldsParams) MarshalJSON() ([]byte, error) { @@ -105,7 +105,7 @@ func (o GetDashletFieldsParams) MarshalJSON() ([]byte, error) { func (o GetDashletFieldsParams) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} toSerialize["projectId"] = o.ProjectId - toSerialize["sessionRunIds"] = o.SessionRunIds + toSerialize["inferenceArtifactIds"] = o.InferenceArtifactIds for key, value := range o.AdditionalProperties { toSerialize[key] = value @@ -120,7 +120,7 @@ func (o *GetDashletFieldsParams) UnmarshalJSON(data []byte) (err error) { // that every required field exists as a key in the generic map. requiredProperties := []string{ "projectId", - "sessionRunIds", + "inferenceArtifactIds", } allProperties := make(map[string]interface{}) @@ -151,7 +151,7 @@ func (o *GetDashletFieldsParams) UnmarshalJSON(data []byte) (err error) { if err = json.Unmarshal(data, &additionalProperties); err == nil { delete(additionalProperties, "projectId") - delete(additionalProperties, "sessionRunIds") + delete(additionalProperties, "inferenceArtifactIds") o.AdditionalProperties = additionalProperties } diff --git a/pkg/tensorleapapi/model_get_dashlet_fields_response.go b/pkg/tensorleapapi/model_get_dashlet_fields_response.go index 34bb93399..a19c3f9db 100644 --- a/pkg/tensorleapapi/model_get_dashlet_fields_response.go +++ b/pkg/tensorleapapi/model_get_dashlet_fields_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -23,6 +23,7 @@ type GetDashletFieldsResponse struct { AggregatableFields []string `json:"aggregatableFields"` NumericFields []string `json:"numericFields"` StringFields []string `json:"stringFields"` + BooleanFields []string `json:"booleanFields"` DateFields []string `json:"dateFields"` AdditionalProperties map[string]interface{} } @@ -33,11 +34,12 @@ type _GetDashletFieldsResponse GetDashletFieldsResponse // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewGetDashletFieldsResponse(aggregatableFields []string, numericFields []string, stringFields []string, dateFields []string) *GetDashletFieldsResponse { +func NewGetDashletFieldsResponse(aggregatableFields []string, numericFields []string, stringFields []string, booleanFields []string, dateFields []string) *GetDashletFieldsResponse { this := GetDashletFieldsResponse{} this.AggregatableFields = aggregatableFields this.NumericFields = numericFields this.StringFields = stringFields + this.BooleanFields = booleanFields this.DateFields = dateFields return &this } @@ -122,6 +124,30 @@ func (o *GetDashletFieldsResponse) SetStringFields(v []string) { o.StringFields = v } +// GetBooleanFields returns the BooleanFields field value +func (o *GetDashletFieldsResponse) GetBooleanFields() []string { + if o == nil { + var ret []string + return ret + } + + return o.BooleanFields +} + +// GetBooleanFieldsOk returns a tuple with the BooleanFields field value +// and a boolean to check if the value has been set. +func (o *GetDashletFieldsResponse) GetBooleanFieldsOk() ([]string, bool) { + if o == nil { + return nil, false + } + return o.BooleanFields, true +} + +// SetBooleanFields sets field value +func (o *GetDashletFieldsResponse) SetBooleanFields(v []string) { + o.BooleanFields = v +} + // GetDateFields returns the DateFields field value func (o *GetDashletFieldsResponse) GetDateFields() []string { if o == nil { @@ -159,6 +185,7 @@ func (o GetDashletFieldsResponse) ToMap() (map[string]interface{}, error) { toSerialize["aggregatableFields"] = o.AggregatableFields toSerialize["numericFields"] = o.NumericFields toSerialize["stringFields"] = o.StringFields + toSerialize["booleanFields"] = o.BooleanFields toSerialize["dateFields"] = o.DateFields for key, value := range o.AdditionalProperties { @@ -176,6 +203,7 @@ func (o *GetDashletFieldsResponse) UnmarshalJSON(data []byte) (err error) { "aggregatableFields", "numericFields", "stringFields", + "booleanFields", "dateFields", } @@ -209,6 +237,7 @@ func (o *GetDashletFieldsResponse) UnmarshalJSON(data []byte) (err error) { delete(additionalProperties, "aggregatableFields") delete(additionalProperties, "numericFields") delete(additionalProperties, "stringFields") + delete(additionalProperties, "booleanFields") delete(additionalProperties, "dateFields") o.AdditionalProperties = additionalProperties } diff --git a/pkg/tensorleapapi/model_get_dataset_balancing_params.go b/pkg/tensorleapapi/model_get_dataset_balancing_params.go index 4fcfceac8..bafc28e27 100644 --- a/pkg/tensorleapapi/model_get_dataset_balancing_params.go +++ b/pkg/tensorleapapi/model_get_dataset_balancing_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_download_signed_url_params.go b/pkg/tensorleapapi/model_get_download_signed_url_params.go index 368d4d3f1..0dd936428 100644 --- a/pkg/tensorleapapi/model_get_download_signed_url_params.go +++ b/pkg/tensorleapapi/model_get_download_signed_url_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_download_signed_url_response.go b/pkg/tensorleapapi/model_get_download_signed_url_response.go index fe62ae8b4..51b66f038 100644 --- a/pkg/tensorleapapi/model_get_download_signed_url_response.go +++ b/pkg/tensorleapapi/model_get_download_signed_url_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_environment_info_response.go b/pkg/tensorleapapi/model_get_environment_info_response.go index 1e0dbc7a1..bb3b48d01 100644 --- a/pkg/tensorleapapi/model_get_environment_info_response.go +++ b/pkg/tensorleapapi/model_get_environment_info_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_delete_session_run_params.go b/pkg/tensorleapapi/model_get_exported_model_jobs_params.go similarity index 50% rename from pkg/tensorleapapi/model_delete_session_run_params.go rename to pkg/tensorleapapi/model_get_exported_model_jobs_params.go index 1ca1c3102..066447b55 100644 --- a/pkg/tensorleapapi/model_delete_session_run_params.go +++ b/pkg/tensorleapapi/model_get_exported_model_jobs_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -15,63 +15,63 @@ import ( "fmt" ) -// checks if the DeleteSessionRunParams type satisfies the MappedNullable interface at compile time -var _ MappedNullable = &DeleteSessionRunParams{} +// checks if the GetExportedModelJobsParams type satisfies the MappedNullable interface at compile time +var _ MappedNullable = &GetExportedModelJobsParams{} -// DeleteSessionRunParams struct for DeleteSessionRunParams -type DeleteSessionRunParams struct { - SessionRunId string `json:"sessionRunId"` +// GetExportedModelJobsParams struct for GetExportedModelJobsParams +type GetExportedModelJobsParams struct { + VersionId string `json:"versionId"` ProjectId string `json:"projectId"` AdditionalProperties map[string]interface{} } -type _DeleteSessionRunParams DeleteSessionRunParams +type _GetExportedModelJobsParams GetExportedModelJobsParams -// NewDeleteSessionRunParams instantiates a new DeleteSessionRunParams object +// NewGetExportedModelJobsParams instantiates a new GetExportedModelJobsParams object // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewDeleteSessionRunParams(sessionRunId string, projectId string) *DeleteSessionRunParams { - this := DeleteSessionRunParams{} - this.SessionRunId = sessionRunId +func NewGetExportedModelJobsParams(versionId string, projectId string) *GetExportedModelJobsParams { + this := GetExportedModelJobsParams{} + this.VersionId = versionId this.ProjectId = projectId return &this } -// NewDeleteSessionRunParamsWithDefaults instantiates a new DeleteSessionRunParams object +// NewGetExportedModelJobsParamsWithDefaults instantiates a new GetExportedModelJobsParams object // This constructor will only assign default values to properties that have it defined, // but it doesn't guarantee that properties required by API are set -func NewDeleteSessionRunParamsWithDefaults() *DeleteSessionRunParams { - this := DeleteSessionRunParams{} +func NewGetExportedModelJobsParamsWithDefaults() *GetExportedModelJobsParams { + this := GetExportedModelJobsParams{} return &this } -// GetSessionRunId returns the SessionRunId field value -func (o *DeleteSessionRunParams) GetSessionRunId() string { +// GetVersionId returns the VersionId field value +func (o *GetExportedModelJobsParams) GetVersionId() string { if o == nil { var ret string return ret } - return o.SessionRunId + return o.VersionId } -// GetSessionRunIdOk returns a tuple with the SessionRunId field value +// GetVersionIdOk returns a tuple with the VersionId field value // and a boolean to check if the value has been set. -func (o *DeleteSessionRunParams) GetSessionRunIdOk() (*string, bool) { +func (o *GetExportedModelJobsParams) GetVersionIdOk() (*string, bool) { if o == nil { return nil, false } - return &o.SessionRunId, true + return &o.VersionId, true } -// SetSessionRunId sets field value -func (o *DeleteSessionRunParams) SetSessionRunId(v string) { - o.SessionRunId = v +// SetVersionId sets field value +func (o *GetExportedModelJobsParams) SetVersionId(v string) { + o.VersionId = v } // GetProjectId returns the ProjectId field value -func (o *DeleteSessionRunParams) GetProjectId() string { +func (o *GetExportedModelJobsParams) GetProjectId() string { if o == nil { var ret string return ret @@ -82,7 +82,7 @@ func (o *DeleteSessionRunParams) GetProjectId() string { // GetProjectIdOk returns a tuple with the ProjectId field value // and a boolean to check if the value has been set. -func (o *DeleteSessionRunParams) GetProjectIdOk() (*string, bool) { +func (o *GetExportedModelJobsParams) GetProjectIdOk() (*string, bool) { if o == nil { return nil, false } @@ -90,11 +90,11 @@ func (o *DeleteSessionRunParams) GetProjectIdOk() (*string, bool) { } // SetProjectId sets field value -func (o *DeleteSessionRunParams) SetProjectId(v string) { +func (o *GetExportedModelJobsParams) SetProjectId(v string) { o.ProjectId = v } -func (o DeleteSessionRunParams) MarshalJSON() ([]byte, error) { +func (o GetExportedModelJobsParams) MarshalJSON() ([]byte, error) { toSerialize, err := o.ToMap() if err != nil { return []byte{}, err @@ -102,9 +102,9 @@ func (o DeleteSessionRunParams) MarshalJSON() ([]byte, error) { return json.Marshal(toSerialize) } -func (o DeleteSessionRunParams) ToMap() (map[string]interface{}, error) { +func (o GetExportedModelJobsParams) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} - toSerialize["sessionRunId"] = o.SessionRunId + toSerialize["versionId"] = o.VersionId toSerialize["projectId"] = o.ProjectId for key, value := range o.AdditionalProperties { @@ -114,12 +114,12 @@ func (o DeleteSessionRunParams) ToMap() (map[string]interface{}, error) { return toSerialize, nil } -func (o *DeleteSessionRunParams) UnmarshalJSON(data []byte) (err error) { +func (o *GetExportedModelJobsParams) UnmarshalJSON(data []byte) (err error) { // This validates that all required properties are included in the JSON object // by unmarshalling the object into a generic map with string keys and checking // that every required field exists as a key in the generic map. requiredProperties := []string{ - "sessionRunId", + "versionId", "projectId", } @@ -137,20 +137,20 @@ func (o *DeleteSessionRunParams) UnmarshalJSON(data []byte) (err error) { } } - varDeleteSessionRunParams := _DeleteSessionRunParams{} + varGetExportedModelJobsParams := _GetExportedModelJobsParams{} - err = json.Unmarshal(data, &varDeleteSessionRunParams) + err = json.Unmarshal(data, &varGetExportedModelJobsParams) if err != nil { return err } - *o = DeleteSessionRunParams(varDeleteSessionRunParams) + *o = GetExportedModelJobsParams(varGetExportedModelJobsParams) additionalProperties := make(map[string]interface{}) if err = json.Unmarshal(data, &additionalProperties); err == nil { - delete(additionalProperties, "sessionRunId") + delete(additionalProperties, "versionId") delete(additionalProperties, "projectId") o.AdditionalProperties = additionalProperties } @@ -158,38 +158,38 @@ func (o *DeleteSessionRunParams) UnmarshalJSON(data []byte) (err error) { return err } -type NullableDeleteSessionRunParams struct { - value *DeleteSessionRunParams +type NullableGetExportedModelJobsParams struct { + value *GetExportedModelJobsParams isSet bool } -func (v NullableDeleteSessionRunParams) Get() *DeleteSessionRunParams { +func (v NullableGetExportedModelJobsParams) Get() *GetExportedModelJobsParams { return v.value } -func (v *NullableDeleteSessionRunParams) Set(val *DeleteSessionRunParams) { +func (v *NullableGetExportedModelJobsParams) Set(val *GetExportedModelJobsParams) { v.value = val v.isSet = true } -func (v NullableDeleteSessionRunParams) IsSet() bool { +func (v NullableGetExportedModelJobsParams) IsSet() bool { return v.isSet } -func (v *NullableDeleteSessionRunParams) Unset() { +func (v *NullableGetExportedModelJobsParams) Unset() { v.value = nil v.isSet = false } -func NewNullableDeleteSessionRunParams(val *DeleteSessionRunParams) *NullableDeleteSessionRunParams { - return &NullableDeleteSessionRunParams{value: val, isSet: true} +func NewNullableGetExportedModelJobsParams(val *GetExportedModelJobsParams) *NullableGetExportedModelJobsParams { + return &NullableGetExportedModelJobsParams{value: val, isSet: true} } -func (v NullableDeleteSessionRunParams) MarshalJSON() ([]byte, error) { +func (v NullableGetExportedModelJobsParams) MarshalJSON() ([]byte, error) { return json.Marshal(v.value) } -func (v *NullableDeleteSessionRunParams) UnmarshalJSON(src []byte) error { +func (v *NullableGetExportedModelJobsParams) UnmarshalJSON(src []byte) error { v.isSet = true return json.Unmarshal(src, &v.value) } diff --git a/pkg/tensorleapapi/model_get_exported_session_run_jobs_response.go b/pkg/tensorleapapi/model_get_exported_model_jobs_response.go similarity index 52% rename from pkg/tensorleapapi/model_get_exported_session_run_jobs_response.go rename to pkg/tensorleapapi/model_get_exported_model_jobs_response.go index 4ebd6dbca..fe776ebfa 100644 --- a/pkg/tensorleapapi/model_get_exported_session_run_jobs_response.go +++ b/pkg/tensorleapapi/model_get_exported_model_jobs_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -15,37 +15,37 @@ import ( "fmt" ) -// checks if the GetExportedSessionRunJobsResponse type satisfies the MappedNullable interface at compile time -var _ MappedNullable = &GetExportedSessionRunJobsResponse{} +// checks if the GetExportedModelJobsResponse type satisfies the MappedNullable interface at compile time +var _ MappedNullable = &GetExportedModelJobsResponse{} -// GetExportedSessionRunJobsResponse struct for GetExportedSessionRunJobsResponse -type GetExportedSessionRunJobsResponse struct { +// GetExportedModelJobsResponse struct for GetExportedModelJobsResponse +type GetExportedModelJobsResponse struct { ExportedModelData []ExportedModelData `json:"exportedModelData"` AdditionalProperties map[string]interface{} } -type _GetExportedSessionRunJobsResponse GetExportedSessionRunJobsResponse +type _GetExportedModelJobsResponse GetExportedModelJobsResponse -// NewGetExportedSessionRunJobsResponse instantiates a new GetExportedSessionRunJobsResponse object +// NewGetExportedModelJobsResponse instantiates a new GetExportedModelJobsResponse object // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewGetExportedSessionRunJobsResponse(exportedModelData []ExportedModelData) *GetExportedSessionRunJobsResponse { - this := GetExportedSessionRunJobsResponse{} +func NewGetExportedModelJobsResponse(exportedModelData []ExportedModelData) *GetExportedModelJobsResponse { + this := GetExportedModelJobsResponse{} this.ExportedModelData = exportedModelData return &this } -// NewGetExportedSessionRunJobsResponseWithDefaults instantiates a new GetExportedSessionRunJobsResponse object +// NewGetExportedModelJobsResponseWithDefaults instantiates a new GetExportedModelJobsResponse object // This constructor will only assign default values to properties that have it defined, // but it doesn't guarantee that properties required by API are set -func NewGetExportedSessionRunJobsResponseWithDefaults() *GetExportedSessionRunJobsResponse { - this := GetExportedSessionRunJobsResponse{} +func NewGetExportedModelJobsResponseWithDefaults() *GetExportedModelJobsResponse { + this := GetExportedModelJobsResponse{} return &this } // GetExportedModelData returns the ExportedModelData field value -func (o *GetExportedSessionRunJobsResponse) GetExportedModelData() []ExportedModelData { +func (o *GetExportedModelJobsResponse) GetExportedModelData() []ExportedModelData { if o == nil { var ret []ExportedModelData return ret @@ -56,7 +56,7 @@ func (o *GetExportedSessionRunJobsResponse) GetExportedModelData() []ExportedMod // GetExportedModelDataOk returns a tuple with the ExportedModelData field value // and a boolean to check if the value has been set. -func (o *GetExportedSessionRunJobsResponse) GetExportedModelDataOk() ([]ExportedModelData, bool) { +func (o *GetExportedModelJobsResponse) GetExportedModelDataOk() ([]ExportedModelData, bool) { if o == nil { return nil, false } @@ -64,11 +64,11 @@ func (o *GetExportedSessionRunJobsResponse) GetExportedModelDataOk() ([]Exported } // SetExportedModelData sets field value -func (o *GetExportedSessionRunJobsResponse) SetExportedModelData(v []ExportedModelData) { +func (o *GetExportedModelJobsResponse) SetExportedModelData(v []ExportedModelData) { o.ExportedModelData = v } -func (o GetExportedSessionRunJobsResponse) MarshalJSON() ([]byte, error) { +func (o GetExportedModelJobsResponse) MarshalJSON() ([]byte, error) { toSerialize, err := o.ToMap() if err != nil { return []byte{}, err @@ -76,7 +76,7 @@ func (o GetExportedSessionRunJobsResponse) MarshalJSON() ([]byte, error) { return json.Marshal(toSerialize) } -func (o GetExportedSessionRunJobsResponse) ToMap() (map[string]interface{}, error) { +func (o GetExportedModelJobsResponse) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} toSerialize["exportedModelData"] = o.ExportedModelData @@ -87,7 +87,7 @@ func (o GetExportedSessionRunJobsResponse) ToMap() (map[string]interface{}, erro return toSerialize, nil } -func (o *GetExportedSessionRunJobsResponse) UnmarshalJSON(data []byte) (err error) { +func (o *GetExportedModelJobsResponse) UnmarshalJSON(data []byte) (err error) { // This validates that all required properties are included in the JSON object // by unmarshalling the object into a generic map with string keys and checking // that every required field exists as a key in the generic map. @@ -109,15 +109,15 @@ func (o *GetExportedSessionRunJobsResponse) UnmarshalJSON(data []byte) (err erro } } - varGetExportedSessionRunJobsResponse := _GetExportedSessionRunJobsResponse{} + varGetExportedModelJobsResponse := _GetExportedModelJobsResponse{} - err = json.Unmarshal(data, &varGetExportedSessionRunJobsResponse) + err = json.Unmarshal(data, &varGetExportedModelJobsResponse) if err != nil { return err } - *o = GetExportedSessionRunJobsResponse(varGetExportedSessionRunJobsResponse) + *o = GetExportedModelJobsResponse(varGetExportedModelJobsResponse) additionalProperties := make(map[string]interface{}) @@ -129,38 +129,38 @@ func (o *GetExportedSessionRunJobsResponse) UnmarshalJSON(data []byte) (err erro return err } -type NullableGetExportedSessionRunJobsResponse struct { - value *GetExportedSessionRunJobsResponse +type NullableGetExportedModelJobsResponse struct { + value *GetExportedModelJobsResponse isSet bool } -func (v NullableGetExportedSessionRunJobsResponse) Get() *GetExportedSessionRunJobsResponse { +func (v NullableGetExportedModelJobsResponse) Get() *GetExportedModelJobsResponse { return v.value } -func (v *NullableGetExportedSessionRunJobsResponse) Set(val *GetExportedSessionRunJobsResponse) { +func (v *NullableGetExportedModelJobsResponse) Set(val *GetExportedModelJobsResponse) { v.value = val v.isSet = true } -func (v NullableGetExportedSessionRunJobsResponse) IsSet() bool { +func (v NullableGetExportedModelJobsResponse) IsSet() bool { return v.isSet } -func (v *NullableGetExportedSessionRunJobsResponse) Unset() { +func (v *NullableGetExportedModelJobsResponse) Unset() { v.value = nil v.isSet = false } -func NewNullableGetExportedSessionRunJobsResponse(val *GetExportedSessionRunJobsResponse) *NullableGetExportedSessionRunJobsResponse { - return &NullableGetExportedSessionRunJobsResponse{value: val, isSet: true} +func NewNullableGetExportedModelJobsResponse(val *GetExportedModelJobsResponse) *NullableGetExportedModelJobsResponse { + return &NullableGetExportedModelJobsResponse{value: val, isSet: true} } -func (v NullableGetExportedSessionRunJobsResponse) MarshalJSON() ([]byte, error) { +func (v NullableGetExportedModelJobsResponse) MarshalJSON() ([]byte, error) { return json.Marshal(v.value) } -func (v *NullableGetExportedSessionRunJobsResponse) UnmarshalJSON(src []byte) error { +func (v *NullableGetExportedModelJobsResponse) UnmarshalJSON(src []byte) error { v.isSet = true return json.Unmarshal(src, &v.value) } diff --git a/pkg/tensorleapapi/model_get_fields_values_request.go b/pkg/tensorleapapi/model_get_fields_values_request.go index 7575a7a09..5d8fbbe29 100644 --- a/pkg/tensorleapapi/model_get_fields_values_request.go +++ b/pkg/tensorleapapi/model_get_fields_values_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -21,7 +21,7 @@ var _ MappedNullable = &GetFieldsValuesRequest{} // GetFieldsValuesRequest struct for GetFieldsValuesRequest type GetFieldsValuesRequest struct { Filters []ESFilter `json:"filters"` - SessionRunIds []string `json:"sessionRunIds"` + InferenceArtifactIds []string `json:"inferenceArtifactIds"` Fields []QueryFieldValues `json:"fields"` ProjectId string `json:"projectId"` AdditionalProperties map[string]interface{} @@ -33,10 +33,10 @@ type _GetFieldsValuesRequest GetFieldsValuesRequest // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewGetFieldsValuesRequest(filters []ESFilter, sessionRunIds []string, fields []QueryFieldValues, projectId string) *GetFieldsValuesRequest { +func NewGetFieldsValuesRequest(filters []ESFilter, inferenceArtifactIds []string, fields []QueryFieldValues, projectId string) *GetFieldsValuesRequest { this := GetFieldsValuesRequest{} this.Filters = filters - this.SessionRunIds = sessionRunIds + this.InferenceArtifactIds = inferenceArtifactIds this.Fields = fields this.ProjectId = projectId return &this @@ -74,28 +74,28 @@ func (o *GetFieldsValuesRequest) SetFilters(v []ESFilter) { o.Filters = v } -// GetSessionRunIds returns the SessionRunIds field value -func (o *GetFieldsValuesRequest) GetSessionRunIds() []string { +// GetInferenceArtifactIds returns the InferenceArtifactIds field value +func (o *GetFieldsValuesRequest) GetInferenceArtifactIds() []string { if o == nil { var ret []string return ret } - return o.SessionRunIds + return o.InferenceArtifactIds } -// GetSessionRunIdsOk returns a tuple with the SessionRunIds field value +// GetInferenceArtifactIdsOk returns a tuple with the InferenceArtifactIds field value // and a boolean to check if the value has been set. -func (o *GetFieldsValuesRequest) GetSessionRunIdsOk() ([]string, bool) { +func (o *GetFieldsValuesRequest) GetInferenceArtifactIdsOk() ([]string, bool) { if o == nil { return nil, false } - return o.SessionRunIds, true + return o.InferenceArtifactIds, true } -// SetSessionRunIds sets field value -func (o *GetFieldsValuesRequest) SetSessionRunIds(v []string) { - o.SessionRunIds = v +// SetInferenceArtifactIds sets field value +func (o *GetFieldsValuesRequest) SetInferenceArtifactIds(v []string) { + o.InferenceArtifactIds = v } // GetFields returns the Fields field value @@ -157,7 +157,7 @@ func (o GetFieldsValuesRequest) MarshalJSON() ([]byte, error) { func (o GetFieldsValuesRequest) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} toSerialize["filters"] = o.Filters - toSerialize["sessionRunIds"] = o.SessionRunIds + toSerialize["inferenceArtifactIds"] = o.InferenceArtifactIds toSerialize["fields"] = o.Fields toSerialize["projectId"] = o.ProjectId @@ -174,7 +174,7 @@ func (o *GetFieldsValuesRequest) UnmarshalJSON(data []byte) (err error) { // that every required field exists as a key in the generic map. requiredProperties := []string{ "filters", - "sessionRunIds", + "inferenceArtifactIds", "fields", "projectId", } @@ -207,7 +207,7 @@ func (o *GetFieldsValuesRequest) UnmarshalJSON(data []byte) (err error) { if err = json.Unmarshal(data, &additionalProperties); err == nil { delete(additionalProperties, "filters") - delete(additionalProperties, "sessionRunIds") + delete(additionalProperties, "inferenceArtifactIds") delete(additionalProperties, "fields") delete(additionalProperties, "projectId") o.AdditionalProperties = additionalProperties diff --git a/pkg/tensorleapapi/model_get_fields_values_response.go b/pkg/tensorleapapi/model_get_fields_values_response.go index e65919f66..7bc439952 100644 --- a/pkg/tensorleapapi/model_get_fields_values_response.go +++ b/pkg/tensorleapapi/model_get_fields_values_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_fields_values_response_results_inner.go b/pkg/tensorleapapi/model_get_fields_values_response_results_inner.go index 44b5c578d..037c83609 100644 --- a/pkg/tensorleapapi/model_get_fields_values_response_results_inner.go +++ b/pkg/tensorleapapi/model_get_fields_values_response_results_inner.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_generated_labels_params.go b/pkg/tensorleapapi/model_get_generated_labels_params.go index 13bc5834d..e659e38fc 100644 --- a/pkg/tensorleapapi/model_get_generated_labels_params.go +++ b/pkg/tensorleapapi/model_get_generated_labels_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_generic_base_image_types_response.go b/pkg/tensorleapapi/model_get_generic_base_image_types_response.go index 7b56a02e8..baa520967 100644 --- a/pkg/tensorleapapi/model_get_generic_base_image_types_response.go +++ b/pkg/tensorleapapi/model_get_generic_base_image_types_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_insights_params.go b/pkg/tensorleapapi/model_get_insights_params.go index 9dc01a36e..0b11ca8b8 100644 --- a/pkg/tensorleapapi/model_get_insights_params.go +++ b/pkg/tensorleapapi/model_get_insights_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -20,8 +20,8 @@ var _ MappedNullable = &GetInsightsParams{} // GetInsightsParams struct for GetInsightsParams type GetInsightsParams struct { - SessionRunId string `json:"sessionRunId"` - ProjectId string `json:"projectId"` + VersionId *string `json:"versionId,omitempty"` + ProjectId string `json:"projectId"` AdditionalProperties map[string]interface{} } @@ -31,9 +31,8 @@ type _GetInsightsParams GetInsightsParams // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewGetInsightsParams(sessionRunId string, projectId string) *GetInsightsParams { +func NewGetInsightsParams(projectId string) *GetInsightsParams { this := GetInsightsParams{} - this.SessionRunId = sessionRunId this.ProjectId = projectId return &this } @@ -46,28 +45,36 @@ func NewGetInsightsParamsWithDefaults() *GetInsightsParams { return &this } -// GetSessionRunId returns the SessionRunId field value -func (o *GetInsightsParams) GetSessionRunId() string { - if o == nil { +// GetVersionId returns the VersionId field value if set, zero value otherwise. +func (o *GetInsightsParams) GetVersionId() string { + if o == nil || IsNil(o.VersionId) { var ret string return ret } - - return o.SessionRunId + return *o.VersionId } -// GetSessionRunIdOk returns a tuple with the SessionRunId field value +// GetVersionIdOk returns a tuple with the VersionId field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *GetInsightsParams) GetSessionRunIdOk() (*string, bool) { - if o == nil { +func (o *GetInsightsParams) GetVersionIdOk() (*string, bool) { + if o == nil || IsNil(o.VersionId) { return nil, false } - return &o.SessionRunId, true + return o.VersionId, true +} + +// HasVersionId returns a boolean if a field has been set. +func (o *GetInsightsParams) HasVersionId() bool { + if o != nil && !IsNil(o.VersionId) { + return true + } + + return false } -// SetSessionRunId sets field value -func (o *GetInsightsParams) SetSessionRunId(v string) { - o.SessionRunId = v +// SetVersionId gets a reference to the given string and assigns it to the VersionId field. +func (o *GetInsightsParams) SetVersionId(v string) { + o.VersionId = &v } // GetProjectId returns the ProjectId field value @@ -104,7 +111,9 @@ func (o GetInsightsParams) MarshalJSON() ([]byte, error) { func (o GetInsightsParams) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} - toSerialize["sessionRunId"] = o.SessionRunId + if !IsNil(o.VersionId) { + toSerialize["versionId"] = o.VersionId + } toSerialize["projectId"] = o.ProjectId for key, value := range o.AdditionalProperties { @@ -119,7 +128,6 @@ func (o *GetInsightsParams) UnmarshalJSON(data []byte) (err error) { // by unmarshalling the object into a generic map with string keys and checking // that every required field exists as a key in the generic map. requiredProperties := []string{ - "sessionRunId", "projectId", } @@ -150,7 +158,7 @@ func (o *GetInsightsParams) UnmarshalJSON(data []byte) (err error) { additionalProperties := make(map[string]interface{}) if err = json.Unmarshal(data, &additionalProperties); err == nil { - delete(additionalProperties, "sessionRunId") + delete(additionalProperties, "versionId") delete(additionalProperties, "projectId") o.AdditionalProperties = additionalProperties } diff --git a/pkg/tensorleapapi/model_get_insights_response.go b/pkg/tensorleapapi/model_get_insights_response.go index a46dd1d11..132d21d59 100644 --- a/pkg/tensorleapapi/model_get_insights_response.go +++ b/pkg/tensorleapapi/model_get_insights_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_issue_file_upload_signed_url.go b/pkg/tensorleapapi/model_get_issue_file_upload_signed_url.go index 9cd3b3bae..13a8f1ba7 100644 --- a/pkg/tensorleapapi/model_get_issue_file_upload_signed_url.go +++ b/pkg/tensorleapapi/model_get_issue_file_upload_signed_url.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_job_logs_params.go b/pkg/tensorleapapi/model_get_job_logs_params.go index d3f0518bd..19336fe2b 100644 --- a/pkg/tensorleapapi/model_get_job_logs_params.go +++ b/pkg/tensorleapapi/model_get_job_logs_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_job_logs_response.go b/pkg/tensorleapapi/model_get_job_logs_response.go index fd0cb6fd0..825c82aff 100644 --- a/pkg/tensorleapapi/model_get_job_logs_response.go +++ b/pkg/tensorleapapi/model_get_job_logs_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_jobs_filter_params.go b/pkg/tensorleapapi/model_get_jobs_filter_params.go index d2d35723e..99e5baa82 100644 --- a/pkg/tensorleapapi/model_get_jobs_filter_params.go +++ b/pkg/tensorleapapi/model_get_jobs_filter_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -21,7 +21,7 @@ var _ MappedNullable = &GetJobsFilterParams{} // GetJobsFilterParams struct for GetJobsFilterParams type GetJobsFilterParams struct { LastUpdated *time.Time `json:"lastUpdated,omitempty"` - SessionRunIds []string `json:"sessionRunIds,omitempty"` + VersionIds []string `json:"versionIds,omitempty"` Types []JobType `json:"types,omitempty"` SubTypes []JobSubType `json:"subTypes,omitempty"` Trigger *JobTrigger `json:"trigger,omitempty"` @@ -84,36 +84,36 @@ func (o *GetJobsFilterParams) SetLastUpdated(v time.Time) { o.LastUpdated = &v } -// GetSessionRunIds returns the SessionRunIds field value if set, zero value otherwise. -func (o *GetJobsFilterParams) GetSessionRunIds() []string { - if o == nil || IsNil(o.SessionRunIds) { +// GetVersionIds returns the VersionIds field value if set, zero value otherwise. +func (o *GetJobsFilterParams) GetVersionIds() []string { + if o == nil || IsNil(o.VersionIds) { var ret []string return ret } - return o.SessionRunIds + return o.VersionIds } -// GetSessionRunIdsOk returns a tuple with the SessionRunIds field value if set, nil otherwise +// GetVersionIdsOk returns a tuple with the VersionIds field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *GetJobsFilterParams) GetSessionRunIdsOk() ([]string, bool) { - if o == nil || IsNil(o.SessionRunIds) { +func (o *GetJobsFilterParams) GetVersionIdsOk() ([]string, bool) { + if o == nil || IsNil(o.VersionIds) { return nil, false } - return o.SessionRunIds, true + return o.VersionIds, true } -// HasSessionRunIds returns a boolean if a field has been set. -func (o *GetJobsFilterParams) HasSessionRunIds() bool { - if o != nil && !IsNil(o.SessionRunIds) { +// HasVersionIds returns a boolean if a field has been set. +func (o *GetJobsFilterParams) HasVersionIds() bool { + if o != nil && !IsNil(o.VersionIds) { return true } return false } -// SetSessionRunIds gets a reference to the given []string and assigns it to the SessionRunIds field. -func (o *GetJobsFilterParams) SetSessionRunIds(v []string) { - o.SessionRunIds = v +// SetVersionIds gets a reference to the given []string and assigns it to the VersionIds field. +func (o *GetJobsFilterParams) SetVersionIds(v []string) { + o.VersionIds = v } // GetTypes returns the Types field value if set, zero value otherwise. @@ -385,8 +385,8 @@ func (o GetJobsFilterParams) ToMap() (map[string]interface{}, error) { if !IsNil(o.LastUpdated) { toSerialize["lastUpdated"] = o.LastUpdated } - if !IsNil(o.SessionRunIds) { - toSerialize["sessionRunIds"] = o.SessionRunIds + if !IsNil(o.VersionIds) { + toSerialize["versionIds"] = o.VersionIds } if !IsNil(o.Types) { toSerialize["types"] = o.Types @@ -435,7 +435,7 @@ func (o *GetJobsFilterParams) UnmarshalJSON(data []byte) (err error) { if err = json.Unmarshal(data, &additionalProperties); err == nil { delete(additionalProperties, "lastUpdated") - delete(additionalProperties, "sessionRunIds") + delete(additionalProperties, "versionIds") delete(additionalProperties, "types") delete(additionalProperties, "subTypes") delete(additionalProperties, "trigger") diff --git a/pkg/tensorleapapi/model_get_jobs_response.go b/pkg/tensorleapapi/model_get_jobs_response.go index ca4f57d96..c3627e523 100644 --- a/pkg/tensorleapapi/model_get_jobs_response.go +++ b/pkg/tensorleapapi/model_get_jobs_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_latest_exported_project_params.go b/pkg/tensorleapapi/model_get_latest_exported_project_params.go index 3c2770b32..b21e9709c 100644 --- a/pkg/tensorleapapi/model_get_latest_exported_project_params.go +++ b/pkg/tensorleapapi/model_get_latest_exported_project_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_machine_types_response.go b/pkg/tensorleapapi/model_get_machine_types_response.go index 201c58f23..4b07e73e2 100644 --- a/pkg/tensorleapapi/model_get_machine_types_response.go +++ b/pkg/tensorleapapi/model_get_machine_types_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_max_active_users_response.go b/pkg/tensorleapapi/model_get_max_active_users_response.go index 62619a773..9f5258e60 100644 --- a/pkg/tensorleapapi/model_get_max_active_users_response.go +++ b/pkg/tensorleapapi/model_get_max_active_users_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_notifications_by_filter_params.go b/pkg/tensorleapapi/model_get_notifications_by_filter_params.go index e5d26ac3e..7d0654035 100644 --- a/pkg/tensorleapapi/model_get_notifications_by_filter_params.go +++ b/pkg/tensorleapapi/model_get_notifications_by_filter_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_notifications_by_filter_response.go b/pkg/tensorleapapi/model_get_notifications_by_filter_response.go index 89e5fef4a..bfeae4d31 100644 --- a/pkg/tensorleapapi/model_get_notifications_by_filter_response.go +++ b/pkg/tensorleapapi/model_get_notifications_by_filter_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_notifications_response.go b/pkg/tensorleapapi/model_get_notifications_response.go index e7444e323..9333f5334 100644 --- a/pkg/tensorleapapi/model_get_notifications_response.go +++ b/pkg/tensorleapapi/model_get_notifications_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_project_dashboards_params.go b/pkg/tensorleapapi/model_get_project_dashboards_params.go index 58517018f..f44408a47 100644 --- a/pkg/tensorleapapi/model_get_project_dashboards_params.go +++ b/pkg/tensorleapapi/model_get_project_dashboards_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_project_dashboards_response.go b/pkg/tensorleapapi/model_get_project_dashboards_response.go index f035ea504..e6f658f7e 100644 --- a/pkg/tensorleapapi/model_get_project_dashboards_response.go +++ b/pkg/tensorleapapi/model_get_project_dashboards_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_project_issues_params.go b/pkg/tensorleapapi/model_get_project_issues_params.go index 06e7fe3a0..966e10ef6 100644 --- a/pkg/tensorleapapi/model_get_project_issues_params.go +++ b/pkg/tensorleapapi/model_get_project_issues_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_project_issues_response.go b/pkg/tensorleapapi/model_get_project_issues_response.go index 31cf23652..1b0efdb9d 100644 --- a/pkg/tensorleapapi/model_get_project_issues_response.go +++ b/pkg/tensorleapapi/model_get_project_issues_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_project_slim_versions_response.go b/pkg/tensorleapapi/model_get_project_slim_versions_response.go index 329924c21..3f188f28e 100644 --- a/pkg/tensorleapapi/model_get_project_slim_versions_response.go +++ b/pkg/tensorleapapi/model_get_project_slim_versions_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_project_versions_params.go b/pkg/tensorleapapi/model_get_project_versions_params.go index df7e49e24..dc35da34f 100644 --- a/pkg/tensorleapapi/model_get_project_versions_params.go +++ b/pkg/tensorleapapi/model_get_project_versions_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_projects_response.go b/pkg/tensorleapapi/model_get_projects_response.go index b59199c3a..5ac7df907 100644 --- a/pkg/tensorleapapi/model_get_projects_response.go +++ b/pkg/tensorleapapi/model_get_projects_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_sample_collections_params.go b/pkg/tensorleapapi/model_get_sample_collections_params.go index c613736ee..192359b9b 100644 --- a/pkg/tensorleapapi/model_get_sample_collections_params.go +++ b/pkg/tensorleapapi/model_get_sample_collections_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_sample_collections_response.go b/pkg/tensorleapapi/model_get_sample_collections_response.go index 5e4851b18..24f7d6d1a 100644 --- a/pkg/tensorleapapi/model_get_sample_collections_response.go +++ b/pkg/tensorleapapi/model_get_sample_collections_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_sample_enrichment_params.go b/pkg/tensorleapapi/model_get_sample_enrichment_params.go index 43d461d89..797510b14 100644 --- a/pkg/tensorleapapi/model_get_sample_enrichment_params.go +++ b/pkg/tensorleapapi/model_get_sample_enrichment_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -23,7 +23,7 @@ type GetSampleEnrichmentParams struct { // Visible / batch samples to fetch data for. Samples []SampleIdentity `json:"samples"` Epoch float64 `json:"epoch"` - SessionRunIds []string `json:"sessionRunIds"` + InferenceArtifactIds []string `json:"inferenceArtifactIds"` ProjectId string `json:"projectId"` AdditionalProperties map[string]interface{} } @@ -34,11 +34,11 @@ type _GetSampleEnrichmentParams GetSampleEnrichmentParams // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewGetSampleEnrichmentParams(samples []SampleIdentity, epoch float64, sessionRunIds []string, projectId string) *GetSampleEnrichmentParams { +func NewGetSampleEnrichmentParams(samples []SampleIdentity, epoch float64, inferenceArtifactIds []string, projectId string) *GetSampleEnrichmentParams { this := GetSampleEnrichmentParams{} this.Samples = samples this.Epoch = epoch - this.SessionRunIds = sessionRunIds + this.InferenceArtifactIds = inferenceArtifactIds this.ProjectId = projectId return &this } @@ -99,28 +99,28 @@ func (o *GetSampleEnrichmentParams) SetEpoch(v float64) { o.Epoch = v } -// GetSessionRunIds returns the SessionRunIds field value -func (o *GetSampleEnrichmentParams) GetSessionRunIds() []string { +// GetInferenceArtifactIds returns the InferenceArtifactIds field value +func (o *GetSampleEnrichmentParams) GetInferenceArtifactIds() []string { if o == nil { var ret []string return ret } - return o.SessionRunIds + return o.InferenceArtifactIds } -// GetSessionRunIdsOk returns a tuple with the SessionRunIds field value +// GetInferenceArtifactIdsOk returns a tuple with the InferenceArtifactIds field value // and a boolean to check if the value has been set. -func (o *GetSampleEnrichmentParams) GetSessionRunIdsOk() ([]string, bool) { +func (o *GetSampleEnrichmentParams) GetInferenceArtifactIdsOk() ([]string, bool) { if o == nil { return nil, false } - return o.SessionRunIds, true + return o.InferenceArtifactIds, true } -// SetSessionRunIds sets field value -func (o *GetSampleEnrichmentParams) SetSessionRunIds(v []string) { - o.SessionRunIds = v +// SetInferenceArtifactIds sets field value +func (o *GetSampleEnrichmentParams) SetInferenceArtifactIds(v []string) { + o.InferenceArtifactIds = v } // GetProjectId returns the ProjectId field value @@ -159,7 +159,7 @@ func (o GetSampleEnrichmentParams) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} toSerialize["samples"] = o.Samples toSerialize["epoch"] = o.Epoch - toSerialize["sessionRunIds"] = o.SessionRunIds + toSerialize["inferenceArtifactIds"] = o.InferenceArtifactIds toSerialize["projectId"] = o.ProjectId for key, value := range o.AdditionalProperties { @@ -176,7 +176,7 @@ func (o *GetSampleEnrichmentParams) UnmarshalJSON(data []byte) (err error) { requiredProperties := []string{ "samples", "epoch", - "sessionRunIds", + "inferenceArtifactIds", "projectId", } @@ -209,7 +209,7 @@ func (o *GetSampleEnrichmentParams) UnmarshalJSON(data []byte) (err error) { if err = json.Unmarshal(data, &additionalProperties); err == nil { delete(additionalProperties, "samples") delete(additionalProperties, "epoch") - delete(additionalProperties, "sessionRunIds") + delete(additionalProperties, "inferenceArtifactIds") delete(additionalProperties, "projectId") o.AdditionalProperties = additionalProperties } diff --git a/pkg/tensorleapapi/model_get_sample_enrichment_response.go b/pkg/tensorleapapi/model_get_sample_enrichment_response.go index bb7f8a2fb..989571bb1 100644 --- a/pkg/tensorleapapi/model_get_sample_enrichment_response.go +++ b/pkg/tensorleapapi/model_get_sample_enrichment_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_sample_enrichment_response_samples_inner.go b/pkg/tensorleapapi/model_get_sample_enrichment_response_samples_inner.go index c5d5c2035..88692fb3d 100644 --- a/pkg/tensorleapapi/model_get_sample_enrichment_response_samples_inner.go +++ b/pkg/tensorleapapi/model_get_sample_enrichment_response_samples_inner.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_sample_visualizations_paths_params.go b/pkg/tensorleapapi/model_get_sample_visualizations_paths_params.go index 9da0adf2d..76ba18cfa 100644 --- a/pkg/tensorleapapi/model_get_sample_visualizations_paths_params.go +++ b/pkg/tensorleapapi/model_get_sample_visualizations_paths_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_sample_visualizations_paths_response.go b/pkg/tensorleapapi/model_get_sample_visualizations_paths_response.go index bbbfc56da..1487013ba 100644 --- a/pkg/tensorleapapi/model_get_sample_visualizations_paths_response.go +++ b/pkg/tensorleapapi/model_get_sample_visualizations_paths_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_scatter_sample_visualizations_params.go b/pkg/tensorleapapi/model_get_scatter_sample_visualizations_params.go index 96b13f4cd..1f3d54f86 100644 --- a/pkg/tensorleapapi/model_get_scatter_sample_visualizations_params.go +++ b/pkg/tensorleapapi/model_get_scatter_sample_visualizations_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -20,9 +20,8 @@ var _ MappedNullable = &GetScatterSampleVisualizationsParams{} // GetScatterSampleVisualizationsParams struct for GetScatterSampleVisualizationsParams type GetScatterSampleVisualizationsParams struct { - SessionRunId string `json:"sessionRunId"` - ProjectId string `json:"projectId"` - Epoch float64 `json:"epoch"` + VersionId string `json:"versionId"` + ProjectId string `json:"projectId"` AdditionalProperties map[string]interface{} } @@ -32,11 +31,10 @@ type _GetScatterSampleVisualizationsParams GetScatterSampleVisualizationsParams // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewGetScatterSampleVisualizationsParams(sessionRunId string, projectId string, epoch float64) *GetScatterSampleVisualizationsParams { +func NewGetScatterSampleVisualizationsParams(versionId string, projectId string) *GetScatterSampleVisualizationsParams { this := GetScatterSampleVisualizationsParams{} - this.SessionRunId = sessionRunId + this.VersionId = versionId this.ProjectId = projectId - this.Epoch = epoch return &this } @@ -48,28 +46,28 @@ func NewGetScatterSampleVisualizationsParamsWithDefaults() *GetScatterSampleVisu return &this } -// GetSessionRunId returns the SessionRunId field value -func (o *GetScatterSampleVisualizationsParams) GetSessionRunId() string { +// GetVersionId returns the VersionId field value +func (o *GetScatterSampleVisualizationsParams) GetVersionId() string { if o == nil { var ret string return ret } - return o.SessionRunId + return o.VersionId } -// GetSessionRunIdOk returns a tuple with the SessionRunId field value +// GetVersionIdOk returns a tuple with the VersionId field value // and a boolean to check if the value has been set. -func (o *GetScatterSampleVisualizationsParams) GetSessionRunIdOk() (*string, bool) { +func (o *GetScatterSampleVisualizationsParams) GetVersionIdOk() (*string, bool) { if o == nil { return nil, false } - return &o.SessionRunId, true + return &o.VersionId, true } -// SetSessionRunId sets field value -func (o *GetScatterSampleVisualizationsParams) SetSessionRunId(v string) { - o.SessionRunId = v +// SetVersionId sets field value +func (o *GetScatterSampleVisualizationsParams) SetVersionId(v string) { + o.VersionId = v } // GetProjectId returns the ProjectId field value @@ -96,30 +94,6 @@ func (o *GetScatterSampleVisualizationsParams) SetProjectId(v string) { o.ProjectId = v } -// GetEpoch returns the Epoch field value -func (o *GetScatterSampleVisualizationsParams) GetEpoch() float64 { - if o == nil { - var ret float64 - return ret - } - - return o.Epoch -} - -// GetEpochOk returns a tuple with the Epoch field value -// and a boolean to check if the value has been set. -func (o *GetScatterSampleVisualizationsParams) GetEpochOk() (*float64, bool) { - if o == nil { - return nil, false - } - return &o.Epoch, true -} - -// SetEpoch sets field value -func (o *GetScatterSampleVisualizationsParams) SetEpoch(v float64) { - o.Epoch = v -} - func (o GetScatterSampleVisualizationsParams) MarshalJSON() ([]byte, error) { toSerialize, err := o.ToMap() if err != nil { @@ -130,9 +104,8 @@ func (o GetScatterSampleVisualizationsParams) MarshalJSON() ([]byte, error) { func (o GetScatterSampleVisualizationsParams) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} - toSerialize["sessionRunId"] = o.SessionRunId + toSerialize["versionId"] = o.VersionId toSerialize["projectId"] = o.ProjectId - toSerialize["epoch"] = o.Epoch for key, value := range o.AdditionalProperties { toSerialize[key] = value @@ -146,9 +119,8 @@ func (o *GetScatterSampleVisualizationsParams) UnmarshalJSON(data []byte) (err e // by unmarshalling the object into a generic map with string keys and checking // that every required field exists as a key in the generic map. requiredProperties := []string{ - "sessionRunId", + "versionId", "projectId", - "epoch", } allProperties := make(map[string]interface{}) @@ -178,9 +150,8 @@ func (o *GetScatterSampleVisualizationsParams) UnmarshalJSON(data []byte) (err e additionalProperties := make(map[string]interface{}) if err = json.Unmarshal(data, &additionalProperties); err == nil { - delete(additionalProperties, "sessionRunId") + delete(additionalProperties, "versionId") delete(additionalProperties, "projectId") - delete(additionalProperties, "epoch") o.AdditionalProperties = additionalProperties } diff --git a/pkg/tensorleapapi/model_get_scatter_sample_visualizations_response.go b/pkg/tensorleapapi/model_get_scatter_sample_visualizations_response.go index 0317ec621..7efadba96 100644 --- a/pkg/tensorleapapi/model_get_scatter_sample_visualizations_response.go +++ b/pkg/tensorleapapi/model_get_scatter_sample_visualizations_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_secret_manager_list_response.go b/pkg/tensorleapapi/model_get_secret_manager_list_response.go index 3a187879e..f1c7f27dc 100644 --- a/pkg/tensorleapapi/model_get_secret_manager_list_response.go +++ b/pkg/tensorleapapi/model_get_secret_manager_list_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_session_runs_evaluate_params.go b/pkg/tensorleapapi/model_get_session_runs_evaluate_params.go deleted file mode 100644 index 81be9d8a1..000000000 --- a/pkg/tensorleapapi/model_get_session_runs_evaluate_params.go +++ /dev/null @@ -1,166 +0,0 @@ -/* -node-server - -No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - -API version: 11.0.7 -*/ - -// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. - -package tensorleapapi - -import ( - "encoding/json" - "fmt" -) - -// checks if the GetSessionRunsEvaluateParams type satisfies the MappedNullable interface at compile time -var _ MappedNullable = &GetSessionRunsEvaluateParams{} - -// GetSessionRunsEvaluateParams struct for GetSessionRunsEvaluateParams -type GetSessionRunsEvaluateParams struct { - ProjectId string `json:"projectId"` - AdditionalProperties map[string]interface{} -} - -type _GetSessionRunsEvaluateParams GetSessionRunsEvaluateParams - -// NewGetSessionRunsEvaluateParams instantiates a new GetSessionRunsEvaluateParams object -// This constructor will assign default values to properties that have it defined, -// and makes sure properties required by API are set, but the set of arguments -// will change when the set of required properties is changed -func NewGetSessionRunsEvaluateParams(projectId string) *GetSessionRunsEvaluateParams { - this := GetSessionRunsEvaluateParams{} - this.ProjectId = projectId - return &this -} - -// NewGetSessionRunsEvaluateParamsWithDefaults instantiates a new GetSessionRunsEvaluateParams object -// This constructor will only assign default values to properties that have it defined, -// but it doesn't guarantee that properties required by API are set -func NewGetSessionRunsEvaluateParamsWithDefaults() *GetSessionRunsEvaluateParams { - this := GetSessionRunsEvaluateParams{} - return &this -} - -// GetProjectId returns the ProjectId field value -func (o *GetSessionRunsEvaluateParams) GetProjectId() string { - if o == nil { - var ret string - return ret - } - - return o.ProjectId -} - -// GetProjectIdOk returns a tuple with the ProjectId field value -// and a boolean to check if the value has been set. -func (o *GetSessionRunsEvaluateParams) GetProjectIdOk() (*string, bool) { - if o == nil { - return nil, false - } - return &o.ProjectId, true -} - -// SetProjectId sets field value -func (o *GetSessionRunsEvaluateParams) SetProjectId(v string) { - o.ProjectId = v -} - -func (o GetSessionRunsEvaluateParams) MarshalJSON() ([]byte, error) { - toSerialize, err := o.ToMap() - if err != nil { - return []byte{}, err - } - return json.Marshal(toSerialize) -} - -func (o GetSessionRunsEvaluateParams) ToMap() (map[string]interface{}, error) { - toSerialize := map[string]interface{}{} - toSerialize["projectId"] = o.ProjectId - - for key, value := range o.AdditionalProperties { - toSerialize[key] = value - } - - return toSerialize, nil -} - -func (o *GetSessionRunsEvaluateParams) UnmarshalJSON(data []byte) (err error) { - // This validates that all required properties are included in the JSON object - // by unmarshalling the object into a generic map with string keys and checking - // that every required field exists as a key in the generic map. - requiredProperties := []string{ - "projectId", - } - - allProperties := make(map[string]interface{}) - - err = json.Unmarshal(data, &allProperties) - - if err != nil { - return err - } - - for _, requiredProperty := range requiredProperties { - if _, exists := allProperties[requiredProperty]; !exists { - return fmt.Errorf("no value given for required property %v", requiredProperty) - } - } - - varGetSessionRunsEvaluateParams := _GetSessionRunsEvaluateParams{} - - err = json.Unmarshal(data, &varGetSessionRunsEvaluateParams) - - if err != nil { - return err - } - - *o = GetSessionRunsEvaluateParams(varGetSessionRunsEvaluateParams) - - additionalProperties := make(map[string]interface{}) - - if err = json.Unmarshal(data, &additionalProperties); err == nil { - delete(additionalProperties, "projectId") - o.AdditionalProperties = additionalProperties - } - - return err -} - -type NullableGetSessionRunsEvaluateParams struct { - value *GetSessionRunsEvaluateParams - isSet bool -} - -func (v NullableGetSessionRunsEvaluateParams) Get() *GetSessionRunsEvaluateParams { - return v.value -} - -func (v *NullableGetSessionRunsEvaluateParams) Set(val *GetSessionRunsEvaluateParams) { - v.value = val - v.isSet = true -} - -func (v NullableGetSessionRunsEvaluateParams) IsSet() bool { - return v.isSet -} - -func (v *NullableGetSessionRunsEvaluateParams) Unset() { - v.value = nil - v.isSet = false -} - -func NewNullableGetSessionRunsEvaluateParams(val *GetSessionRunsEvaluateParams) *NullableGetSessionRunsEvaluateParams { - return &NullableGetSessionRunsEvaluateParams{value: val, isSet: true} -} - -func (v NullableGetSessionRunsEvaluateParams) MarshalJSON() ([]byte, error) { - return json.Marshal(v.value) -} - -func (v *NullableGetSessionRunsEvaluateParams) UnmarshalJSON(src []byte) error { - v.isSet = true - return json.Unmarshal(src, &v.value) -} diff --git a/pkg/tensorleapapi/model_get_session_runs_evaluate_response.go b/pkg/tensorleapapi/model_get_session_runs_evaluate_response.go deleted file mode 100644 index ae4ac8b7b..000000000 --- a/pkg/tensorleapapi/model_get_session_runs_evaluate_response.go +++ /dev/null @@ -1,166 +0,0 @@ -/* -node-server - -No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - -API version: 11.0.7 -*/ - -// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. - -package tensorleapapi - -import ( - "encoding/json" - "fmt" -) - -// checks if the GetSessionRunsEvaluateResponse type satisfies the MappedNullable interface at compile time -var _ MappedNullable = &GetSessionRunsEvaluateResponse{} - -// GetSessionRunsEvaluateResponse struct for GetSessionRunsEvaluateResponse -type GetSessionRunsEvaluateResponse struct { - EvaluateSessionRuns []SessionRunData `json:"evaluateSessionRuns"` - AdditionalProperties map[string]interface{} -} - -type _GetSessionRunsEvaluateResponse GetSessionRunsEvaluateResponse - -// NewGetSessionRunsEvaluateResponse instantiates a new GetSessionRunsEvaluateResponse object -// This constructor will assign default values to properties that have it defined, -// and makes sure properties required by API are set, but the set of arguments -// will change when the set of required properties is changed -func NewGetSessionRunsEvaluateResponse(evaluateSessionRuns []SessionRunData) *GetSessionRunsEvaluateResponse { - this := GetSessionRunsEvaluateResponse{} - this.EvaluateSessionRuns = evaluateSessionRuns - return &this -} - -// NewGetSessionRunsEvaluateResponseWithDefaults instantiates a new GetSessionRunsEvaluateResponse object -// This constructor will only assign default values to properties that have it defined, -// but it doesn't guarantee that properties required by API are set -func NewGetSessionRunsEvaluateResponseWithDefaults() *GetSessionRunsEvaluateResponse { - this := GetSessionRunsEvaluateResponse{} - return &this -} - -// GetEvaluateSessionRuns returns the EvaluateSessionRuns field value -func (o *GetSessionRunsEvaluateResponse) GetEvaluateSessionRuns() []SessionRunData { - if o == nil { - var ret []SessionRunData - return ret - } - - return o.EvaluateSessionRuns -} - -// GetEvaluateSessionRunsOk returns a tuple with the EvaluateSessionRuns field value -// and a boolean to check if the value has been set. -func (o *GetSessionRunsEvaluateResponse) GetEvaluateSessionRunsOk() ([]SessionRunData, bool) { - if o == nil { - return nil, false - } - return o.EvaluateSessionRuns, true -} - -// SetEvaluateSessionRuns sets field value -func (o *GetSessionRunsEvaluateResponse) SetEvaluateSessionRuns(v []SessionRunData) { - o.EvaluateSessionRuns = v -} - -func (o GetSessionRunsEvaluateResponse) MarshalJSON() ([]byte, error) { - toSerialize, err := o.ToMap() - if err != nil { - return []byte{}, err - } - return json.Marshal(toSerialize) -} - -func (o GetSessionRunsEvaluateResponse) ToMap() (map[string]interface{}, error) { - toSerialize := map[string]interface{}{} - toSerialize["evaluateSessionRuns"] = o.EvaluateSessionRuns - - for key, value := range o.AdditionalProperties { - toSerialize[key] = value - } - - return toSerialize, nil -} - -func (o *GetSessionRunsEvaluateResponse) UnmarshalJSON(data []byte) (err error) { - // This validates that all required properties are included in the JSON object - // by unmarshalling the object into a generic map with string keys and checking - // that every required field exists as a key in the generic map. - requiredProperties := []string{ - "evaluateSessionRuns", - } - - allProperties := make(map[string]interface{}) - - err = json.Unmarshal(data, &allProperties) - - if err != nil { - return err - } - - for _, requiredProperty := range requiredProperties { - if _, exists := allProperties[requiredProperty]; !exists { - return fmt.Errorf("no value given for required property %v", requiredProperty) - } - } - - varGetSessionRunsEvaluateResponse := _GetSessionRunsEvaluateResponse{} - - err = json.Unmarshal(data, &varGetSessionRunsEvaluateResponse) - - if err != nil { - return err - } - - *o = GetSessionRunsEvaluateResponse(varGetSessionRunsEvaluateResponse) - - additionalProperties := make(map[string]interface{}) - - if err = json.Unmarshal(data, &additionalProperties); err == nil { - delete(additionalProperties, "evaluateSessionRuns") - o.AdditionalProperties = additionalProperties - } - - return err -} - -type NullableGetSessionRunsEvaluateResponse struct { - value *GetSessionRunsEvaluateResponse - isSet bool -} - -func (v NullableGetSessionRunsEvaluateResponse) Get() *GetSessionRunsEvaluateResponse { - return v.value -} - -func (v *NullableGetSessionRunsEvaluateResponse) Set(val *GetSessionRunsEvaluateResponse) { - v.value = val - v.isSet = true -} - -func (v NullableGetSessionRunsEvaluateResponse) IsSet() bool { - return v.isSet -} - -func (v *NullableGetSessionRunsEvaluateResponse) Unset() { - v.value = nil - v.isSet = false -} - -func NewNullableGetSessionRunsEvaluateResponse(val *GetSessionRunsEvaluateResponse) *NullableGetSessionRunsEvaluateResponse { - return &NullableGetSessionRunsEvaluateResponse{value: val, isSet: true} -} - -func (v NullableGetSessionRunsEvaluateResponse) MarshalJSON() ([]byte, error) { - return json.Marshal(v.value) -} - -func (v *NullableGetSessionRunsEvaluateResponse) UnmarshalJSON(src []byte) error { - v.isSet = true - return json.Unmarshal(src, &v.value) -} diff --git a/pkg/tensorleapapi/model_get_session_runs_visualizations_params.go b/pkg/tensorleapapi/model_get_session_runs_visualizations_params.go deleted file mode 100644 index b0cbf9436..000000000 --- a/pkg/tensorleapapi/model_get_session_runs_visualizations_params.go +++ /dev/null @@ -1,195 +0,0 @@ -/* -node-server - -No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - -API version: 11.0.7 -*/ - -// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. - -package tensorleapapi - -import ( - "encoding/json" - "fmt" -) - -// checks if the GetSessionRunsVisualizationsParams type satisfies the MappedNullable interface at compile time -var _ MappedNullable = &GetSessionRunsVisualizationsParams{} - -// GetSessionRunsVisualizationsParams struct for GetSessionRunsVisualizationsParams -type GetSessionRunsVisualizationsParams struct { - SessionRunIds []string `json:"sessionRunIds"` - ProjectId string `json:"projectId"` - AdditionalProperties map[string]interface{} -} - -type _GetSessionRunsVisualizationsParams GetSessionRunsVisualizationsParams - -// NewGetSessionRunsVisualizationsParams instantiates a new GetSessionRunsVisualizationsParams object -// This constructor will assign default values to properties that have it defined, -// and makes sure properties required by API are set, but the set of arguments -// will change when the set of required properties is changed -func NewGetSessionRunsVisualizationsParams(sessionRunIds []string, projectId string) *GetSessionRunsVisualizationsParams { - this := GetSessionRunsVisualizationsParams{} - this.SessionRunIds = sessionRunIds - this.ProjectId = projectId - return &this -} - -// NewGetSessionRunsVisualizationsParamsWithDefaults instantiates a new GetSessionRunsVisualizationsParams object -// This constructor will only assign default values to properties that have it defined, -// but it doesn't guarantee that properties required by API are set -func NewGetSessionRunsVisualizationsParamsWithDefaults() *GetSessionRunsVisualizationsParams { - this := GetSessionRunsVisualizationsParams{} - return &this -} - -// GetSessionRunIds returns the SessionRunIds field value -func (o *GetSessionRunsVisualizationsParams) GetSessionRunIds() []string { - if o == nil { - var ret []string - return ret - } - - return o.SessionRunIds -} - -// GetSessionRunIdsOk returns a tuple with the SessionRunIds field value -// and a boolean to check if the value has been set. -func (o *GetSessionRunsVisualizationsParams) GetSessionRunIdsOk() ([]string, bool) { - if o == nil { - return nil, false - } - return o.SessionRunIds, true -} - -// SetSessionRunIds sets field value -func (o *GetSessionRunsVisualizationsParams) SetSessionRunIds(v []string) { - o.SessionRunIds = v -} - -// GetProjectId returns the ProjectId field value -func (o *GetSessionRunsVisualizationsParams) GetProjectId() string { - if o == nil { - var ret string - return ret - } - - return o.ProjectId -} - -// GetProjectIdOk returns a tuple with the ProjectId field value -// and a boolean to check if the value has been set. -func (o *GetSessionRunsVisualizationsParams) GetProjectIdOk() (*string, bool) { - if o == nil { - return nil, false - } - return &o.ProjectId, true -} - -// SetProjectId sets field value -func (o *GetSessionRunsVisualizationsParams) SetProjectId(v string) { - o.ProjectId = v -} - -func (o GetSessionRunsVisualizationsParams) MarshalJSON() ([]byte, error) { - toSerialize, err := o.ToMap() - if err != nil { - return []byte{}, err - } - return json.Marshal(toSerialize) -} - -func (o GetSessionRunsVisualizationsParams) ToMap() (map[string]interface{}, error) { - toSerialize := map[string]interface{}{} - toSerialize["sessionRunIds"] = o.SessionRunIds - toSerialize["projectId"] = o.ProjectId - - for key, value := range o.AdditionalProperties { - toSerialize[key] = value - } - - return toSerialize, nil -} - -func (o *GetSessionRunsVisualizationsParams) UnmarshalJSON(data []byte) (err error) { - // This validates that all required properties are included in the JSON object - // by unmarshalling the object into a generic map with string keys and checking - // that every required field exists as a key in the generic map. - requiredProperties := []string{ - "sessionRunIds", - "projectId", - } - - allProperties := make(map[string]interface{}) - - err = json.Unmarshal(data, &allProperties) - - if err != nil { - return err - } - - for _, requiredProperty := range requiredProperties { - if _, exists := allProperties[requiredProperty]; !exists { - return fmt.Errorf("no value given for required property %v", requiredProperty) - } - } - - varGetSessionRunsVisualizationsParams := _GetSessionRunsVisualizationsParams{} - - err = json.Unmarshal(data, &varGetSessionRunsVisualizationsParams) - - if err != nil { - return err - } - - *o = GetSessionRunsVisualizationsParams(varGetSessionRunsVisualizationsParams) - - additionalProperties := make(map[string]interface{}) - - if err = json.Unmarshal(data, &additionalProperties); err == nil { - delete(additionalProperties, "sessionRunIds") - delete(additionalProperties, "projectId") - o.AdditionalProperties = additionalProperties - } - - return err -} - -type NullableGetSessionRunsVisualizationsParams struct { - value *GetSessionRunsVisualizationsParams - isSet bool -} - -func (v NullableGetSessionRunsVisualizationsParams) Get() *GetSessionRunsVisualizationsParams { - return v.value -} - -func (v *NullableGetSessionRunsVisualizationsParams) Set(val *GetSessionRunsVisualizationsParams) { - v.value = val - v.isSet = true -} - -func (v NullableGetSessionRunsVisualizationsParams) IsSet() bool { - return v.isSet -} - -func (v *NullableGetSessionRunsVisualizationsParams) Unset() { - v.value = nil - v.isSet = false -} - -func NewNullableGetSessionRunsVisualizationsParams(val *GetSessionRunsVisualizationsParams) *NullableGetSessionRunsVisualizationsParams { - return &NullableGetSessionRunsVisualizationsParams{value: val, isSet: true} -} - -func (v NullableGetSessionRunsVisualizationsParams) MarshalJSON() ([]byte, error) { - return json.Marshal(v.value) -} - -func (v *NullableGetSessionRunsVisualizationsParams) UnmarshalJSON(src []byte) error { - v.isSet = true - return json.Unmarshal(src, &v.value) -} diff --git a/pkg/tensorleapapi/model_get_session_test_results_request.go b/pkg/tensorleapapi/model_get_session_test_results_request.go index 553bd226e..87e1c3648 100644 --- a/pkg/tensorleapapi/model_get_session_test_results_request.go +++ b/pkg/tensorleapapi/model_get_session_test_results_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_signed_url_params.go b/pkg/tensorleapapi/model_get_signed_url_params.go index cea956eeb..c581f938c 100644 --- a/pkg/tensorleapapi/model_get_signed_url_params.go +++ b/pkg/tensorleapapi/model_get_signed_url_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_single_issue_params.go b/pkg/tensorleapapi/model_get_single_issue_params.go index 948bff90b..70381cc9f 100644 --- a/pkg/tensorleapapi/model_get_single_issue_params.go +++ b/pkg/tensorleapapi/model_get_single_issue_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_single_session_test_request.go b/pkg/tensorleapapi/model_get_single_session_test_request.go index 2169c6554..2492370b5 100644 --- a/pkg/tensorleapapi/model_get_single_session_test_request.go +++ b/pkg/tensorleapapi/model_get_single_session_test_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_slim_jobs_response.go b/pkg/tensorleapapi/model_get_slim_jobs_response.go index c10bd76d2..cd39cac5b 100644 --- a/pkg/tensorleapapi/model_get_slim_jobs_response.go +++ b/pkg/tensorleapapi/model_get_slim_jobs_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_slim_visualization_params.go b/pkg/tensorleapapi/model_get_slim_visualization_params.go index 419c6f182..55bc6658e 100644 --- a/pkg/tensorleapapi/model_get_slim_visualization_params.go +++ b/pkg/tensorleapapi/model_get_slim_visualization_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_slim_visualization_response.go b/pkg/tensorleapapi/model_get_slim_visualization_response.go index 3368077c6..d60f36f39 100644 --- a/pkg/tensorleapapi/model_get_slim_visualization_response.go +++ b/pkg/tensorleapapi/model_get_slim_visualization_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_state_params.go b/pkg/tensorleapapi/model_get_state_params.go index bb32ad4bd..5ac4eae1c 100644 --- a/pkg/tensorleapapi/model_get_state_params.go +++ b/pkg/tensorleapapi/model_get_state_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_state_response.go b/pkg/tensorleapapi/model_get_state_response.go index fa92490be..4fba63a98 100644 --- a/pkg/tensorleapapi/model_get_state_response.go +++ b/pkg/tensorleapapi/model_get_state_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_statistics_params.go b/pkg/tensorleapapi/model_get_statistics_params.go index df17496da..fd6b0bbde 100644 --- a/pkg/tensorleapapi/model_get_statistics_params.go +++ b/pkg/tensorleapapi/model_get_statistics_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_statistics_response.go b/pkg/tensorleapapi/model_get_statistics_response.go index c03fa6eb5..f67d529e7 100644 --- a/pkg/tensorleapapi/model_get_statistics_response.go +++ b/pkg/tensorleapapi/model_get_statistics_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -25,7 +25,7 @@ type GetStatisticsResponse struct { Tests float64 `json:"tests"` Projects float64 `json:"projects"` Networks float64 `json:"networks"` - Sessions float64 `json:"sessions"` + Versions float64 `json:"versions"` AdditionalProperties map[string]interface{} } @@ -35,14 +35,14 @@ type _GetStatisticsResponse GetStatisticsResponse // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewGetStatisticsResponse(activeUsers float64, openIssues float64, tests float64, projects float64, networks float64, sessions float64) *GetStatisticsResponse { +func NewGetStatisticsResponse(activeUsers float64, openIssues float64, tests float64, projects float64, networks float64, versions float64) *GetStatisticsResponse { this := GetStatisticsResponse{} this.ActiveUsers = activeUsers this.OpenIssues = openIssues this.Tests = tests this.Projects = projects this.Networks = networks - this.Sessions = sessions + this.Versions = versions return &this } @@ -174,28 +174,28 @@ func (o *GetStatisticsResponse) SetNetworks(v float64) { o.Networks = v } -// GetSessions returns the Sessions field value -func (o *GetStatisticsResponse) GetSessions() float64 { +// GetVersions returns the Versions field value +func (o *GetStatisticsResponse) GetVersions() float64 { if o == nil { var ret float64 return ret } - return o.Sessions + return o.Versions } -// GetSessionsOk returns a tuple with the Sessions field value +// GetVersionsOk returns a tuple with the Versions field value // and a boolean to check if the value has been set. -func (o *GetStatisticsResponse) GetSessionsOk() (*float64, bool) { +func (o *GetStatisticsResponse) GetVersionsOk() (*float64, bool) { if o == nil { return nil, false } - return &o.Sessions, true + return &o.Versions, true } -// SetSessions sets field value -func (o *GetStatisticsResponse) SetSessions(v float64) { - o.Sessions = v +// SetVersions sets field value +func (o *GetStatisticsResponse) SetVersions(v float64) { + o.Versions = v } func (o GetStatisticsResponse) MarshalJSON() ([]byte, error) { @@ -213,7 +213,7 @@ func (o GetStatisticsResponse) ToMap() (map[string]interface{}, error) { toSerialize["tests"] = o.Tests toSerialize["projects"] = o.Projects toSerialize["networks"] = o.Networks - toSerialize["sessions"] = o.Sessions + toSerialize["versions"] = o.Versions for key, value := range o.AdditionalProperties { toSerialize[key] = value @@ -232,7 +232,7 @@ func (o *GetStatisticsResponse) UnmarshalJSON(data []byte) (err error) { "tests", "projects", "networks", - "sessions", + "versions", } allProperties := make(map[string]interface{}) @@ -267,7 +267,7 @@ func (o *GetStatisticsResponse) UnmarshalJSON(data []byte) (err error) { delete(additionalProperties, "tests") delete(additionalProperties, "projects") delete(additionalProperties, "networks") - delete(additionalProperties, "sessions") + delete(additionalProperties, "versions") o.AdditionalProperties = additionalProperties } diff --git a/pkg/tensorleapapi/model_get_synthetic_data_params.go b/pkg/tensorleapapi/model_get_synthetic_data_params.go index e1b984604..2e8161101 100644 --- a/pkg/tensorleapapi/model_get_synthetic_data_params.go +++ b/pkg/tensorleapapi/model_get_synthetic_data_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_team_users_response.go b/pkg/tensorleapapi/model_get_team_users_response.go index 7041f6c6d..7fe26b969 100644 --- a/pkg/tensorleapapi/model_get_team_users_response.go +++ b/pkg/tensorleapapi/model_get_team_users_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_teams_response.go b/pkg/tensorleapapi/model_get_teams_response.go index 121cabb7e..f9349967d 100644 --- a/pkg/tensorleapapi/model_get_teams_response.go +++ b/pkg/tensorleapapi/model_get_teams_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_upload_model_signed_url_request.go b/pkg/tensorleapapi/model_get_upload_model_signed_url_request.go index bf79acfcf..ee11ad75a 100644 --- a/pkg/tensorleapapi/model_get_upload_model_signed_url_request.go +++ b/pkg/tensorleapapi/model_get_upload_model_signed_url_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_upload_signed_url_params.go b/pkg/tensorleapapi/model_get_upload_signed_url_params.go index a6638e8a7..df4bb119f 100644 --- a/pkg/tensorleapapi/model_get_upload_signed_url_params.go +++ b/pkg/tensorleapapi/model_get_upload_signed_url_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_get_session_epochs_response.go b/pkg/tensorleapapi/model_get_version_epochs_response.go similarity index 59% rename from pkg/tensorleapapi/model_get_session_epochs_response.go rename to pkg/tensorleapapi/model_get_version_epochs_response.go index 51853baa0..60cb33909 100644 --- a/pkg/tensorleapapi/model_get_session_epochs_response.go +++ b/pkg/tensorleapapi/model_get_version_epochs_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -15,37 +15,37 @@ import ( "fmt" ) -// checks if the GetSessionEpochsResponse type satisfies the MappedNullable interface at compile time -var _ MappedNullable = &GetSessionEpochsResponse{} +// checks if the GetVersionEpochsResponse type satisfies the MappedNullable interface at compile time +var _ MappedNullable = &GetVersionEpochsResponse{} -// GetSessionEpochsResponse struct for GetSessionEpochsResponse -type GetSessionEpochsResponse struct { +// GetVersionEpochsResponse struct for GetVersionEpochsResponse +type GetVersionEpochsResponse struct { Epochs []EpochData `json:"epochs"` AdditionalProperties map[string]interface{} } -type _GetSessionEpochsResponse GetSessionEpochsResponse +type _GetVersionEpochsResponse GetVersionEpochsResponse -// NewGetSessionEpochsResponse instantiates a new GetSessionEpochsResponse object +// NewGetVersionEpochsResponse instantiates a new GetVersionEpochsResponse object // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewGetSessionEpochsResponse(epochs []EpochData) *GetSessionEpochsResponse { - this := GetSessionEpochsResponse{} +func NewGetVersionEpochsResponse(epochs []EpochData) *GetVersionEpochsResponse { + this := GetVersionEpochsResponse{} this.Epochs = epochs return &this } -// NewGetSessionEpochsResponseWithDefaults instantiates a new GetSessionEpochsResponse object +// NewGetVersionEpochsResponseWithDefaults instantiates a new GetVersionEpochsResponse object // This constructor will only assign default values to properties that have it defined, // but it doesn't guarantee that properties required by API are set -func NewGetSessionEpochsResponseWithDefaults() *GetSessionEpochsResponse { - this := GetSessionEpochsResponse{} +func NewGetVersionEpochsResponseWithDefaults() *GetVersionEpochsResponse { + this := GetVersionEpochsResponse{} return &this } // GetEpochs returns the Epochs field value -func (o *GetSessionEpochsResponse) GetEpochs() []EpochData { +func (o *GetVersionEpochsResponse) GetEpochs() []EpochData { if o == nil { var ret []EpochData return ret @@ -56,7 +56,7 @@ func (o *GetSessionEpochsResponse) GetEpochs() []EpochData { // GetEpochsOk returns a tuple with the Epochs field value // and a boolean to check if the value has been set. -func (o *GetSessionEpochsResponse) GetEpochsOk() ([]EpochData, bool) { +func (o *GetVersionEpochsResponse) GetEpochsOk() ([]EpochData, bool) { if o == nil { return nil, false } @@ -64,11 +64,11 @@ func (o *GetSessionEpochsResponse) GetEpochsOk() ([]EpochData, bool) { } // SetEpochs sets field value -func (o *GetSessionEpochsResponse) SetEpochs(v []EpochData) { +func (o *GetVersionEpochsResponse) SetEpochs(v []EpochData) { o.Epochs = v } -func (o GetSessionEpochsResponse) MarshalJSON() ([]byte, error) { +func (o GetVersionEpochsResponse) MarshalJSON() ([]byte, error) { toSerialize, err := o.ToMap() if err != nil { return []byte{}, err @@ -76,7 +76,7 @@ func (o GetSessionEpochsResponse) MarshalJSON() ([]byte, error) { return json.Marshal(toSerialize) } -func (o GetSessionEpochsResponse) ToMap() (map[string]interface{}, error) { +func (o GetVersionEpochsResponse) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} toSerialize["epochs"] = o.Epochs @@ -87,7 +87,7 @@ func (o GetSessionEpochsResponse) ToMap() (map[string]interface{}, error) { return toSerialize, nil } -func (o *GetSessionEpochsResponse) UnmarshalJSON(data []byte) (err error) { +func (o *GetVersionEpochsResponse) UnmarshalJSON(data []byte) (err error) { // This validates that all required properties are included in the JSON object // by unmarshalling the object into a generic map with string keys and checking // that every required field exists as a key in the generic map. @@ -109,15 +109,15 @@ func (o *GetSessionEpochsResponse) UnmarshalJSON(data []byte) (err error) { } } - varGetSessionEpochsResponse := _GetSessionEpochsResponse{} + varGetVersionEpochsResponse := _GetVersionEpochsResponse{} - err = json.Unmarshal(data, &varGetSessionEpochsResponse) + err = json.Unmarshal(data, &varGetVersionEpochsResponse) if err != nil { return err } - *o = GetSessionEpochsResponse(varGetSessionEpochsResponse) + *o = GetVersionEpochsResponse(varGetVersionEpochsResponse) additionalProperties := make(map[string]interface{}) @@ -129,38 +129,38 @@ func (o *GetSessionEpochsResponse) UnmarshalJSON(data []byte) (err error) { return err } -type NullableGetSessionEpochsResponse struct { - value *GetSessionEpochsResponse +type NullableGetVersionEpochsResponse struct { + value *GetVersionEpochsResponse isSet bool } -func (v NullableGetSessionEpochsResponse) Get() *GetSessionEpochsResponse { +func (v NullableGetVersionEpochsResponse) Get() *GetVersionEpochsResponse { return v.value } -func (v *NullableGetSessionEpochsResponse) Set(val *GetSessionEpochsResponse) { +func (v *NullableGetVersionEpochsResponse) Set(val *GetVersionEpochsResponse) { v.value = val v.isSet = true } -func (v NullableGetSessionEpochsResponse) IsSet() bool { +func (v NullableGetVersionEpochsResponse) IsSet() bool { return v.isSet } -func (v *NullableGetSessionEpochsResponse) Unset() { +func (v *NullableGetVersionEpochsResponse) Unset() { v.value = nil v.isSet = false } -func NewNullableGetSessionEpochsResponse(val *GetSessionEpochsResponse) *NullableGetSessionEpochsResponse { - return &NullableGetSessionEpochsResponse{value: val, isSet: true} +func NewNullableGetVersionEpochsResponse(val *GetVersionEpochsResponse) *NullableGetVersionEpochsResponse { + return &NullableGetVersionEpochsResponse{value: val, isSet: true} } -func (v NullableGetSessionEpochsResponse) MarshalJSON() ([]byte, error) { +func (v NullableGetVersionEpochsResponse) MarshalJSON() ([]byte, error) { return json.Marshal(v.value) } -func (v *NullableGetSessionEpochsResponse) UnmarshalJSON(src []byte) error { +func (v *NullableGetVersionEpochsResponse) UnmarshalJSON(src []byte) error { v.isSet = true return json.Unmarshal(src, &v.value) } diff --git a/pkg/tensorleapapi/model_get_sessions_epochs_request.go b/pkg/tensorleapapi/model_get_versions_epochs_request.go similarity index 54% rename from pkg/tensorleapapi/model_get_sessions_epochs_request.go rename to pkg/tensorleapapi/model_get_versions_epochs_request.go index f1598cc35..27f820a05 100644 --- a/pkg/tensorleapapi/model_get_sessions_epochs_request.go +++ b/pkg/tensorleapapi/model_get_versions_epochs_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -15,39 +15,39 @@ import ( "fmt" ) -// checks if the GetSessionsEpochsRequest type satisfies the MappedNullable interface at compile time -var _ MappedNullable = &GetSessionsEpochsRequest{} +// checks if the GetVersionsEpochsRequest type satisfies the MappedNullable interface at compile time +var _ MappedNullable = &GetVersionsEpochsRequest{} -// GetSessionsEpochsRequest struct for GetSessionsEpochsRequest -type GetSessionsEpochsRequest struct { +// GetVersionsEpochsRequest struct for GetVersionsEpochsRequest +type GetVersionsEpochsRequest struct { ProjectId string `json:"projectId"` - SessionIds []string `json:"sessionIds"` + VersionIds []string `json:"versionIds"` AdditionalProperties map[string]interface{} } -type _GetSessionsEpochsRequest GetSessionsEpochsRequest +type _GetVersionsEpochsRequest GetVersionsEpochsRequest -// NewGetSessionsEpochsRequest instantiates a new GetSessionsEpochsRequest object +// NewGetVersionsEpochsRequest instantiates a new GetVersionsEpochsRequest object // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewGetSessionsEpochsRequest(projectId string, sessionIds []string) *GetSessionsEpochsRequest { - this := GetSessionsEpochsRequest{} +func NewGetVersionsEpochsRequest(projectId string, versionIds []string) *GetVersionsEpochsRequest { + this := GetVersionsEpochsRequest{} this.ProjectId = projectId - this.SessionIds = sessionIds + this.VersionIds = versionIds return &this } -// NewGetSessionsEpochsRequestWithDefaults instantiates a new GetSessionsEpochsRequest object +// NewGetVersionsEpochsRequestWithDefaults instantiates a new GetVersionsEpochsRequest object // This constructor will only assign default values to properties that have it defined, // but it doesn't guarantee that properties required by API are set -func NewGetSessionsEpochsRequestWithDefaults() *GetSessionsEpochsRequest { - this := GetSessionsEpochsRequest{} +func NewGetVersionsEpochsRequestWithDefaults() *GetVersionsEpochsRequest { + this := GetVersionsEpochsRequest{} return &this } // GetProjectId returns the ProjectId field value -func (o *GetSessionsEpochsRequest) GetProjectId() string { +func (o *GetVersionsEpochsRequest) GetProjectId() string { if o == nil { var ret string return ret @@ -58,7 +58,7 @@ func (o *GetSessionsEpochsRequest) GetProjectId() string { // GetProjectIdOk returns a tuple with the ProjectId field value // and a boolean to check if the value has been set. -func (o *GetSessionsEpochsRequest) GetProjectIdOk() (*string, bool) { +func (o *GetVersionsEpochsRequest) GetProjectIdOk() (*string, bool) { if o == nil { return nil, false } @@ -66,35 +66,35 @@ func (o *GetSessionsEpochsRequest) GetProjectIdOk() (*string, bool) { } // SetProjectId sets field value -func (o *GetSessionsEpochsRequest) SetProjectId(v string) { +func (o *GetVersionsEpochsRequest) SetProjectId(v string) { o.ProjectId = v } -// GetSessionIds returns the SessionIds field value -func (o *GetSessionsEpochsRequest) GetSessionIds() []string { +// GetVersionIds returns the VersionIds field value +func (o *GetVersionsEpochsRequest) GetVersionIds() []string { if o == nil { var ret []string return ret } - return o.SessionIds + return o.VersionIds } -// GetSessionIdsOk returns a tuple with the SessionIds field value +// GetVersionIdsOk returns a tuple with the VersionIds field value // and a boolean to check if the value has been set. -func (o *GetSessionsEpochsRequest) GetSessionIdsOk() ([]string, bool) { +func (o *GetVersionsEpochsRequest) GetVersionIdsOk() ([]string, bool) { if o == nil { return nil, false } - return o.SessionIds, true + return o.VersionIds, true } -// SetSessionIds sets field value -func (o *GetSessionsEpochsRequest) SetSessionIds(v []string) { - o.SessionIds = v +// SetVersionIds sets field value +func (o *GetVersionsEpochsRequest) SetVersionIds(v []string) { + o.VersionIds = v } -func (o GetSessionsEpochsRequest) MarshalJSON() ([]byte, error) { +func (o GetVersionsEpochsRequest) MarshalJSON() ([]byte, error) { toSerialize, err := o.ToMap() if err != nil { return []byte{}, err @@ -102,10 +102,10 @@ func (o GetSessionsEpochsRequest) MarshalJSON() ([]byte, error) { return json.Marshal(toSerialize) } -func (o GetSessionsEpochsRequest) ToMap() (map[string]interface{}, error) { +func (o GetVersionsEpochsRequest) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} toSerialize["projectId"] = o.ProjectId - toSerialize["sessionIds"] = o.SessionIds + toSerialize["versionIds"] = o.VersionIds for key, value := range o.AdditionalProperties { toSerialize[key] = value @@ -114,13 +114,13 @@ func (o GetSessionsEpochsRequest) ToMap() (map[string]interface{}, error) { return toSerialize, nil } -func (o *GetSessionsEpochsRequest) UnmarshalJSON(data []byte) (err error) { +func (o *GetVersionsEpochsRequest) UnmarshalJSON(data []byte) (err error) { // This validates that all required properties are included in the JSON object // by unmarshalling the object into a generic map with string keys and checking // that every required field exists as a key in the generic map. requiredProperties := []string{ "projectId", - "sessionIds", + "versionIds", } allProperties := make(map[string]interface{}) @@ -137,59 +137,59 @@ func (o *GetSessionsEpochsRequest) UnmarshalJSON(data []byte) (err error) { } } - varGetSessionsEpochsRequest := _GetSessionsEpochsRequest{} + varGetVersionsEpochsRequest := _GetVersionsEpochsRequest{} - err = json.Unmarshal(data, &varGetSessionsEpochsRequest) + err = json.Unmarshal(data, &varGetVersionsEpochsRequest) if err != nil { return err } - *o = GetSessionsEpochsRequest(varGetSessionsEpochsRequest) + *o = GetVersionsEpochsRequest(varGetVersionsEpochsRequest) additionalProperties := make(map[string]interface{}) if err = json.Unmarshal(data, &additionalProperties); err == nil { delete(additionalProperties, "projectId") - delete(additionalProperties, "sessionIds") + delete(additionalProperties, "versionIds") o.AdditionalProperties = additionalProperties } return err } -type NullableGetSessionsEpochsRequest struct { - value *GetSessionsEpochsRequest +type NullableGetVersionsEpochsRequest struct { + value *GetVersionsEpochsRequest isSet bool } -func (v NullableGetSessionsEpochsRequest) Get() *GetSessionsEpochsRequest { +func (v NullableGetVersionsEpochsRequest) Get() *GetVersionsEpochsRequest { return v.value } -func (v *NullableGetSessionsEpochsRequest) Set(val *GetSessionsEpochsRequest) { +func (v *NullableGetVersionsEpochsRequest) Set(val *GetVersionsEpochsRequest) { v.value = val v.isSet = true } -func (v NullableGetSessionsEpochsRequest) IsSet() bool { +func (v NullableGetVersionsEpochsRequest) IsSet() bool { return v.isSet } -func (v *NullableGetSessionsEpochsRequest) Unset() { +func (v *NullableGetVersionsEpochsRequest) Unset() { v.value = nil v.isSet = false } -func NewNullableGetSessionsEpochsRequest(val *GetSessionsEpochsRequest) *NullableGetSessionsEpochsRequest { - return &NullableGetSessionsEpochsRequest{value: val, isSet: true} +func NewNullableGetVersionsEpochsRequest(val *GetVersionsEpochsRequest) *NullableGetVersionsEpochsRequest { + return &NullableGetVersionsEpochsRequest{value: val, isSet: true} } -func (v NullableGetSessionsEpochsRequest) MarshalJSON() ([]byte, error) { +func (v NullableGetVersionsEpochsRequest) MarshalJSON() ([]byte, error) { return json.Marshal(v.value) } -func (v *NullableGetSessionsEpochsRequest) UnmarshalJSON(src []byte) error { +func (v *NullableGetVersionsEpochsRequest) UnmarshalJSON(src []byte) error { v.isSet = true return json.Unmarshal(src, &v.value) } diff --git a/pkg/tensorleapapi/model_get_exported_session_run_jobs_params.go b/pkg/tensorleapapi/model_get_versions_visualizations_params.go similarity index 50% rename from pkg/tensorleapapi/model_get_exported_session_run_jobs_params.go rename to pkg/tensorleapapi/model_get_versions_visualizations_params.go index 2be7fe2d1..e8e90e517 100644 --- a/pkg/tensorleapapi/model_get_exported_session_run_jobs_params.go +++ b/pkg/tensorleapapi/model_get_versions_visualizations_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -15,63 +15,63 @@ import ( "fmt" ) -// checks if the GetExportedSessionRunJobsParams type satisfies the MappedNullable interface at compile time -var _ MappedNullable = &GetExportedSessionRunJobsParams{} +// checks if the GetVersionsVisualizationsParams type satisfies the MappedNullable interface at compile time +var _ MappedNullable = &GetVersionsVisualizationsParams{} -// GetExportedSessionRunJobsParams struct for GetExportedSessionRunJobsParams -type GetExportedSessionRunJobsParams struct { - SessionId string `json:"sessionId"` - ProjectId string `json:"projectId"` +// GetVersionsVisualizationsParams struct for GetVersionsVisualizationsParams +type GetVersionsVisualizationsParams struct { + VersionIds []string `json:"versionIds"` + ProjectId string `json:"projectId"` AdditionalProperties map[string]interface{} } -type _GetExportedSessionRunJobsParams GetExportedSessionRunJobsParams +type _GetVersionsVisualizationsParams GetVersionsVisualizationsParams -// NewGetExportedSessionRunJobsParams instantiates a new GetExportedSessionRunJobsParams object +// NewGetVersionsVisualizationsParams instantiates a new GetVersionsVisualizationsParams object // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewGetExportedSessionRunJobsParams(sessionId string, projectId string) *GetExportedSessionRunJobsParams { - this := GetExportedSessionRunJobsParams{} - this.SessionId = sessionId +func NewGetVersionsVisualizationsParams(versionIds []string, projectId string) *GetVersionsVisualizationsParams { + this := GetVersionsVisualizationsParams{} + this.VersionIds = versionIds this.ProjectId = projectId return &this } -// NewGetExportedSessionRunJobsParamsWithDefaults instantiates a new GetExportedSessionRunJobsParams object +// NewGetVersionsVisualizationsParamsWithDefaults instantiates a new GetVersionsVisualizationsParams object // This constructor will only assign default values to properties that have it defined, // but it doesn't guarantee that properties required by API are set -func NewGetExportedSessionRunJobsParamsWithDefaults() *GetExportedSessionRunJobsParams { - this := GetExportedSessionRunJobsParams{} +func NewGetVersionsVisualizationsParamsWithDefaults() *GetVersionsVisualizationsParams { + this := GetVersionsVisualizationsParams{} return &this } -// GetSessionId returns the SessionId field value -func (o *GetExportedSessionRunJobsParams) GetSessionId() string { +// GetVersionIds returns the VersionIds field value +func (o *GetVersionsVisualizationsParams) GetVersionIds() []string { if o == nil { - var ret string + var ret []string return ret } - return o.SessionId + return o.VersionIds } -// GetSessionIdOk returns a tuple with the SessionId field value +// GetVersionIdsOk returns a tuple with the VersionIds field value // and a boolean to check if the value has been set. -func (o *GetExportedSessionRunJobsParams) GetSessionIdOk() (*string, bool) { +func (o *GetVersionsVisualizationsParams) GetVersionIdsOk() ([]string, bool) { if o == nil { return nil, false } - return &o.SessionId, true + return o.VersionIds, true } -// SetSessionId sets field value -func (o *GetExportedSessionRunJobsParams) SetSessionId(v string) { - o.SessionId = v +// SetVersionIds sets field value +func (o *GetVersionsVisualizationsParams) SetVersionIds(v []string) { + o.VersionIds = v } // GetProjectId returns the ProjectId field value -func (o *GetExportedSessionRunJobsParams) GetProjectId() string { +func (o *GetVersionsVisualizationsParams) GetProjectId() string { if o == nil { var ret string return ret @@ -82,7 +82,7 @@ func (o *GetExportedSessionRunJobsParams) GetProjectId() string { // GetProjectIdOk returns a tuple with the ProjectId field value // and a boolean to check if the value has been set. -func (o *GetExportedSessionRunJobsParams) GetProjectIdOk() (*string, bool) { +func (o *GetVersionsVisualizationsParams) GetProjectIdOk() (*string, bool) { if o == nil { return nil, false } @@ -90,11 +90,11 @@ func (o *GetExportedSessionRunJobsParams) GetProjectIdOk() (*string, bool) { } // SetProjectId sets field value -func (o *GetExportedSessionRunJobsParams) SetProjectId(v string) { +func (o *GetVersionsVisualizationsParams) SetProjectId(v string) { o.ProjectId = v } -func (o GetExportedSessionRunJobsParams) MarshalJSON() ([]byte, error) { +func (o GetVersionsVisualizationsParams) MarshalJSON() ([]byte, error) { toSerialize, err := o.ToMap() if err != nil { return []byte{}, err @@ -102,9 +102,9 @@ func (o GetExportedSessionRunJobsParams) MarshalJSON() ([]byte, error) { return json.Marshal(toSerialize) } -func (o GetExportedSessionRunJobsParams) ToMap() (map[string]interface{}, error) { +func (o GetVersionsVisualizationsParams) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} - toSerialize["sessionId"] = o.SessionId + toSerialize["versionIds"] = o.VersionIds toSerialize["projectId"] = o.ProjectId for key, value := range o.AdditionalProperties { @@ -114,12 +114,12 @@ func (o GetExportedSessionRunJobsParams) ToMap() (map[string]interface{}, error) return toSerialize, nil } -func (o *GetExportedSessionRunJobsParams) UnmarshalJSON(data []byte) (err error) { +func (o *GetVersionsVisualizationsParams) UnmarshalJSON(data []byte) (err error) { // This validates that all required properties are included in the JSON object // by unmarshalling the object into a generic map with string keys and checking // that every required field exists as a key in the generic map. requiredProperties := []string{ - "sessionId", + "versionIds", "projectId", } @@ -137,20 +137,20 @@ func (o *GetExportedSessionRunJobsParams) UnmarshalJSON(data []byte) (err error) } } - varGetExportedSessionRunJobsParams := _GetExportedSessionRunJobsParams{} + varGetVersionsVisualizationsParams := _GetVersionsVisualizationsParams{} - err = json.Unmarshal(data, &varGetExportedSessionRunJobsParams) + err = json.Unmarshal(data, &varGetVersionsVisualizationsParams) if err != nil { return err } - *o = GetExportedSessionRunJobsParams(varGetExportedSessionRunJobsParams) + *o = GetVersionsVisualizationsParams(varGetVersionsVisualizationsParams) additionalProperties := make(map[string]interface{}) if err = json.Unmarshal(data, &additionalProperties); err == nil { - delete(additionalProperties, "sessionId") + delete(additionalProperties, "versionIds") delete(additionalProperties, "projectId") o.AdditionalProperties = additionalProperties } @@ -158,38 +158,38 @@ func (o *GetExportedSessionRunJobsParams) UnmarshalJSON(data []byte) (err error) return err } -type NullableGetExportedSessionRunJobsParams struct { - value *GetExportedSessionRunJobsParams +type NullableGetVersionsVisualizationsParams struct { + value *GetVersionsVisualizationsParams isSet bool } -func (v NullableGetExportedSessionRunJobsParams) Get() *GetExportedSessionRunJobsParams { +func (v NullableGetVersionsVisualizationsParams) Get() *GetVersionsVisualizationsParams { return v.value } -func (v *NullableGetExportedSessionRunJobsParams) Set(val *GetExportedSessionRunJobsParams) { +func (v *NullableGetVersionsVisualizationsParams) Set(val *GetVersionsVisualizationsParams) { v.value = val v.isSet = true } -func (v NullableGetExportedSessionRunJobsParams) IsSet() bool { +func (v NullableGetVersionsVisualizationsParams) IsSet() bool { return v.isSet } -func (v *NullableGetExportedSessionRunJobsParams) Unset() { +func (v *NullableGetVersionsVisualizationsParams) Unset() { v.value = nil v.isSet = false } -func NewNullableGetExportedSessionRunJobsParams(val *GetExportedSessionRunJobsParams) *NullableGetExportedSessionRunJobsParams { - return &NullableGetExportedSessionRunJobsParams{value: val, isSet: true} +func NewNullableGetVersionsVisualizationsParams(val *GetVersionsVisualizationsParams) *NullableGetVersionsVisualizationsParams { + return &NullableGetVersionsVisualizationsParams{value: val, isSet: true} } -func (v NullableGetExportedSessionRunJobsParams) MarshalJSON() ([]byte, error) { +func (v NullableGetVersionsVisualizationsParams) MarshalJSON() ([]byte, error) { return json.Marshal(v.value) } -func (v *NullableGetExportedSessionRunJobsParams) UnmarshalJSON(src []byte) error { +func (v *NullableGetVersionsVisualizationsParams) UnmarshalJSON(src []byte) error { v.isSet = true return json.Unmarshal(src, &v.value) } diff --git a/pkg/tensorleapapi/model_get_session_runs_visualizations_response.go b/pkg/tensorleapapi/model_get_versions_visualizations_response.go similarity index 51% rename from pkg/tensorleapapi/model_get_session_runs_visualizations_response.go rename to pkg/tensorleapapi/model_get_versions_visualizations_response.go index 5184e7c83..cad8ae453 100644 --- a/pkg/tensorleapapi/model_get_session_runs_visualizations_response.go +++ b/pkg/tensorleapapi/model_get_versions_visualizations_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -15,37 +15,37 @@ import ( "fmt" ) -// checks if the GetSessionRunsVisualizationsResponse type satisfies the MappedNullable interface at compile time -var _ MappedNullable = &GetSessionRunsVisualizationsResponse{} +// checks if the GetVersionsVisualizationsResponse type satisfies the MappedNullable interface at compile time +var _ MappedNullable = &GetVersionsVisualizationsResponse{} -// GetSessionRunsVisualizationsResponse struct for GetSessionRunsVisualizationsResponse -type GetSessionRunsVisualizationsResponse struct { +// GetVersionsVisualizationsResponse struct for GetVersionsVisualizationsResponse +type GetVersionsVisualizationsResponse struct { SlimVisualizations []SlimVisualization `json:"slimVisualizations"` AdditionalProperties map[string]interface{} } -type _GetSessionRunsVisualizationsResponse GetSessionRunsVisualizationsResponse +type _GetVersionsVisualizationsResponse GetVersionsVisualizationsResponse -// NewGetSessionRunsVisualizationsResponse instantiates a new GetSessionRunsVisualizationsResponse object +// NewGetVersionsVisualizationsResponse instantiates a new GetVersionsVisualizationsResponse object // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewGetSessionRunsVisualizationsResponse(slimVisualizations []SlimVisualization) *GetSessionRunsVisualizationsResponse { - this := GetSessionRunsVisualizationsResponse{} +func NewGetVersionsVisualizationsResponse(slimVisualizations []SlimVisualization) *GetVersionsVisualizationsResponse { + this := GetVersionsVisualizationsResponse{} this.SlimVisualizations = slimVisualizations return &this } -// NewGetSessionRunsVisualizationsResponseWithDefaults instantiates a new GetSessionRunsVisualizationsResponse object +// NewGetVersionsVisualizationsResponseWithDefaults instantiates a new GetVersionsVisualizationsResponse object // This constructor will only assign default values to properties that have it defined, // but it doesn't guarantee that properties required by API are set -func NewGetSessionRunsVisualizationsResponseWithDefaults() *GetSessionRunsVisualizationsResponse { - this := GetSessionRunsVisualizationsResponse{} +func NewGetVersionsVisualizationsResponseWithDefaults() *GetVersionsVisualizationsResponse { + this := GetVersionsVisualizationsResponse{} return &this } // GetSlimVisualizations returns the SlimVisualizations field value -func (o *GetSessionRunsVisualizationsResponse) GetSlimVisualizations() []SlimVisualization { +func (o *GetVersionsVisualizationsResponse) GetSlimVisualizations() []SlimVisualization { if o == nil { var ret []SlimVisualization return ret @@ -56,7 +56,7 @@ func (o *GetSessionRunsVisualizationsResponse) GetSlimVisualizations() []SlimVis // GetSlimVisualizationsOk returns a tuple with the SlimVisualizations field value // and a boolean to check if the value has been set. -func (o *GetSessionRunsVisualizationsResponse) GetSlimVisualizationsOk() ([]SlimVisualization, bool) { +func (o *GetVersionsVisualizationsResponse) GetSlimVisualizationsOk() ([]SlimVisualization, bool) { if o == nil { return nil, false } @@ -64,11 +64,11 @@ func (o *GetSessionRunsVisualizationsResponse) GetSlimVisualizationsOk() ([]Slim } // SetSlimVisualizations sets field value -func (o *GetSessionRunsVisualizationsResponse) SetSlimVisualizations(v []SlimVisualization) { +func (o *GetVersionsVisualizationsResponse) SetSlimVisualizations(v []SlimVisualization) { o.SlimVisualizations = v } -func (o GetSessionRunsVisualizationsResponse) MarshalJSON() ([]byte, error) { +func (o GetVersionsVisualizationsResponse) MarshalJSON() ([]byte, error) { toSerialize, err := o.ToMap() if err != nil { return []byte{}, err @@ -76,7 +76,7 @@ func (o GetSessionRunsVisualizationsResponse) MarshalJSON() ([]byte, error) { return json.Marshal(toSerialize) } -func (o GetSessionRunsVisualizationsResponse) ToMap() (map[string]interface{}, error) { +func (o GetVersionsVisualizationsResponse) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} toSerialize["slimVisualizations"] = o.SlimVisualizations @@ -87,7 +87,7 @@ func (o GetSessionRunsVisualizationsResponse) ToMap() (map[string]interface{}, e return toSerialize, nil } -func (o *GetSessionRunsVisualizationsResponse) UnmarshalJSON(data []byte) (err error) { +func (o *GetVersionsVisualizationsResponse) UnmarshalJSON(data []byte) (err error) { // This validates that all required properties are included in the JSON object // by unmarshalling the object into a generic map with string keys and checking // that every required field exists as a key in the generic map. @@ -109,15 +109,15 @@ func (o *GetSessionRunsVisualizationsResponse) UnmarshalJSON(data []byte) (err e } } - varGetSessionRunsVisualizationsResponse := _GetSessionRunsVisualizationsResponse{} + varGetVersionsVisualizationsResponse := _GetVersionsVisualizationsResponse{} - err = json.Unmarshal(data, &varGetSessionRunsVisualizationsResponse) + err = json.Unmarshal(data, &varGetVersionsVisualizationsResponse) if err != nil { return err } - *o = GetSessionRunsVisualizationsResponse(varGetSessionRunsVisualizationsResponse) + *o = GetVersionsVisualizationsResponse(varGetVersionsVisualizationsResponse) additionalProperties := make(map[string]interface{}) @@ -129,38 +129,38 @@ func (o *GetSessionRunsVisualizationsResponse) UnmarshalJSON(data []byte) (err e return err } -type NullableGetSessionRunsVisualizationsResponse struct { - value *GetSessionRunsVisualizationsResponse +type NullableGetVersionsVisualizationsResponse struct { + value *GetVersionsVisualizationsResponse isSet bool } -func (v NullableGetSessionRunsVisualizationsResponse) Get() *GetSessionRunsVisualizationsResponse { +func (v NullableGetVersionsVisualizationsResponse) Get() *GetVersionsVisualizationsResponse { return v.value } -func (v *NullableGetSessionRunsVisualizationsResponse) Set(val *GetSessionRunsVisualizationsResponse) { +func (v *NullableGetVersionsVisualizationsResponse) Set(val *GetVersionsVisualizationsResponse) { v.value = val v.isSet = true } -func (v NullableGetSessionRunsVisualizationsResponse) IsSet() bool { +func (v NullableGetVersionsVisualizationsResponse) IsSet() bool { return v.isSet } -func (v *NullableGetSessionRunsVisualizationsResponse) Unset() { +func (v *NullableGetVersionsVisualizationsResponse) Unset() { v.value = nil v.isSet = false } -func NewNullableGetSessionRunsVisualizationsResponse(val *GetSessionRunsVisualizationsResponse) *NullableGetSessionRunsVisualizationsResponse { - return &NullableGetSessionRunsVisualizationsResponse{value: val, isSet: true} +func NewNullableGetVersionsVisualizationsResponse(val *GetVersionsVisualizationsResponse) *NullableGetVersionsVisualizationsResponse { + return &NullableGetVersionsVisualizationsResponse{value: val, isSet: true} } -func (v NullableGetSessionRunsVisualizationsResponse) MarshalJSON() ([]byte, error) { +func (v NullableGetVersionsVisualizationsResponse) MarshalJSON() ([]byte, error) { return json.Marshal(v.value) } -func (v *NullableGetSessionRunsVisualizationsResponse) UnmarshalJSON(src []byte) error { +func (v *NullableGetVersionsVisualizationsResponse) UnmarshalJSON(src []byte) error { v.isSet = true return json.Unmarshal(src, &v.value) } diff --git a/pkg/tensorleapapi/model_grads_analysis.go b/pkg/tensorleapapi/model_grads_analysis.go index ec9869f45..40ed133e5 100644 --- a/pkg/tensorleapapi/model_grads_analysis.go +++ b/pkg/tensorleapapi/model_grads_analysis.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_grads_item.go b/pkg/tensorleapapi/model_grads_item.go index 0a9bc85da..08cb7b569 100644 --- a/pkg/tensorleapapi/model_grads_item.go +++ b/pkg/tensorleapapi/model_grads_item.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_graph_data.go b/pkg/tensorleapapi/model_graph_data.go index a0605327f..6f40b1599 100644 --- a/pkg/tensorleapapi/model_graph_data.go +++ b/pkg/tensorleapapi/model_graph_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_graph_validator_data.go b/pkg/tensorleapapi/model_graph_validator_data.go index 7040ee679..8d10fad29 100644 --- a/pkg/tensorleapapi/model_graph_validator_data.go +++ b/pkg/tensorleapapi/model_graph_validator_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_graph_viz.go b/pkg/tensorleapapi/model_graph_viz.go index 56f0053fc..1386994cb 100644 --- a/pkg/tensorleapapi/model_graph_viz.go +++ b/pkg/tensorleapapi/model_graph_viz.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_health_check_response.go b/pkg/tensorleapapi/model_health_check_response.go index 82f31550e..6fa234be7 100644 --- a/pkg/tensorleapapi/model_health_check_response.go +++ b/pkg/tensorleapapi/model_health_check_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_health_status.go b/pkg/tensorleapapi/model_health_status.go index 58b3531ce..37511d722 100644 --- a/pkg/tensorleapapi/model_health_status.go +++ b/pkg/tensorleapapi/model_health_status.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_heatmap.go b/pkg/tensorleapapi/model_heatmap.go index 6f4986236..8f70fecf6 100644 --- a/pkg/tensorleapapi/model_heatmap.go +++ b/pkg/tensorleapapi/model_heatmap.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_heatmap_charts_params.go b/pkg/tensorleapapi/model_heatmap_charts_params.go index 72480092b..db1eee2ff 100644 --- a/pkg/tensorleapapi/model_heatmap_charts_params.go +++ b/pkg/tensorleapapi/model_heatmap_charts_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -20,16 +20,16 @@ var _ MappedNullable = &HeatmapChartsParams{} // HeatmapChartsParams struct for HeatmapChartsParams type HeatmapChartsParams struct { - ProjectId string `json:"projectId"` - X SplitAgg `json:"x"` - Y SplitAgg `json:"y"` - Color Aggregations `json:"color"` - SessionRunsToEpochs []SessionRunToEpoch `json:"sessionRunsToEpochs"` - ShowAllEpochs bool `json:"showAllEpochs"` - VerticalSplit *SplitAgg `json:"verticalSplit,omitempty"` - HorizontalSplit *SplitAgg `json:"horizontalSplit,omitempty"` - Filters []ESFilter `json:"filters,omitempty"` - ElementInstance *bool `json:"elementInstance,omitempty"` + ProjectId string `json:"projectId"` + X SplitAgg `json:"x"` + Y SplitAgg `json:"y"` + Color Aggregations `json:"color"` + InferenceArtifactIds []string `json:"inferenceArtifactIds"` + ShowAllEpochs bool `json:"showAllEpochs"` + VerticalSplit *SplitAgg `json:"verticalSplit,omitempty"` + HorizontalSplit *SplitAgg `json:"horizontalSplit,omitempty"` + Filters []ESFilter `json:"filters,omitempty"` + ElementInstance *bool `json:"elementInstance,omitempty"` AdditionalProperties map[string]interface{} } @@ -39,13 +39,13 @@ type _HeatmapChartsParams HeatmapChartsParams // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewHeatmapChartsParams(projectId string, x SplitAgg, y SplitAgg, color Aggregations, sessionRunsToEpochs []SessionRunToEpoch, showAllEpochs bool) *HeatmapChartsParams { +func NewHeatmapChartsParams(projectId string, x SplitAgg, y SplitAgg, color Aggregations, inferenceArtifactIds []string, showAllEpochs bool) *HeatmapChartsParams { this := HeatmapChartsParams{} this.ProjectId = projectId this.X = x this.Y = y this.Color = color - this.SessionRunsToEpochs = sessionRunsToEpochs + this.InferenceArtifactIds = inferenceArtifactIds this.ShowAllEpochs = showAllEpochs return &this } @@ -154,28 +154,28 @@ func (o *HeatmapChartsParams) SetColor(v Aggregations) { o.Color = v } -// GetSessionRunsToEpochs returns the SessionRunsToEpochs field value -func (o *HeatmapChartsParams) GetSessionRunsToEpochs() []SessionRunToEpoch { +// GetInferenceArtifactIds returns the InferenceArtifactIds field value +func (o *HeatmapChartsParams) GetInferenceArtifactIds() []string { if o == nil { - var ret []SessionRunToEpoch + var ret []string return ret } - return o.SessionRunsToEpochs + return o.InferenceArtifactIds } -// GetSessionRunsToEpochsOk returns a tuple with the SessionRunsToEpochs field value +// GetInferenceArtifactIdsOk returns a tuple with the InferenceArtifactIds field value // and a boolean to check if the value has been set. -func (o *HeatmapChartsParams) GetSessionRunsToEpochsOk() ([]SessionRunToEpoch, bool) { +func (o *HeatmapChartsParams) GetInferenceArtifactIdsOk() ([]string, bool) { if o == nil { return nil, false } - return o.SessionRunsToEpochs, true + return o.InferenceArtifactIds, true } -// SetSessionRunsToEpochs sets field value -func (o *HeatmapChartsParams) SetSessionRunsToEpochs(v []SessionRunToEpoch) { - o.SessionRunsToEpochs = v +// SetInferenceArtifactIds sets field value +func (o *HeatmapChartsParams) SetInferenceArtifactIds(v []string) { + o.InferenceArtifactIds = v } // GetShowAllEpochs returns the ShowAllEpochs field value @@ -344,7 +344,7 @@ func (o HeatmapChartsParams) ToMap() (map[string]interface{}, error) { toSerialize["x"] = o.X toSerialize["y"] = o.Y toSerialize["color"] = o.Color - toSerialize["sessionRunsToEpochs"] = o.SessionRunsToEpochs + toSerialize["inferenceArtifactIds"] = o.InferenceArtifactIds toSerialize["showAllEpochs"] = o.ShowAllEpochs if !IsNil(o.VerticalSplit) { toSerialize["verticalSplit"] = o.VerticalSplit @@ -375,7 +375,7 @@ func (o *HeatmapChartsParams) UnmarshalJSON(data []byte) (err error) { "x", "y", "color", - "sessionRunsToEpochs", + "inferenceArtifactIds", "showAllEpochs", } @@ -410,7 +410,7 @@ func (o *HeatmapChartsParams) UnmarshalJSON(data []byte) (err error) { delete(additionalProperties, "x") delete(additionalProperties, "y") delete(additionalProperties, "color") - delete(additionalProperties, "sessionRunsToEpochs") + delete(additionalProperties, "inferenceArtifactIds") delete(additionalProperties, "showAllEpochs") delete(additionalProperties, "verticalSplit") delete(additionalProperties, "horizontalSplit") diff --git a/pkg/tensorleapapi/model_heatmap_type.go b/pkg/tensorleapapi/model_heatmap_type.go index 338eb3388..f507678ba 100644 --- a/pkg/tensorleapapi/model_heatmap_type.go +++ b/pkg/tensorleapapi/model_heatmap_type.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_horizontal_bar_data.go b/pkg/tensorleapapi/model_horizontal_bar_data.go index 52baf9999..58be113a7 100644 --- a/pkg/tensorleapapi/model_horizontal_bar_data.go +++ b/pkg/tensorleapapi/model_horizontal_bar_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_horizontal_bar_viz.go b/pkg/tensorleapapi/model_horizontal_bar_viz.go index 77a0c8fc8..00d8ab206 100644 --- a/pkg/tensorleapapi/model_horizontal_bar_viz.go +++ b/pkg/tensorleapapi/model_horizontal_bar_viz.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_http_methods.go b/pkg/tensorleapapi/model_http_methods.go index f4af5b943..c8e3173cf 100644 --- a/pkg/tensorleapapi/model_http_methods.go +++ b/pkg/tensorleapapi/model_http_methods.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_hub_publish_policy.go b/pkg/tensorleapapi/model_hub_publish_policy.go index 2d7d40f22..919e90e4c 100644 --- a/pkg/tensorleapapi/model_hub_publish_policy.go +++ b/pkg/tensorleapapi/model_hub_publish_policy.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_image_data.go b/pkg/tensorleapapi/model_image_data.go index 78306a079..fa508ee7d 100644 --- a/pkg/tensorleapapi/model_image_data.go +++ b/pkg/tensorleapapi/model_image_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_image_heatmap_data.go b/pkg/tensorleapapi/model_image_heatmap_data.go index 0879b24ae..4fc17c819 100644 --- a/pkg/tensorleapapi/model_image_heatmap_data.go +++ b/pkg/tensorleapapi/model_image_heatmap_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_image_viz.go b/pkg/tensorleapapi/model_image_viz.go index 1e3d684f0..eded7db7f 100644 --- a/pkg/tensorleapapi/model_image_viz.go +++ b/pkg/tensorleapapi/model_image_viz.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_import_external_model_params.go b/pkg/tensorleapapi/model_import_external_model_params.go index b66bc276b..abc2fd31f 100644 --- a/pkg/tensorleapapi/model_import_external_model_params.go +++ b/pkg/tensorleapapi/model_import_external_model_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_import_model_info.go b/pkg/tensorleapapi/model_import_model_info.go index 900ad8f99..d20e705d8 100644 --- a/pkg/tensorleapapi/model_import_model_info.go +++ b/pkg/tensorleapapi/model_import_model_info.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_import_model_type.go b/pkg/tensorleapapi/model_import_model_type.go index 6fb333fac..2560cb937 100644 --- a/pkg/tensorleapapi/model_import_model_type.go +++ b/pkg/tensorleapapi/model_import_model_type.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_import_new_model_params.go b/pkg/tensorleapapi/model_import_new_model_params.go index 732fcfac1..bd8469792 100644 --- a/pkg/tensorleapapi/model_import_new_model_params.go +++ b/pkg/tensorleapapi/model_import_new_model_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_import_project_params.go b/pkg/tensorleapapi/model_import_project_params.go index 3f2cae7ca..0cdca3245 100644 --- a/pkg/tensorleapapi/model_import_project_params.go +++ b/pkg/tensorleapapi/model_import_project_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_import_project_request.go b/pkg/tensorleapapi/model_import_project_request.go index 6917c3880..78d5a212c 100644 --- a/pkg/tensorleapapi/model_import_project_request.go +++ b/pkg/tensorleapapi/model_import_project_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_import_project_response.go b/pkg/tensorleapapi/model_import_project_response.go index 09d41d7a7..8cd859319 100644 --- a/pkg/tensorleapapi/model_import_project_response.go +++ b/pkg/tensorleapapi/model_import_project_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_init_experiment_request.go b/pkg/tensorleapapi/model_init_experiment_request.go index 763b2475c..b6229e381 100644 --- a/pkg/tensorleapapi/model_init_experiment_request.go +++ b/pkg/tensorleapapi/model_init_experiment_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_init_experiment_response.go b/pkg/tensorleapapi/model_init_experiment_response.go index 8589f8362..d5e7fc085 100644 --- a/pkg/tensorleapapi/model_init_experiment_response.go +++ b/pkg/tensorleapapi/model_init_experiment_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_insight.go b/pkg/tensorleapapi/model_insight.go index 9f4d50714..cf7440b37 100644 --- a/pkg/tensorleapapi/model_insight.go +++ b/pkg/tensorleapapi/model_insight.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -22,7 +22,7 @@ var _ MappedNullable = &Insight{} // Insight struct for Insight type Insight struct { Cid string `json:"cid"` - SessionRunId string `json:"sessionRunId"` + InferenceArtifactId *string `json:"inferenceArtifactId,omitempty"` InsightType InsightType `json:"insightType"` Index float64 `json:"index"` Status InsightStatus `json:"status"` @@ -37,10 +37,9 @@ type _Insight Insight // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewInsight(cid string, sessionRunId string, insightType InsightType, index float64, status InsightStatus, createdAt time.Time, updatedAt time.Time) *Insight { +func NewInsight(cid string, insightType InsightType, index float64, status InsightStatus, createdAt time.Time, updatedAt time.Time) *Insight { this := Insight{} this.Cid = cid - this.SessionRunId = sessionRunId this.InsightType = insightType this.Index = index this.Status = status @@ -81,28 +80,36 @@ func (o *Insight) SetCid(v string) { o.Cid = v } -// GetSessionRunId returns the SessionRunId field value -func (o *Insight) GetSessionRunId() string { - if o == nil { +// GetInferenceArtifactId returns the InferenceArtifactId field value if set, zero value otherwise. +func (o *Insight) GetInferenceArtifactId() string { + if o == nil || IsNil(o.InferenceArtifactId) { var ret string return ret } - - return o.SessionRunId + return *o.InferenceArtifactId } -// GetSessionRunIdOk returns a tuple with the SessionRunId field value +// GetInferenceArtifactIdOk returns a tuple with the InferenceArtifactId field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Insight) GetSessionRunIdOk() (*string, bool) { - if o == nil { +func (o *Insight) GetInferenceArtifactIdOk() (*string, bool) { + if o == nil || IsNil(o.InferenceArtifactId) { return nil, false } - return &o.SessionRunId, true + return o.InferenceArtifactId, true +} + +// HasInferenceArtifactId returns a boolean if a field has been set. +func (o *Insight) HasInferenceArtifactId() bool { + if o != nil && !IsNil(o.InferenceArtifactId) { + return true + } + + return false } -// SetSessionRunId sets field value -func (o *Insight) SetSessionRunId(v string) { - o.SessionRunId = v +// SetInferenceArtifactId gets a reference to the given string and assigns it to the InferenceArtifactId field. +func (o *Insight) SetInferenceArtifactId(v string) { + o.InferenceArtifactId = &v } // GetInsightType returns the InsightType field value @@ -236,7 +243,9 @@ func (o Insight) MarshalJSON() ([]byte, error) { func (o Insight) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} toSerialize["cid"] = o.Cid - toSerialize["sessionRunId"] = o.SessionRunId + if !IsNil(o.InferenceArtifactId) { + toSerialize["inferenceArtifactId"] = o.InferenceArtifactId + } toSerialize["insightType"] = o.InsightType toSerialize["index"] = o.Index toSerialize["status"] = o.Status @@ -256,7 +265,6 @@ func (o *Insight) UnmarshalJSON(data []byte) (err error) { // that every required field exists as a key in the generic map. requiredProperties := []string{ "cid", - "sessionRunId", "insightType", "index", "status", @@ -292,7 +300,7 @@ func (o *Insight) UnmarshalJSON(data []byte) (err error) { if err = json.Unmarshal(data, &additionalProperties); err == nil { delete(additionalProperties, "cid") - delete(additionalProperties, "sessionRunId") + delete(additionalProperties, "inferenceArtifactId") delete(additionalProperties, "insightType") delete(additionalProperties, "index") delete(additionalProperties, "status") diff --git a/pkg/tensorleapapi/model_insight_automatic_test_.go b/pkg/tensorleapapi/model_insight_automatic_test_.go index e7b9bd8e4..a2dd4d6b8 100644 --- a/pkg/tensorleapapi/model_insight_automatic_test_.go +++ b/pkg/tensorleapapi/model_insight_automatic_test_.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_insight_filter_display_data.go b/pkg/tensorleapapi/model_insight_filter_display_data.go index 0e020cf68..20ef00ceb 100644 --- a/pkg/tensorleapapi/model_insight_filter_display_data.go +++ b/pkg/tensorleapapi/model_insight_filter_display_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_insight_filter_display_data_insights_inner.go b/pkg/tensorleapapi/model_insight_filter_display_data_insights_inner.go index 05b92e4dd..6bde82739 100644 --- a/pkg/tensorleapapi/model_insight_filter_display_data_insights_inner.go +++ b/pkg/tensorleapapi/model_insight_filter_display_data_insights_inner.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -20,9 +20,9 @@ var _ MappedNullable = &InsightFilterDisplayDataInsightsInner{} // InsightFilterDisplayDataInsightsInner struct for InsightFilterDisplayDataInsightsInner type InsightFilterDisplayDataInsightsInner struct { - Index float64 `json:"index"` - InsightType InsightType `json:"insightType"` - SessionRun FilterSessionRun `json:"sessionRun"` + Index float64 `json:"index"` + InsightType InsightType `json:"insightType"` + Version FilterVersion `json:"version"` AdditionalProperties map[string]interface{} } @@ -32,11 +32,11 @@ type _InsightFilterDisplayDataInsightsInner InsightFilterDisplayDataInsightsInne // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewInsightFilterDisplayDataInsightsInner(index float64, insightType InsightType, sessionRun FilterSessionRun) *InsightFilterDisplayDataInsightsInner { +func NewInsightFilterDisplayDataInsightsInner(index float64, insightType InsightType, version FilterVersion) *InsightFilterDisplayDataInsightsInner { this := InsightFilterDisplayDataInsightsInner{} this.Index = index this.InsightType = insightType - this.SessionRun = sessionRun + this.Version = version return &this } @@ -96,28 +96,28 @@ func (o *InsightFilterDisplayDataInsightsInner) SetInsightType(v InsightType) { o.InsightType = v } -// GetSessionRun returns the SessionRun field value -func (o *InsightFilterDisplayDataInsightsInner) GetSessionRun() FilterSessionRun { +// GetVersion returns the Version field value +func (o *InsightFilterDisplayDataInsightsInner) GetVersion() FilterVersion { if o == nil { - var ret FilterSessionRun + var ret FilterVersion return ret } - return o.SessionRun + return o.Version } -// GetSessionRunOk returns a tuple with the SessionRun field value +// GetVersionOk returns a tuple with the Version field value // and a boolean to check if the value has been set. -func (o *InsightFilterDisplayDataInsightsInner) GetSessionRunOk() (*FilterSessionRun, bool) { +func (o *InsightFilterDisplayDataInsightsInner) GetVersionOk() (*FilterVersion, bool) { if o == nil { return nil, false } - return &o.SessionRun, true + return &o.Version, true } -// SetSessionRun sets field value -func (o *InsightFilterDisplayDataInsightsInner) SetSessionRun(v FilterSessionRun) { - o.SessionRun = v +// SetVersion sets field value +func (o *InsightFilterDisplayDataInsightsInner) SetVersion(v FilterVersion) { + o.Version = v } func (o InsightFilterDisplayDataInsightsInner) MarshalJSON() ([]byte, error) { @@ -132,7 +132,7 @@ func (o InsightFilterDisplayDataInsightsInner) ToMap() (map[string]interface{}, toSerialize := map[string]interface{}{} toSerialize["index"] = o.Index toSerialize["insightType"] = o.InsightType - toSerialize["sessionRun"] = o.SessionRun + toSerialize["version"] = o.Version for key, value := range o.AdditionalProperties { toSerialize[key] = value @@ -148,7 +148,7 @@ func (o *InsightFilterDisplayDataInsightsInner) UnmarshalJSON(data []byte) (err requiredProperties := []string{ "index", "insightType", - "sessionRun", + "version", } allProperties := make(map[string]interface{}) @@ -180,7 +180,7 @@ func (o *InsightFilterDisplayDataInsightsInner) UnmarshalJSON(data []byte) (err if err = json.Unmarshal(data, &additionalProperties); err == nil { delete(additionalProperties, "index") delete(additionalProperties, "insightType") - delete(additionalProperties, "sessionRun") + delete(additionalProperties, "version") o.AdditionalProperties = additionalProperties } diff --git a/pkg/tensorleapapi/model_insight_metric_info.go b/pkg/tensorleapapi/model_insight_metric_info.go index 5c6339ec1..e06246ac8 100644 --- a/pkg/tensorleapapi/model_insight_metric_info.go +++ b/pkg/tensorleapapi/model_insight_metric_info.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_insight_status.go b/pkg/tensorleapapi/model_insight_status.go index f500c17c8..c138a802d 100644 --- a/pkg/tensorleapapi/model_insight_status.go +++ b/pkg/tensorleapapi/model_insight_status.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_insight_type.go b/pkg/tensorleapapi/model_insight_type.go index 3bfcab8ec..eb3d002be 100644 --- a/pkg/tensorleapapi/model_insight_type.go +++ b/pkg/tensorleapapi/model_insight_type.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -19,6 +19,7 @@ type InsightType struct { DataLeakageInsight *DataLeakageInsight DomainGapInsight *DomainGapInsight DuplicationInsight *DuplicationInsight + LowPerformanceInsight *LowPerformanceInsight MislabeledSamplesInsight *MislabeledSamplesInsight ScatterInsightBase *ScatterInsightBase UnderRepresentationInsight *UnderRepresentationInsight @@ -66,6 +67,19 @@ func (dst *InsightType) UnmarshalJSON(data []byte) error { dst.DuplicationInsight = nil } + // try to unmarshal JSON data into LowPerformanceInsight + err = json.Unmarshal(data, &dst.LowPerformanceInsight) + if err == nil { + jsonLowPerformanceInsight, _ := json.Marshal(dst.LowPerformanceInsight) + if string(jsonLowPerformanceInsight) == "{}" { // empty struct + dst.LowPerformanceInsight = nil + } else { + return nil // data stored in dst.LowPerformanceInsight, return on the first match + } + } else { + dst.LowPerformanceInsight = nil + } + // try to unmarshal JSON data into MislabeledSamplesInsight err = json.Unmarshal(data, &dst.MislabeledSamplesInsight) if err == nil { @@ -122,6 +136,10 @@ func (src InsightType) MarshalJSON() ([]byte, error) { return json.Marshal(&src.DuplicationInsight) } + if src.LowPerformanceInsight != nil { + return json.Marshal(&src.LowPerformanceInsight) + } + if src.MislabeledSamplesInsight != nil { return json.Marshal(&src.MislabeledSamplesInsight) } diff --git a/pkg/tensorleapapi/model_insights_job_params.go b/pkg/tensorleapapi/model_insights_job_params.go index 8c951f44e..50d3831ef 100644 --- a/pkg/tensorleapapi/model_insights_job_params.go +++ b/pkg/tensorleapapi/model_insights_job_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -21,7 +21,8 @@ var _ MappedNullable = &InsightsJobParams{} // InsightsJobParams struct for InsightsJobParams type InsightsJobParams struct { Filters []ESFilter `json:"filters,omitempty"` - SessionRunId string `json:"sessionRunId"` + InferenceArtifactId *string `json:"inferenceArtifactId,omitempty"` + VersionId *string `json:"versionId,omitempty"` Type string `json:"type"` AdditionalProperties map[string]interface{} } @@ -32,9 +33,8 @@ type _InsightsJobParams InsightsJobParams // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewInsightsJobParams(sessionRunId string, type_ string) *InsightsJobParams { +func NewInsightsJobParams(type_ string) *InsightsJobParams { this := InsightsJobParams{} - this.SessionRunId = sessionRunId this.Type = type_ return &this } @@ -79,28 +79,68 @@ func (o *InsightsJobParams) SetFilters(v []ESFilter) { o.Filters = v } -// GetSessionRunId returns the SessionRunId field value -func (o *InsightsJobParams) GetSessionRunId() string { - if o == nil { +// GetInferenceArtifactId returns the InferenceArtifactId field value if set, zero value otherwise. +func (o *InsightsJobParams) GetInferenceArtifactId() string { + if o == nil || IsNil(o.InferenceArtifactId) { var ret string return ret } + return *o.InferenceArtifactId +} + +// GetInferenceArtifactIdOk returns a tuple with the InferenceArtifactId field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *InsightsJobParams) GetInferenceArtifactIdOk() (*string, bool) { + if o == nil || IsNil(o.InferenceArtifactId) { + return nil, false + } + return o.InferenceArtifactId, true +} + +// HasInferenceArtifactId returns a boolean if a field has been set. +func (o *InsightsJobParams) HasInferenceArtifactId() bool { + if o != nil && !IsNil(o.InferenceArtifactId) { + return true + } - return o.SessionRunId + return false } -// GetSessionRunIdOk returns a tuple with the SessionRunId field value +// SetInferenceArtifactId gets a reference to the given string and assigns it to the InferenceArtifactId field. +func (o *InsightsJobParams) SetInferenceArtifactId(v string) { + o.InferenceArtifactId = &v +} + +// GetVersionId returns the VersionId field value if set, zero value otherwise. +func (o *InsightsJobParams) GetVersionId() string { + if o == nil || IsNil(o.VersionId) { + var ret string + return ret + } + return *o.VersionId +} + +// GetVersionIdOk returns a tuple with the VersionId field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *InsightsJobParams) GetSessionRunIdOk() (*string, bool) { - if o == nil { +func (o *InsightsJobParams) GetVersionIdOk() (*string, bool) { + if o == nil || IsNil(o.VersionId) { return nil, false } - return &o.SessionRunId, true + return o.VersionId, true } -// SetSessionRunId sets field value -func (o *InsightsJobParams) SetSessionRunId(v string) { - o.SessionRunId = v +// HasVersionId returns a boolean if a field has been set. +func (o *InsightsJobParams) HasVersionId() bool { + if o != nil && !IsNil(o.VersionId) { + return true + } + + return false +} + +// SetVersionId gets a reference to the given string and assigns it to the VersionId field. +func (o *InsightsJobParams) SetVersionId(v string) { + o.VersionId = &v } // GetType returns the Type field value @@ -140,7 +180,12 @@ func (o InsightsJobParams) ToMap() (map[string]interface{}, error) { if !IsNil(o.Filters) { toSerialize["filters"] = o.Filters } - toSerialize["sessionRunId"] = o.SessionRunId + if !IsNil(o.InferenceArtifactId) { + toSerialize["inferenceArtifactId"] = o.InferenceArtifactId + } + if !IsNil(o.VersionId) { + toSerialize["versionId"] = o.VersionId + } toSerialize["type"] = o.Type for key, value := range o.AdditionalProperties { @@ -155,7 +200,6 @@ func (o *InsightsJobParams) UnmarshalJSON(data []byte) (err error) { // by unmarshalling the object into a generic map with string keys and checking // that every required field exists as a key in the generic map. requiredProperties := []string{ - "sessionRunId", "type", } @@ -187,7 +231,8 @@ func (o *InsightsJobParams) UnmarshalJSON(data []byte) (err error) { if err = json.Unmarshal(data, &additionalProperties); err == nil { delete(additionalProperties, "filters") - delete(additionalProperties, "sessionRunId") + delete(additionalProperties, "inferenceArtifactId") + delete(additionalProperties, "versionId") delete(additionalProperties, "type") o.AdditionalProperties = additionalProperties } diff --git a/pkg/tensorleapapi/model_issue.go b/pkg/tensorleapapi/model_issue.go index fbda1df0c..63d47c29f 100644 --- a/pkg/tensorleapapi/model_issue.go +++ b/pkg/tensorleapapi/model_issue.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_issue_action.go b/pkg/tensorleapapi/model_issue_action.go index 60608870e..dbbeff245 100644 --- a/pkg/tensorleapapi/model_issue_action.go +++ b/pkg/tensorleapapi/model_issue_action.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_issue_action_type.go b/pkg/tensorleapapi/model_issue_action_type.go index 1314784c5..290c06e71 100644 --- a/pkg/tensorleapapi/model_issue_action_type.go +++ b/pkg/tensorleapapi/model_issue_action_type.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_issue_activity.go b/pkg/tensorleapapi/model_issue_activity.go index 81e23150b..b60741619 100644 --- a/pkg/tensorleapapi/model_issue_activity.go +++ b/pkg/tensorleapapi/model_issue_activity.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_issue_file_upload_signed_url.go b/pkg/tensorleapapi/model_issue_file_upload_signed_url.go index 1ac310e11..ff1443fae 100644 --- a/pkg/tensorleapapi/model_issue_file_upload_signed_url.go +++ b/pkg/tensorleapapi/model_issue_file_upload_signed_url.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_issue_status.go b/pkg/tensorleapapi/model_issue_status.go index 4c8e0f8b8..50f2213d9 100644 --- a/pkg/tensorleapapi/model_issue_status.go +++ b/pkg/tensorleapapi/model_issue_status.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_job.go b/pkg/tensorleapapi/model_job.go index 772386f98..485b2f551 100644 --- a/pkg/tensorleapapi/model_job.go +++ b/pkg/tensorleapapi/model_job.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -31,7 +31,7 @@ type Job struct { CreatedAt time.Time `json:"createdAt"` UpdatedAt time.Time `json:"updatedAt"` Params *JobParams `json:"params,omitempty"` - SessionRunId *string `json:"sessionRunId,omitempty"` + VersionId *string `json:"versionId,omitempty"` TeamId string `json:"teamId"` CodeSnapshotInfo *CodeSnapshotInfo `json:"codeSnapshotInfo,omitempty"` EventsSnapshot *EventsSnapshot `json:"eventsSnapshot,omitempty"` @@ -337,36 +337,36 @@ func (o *Job) SetParams(v JobParams) { o.Params = &v } -// GetSessionRunId returns the SessionRunId field value if set, zero value otherwise. -func (o *Job) GetSessionRunId() string { - if o == nil || IsNil(o.SessionRunId) { +// GetVersionId returns the VersionId field value if set, zero value otherwise. +func (o *Job) GetVersionId() string { + if o == nil || IsNil(o.VersionId) { var ret string return ret } - return *o.SessionRunId + return *o.VersionId } -// GetSessionRunIdOk returns a tuple with the SessionRunId field value if set, nil otherwise +// GetVersionIdOk returns a tuple with the VersionId field value if set, nil otherwise // and a boolean to check if the value has been set. -func (o *Job) GetSessionRunIdOk() (*string, bool) { - if o == nil || IsNil(o.SessionRunId) { +func (o *Job) GetVersionIdOk() (*string, bool) { + if o == nil || IsNil(o.VersionId) { return nil, false } - return o.SessionRunId, true + return o.VersionId, true } -// HasSessionRunId returns a boolean if a field has been set. -func (o *Job) HasSessionRunId() bool { - if o != nil && !IsNil(o.SessionRunId) { +// HasVersionId returns a boolean if a field has been set. +func (o *Job) HasVersionId() bool { + if o != nil && !IsNil(o.VersionId) { return true } return false } -// SetSessionRunId gets a reference to the given string and assigns it to the SessionRunId field. -func (o *Job) SetSessionRunId(v string) { - o.SessionRunId = &v +// SetVersionId gets a reference to the given string and assigns it to the VersionId field. +func (o *Job) SetVersionId(v string) { + o.VersionId = &v } // GetTeamId returns the TeamId field value @@ -517,8 +517,8 @@ func (o Job) ToMap() (map[string]interface{}, error) { if !IsNil(o.Params) { toSerialize["params"] = o.Params } - if !IsNil(o.SessionRunId) { - toSerialize["sessionRunId"] = o.SessionRunId + if !IsNil(o.VersionId) { + toSerialize["versionId"] = o.VersionId } toSerialize["teamId"] = o.TeamId if !IsNil(o.CodeSnapshotInfo) { @@ -589,7 +589,7 @@ func (o *Job) UnmarshalJSON(data []byte) (err error) { delete(additionalProperties, "createdAt") delete(additionalProperties, "updatedAt") delete(additionalProperties, "params") - delete(additionalProperties, "sessionRunId") + delete(additionalProperties, "versionId") delete(additionalProperties, "teamId") delete(additionalProperties, "codeSnapshotInfo") delete(additionalProperties, "eventsSnapshot") diff --git a/pkg/tensorleapapi/model_job_event.go b/pkg/tensorleapapi/model_job_event.go index 40bce4f4e..e763a9ab7 100644 --- a/pkg/tensorleapapi/model_job_event.go +++ b/pkg/tensorleapapi/model_job_event.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_job_event_progress.go b/pkg/tensorleapapi/model_job_event_progress.go index 110661ca9..e22bc37bc 100644 --- a/pkg/tensorleapapi/model_job_event_progress.go +++ b/pkg/tensorleapapi/model_job_event_progress.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_job_message_params.go b/pkg/tensorleapapi/model_job_message_params.go index 519543e3e..29b04d5d1 100644 --- a/pkg/tensorleapapi/model_job_message_params.go +++ b/pkg/tensorleapapi/model_job_message_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_job_notification_analyze_context.go b/pkg/tensorleapapi/model_job_notification_analyze_context.go index fa59f5db3..04e38085d 100644 --- a/pkg/tensorleapapi/model_job_notification_analyze_context.go +++ b/pkg/tensorleapapi/model_job_notification_analyze_context.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -30,7 +30,6 @@ type JobNotificationAnalyzeContext struct { VersionId string `json:"versionId"` SessionId *string `json:"sessionId,omitempty"` Epoch *float64 `json:"epoch,omitempty"` - SessionRunId string `json:"sessionRunId"` AdditionalProperties map[string]interface{} } @@ -40,7 +39,7 @@ type _JobNotificationAnalyzeContext JobNotificationAnalyzeContext // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewJobNotificationAnalyzeContext(jobId string, jobType JobType, projectName string, projectId string, modelName string, modelExtId string, isOverwrite bool, versionId string, sessionRunId string) *JobNotificationAnalyzeContext { +func NewJobNotificationAnalyzeContext(jobId string, jobType JobType, projectName string, projectId string, modelName string, modelExtId string, isOverwrite bool, versionId string) *JobNotificationAnalyzeContext { this := JobNotificationAnalyzeContext{} this.JobId = jobId this.JobType = jobType @@ -50,7 +49,6 @@ func NewJobNotificationAnalyzeContext(jobId string, jobType JobType, projectName this.ModelExtId = modelExtId this.IsOverwrite = isOverwrite this.VersionId = versionId - this.SessionRunId = sessionRunId return &this } @@ -318,30 +316,6 @@ func (o *JobNotificationAnalyzeContext) SetEpoch(v float64) { o.Epoch = &v } -// GetSessionRunId returns the SessionRunId field value -func (o *JobNotificationAnalyzeContext) GetSessionRunId() string { - if o == nil { - var ret string - return ret - } - - return o.SessionRunId -} - -// GetSessionRunIdOk returns a tuple with the SessionRunId field value -// and a boolean to check if the value has been set. -func (o *JobNotificationAnalyzeContext) GetSessionRunIdOk() (*string, bool) { - if o == nil { - return nil, false - } - return &o.SessionRunId, true -} - -// SetSessionRunId sets field value -func (o *JobNotificationAnalyzeContext) SetSessionRunId(v string) { - o.SessionRunId = v -} - func (o JobNotificationAnalyzeContext) MarshalJSON() ([]byte, error) { toSerialize, err := o.ToMap() if err != nil { @@ -366,7 +340,6 @@ func (o JobNotificationAnalyzeContext) ToMap() (map[string]interface{}, error) { if !IsNil(o.Epoch) { toSerialize["epoch"] = o.Epoch } - toSerialize["sessionRunId"] = o.SessionRunId for key, value := range o.AdditionalProperties { toSerialize[key] = value @@ -388,7 +361,6 @@ func (o *JobNotificationAnalyzeContext) UnmarshalJSON(data []byte) (err error) { "modelExtId", "isOverwrite", "versionId", - "sessionRunId", } allProperties := make(map[string]interface{}) @@ -428,7 +400,6 @@ func (o *JobNotificationAnalyzeContext) UnmarshalJSON(data []byte) (err error) { delete(additionalProperties, "versionId") delete(additionalProperties, "sessionId") delete(additionalProperties, "epoch") - delete(additionalProperties, "sessionRunId") o.AdditionalProperties = additionalProperties } diff --git a/pkg/tensorleapapi/model_job_notification_base_context.go b/pkg/tensorleapapi/model_job_notification_base_context.go index 9da09f347..a27d004f5 100644 --- a/pkg/tensorleapapi/model_job_notification_base_context.go +++ b/pkg/tensorleapapi/model_job_notification_base_context.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_job_notification_context.go b/pkg/tensorleapapi/model_job_notification_context.go index 850c7bb7b..60641db0f 100644 --- a/pkg/tensorleapapi/model_job_notification_context.go +++ b/pkg/tensorleapapi/model_job_notification_context.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -20,6 +20,7 @@ type JobNotificationContext struct { JobNotificationBaseContext *JobNotificationBaseContext JobNotificationLeepScriptContext *JobNotificationLeepScriptContext JobNotificationModelContext *JobNotificationModelContext + JobNotificationProjectContext *JobNotificationProjectContext JobNotificationSampleContext *JobNotificationSampleContext } @@ -78,6 +79,19 @@ func (dst *JobNotificationContext) UnmarshalJSON(data []byte) error { dst.JobNotificationModelContext = nil } + // try to unmarshal JSON data into JobNotificationProjectContext + err = json.Unmarshal(data, &dst.JobNotificationProjectContext) + if err == nil { + jsonJobNotificationProjectContext, _ := json.Marshal(dst.JobNotificationProjectContext) + if string(jsonJobNotificationProjectContext) == "{}" { // empty struct + dst.JobNotificationProjectContext = nil + } else { + return nil // data stored in dst.JobNotificationProjectContext, return on the first match + } + } else { + dst.JobNotificationProjectContext = nil + } + // try to unmarshal JSON data into JobNotificationSampleContext err = json.Unmarshal(data, &dst.JobNotificationSampleContext) if err == nil { @@ -112,6 +126,10 @@ func (src JobNotificationContext) MarshalJSON() ([]byte, error) { return json.Marshal(&src.JobNotificationModelContext) } + if src.JobNotificationProjectContext != nil { + return json.Marshal(&src.JobNotificationProjectContext) + } + if src.JobNotificationSampleContext != nil { return json.Marshal(&src.JobNotificationSampleContext) } diff --git a/pkg/tensorleapapi/model_job_notification_leep_script_context.go b/pkg/tensorleapapi/model_job_notification_leep_script_context.go index 3e678a328..dd8521537 100644 --- a/pkg/tensorleapapi/model_job_notification_leep_script_context.go +++ b/pkg/tensorleapapi/model_job_notification_leep_script_context.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_job_notification_model_context.go b/pkg/tensorleapapi/model_job_notification_model_context.go index 2dfd2ff4a..8a654fa92 100644 --- a/pkg/tensorleapapi/model_job_notification_model_context.go +++ b/pkg/tensorleapapi/model_job_notification_model_context.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_job_notification_project_context.go b/pkg/tensorleapapi/model_job_notification_project_context.go new file mode 100644 index 000000000..b35c5aba9 --- /dev/null +++ b/pkg/tensorleapapi/model_job_notification_project_context.go @@ -0,0 +1,224 @@ +/* +node-server + +No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + +API version: 11.0.23 +*/ + +// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. + +package tensorleapapi + +import ( + "encoding/json" + "fmt" +) + +// checks if the JobNotificationProjectContext type satisfies the MappedNullable interface at compile time +var _ MappedNullable = &JobNotificationProjectContext{} + +// JobNotificationProjectContext struct for JobNotificationProjectContext +type JobNotificationProjectContext struct { + JobId string `json:"jobId"` + JobType JobType `json:"jobType"` + ProjectName string `json:"projectName"` + AdditionalProperties map[string]interface{} +} + +type _JobNotificationProjectContext JobNotificationProjectContext + +// NewJobNotificationProjectContext instantiates a new JobNotificationProjectContext object +// This constructor will assign default values to properties that have it defined, +// and makes sure properties required by API are set, but the set of arguments +// will change when the set of required properties is changed +func NewJobNotificationProjectContext(jobId string, jobType JobType, projectName string) *JobNotificationProjectContext { + this := JobNotificationProjectContext{} + this.JobId = jobId + this.JobType = jobType + this.ProjectName = projectName + return &this +} + +// NewJobNotificationProjectContextWithDefaults instantiates a new JobNotificationProjectContext object +// This constructor will only assign default values to properties that have it defined, +// but it doesn't guarantee that properties required by API are set +func NewJobNotificationProjectContextWithDefaults() *JobNotificationProjectContext { + this := JobNotificationProjectContext{} + return &this +} + +// GetJobId returns the JobId field value +func (o *JobNotificationProjectContext) GetJobId() string { + if o == nil { + var ret string + return ret + } + + return o.JobId +} + +// GetJobIdOk returns a tuple with the JobId field value +// and a boolean to check if the value has been set. +func (o *JobNotificationProjectContext) GetJobIdOk() (*string, bool) { + if o == nil { + return nil, false + } + return &o.JobId, true +} + +// SetJobId sets field value +func (o *JobNotificationProjectContext) SetJobId(v string) { + o.JobId = v +} + +// GetJobType returns the JobType field value +func (o *JobNotificationProjectContext) GetJobType() JobType { + if o == nil { + var ret JobType + return ret + } + + return o.JobType +} + +// GetJobTypeOk returns a tuple with the JobType field value +// and a boolean to check if the value has been set. +func (o *JobNotificationProjectContext) GetJobTypeOk() (*JobType, bool) { + if o == nil { + return nil, false + } + return &o.JobType, true +} + +// SetJobType sets field value +func (o *JobNotificationProjectContext) SetJobType(v JobType) { + o.JobType = v +} + +// GetProjectName returns the ProjectName field value +func (o *JobNotificationProjectContext) GetProjectName() string { + if o == nil { + var ret string + return ret + } + + return o.ProjectName +} + +// GetProjectNameOk returns a tuple with the ProjectName field value +// and a boolean to check if the value has been set. +func (o *JobNotificationProjectContext) GetProjectNameOk() (*string, bool) { + if o == nil { + return nil, false + } + return &o.ProjectName, true +} + +// SetProjectName sets field value +func (o *JobNotificationProjectContext) SetProjectName(v string) { + o.ProjectName = v +} + +func (o JobNotificationProjectContext) MarshalJSON() ([]byte, error) { + toSerialize, err := o.ToMap() + if err != nil { + return []byte{}, err + } + return json.Marshal(toSerialize) +} + +func (o JobNotificationProjectContext) ToMap() (map[string]interface{}, error) { + toSerialize := map[string]interface{}{} + toSerialize["jobId"] = o.JobId + toSerialize["jobType"] = o.JobType + toSerialize["projectName"] = o.ProjectName + + for key, value := range o.AdditionalProperties { + toSerialize[key] = value + } + + return toSerialize, nil +} + +func (o *JobNotificationProjectContext) UnmarshalJSON(data []byte) (err error) { + // This validates that all required properties are included in the JSON object + // by unmarshalling the object into a generic map with string keys and checking + // that every required field exists as a key in the generic map. + requiredProperties := []string{ + "jobId", + "jobType", + "projectName", + } + + allProperties := make(map[string]interface{}) + + err = json.Unmarshal(data, &allProperties) + + if err != nil { + return err + } + + for _, requiredProperty := range requiredProperties { + if _, exists := allProperties[requiredProperty]; !exists { + return fmt.Errorf("no value given for required property %v", requiredProperty) + } + } + + varJobNotificationProjectContext := _JobNotificationProjectContext{} + + err = json.Unmarshal(data, &varJobNotificationProjectContext) + + if err != nil { + return err + } + + *o = JobNotificationProjectContext(varJobNotificationProjectContext) + + additionalProperties := make(map[string]interface{}) + + if err = json.Unmarshal(data, &additionalProperties); err == nil { + delete(additionalProperties, "jobId") + delete(additionalProperties, "jobType") + delete(additionalProperties, "projectName") + o.AdditionalProperties = additionalProperties + } + + return err +} + +type NullableJobNotificationProjectContext struct { + value *JobNotificationProjectContext + isSet bool +} + +func (v NullableJobNotificationProjectContext) Get() *JobNotificationProjectContext { + return v.value +} + +func (v *NullableJobNotificationProjectContext) Set(val *JobNotificationProjectContext) { + v.value = val + v.isSet = true +} + +func (v NullableJobNotificationProjectContext) IsSet() bool { + return v.isSet +} + +func (v *NullableJobNotificationProjectContext) Unset() { + v.value = nil + v.isSet = false +} + +func NewNullableJobNotificationProjectContext(val *JobNotificationProjectContext) *NullableJobNotificationProjectContext { + return &NullableJobNotificationProjectContext{value: val, isSet: true} +} + +func (v NullableJobNotificationProjectContext) MarshalJSON() ([]byte, error) { + return json.Marshal(v.value) +} + +func (v *NullableJobNotificationProjectContext) UnmarshalJSON(src []byte) error { + v.isSet = true + return json.Unmarshal(src, &v.value) +} diff --git a/pkg/tensorleapapi/model_job_notification_sample_context.go b/pkg/tensorleapapi/model_job_notification_sample_context.go index 2fbdc4007..1b64792c1 100644 --- a/pkg/tensorleapapi/model_job_notification_sample_context.go +++ b/pkg/tensorleapapi/model_job_notification_sample_context.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_job_params.go b/pkg/tensorleapapi/model_job_params.go index ea16d1c02..ff9e12661 100644 --- a/pkg/tensorleapapi/model_job_params.go +++ b/pkg/tensorleapapi/model_job_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -29,7 +29,6 @@ type JobParams struct { PopulationExplorationJobParams *PopulationExplorationJobParams PushCodeSnapshotParams *PushCodeSnapshotParams SyntheticDataJobParams *SyntheticDataJobParams - TrainingParams *TrainingParams } // Unmarshal JSON data into any of the pointers in the struct @@ -204,19 +203,6 @@ func (dst *JobParams) UnmarshalJSON(data []byte) error { dst.SyntheticDataJobParams = nil } - // try to unmarshal JSON data into TrainingParams - err = json.Unmarshal(data, &dst.TrainingParams) - if err == nil { - jsonTrainingParams, _ := json.Marshal(dst.TrainingParams) - if string(jsonTrainingParams) == "{}" { // empty struct - dst.TrainingParams = nil - } else { - return nil // data stored in dst.TrainingParams, return on the first match - } - } else { - dst.TrainingParams = nil - } - return nil } @@ -274,10 +260,6 @@ func (src JobParams) MarshalJSON() ([]byte, error) { return json.Marshal(&src.SyntheticDataJobParams) } - if src.TrainingParams != nil { - return json.Marshal(&src.TrainingParams) - } - return nil, nil // no data in anyOf schemas } diff --git a/pkg/tensorleapapi/model_job_status.go b/pkg/tensorleapapi/model_job_status.go index 48c5da688..96cea0e04 100644 --- a/pkg/tensorleapapi/model_job_status.go +++ b/pkg/tensorleapapi/model_job_status.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_job_sub_type.go b/pkg/tensorleapapi/model_job_sub_type.go index 02efbe9d2..76886b733 100644 --- a/pkg/tensorleapapi/model_job_sub_type.go +++ b/pkg/tensorleapapi/model_job_sub_type.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_job_trigger.go b/pkg/tensorleapapi/model_job_trigger.go index cdb705602..fe15b8220 100644 --- a/pkg/tensorleapapi/model_job_trigger.go +++ b/pkg/tensorleapapi/model_job_trigger.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_job_type.go b/pkg/tensorleapapi/model_job_type.go index da9734dc3..d09d6a61c 100644 --- a/pkg/tensorleapapi/model_job_type.go +++ b/pkg/tensorleapapi/model_job_type.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -20,10 +20,10 @@ type JobType string // List of JobType const ( + JOBTYPE_WARMUP JobType = "WARMUP" JOBTYPE_TRAINING JobType = "TRAINING" JOBTYPE_IMPORT_MODEL JobType = "IMPORT_MODEL" JOBTYPE_ANALYZE JobType = "ANALYZE" - JOBTYPE_WARMUP JobType = "WARMUP" JOBTYPE_TEST_STUB_FUNCTION JobType = "TEST_STUB_FUNCTION" JOBTYPE_TEST_CUSTOM_LOSS JobType = "TEST_CUSTOM_LOSS" JOBTYPE_EXPORT_MODEL JobType = "EXPORT_MODEL" @@ -39,10 +39,10 @@ const ( // All allowed values of JobType enum var AllowedJobTypeEnumValues = []JobType{ + "WARMUP", "TRAINING", "IMPORT_MODEL", "ANALYZE", - "WARMUP", "TEST_STUB_FUNCTION", "TEST_CUSTOM_LOSS", "EXPORT_MODEL", diff --git a/pkg/tensorleapapi/model_job_type_enum.go b/pkg/tensorleapapi/model_job_type_enum.go index c6906f51c..16b62949a 100644 --- a/pkg/tensorleapapi/model_job_type_enum.go +++ b/pkg/tensorleapapi/model_job_type_enum.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_labeling_algorithm.go b/pkg/tensorleapapi/model_labeling_algorithm.go index c7338190e..b3ae62bb0 100644 --- a/pkg/tensorleapapi/model_labeling_algorithm.go +++ b/pkg/tensorleapapi/model_labeling_algorithm.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_labeling_job_params.go b/pkg/tensorleapapi/model_labeling_job_params.go index 367cbe72b..ae0b03ed7 100644 --- a/pkg/tensorleapapi/model_labeling_job_params.go +++ b/pkg/tensorleapapi/model_labeling_job_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -25,8 +25,8 @@ type LabelingJobParams struct { Filters []ESFilter `json:"filters,omitempty"` LabelingAlgorithm LabelingAlgorithm `json:"labelingAlgorithm"` NumOfSamplesToLabel *float64 `json:"numOfSamplesToLabel,omitempty"` - FromEpoch float64 `json:"fromEpoch"` - SessionRunId string `json:"sessionRunId"` + InferenceArtifactId string `json:"inferenceArtifactId"` + VersionId string `json:"versionId"` Type string `json:"type"` AdditionalProperties map[string]interface{} } @@ -37,12 +37,12 @@ type _LabelingJobParams LabelingJobParams // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewLabelingJobParams(digest string, labelingAlgorithm LabelingAlgorithm, fromEpoch float64, sessionRunId string, type_ string) *LabelingJobParams { +func NewLabelingJobParams(digest string, labelingAlgorithm LabelingAlgorithm, inferenceArtifactId string, versionId string, type_ string) *LabelingJobParams { this := LabelingJobParams{} this.Digest = digest this.LabelingAlgorithm = labelingAlgorithm - this.FromEpoch = fromEpoch - this.SessionRunId = sessionRunId + this.InferenceArtifactId = inferenceArtifactId + this.VersionId = versionId this.Type = type_ return &this } @@ -199,52 +199,52 @@ func (o *LabelingJobParams) SetNumOfSamplesToLabel(v float64) { o.NumOfSamplesToLabel = &v } -// GetFromEpoch returns the FromEpoch field value -func (o *LabelingJobParams) GetFromEpoch() float64 { +// GetInferenceArtifactId returns the InferenceArtifactId field value +func (o *LabelingJobParams) GetInferenceArtifactId() string { if o == nil { - var ret float64 + var ret string return ret } - return o.FromEpoch + return o.InferenceArtifactId } -// GetFromEpochOk returns a tuple with the FromEpoch field value +// GetInferenceArtifactIdOk returns a tuple with the InferenceArtifactId field value // and a boolean to check if the value has been set. -func (o *LabelingJobParams) GetFromEpochOk() (*float64, bool) { +func (o *LabelingJobParams) GetInferenceArtifactIdOk() (*string, bool) { if o == nil { return nil, false } - return &o.FromEpoch, true + return &o.InferenceArtifactId, true } -// SetFromEpoch sets field value -func (o *LabelingJobParams) SetFromEpoch(v float64) { - o.FromEpoch = v +// SetInferenceArtifactId sets field value +func (o *LabelingJobParams) SetInferenceArtifactId(v string) { + o.InferenceArtifactId = v } -// GetSessionRunId returns the SessionRunId field value -func (o *LabelingJobParams) GetSessionRunId() string { +// GetVersionId returns the VersionId field value +func (o *LabelingJobParams) GetVersionId() string { if o == nil { var ret string return ret } - return o.SessionRunId + return o.VersionId } -// GetSessionRunIdOk returns a tuple with the SessionRunId field value +// GetVersionIdOk returns a tuple with the VersionId field value // and a boolean to check if the value has been set. -func (o *LabelingJobParams) GetSessionRunIdOk() (*string, bool) { +func (o *LabelingJobParams) GetVersionIdOk() (*string, bool) { if o == nil { return nil, false } - return &o.SessionRunId, true + return &o.VersionId, true } -// SetSessionRunId sets field value -func (o *LabelingJobParams) SetSessionRunId(v string) { - o.SessionRunId = v +// SetVersionId sets field value +func (o *LabelingJobParams) SetVersionId(v string) { + o.VersionId = v } // GetType returns the Type field value @@ -292,8 +292,8 @@ func (o LabelingJobParams) ToMap() (map[string]interface{}, error) { if !IsNil(o.NumOfSamplesToLabel) { toSerialize["numOfSamplesToLabel"] = o.NumOfSamplesToLabel } - toSerialize["fromEpoch"] = o.FromEpoch - toSerialize["sessionRunId"] = o.SessionRunId + toSerialize["inferenceArtifactId"] = o.InferenceArtifactId + toSerialize["versionId"] = o.VersionId toSerialize["type"] = o.Type for key, value := range o.AdditionalProperties { @@ -310,8 +310,8 @@ func (o *LabelingJobParams) UnmarshalJSON(data []byte) (err error) { requiredProperties := []string{ "digest", "labelingAlgorithm", - "fromEpoch", - "sessionRunId", + "inferenceArtifactId", + "versionId", "type", } @@ -347,8 +347,8 @@ func (o *LabelingJobParams) UnmarshalJSON(data []byte) (err error) { delete(additionalProperties, "filters") delete(additionalProperties, "labelingAlgorithm") delete(additionalProperties, "numOfSamplesToLabel") - delete(additionalProperties, "fromEpoch") - delete(additionalProperties, "sessionRunId") + delete(additionalProperties, "inferenceArtifactId") + delete(additionalProperties, "versionId") delete(additionalProperties, "type") o.AdditionalProperties = additionalProperties } diff --git a/pkg/tensorleapapi/model_latest_exported_project.go b/pkg/tensorleapapi/model_latest_exported_project.go index fff01d998..42b1015bf 100644 --- a/pkg/tensorleapapi/model_latest_exported_project.go +++ b/pkg/tensorleapapi/model_latest_exported_project.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_latest_exported_project_item.go b/pkg/tensorleapapi/model_latest_exported_project_item.go index fea0aae69..eb3abeff4 100644 --- a/pkg/tensorleapapi/model_latest_exported_project_item.go +++ b/pkg/tensorleapapi/model_latest_exported_project_item.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_layout.go b/pkg/tensorleapapi/model_layout.go index 87736e8a8..83eafae90 100644 --- a/pkg/tensorleapapi/model_layout.go +++ b/pkg/tensorleapapi/model_layout.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_leap_data_type.go b/pkg/tensorleapapi/model_leap_data_type.go index 28d4fad40..75018c1fc 100644 --- a/pkg/tensorleapapi/model_leap_data_type.go +++ b/pkg/tensorleapapi/model_leap_data_type.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_license_metadata.go b/pkg/tensorleapapi/model_license_metadata.go index 56103ba06..fa35a4ba2 100644 --- a/pkg/tensorleapapi/model_license_metadata.go +++ b/pkg/tensorleapapi/model_license_metadata.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_license_type.go b/pkg/tensorleapapi/model_license_type.go index 9580797d5..9d47e3184 100644 --- a/pkg/tensorleapapi/model_license_type.go +++ b/pkg/tensorleapapi/model_license_type.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_linked_project.go b/pkg/tensorleapapi/model_linked_project.go index 83c7a8223..39d67fdc7 100644 --- a/pkg/tensorleapapi/model_linked_project.go +++ b/pkg/tensorleapapi/model_linked_project.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_session_version_id_request_params.go b/pkg/tensorleapapi/model_load_model_params.go similarity index 56% rename from pkg/tensorleapapi/model_session_version_id_request_params.go rename to pkg/tensorleapapi/model_load_model_params.go index 09f746e50..e8303706d 100644 --- a/pkg/tensorleapapi/model_session_version_id_request_params.go +++ b/pkg/tensorleapapi/model_load_model_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -15,39 +15,39 @@ import ( "fmt" ) -// checks if the SessionVersionIdRequestParams type satisfies the MappedNullable interface at compile time -var _ MappedNullable = &SessionVersionIdRequestParams{} +// checks if the LoadModelParams type satisfies the MappedNullable interface at compile time +var _ MappedNullable = &LoadModelParams{} -// SessionVersionIdRequestParams struct for SessionVersionIdRequestParams -type SessionVersionIdRequestParams struct { +// LoadModelParams struct for LoadModelParams +type LoadModelParams struct { VersionId string `json:"versionId"` ProjectId string `json:"projectId"` AdditionalProperties map[string]interface{} } -type _SessionVersionIdRequestParams SessionVersionIdRequestParams +type _LoadModelParams LoadModelParams -// NewSessionVersionIdRequestParams instantiates a new SessionVersionIdRequestParams object +// NewLoadModelParams instantiates a new LoadModelParams object // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewSessionVersionIdRequestParams(versionId string, projectId string) *SessionVersionIdRequestParams { - this := SessionVersionIdRequestParams{} +func NewLoadModelParams(versionId string, projectId string) *LoadModelParams { + this := LoadModelParams{} this.VersionId = versionId this.ProjectId = projectId return &this } -// NewSessionVersionIdRequestParamsWithDefaults instantiates a new SessionVersionIdRequestParams object +// NewLoadModelParamsWithDefaults instantiates a new LoadModelParams object // This constructor will only assign default values to properties that have it defined, // but it doesn't guarantee that properties required by API are set -func NewSessionVersionIdRequestParamsWithDefaults() *SessionVersionIdRequestParams { - this := SessionVersionIdRequestParams{} +func NewLoadModelParamsWithDefaults() *LoadModelParams { + this := LoadModelParams{} return &this } // GetVersionId returns the VersionId field value -func (o *SessionVersionIdRequestParams) GetVersionId() string { +func (o *LoadModelParams) GetVersionId() string { if o == nil { var ret string return ret @@ -58,7 +58,7 @@ func (o *SessionVersionIdRequestParams) GetVersionId() string { // GetVersionIdOk returns a tuple with the VersionId field value // and a boolean to check if the value has been set. -func (o *SessionVersionIdRequestParams) GetVersionIdOk() (*string, bool) { +func (o *LoadModelParams) GetVersionIdOk() (*string, bool) { if o == nil { return nil, false } @@ -66,12 +66,12 @@ func (o *SessionVersionIdRequestParams) GetVersionIdOk() (*string, bool) { } // SetVersionId sets field value -func (o *SessionVersionIdRequestParams) SetVersionId(v string) { +func (o *LoadModelParams) SetVersionId(v string) { o.VersionId = v } // GetProjectId returns the ProjectId field value -func (o *SessionVersionIdRequestParams) GetProjectId() string { +func (o *LoadModelParams) GetProjectId() string { if o == nil { var ret string return ret @@ -82,7 +82,7 @@ func (o *SessionVersionIdRequestParams) GetProjectId() string { // GetProjectIdOk returns a tuple with the ProjectId field value // and a boolean to check if the value has been set. -func (o *SessionVersionIdRequestParams) GetProjectIdOk() (*string, bool) { +func (o *LoadModelParams) GetProjectIdOk() (*string, bool) { if o == nil { return nil, false } @@ -90,11 +90,11 @@ func (o *SessionVersionIdRequestParams) GetProjectIdOk() (*string, bool) { } // SetProjectId sets field value -func (o *SessionVersionIdRequestParams) SetProjectId(v string) { +func (o *LoadModelParams) SetProjectId(v string) { o.ProjectId = v } -func (o SessionVersionIdRequestParams) MarshalJSON() ([]byte, error) { +func (o LoadModelParams) MarshalJSON() ([]byte, error) { toSerialize, err := o.ToMap() if err != nil { return []byte{}, err @@ -102,7 +102,7 @@ func (o SessionVersionIdRequestParams) MarshalJSON() ([]byte, error) { return json.Marshal(toSerialize) } -func (o SessionVersionIdRequestParams) ToMap() (map[string]interface{}, error) { +func (o LoadModelParams) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} toSerialize["versionId"] = o.VersionId toSerialize["projectId"] = o.ProjectId @@ -114,7 +114,7 @@ func (o SessionVersionIdRequestParams) ToMap() (map[string]interface{}, error) { return toSerialize, nil } -func (o *SessionVersionIdRequestParams) UnmarshalJSON(data []byte) (err error) { +func (o *LoadModelParams) UnmarshalJSON(data []byte) (err error) { // This validates that all required properties are included in the JSON object // by unmarshalling the object into a generic map with string keys and checking // that every required field exists as a key in the generic map. @@ -137,15 +137,15 @@ func (o *SessionVersionIdRequestParams) UnmarshalJSON(data []byte) (err error) { } } - varSessionVersionIdRequestParams := _SessionVersionIdRequestParams{} + varLoadModelParams := _LoadModelParams{} - err = json.Unmarshal(data, &varSessionVersionIdRequestParams) + err = json.Unmarshal(data, &varLoadModelParams) if err != nil { return err } - *o = SessionVersionIdRequestParams(varSessionVersionIdRequestParams) + *o = LoadModelParams(varLoadModelParams) additionalProperties := make(map[string]interface{}) @@ -158,38 +158,38 @@ func (o *SessionVersionIdRequestParams) UnmarshalJSON(data []byte) (err error) { return err } -type NullableSessionVersionIdRequestParams struct { - value *SessionVersionIdRequestParams +type NullableLoadModelParams struct { + value *LoadModelParams isSet bool } -func (v NullableSessionVersionIdRequestParams) Get() *SessionVersionIdRequestParams { +func (v NullableLoadModelParams) Get() *LoadModelParams { return v.value } -func (v *NullableSessionVersionIdRequestParams) Set(val *SessionVersionIdRequestParams) { +func (v *NullableLoadModelParams) Set(val *LoadModelParams) { v.value = val v.isSet = true } -func (v NullableSessionVersionIdRequestParams) IsSet() bool { +func (v NullableLoadModelParams) IsSet() bool { return v.isSet } -func (v *NullableSessionVersionIdRequestParams) Unset() { +func (v *NullableLoadModelParams) Unset() { v.value = nil v.isSet = false } -func NewNullableSessionVersionIdRequestParams(val *SessionVersionIdRequestParams) *NullableSessionVersionIdRequestParams { - return &NullableSessionVersionIdRequestParams{value: val, isSet: true} +func NewNullableLoadModelParams(val *LoadModelParams) *NullableLoadModelParams { + return &NullableLoadModelParams{value: val, isSet: true} } -func (v NullableSessionVersionIdRequestParams) MarshalJSON() ([]byte, error) { +func (v NullableLoadModelParams) MarshalJSON() ([]byte, error) { return json.Marshal(v.value) } -func (v *NullableSessionVersionIdRequestParams) UnmarshalJSON(src []byte) error { +func (v *NullableLoadModelParams) UnmarshalJSON(src []byte) error { v.isSet = true return json.Unmarshal(src, &v.value) } diff --git a/pkg/tensorleapapi/model_load_model_response.go b/pkg/tensorleapapi/model_load_model_response.go new file mode 100644 index 000000000..985be57c0 --- /dev/null +++ b/pkg/tensorleapapi/model_load_model_response.go @@ -0,0 +1,170 @@ +/* +node-server + +No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + +API version: 11.0.23 +*/ + +// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. + +package tensorleapapi + +import ( + "encoding/json" + "fmt" +) + +// checks if the LoadModelResponse type satisfies the MappedNullable interface at compile time +var _ MappedNullable = &LoadModelResponse{} + +// LoadModelResponse struct for LoadModelResponse +type LoadModelResponse struct { + // Deprecated + Version VersionPopulatedJob `json:"version"` + AdditionalProperties map[string]interface{} +} + +type _LoadModelResponse LoadModelResponse + +// NewLoadModelResponse instantiates a new LoadModelResponse object +// This constructor will assign default values to properties that have it defined, +// and makes sure properties required by API are set, but the set of arguments +// will change when the set of required properties is changed +func NewLoadModelResponse(version VersionPopulatedJob) *LoadModelResponse { + this := LoadModelResponse{} + this.Version = version + return &this +} + +// NewLoadModelResponseWithDefaults instantiates a new LoadModelResponse object +// This constructor will only assign default values to properties that have it defined, +// but it doesn't guarantee that properties required by API are set +func NewLoadModelResponseWithDefaults() *LoadModelResponse { + this := LoadModelResponse{} + return &this +} + +// GetVersion returns the Version field value +// Deprecated +func (o *LoadModelResponse) GetVersion() VersionPopulatedJob { + if o == nil { + var ret VersionPopulatedJob + return ret + } + + return o.Version +} + +// GetVersionOk returns a tuple with the Version field value +// and a boolean to check if the value has been set. +// Deprecated +func (o *LoadModelResponse) GetVersionOk() (*VersionPopulatedJob, bool) { + if o == nil { + return nil, false + } + return &o.Version, true +} + +// SetVersion sets field value +// Deprecated +func (o *LoadModelResponse) SetVersion(v VersionPopulatedJob) { + o.Version = v +} + +func (o LoadModelResponse) MarshalJSON() ([]byte, error) { + toSerialize, err := o.ToMap() + if err != nil { + return []byte{}, err + } + return json.Marshal(toSerialize) +} + +func (o LoadModelResponse) ToMap() (map[string]interface{}, error) { + toSerialize := map[string]interface{}{} + toSerialize["version"] = o.Version + + for key, value := range o.AdditionalProperties { + toSerialize[key] = value + } + + return toSerialize, nil +} + +func (o *LoadModelResponse) UnmarshalJSON(data []byte) (err error) { + // This validates that all required properties are included in the JSON object + // by unmarshalling the object into a generic map with string keys and checking + // that every required field exists as a key in the generic map. + requiredProperties := []string{ + "version", + } + + allProperties := make(map[string]interface{}) + + err = json.Unmarshal(data, &allProperties) + + if err != nil { + return err + } + + for _, requiredProperty := range requiredProperties { + if _, exists := allProperties[requiredProperty]; !exists { + return fmt.Errorf("no value given for required property %v", requiredProperty) + } + } + + varLoadModelResponse := _LoadModelResponse{} + + err = json.Unmarshal(data, &varLoadModelResponse) + + if err != nil { + return err + } + + *o = LoadModelResponse(varLoadModelResponse) + + additionalProperties := make(map[string]interface{}) + + if err = json.Unmarshal(data, &additionalProperties); err == nil { + delete(additionalProperties, "version") + o.AdditionalProperties = additionalProperties + } + + return err +} + +type NullableLoadModelResponse struct { + value *LoadModelResponse + isSet bool +} + +func (v NullableLoadModelResponse) Get() *LoadModelResponse { + return v.value +} + +func (v *NullableLoadModelResponse) Set(val *LoadModelResponse) { + v.value = val + v.isSet = true +} + +func (v NullableLoadModelResponse) IsSet() bool { + return v.isSet +} + +func (v *NullableLoadModelResponse) Unset() { + v.value = nil + v.isSet = false +} + +func NewNullableLoadModelResponse(val *LoadModelResponse) *NullableLoadModelResponse { + return &NullableLoadModelResponse{value: val, isSet: true} +} + +func (v NullableLoadModelResponse) MarshalJSON() ([]byte, error) { + return json.Marshal(v.value) +} + +func (v *NullableLoadModelResponse) UnmarshalJSON(src []byte) error { + v.isSet = true + return json.Unmarshal(src, &v.value) +} diff --git a/pkg/tensorleapapi/model_load_session_params.go b/pkg/tensorleapapi/model_load_session_params.go deleted file mode 100644 index 513e985b2..000000000 --- a/pkg/tensorleapapi/model_load_session_params.go +++ /dev/null @@ -1,195 +0,0 @@ -/* -node-server - -No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - -API version: 11.0.7 -*/ - -// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. - -package tensorleapapi - -import ( - "encoding/json" - "fmt" -) - -// checks if the LoadSessionParams type satisfies the MappedNullable interface at compile time -var _ MappedNullable = &LoadSessionParams{} - -// LoadSessionParams struct for LoadSessionParams -type LoadSessionParams struct { - SessionId string `json:"sessionId"` - ProjectId string `json:"projectId"` - AdditionalProperties map[string]interface{} -} - -type _LoadSessionParams LoadSessionParams - -// NewLoadSessionParams instantiates a new LoadSessionParams object -// This constructor will assign default values to properties that have it defined, -// and makes sure properties required by API are set, but the set of arguments -// will change when the set of required properties is changed -func NewLoadSessionParams(sessionId string, projectId string) *LoadSessionParams { - this := LoadSessionParams{} - this.SessionId = sessionId - this.ProjectId = projectId - return &this -} - -// NewLoadSessionParamsWithDefaults instantiates a new LoadSessionParams object -// This constructor will only assign default values to properties that have it defined, -// but it doesn't guarantee that properties required by API are set -func NewLoadSessionParamsWithDefaults() *LoadSessionParams { - this := LoadSessionParams{} - return &this -} - -// GetSessionId returns the SessionId field value -func (o *LoadSessionParams) GetSessionId() string { - if o == nil { - var ret string - return ret - } - - return o.SessionId -} - -// GetSessionIdOk returns a tuple with the SessionId field value -// and a boolean to check if the value has been set. -func (o *LoadSessionParams) GetSessionIdOk() (*string, bool) { - if o == nil { - return nil, false - } - return &o.SessionId, true -} - -// SetSessionId sets field value -func (o *LoadSessionParams) SetSessionId(v string) { - o.SessionId = v -} - -// GetProjectId returns the ProjectId field value -func (o *LoadSessionParams) GetProjectId() string { - if o == nil { - var ret string - return ret - } - - return o.ProjectId -} - -// GetProjectIdOk returns a tuple with the ProjectId field value -// and a boolean to check if the value has been set. -func (o *LoadSessionParams) GetProjectIdOk() (*string, bool) { - if o == nil { - return nil, false - } - return &o.ProjectId, true -} - -// SetProjectId sets field value -func (o *LoadSessionParams) SetProjectId(v string) { - o.ProjectId = v -} - -func (o LoadSessionParams) MarshalJSON() ([]byte, error) { - toSerialize, err := o.ToMap() - if err != nil { - return []byte{}, err - } - return json.Marshal(toSerialize) -} - -func (o LoadSessionParams) ToMap() (map[string]interface{}, error) { - toSerialize := map[string]interface{}{} - toSerialize["sessionId"] = o.SessionId - toSerialize["projectId"] = o.ProjectId - - for key, value := range o.AdditionalProperties { - toSerialize[key] = value - } - - return toSerialize, nil -} - -func (o *LoadSessionParams) UnmarshalJSON(data []byte) (err error) { - // This validates that all required properties are included in the JSON object - // by unmarshalling the object into a generic map with string keys and checking - // that every required field exists as a key in the generic map. - requiredProperties := []string{ - "sessionId", - "projectId", - } - - allProperties := make(map[string]interface{}) - - err = json.Unmarshal(data, &allProperties) - - if err != nil { - return err - } - - for _, requiredProperty := range requiredProperties { - if _, exists := allProperties[requiredProperty]; !exists { - return fmt.Errorf("no value given for required property %v", requiredProperty) - } - } - - varLoadSessionParams := _LoadSessionParams{} - - err = json.Unmarshal(data, &varLoadSessionParams) - - if err != nil { - return err - } - - *o = LoadSessionParams(varLoadSessionParams) - - additionalProperties := make(map[string]interface{}) - - if err = json.Unmarshal(data, &additionalProperties); err == nil { - delete(additionalProperties, "sessionId") - delete(additionalProperties, "projectId") - o.AdditionalProperties = additionalProperties - } - - return err -} - -type NullableLoadSessionParams struct { - value *LoadSessionParams - isSet bool -} - -func (v NullableLoadSessionParams) Get() *LoadSessionParams { - return v.value -} - -func (v *NullableLoadSessionParams) Set(val *LoadSessionParams) { - v.value = val - v.isSet = true -} - -func (v NullableLoadSessionParams) IsSet() bool { - return v.isSet -} - -func (v *NullableLoadSessionParams) Unset() { - v.value = nil - v.isSet = false -} - -func NewNullableLoadSessionParams(val *LoadSessionParams) *NullableLoadSessionParams { - return &NullableLoadSessionParams{value: val, isSet: true} -} - -func (v NullableLoadSessionParams) MarshalJSON() ([]byte, error) { - return json.Marshal(v.value) -} - -func (v *NullableLoadSessionParams) UnmarshalJSON(src []byte) error { - v.isSet = true - return json.Unmarshal(src, &v.value) -} diff --git a/pkg/tensorleapapi/model_load_session_response.go b/pkg/tensorleapapi/model_load_session_response.go deleted file mode 100644 index d57fa9ac1..000000000 --- a/pkg/tensorleapapi/model_load_session_response.go +++ /dev/null @@ -1,166 +0,0 @@ -/* -node-server - -No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - -API version: 11.0.7 -*/ - -// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. - -package tensorleapapi - -import ( - "encoding/json" - "fmt" -) - -// checks if the LoadSessionResponse type satisfies the MappedNullable interface at compile time -var _ MappedNullable = &LoadSessionResponse{} - -// LoadSessionResponse struct for LoadSessionResponse -type LoadSessionResponse struct { - Session SessionPopulatedJob `json:"session"` - AdditionalProperties map[string]interface{} -} - -type _LoadSessionResponse LoadSessionResponse - -// NewLoadSessionResponse instantiates a new LoadSessionResponse object -// This constructor will assign default values to properties that have it defined, -// and makes sure properties required by API are set, but the set of arguments -// will change when the set of required properties is changed -func NewLoadSessionResponse(session SessionPopulatedJob) *LoadSessionResponse { - this := LoadSessionResponse{} - this.Session = session - return &this -} - -// NewLoadSessionResponseWithDefaults instantiates a new LoadSessionResponse object -// This constructor will only assign default values to properties that have it defined, -// but it doesn't guarantee that properties required by API are set -func NewLoadSessionResponseWithDefaults() *LoadSessionResponse { - this := LoadSessionResponse{} - return &this -} - -// GetSession returns the Session field value -func (o *LoadSessionResponse) GetSession() SessionPopulatedJob { - if o == nil { - var ret SessionPopulatedJob - return ret - } - - return o.Session -} - -// GetSessionOk returns a tuple with the Session field value -// and a boolean to check if the value has been set. -func (o *LoadSessionResponse) GetSessionOk() (*SessionPopulatedJob, bool) { - if o == nil { - return nil, false - } - return &o.Session, true -} - -// SetSession sets field value -func (o *LoadSessionResponse) SetSession(v SessionPopulatedJob) { - o.Session = v -} - -func (o LoadSessionResponse) MarshalJSON() ([]byte, error) { - toSerialize, err := o.ToMap() - if err != nil { - return []byte{}, err - } - return json.Marshal(toSerialize) -} - -func (o LoadSessionResponse) ToMap() (map[string]interface{}, error) { - toSerialize := map[string]interface{}{} - toSerialize["session"] = o.Session - - for key, value := range o.AdditionalProperties { - toSerialize[key] = value - } - - return toSerialize, nil -} - -func (o *LoadSessionResponse) UnmarshalJSON(data []byte) (err error) { - // This validates that all required properties are included in the JSON object - // by unmarshalling the object into a generic map with string keys and checking - // that every required field exists as a key in the generic map. - requiredProperties := []string{ - "session", - } - - allProperties := make(map[string]interface{}) - - err = json.Unmarshal(data, &allProperties) - - if err != nil { - return err - } - - for _, requiredProperty := range requiredProperties { - if _, exists := allProperties[requiredProperty]; !exists { - return fmt.Errorf("no value given for required property %v", requiredProperty) - } - } - - varLoadSessionResponse := _LoadSessionResponse{} - - err = json.Unmarshal(data, &varLoadSessionResponse) - - if err != nil { - return err - } - - *o = LoadSessionResponse(varLoadSessionResponse) - - additionalProperties := make(map[string]interface{}) - - if err = json.Unmarshal(data, &additionalProperties); err == nil { - delete(additionalProperties, "session") - o.AdditionalProperties = additionalProperties - } - - return err -} - -type NullableLoadSessionResponse struct { - value *LoadSessionResponse - isSet bool -} - -func (v NullableLoadSessionResponse) Get() *LoadSessionResponse { - return v.value -} - -func (v *NullableLoadSessionResponse) Set(val *LoadSessionResponse) { - v.value = val - v.isSet = true -} - -func (v NullableLoadSessionResponse) IsSet() bool { - return v.isSet -} - -func (v *NullableLoadSessionResponse) Unset() { - v.value = nil - v.isSet = false -} - -func NewNullableLoadSessionResponse(val *LoadSessionResponse) *NullableLoadSessionResponse { - return &NullableLoadSessionResponse{value: val, isSet: true} -} - -func (v NullableLoadSessionResponse) MarshalJSON() ([]byte, error) { - return json.Marshal(v.value) -} - -func (v *NullableLoadSessionResponse) UnmarshalJSON(src []byte) error { - v.isSet = true - return json.Unmarshal(src, &v.value) -} diff --git a/pkg/tensorleapapi/model_load_version_params.go b/pkg/tensorleapapi/model_load_version_params.go index 1ecbc6823..d0296de9d 100644 --- a/pkg/tensorleapapi/model_load_version_params.go +++ b/pkg/tensorleapapi/model_load_version_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_load_version_response.go b/pkg/tensorleapapi/model_load_version_response.go index eb2f4d333..4d4d3f211 100644 --- a/pkg/tensorleapapi/model_load_version_response.go +++ b/pkg/tensorleapapi/model_load_version_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_local_login_params.go b/pkg/tensorleapapi/model_local_login_params.go index c6e3abab0..dbacd92ba 100644 --- a/pkg/tensorleapapi/model_local_login_params.go +++ b/pkg/tensorleapapi/model_local_login_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_local_login_response.go b/pkg/tensorleapapi/model_local_login_response.go index f5d0211af..f0c05a8d6 100644 --- a/pkg/tensorleapapi/model_local_login_response.go +++ b/pkg/tensorleapapi/model_local_login_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_log_external_epoch_data_request.go b/pkg/tensorleapapi/model_log_external_epoch_data_request.go index 75b8ff6fc..cd62e283f 100644 --- a/pkg/tensorleapapi/model_log_external_epoch_data_request.go +++ b/pkg/tensorleapapi/model_log_external_epoch_data_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_login_params.go b/pkg/tensorleapapi/model_login_params.go index 1305e6835..cea83c898 100644 --- a/pkg/tensorleapapi/model_login_params.go +++ b/pkg/tensorleapapi/model_login_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_loss_message_params.go b/pkg/tensorleapapi/model_loss_message_params.go index c07455a72..3d44c2c53 100644 --- a/pkg/tensorleapapi/model_loss_message_params.go +++ b/pkg/tensorleapapi/model_loss_message_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_low_performance_insight.go b/pkg/tensorleapapi/model_low_performance_insight.go new file mode 100644 index 000000000..9c157f97e --- /dev/null +++ b/pkg/tensorleapapi/model_low_performance_insight.go @@ -0,0 +1,760 @@ +/* +node-server + +No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + +API version: 11.0.23 +*/ + +// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. + +package tensorleapapi + +import ( + "encoding/json" + "fmt" +) + +// checks if the LowPerformanceInsight type satisfies the MappedNullable interface at compile time +var _ MappedNullable = &LowPerformanceInsight{} + +// LowPerformanceInsight struct for LowPerformanceInsight +type LowPerformanceInsight struct { + Id string `json:"id_"` + ParentId *string `json:"parent_id,omitempty"` + Type ScatterInsightType `json:"type"` + DisplayFilters []ScatterFilter `json:"display_filters,omitempty"` + NSamples float64 `json:"n_samples"` + MutualInfoElements []MutualInformationElement `json:"mutual_info_elements"` + BlobPath string `json:"blob_path"` + Severity float64 `json:"severity"` + SeverityMetrics []SeverityMetricElement `json:"severity_metrics"` + MetricsInfo []InsightMetricInfo `json:"metrics_info"` + MinHash []float64 `json:"min_hash"` + CsvPath *string `json:"csv_path,omitempty"` + AutomaticTests []InsightAutomaticTest `json:"automatic_tests,omitempty"` + AutoGenerated bool `json:"auto_generated"` + EsFiltersUsedInAnalysis []ESFilter `json:"es_filters_used_in_analysis,omitempty"` + LatentSpace *string `json:"latent_space,omitempty"` + AggressorFixing *AggressorFixing `json:"aggressor_fixing,omitempty"` + IsTrainAggressor *bool `json:"is_train_aggressor,omitempty"` + OverfittingMetrics []string `json:"overfitting_metrics,omitempty"` + AdditionalProperties map[string]interface{} +} + +type _LowPerformanceInsight LowPerformanceInsight + +// NewLowPerformanceInsight instantiates a new LowPerformanceInsight object +// This constructor will assign default values to properties that have it defined, +// and makes sure properties required by API are set, but the set of arguments +// will change when the set of required properties is changed +func NewLowPerformanceInsight(id string, type_ ScatterInsightType, nSamples float64, mutualInfoElements []MutualInformationElement, blobPath string, severity float64, severityMetrics []SeverityMetricElement, metricsInfo []InsightMetricInfo, minHash []float64, autoGenerated bool) *LowPerformanceInsight { + this := LowPerformanceInsight{} + this.Id = id + this.Type = type_ + this.NSamples = nSamples + this.MutualInfoElements = mutualInfoElements + this.BlobPath = blobPath + this.Severity = severity + this.SeverityMetrics = severityMetrics + this.MetricsInfo = metricsInfo + this.MinHash = minHash + this.AutoGenerated = autoGenerated + return &this +} + +// NewLowPerformanceInsightWithDefaults instantiates a new LowPerformanceInsight object +// This constructor will only assign default values to properties that have it defined, +// but it doesn't guarantee that properties required by API are set +func NewLowPerformanceInsightWithDefaults() *LowPerformanceInsight { + this := LowPerformanceInsight{} + return &this +} + +// GetId returns the Id field value +func (o *LowPerformanceInsight) GetId() string { + if o == nil { + var ret string + return ret + } + + return o.Id +} + +// GetIdOk returns a tuple with the Id field value +// and a boolean to check if the value has been set. +func (o *LowPerformanceInsight) GetIdOk() (*string, bool) { + if o == nil { + return nil, false + } + return &o.Id, true +} + +// SetId sets field value +func (o *LowPerformanceInsight) SetId(v string) { + o.Id = v +} + +// GetParentId returns the ParentId field value if set, zero value otherwise. +func (o *LowPerformanceInsight) GetParentId() string { + if o == nil || IsNil(o.ParentId) { + var ret string + return ret + } + return *o.ParentId +} + +// GetParentIdOk returns a tuple with the ParentId field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *LowPerformanceInsight) GetParentIdOk() (*string, bool) { + if o == nil || IsNil(o.ParentId) { + return nil, false + } + return o.ParentId, true +} + +// HasParentId returns a boolean if a field has been set. +func (o *LowPerformanceInsight) HasParentId() bool { + if o != nil && !IsNil(o.ParentId) { + return true + } + + return false +} + +// SetParentId gets a reference to the given string and assigns it to the ParentId field. +func (o *LowPerformanceInsight) SetParentId(v string) { + o.ParentId = &v +} + +// GetType returns the Type field value +func (o *LowPerformanceInsight) GetType() ScatterInsightType { + if o == nil { + var ret ScatterInsightType + return ret + } + + return o.Type +} + +// GetTypeOk returns a tuple with the Type field value +// and a boolean to check if the value has been set. +func (o *LowPerformanceInsight) GetTypeOk() (*ScatterInsightType, bool) { + if o == nil { + return nil, false + } + return &o.Type, true +} + +// SetType sets field value +func (o *LowPerformanceInsight) SetType(v ScatterInsightType) { + o.Type = v +} + +// GetDisplayFilters returns the DisplayFilters field value if set, zero value otherwise. +func (o *LowPerformanceInsight) GetDisplayFilters() []ScatterFilter { + if o == nil || IsNil(o.DisplayFilters) { + var ret []ScatterFilter + return ret + } + return o.DisplayFilters +} + +// GetDisplayFiltersOk returns a tuple with the DisplayFilters field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *LowPerformanceInsight) GetDisplayFiltersOk() ([]ScatterFilter, bool) { + if o == nil || IsNil(o.DisplayFilters) { + return nil, false + } + return o.DisplayFilters, true +} + +// HasDisplayFilters returns a boolean if a field has been set. +func (o *LowPerformanceInsight) HasDisplayFilters() bool { + if o != nil && !IsNil(o.DisplayFilters) { + return true + } + + return false +} + +// SetDisplayFilters gets a reference to the given []ScatterFilter and assigns it to the DisplayFilters field. +func (o *LowPerformanceInsight) SetDisplayFilters(v []ScatterFilter) { + o.DisplayFilters = v +} + +// GetNSamples returns the NSamples field value +func (o *LowPerformanceInsight) GetNSamples() float64 { + if o == nil { + var ret float64 + return ret + } + + return o.NSamples +} + +// GetNSamplesOk returns a tuple with the NSamples field value +// and a boolean to check if the value has been set. +func (o *LowPerformanceInsight) GetNSamplesOk() (*float64, bool) { + if o == nil { + return nil, false + } + return &o.NSamples, true +} + +// SetNSamples sets field value +func (o *LowPerformanceInsight) SetNSamples(v float64) { + o.NSamples = v +} + +// GetMutualInfoElements returns the MutualInfoElements field value +func (o *LowPerformanceInsight) GetMutualInfoElements() []MutualInformationElement { + if o == nil { + var ret []MutualInformationElement + return ret + } + + return o.MutualInfoElements +} + +// GetMutualInfoElementsOk returns a tuple with the MutualInfoElements field value +// and a boolean to check if the value has been set. +func (o *LowPerformanceInsight) GetMutualInfoElementsOk() ([]MutualInformationElement, bool) { + if o == nil { + return nil, false + } + return o.MutualInfoElements, true +} + +// SetMutualInfoElements sets field value +func (o *LowPerformanceInsight) SetMutualInfoElements(v []MutualInformationElement) { + o.MutualInfoElements = v +} + +// GetBlobPath returns the BlobPath field value +func (o *LowPerformanceInsight) GetBlobPath() string { + if o == nil { + var ret string + return ret + } + + return o.BlobPath +} + +// GetBlobPathOk returns a tuple with the BlobPath field value +// and a boolean to check if the value has been set. +func (o *LowPerformanceInsight) GetBlobPathOk() (*string, bool) { + if o == nil { + return nil, false + } + return &o.BlobPath, true +} + +// SetBlobPath sets field value +func (o *LowPerformanceInsight) SetBlobPath(v string) { + o.BlobPath = v +} + +// GetSeverity returns the Severity field value +func (o *LowPerformanceInsight) GetSeverity() float64 { + if o == nil { + var ret float64 + return ret + } + + return o.Severity +} + +// GetSeverityOk returns a tuple with the Severity field value +// and a boolean to check if the value has been set. +func (o *LowPerformanceInsight) GetSeverityOk() (*float64, bool) { + if o == nil { + return nil, false + } + return &o.Severity, true +} + +// SetSeverity sets field value +func (o *LowPerformanceInsight) SetSeverity(v float64) { + o.Severity = v +} + +// GetSeverityMetrics returns the SeverityMetrics field value +func (o *LowPerformanceInsight) GetSeverityMetrics() []SeverityMetricElement { + if o == nil { + var ret []SeverityMetricElement + return ret + } + + return o.SeverityMetrics +} + +// GetSeverityMetricsOk returns a tuple with the SeverityMetrics field value +// and a boolean to check if the value has been set. +func (o *LowPerformanceInsight) GetSeverityMetricsOk() ([]SeverityMetricElement, bool) { + if o == nil { + return nil, false + } + return o.SeverityMetrics, true +} + +// SetSeverityMetrics sets field value +func (o *LowPerformanceInsight) SetSeverityMetrics(v []SeverityMetricElement) { + o.SeverityMetrics = v +} + +// GetMetricsInfo returns the MetricsInfo field value +func (o *LowPerformanceInsight) GetMetricsInfo() []InsightMetricInfo { + if o == nil { + var ret []InsightMetricInfo + return ret + } + + return o.MetricsInfo +} + +// GetMetricsInfoOk returns a tuple with the MetricsInfo field value +// and a boolean to check if the value has been set. +func (o *LowPerformanceInsight) GetMetricsInfoOk() ([]InsightMetricInfo, bool) { + if o == nil { + return nil, false + } + return o.MetricsInfo, true +} + +// SetMetricsInfo sets field value +func (o *LowPerformanceInsight) SetMetricsInfo(v []InsightMetricInfo) { + o.MetricsInfo = v +} + +// GetMinHash returns the MinHash field value +func (o *LowPerformanceInsight) GetMinHash() []float64 { + if o == nil { + var ret []float64 + return ret + } + + return o.MinHash +} + +// GetMinHashOk returns a tuple with the MinHash field value +// and a boolean to check if the value has been set. +func (o *LowPerformanceInsight) GetMinHashOk() ([]float64, bool) { + if o == nil { + return nil, false + } + return o.MinHash, true +} + +// SetMinHash sets field value +func (o *LowPerformanceInsight) SetMinHash(v []float64) { + o.MinHash = v +} + +// GetCsvPath returns the CsvPath field value if set, zero value otherwise. +func (o *LowPerformanceInsight) GetCsvPath() string { + if o == nil || IsNil(o.CsvPath) { + var ret string + return ret + } + return *o.CsvPath +} + +// GetCsvPathOk returns a tuple with the CsvPath field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *LowPerformanceInsight) GetCsvPathOk() (*string, bool) { + if o == nil || IsNil(o.CsvPath) { + return nil, false + } + return o.CsvPath, true +} + +// HasCsvPath returns a boolean if a field has been set. +func (o *LowPerformanceInsight) HasCsvPath() bool { + if o != nil && !IsNil(o.CsvPath) { + return true + } + + return false +} + +// SetCsvPath gets a reference to the given string and assigns it to the CsvPath field. +func (o *LowPerformanceInsight) SetCsvPath(v string) { + o.CsvPath = &v +} + +// GetAutomaticTests returns the AutomaticTests field value if set, zero value otherwise. +func (o *LowPerformanceInsight) GetAutomaticTests() []InsightAutomaticTest { + if o == nil || IsNil(o.AutomaticTests) { + var ret []InsightAutomaticTest + return ret + } + return o.AutomaticTests +} + +// GetAutomaticTestsOk returns a tuple with the AutomaticTests field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *LowPerformanceInsight) GetAutomaticTestsOk() ([]InsightAutomaticTest, bool) { + if o == nil || IsNil(o.AutomaticTests) { + return nil, false + } + return o.AutomaticTests, true +} + +// HasAutomaticTests returns a boolean if a field has been set. +func (o *LowPerformanceInsight) HasAutomaticTests() bool { + if o != nil && !IsNil(o.AutomaticTests) { + return true + } + + return false +} + +// SetAutomaticTests gets a reference to the given []InsightAutomaticTest and assigns it to the AutomaticTests field. +func (o *LowPerformanceInsight) SetAutomaticTests(v []InsightAutomaticTest) { + o.AutomaticTests = v +} + +// GetAutoGenerated returns the AutoGenerated field value +func (o *LowPerformanceInsight) GetAutoGenerated() bool { + if o == nil { + var ret bool + return ret + } + + return o.AutoGenerated +} + +// GetAutoGeneratedOk returns a tuple with the AutoGenerated field value +// and a boolean to check if the value has been set. +func (o *LowPerformanceInsight) GetAutoGeneratedOk() (*bool, bool) { + if o == nil { + return nil, false + } + return &o.AutoGenerated, true +} + +// SetAutoGenerated sets field value +func (o *LowPerformanceInsight) SetAutoGenerated(v bool) { + o.AutoGenerated = v +} + +// GetEsFiltersUsedInAnalysis returns the EsFiltersUsedInAnalysis field value if set, zero value otherwise. +func (o *LowPerformanceInsight) GetEsFiltersUsedInAnalysis() []ESFilter { + if o == nil || IsNil(o.EsFiltersUsedInAnalysis) { + var ret []ESFilter + return ret + } + return o.EsFiltersUsedInAnalysis +} + +// GetEsFiltersUsedInAnalysisOk returns a tuple with the EsFiltersUsedInAnalysis field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *LowPerformanceInsight) GetEsFiltersUsedInAnalysisOk() ([]ESFilter, bool) { + if o == nil || IsNil(o.EsFiltersUsedInAnalysis) { + return nil, false + } + return o.EsFiltersUsedInAnalysis, true +} + +// HasEsFiltersUsedInAnalysis returns a boolean if a field has been set. +func (o *LowPerformanceInsight) HasEsFiltersUsedInAnalysis() bool { + if o != nil && !IsNil(o.EsFiltersUsedInAnalysis) { + return true + } + + return false +} + +// SetEsFiltersUsedInAnalysis gets a reference to the given []ESFilter and assigns it to the EsFiltersUsedInAnalysis field. +func (o *LowPerformanceInsight) SetEsFiltersUsedInAnalysis(v []ESFilter) { + o.EsFiltersUsedInAnalysis = v +} + +// GetLatentSpace returns the LatentSpace field value if set, zero value otherwise. +func (o *LowPerformanceInsight) GetLatentSpace() string { + if o == nil || IsNil(o.LatentSpace) { + var ret string + return ret + } + return *o.LatentSpace +} + +// GetLatentSpaceOk returns a tuple with the LatentSpace field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *LowPerformanceInsight) GetLatentSpaceOk() (*string, bool) { + if o == nil || IsNil(o.LatentSpace) { + return nil, false + } + return o.LatentSpace, true +} + +// HasLatentSpace returns a boolean if a field has been set. +func (o *LowPerformanceInsight) HasLatentSpace() bool { + if o != nil && !IsNil(o.LatentSpace) { + return true + } + + return false +} + +// SetLatentSpace gets a reference to the given string and assigns it to the LatentSpace field. +func (o *LowPerformanceInsight) SetLatentSpace(v string) { + o.LatentSpace = &v +} + +// GetAggressorFixing returns the AggressorFixing field value if set, zero value otherwise. +func (o *LowPerformanceInsight) GetAggressorFixing() AggressorFixing { + if o == nil || IsNil(o.AggressorFixing) { + var ret AggressorFixing + return ret + } + return *o.AggressorFixing +} + +// GetAggressorFixingOk returns a tuple with the AggressorFixing field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *LowPerformanceInsight) GetAggressorFixingOk() (*AggressorFixing, bool) { + if o == nil || IsNil(o.AggressorFixing) { + return nil, false + } + return o.AggressorFixing, true +} + +// HasAggressorFixing returns a boolean if a field has been set. +func (o *LowPerformanceInsight) HasAggressorFixing() bool { + if o != nil && !IsNil(o.AggressorFixing) { + return true + } + + return false +} + +// SetAggressorFixing gets a reference to the given AggressorFixing and assigns it to the AggressorFixing field. +func (o *LowPerformanceInsight) SetAggressorFixing(v AggressorFixing) { + o.AggressorFixing = &v +} + +// GetIsTrainAggressor returns the IsTrainAggressor field value if set, zero value otherwise. +func (o *LowPerformanceInsight) GetIsTrainAggressor() bool { + if o == nil || IsNil(o.IsTrainAggressor) { + var ret bool + return ret + } + return *o.IsTrainAggressor +} + +// GetIsTrainAggressorOk returns a tuple with the IsTrainAggressor field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *LowPerformanceInsight) GetIsTrainAggressorOk() (*bool, bool) { + if o == nil || IsNil(o.IsTrainAggressor) { + return nil, false + } + return o.IsTrainAggressor, true +} + +// HasIsTrainAggressor returns a boolean if a field has been set. +func (o *LowPerformanceInsight) HasIsTrainAggressor() bool { + if o != nil && !IsNil(o.IsTrainAggressor) { + return true + } + + return false +} + +// SetIsTrainAggressor gets a reference to the given bool and assigns it to the IsTrainAggressor field. +func (o *LowPerformanceInsight) SetIsTrainAggressor(v bool) { + o.IsTrainAggressor = &v +} + +// GetOverfittingMetrics returns the OverfittingMetrics field value if set, zero value otherwise. +func (o *LowPerformanceInsight) GetOverfittingMetrics() []string { + if o == nil || IsNil(o.OverfittingMetrics) { + var ret []string + return ret + } + return o.OverfittingMetrics +} + +// GetOverfittingMetricsOk returns a tuple with the OverfittingMetrics field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *LowPerformanceInsight) GetOverfittingMetricsOk() ([]string, bool) { + if o == nil || IsNil(o.OverfittingMetrics) { + return nil, false + } + return o.OverfittingMetrics, true +} + +// HasOverfittingMetrics returns a boolean if a field has been set. +func (o *LowPerformanceInsight) HasOverfittingMetrics() bool { + if o != nil && !IsNil(o.OverfittingMetrics) { + return true + } + + return false +} + +// SetOverfittingMetrics gets a reference to the given []string and assigns it to the OverfittingMetrics field. +func (o *LowPerformanceInsight) SetOverfittingMetrics(v []string) { + o.OverfittingMetrics = v +} + +func (o LowPerformanceInsight) MarshalJSON() ([]byte, error) { + toSerialize, err := o.ToMap() + if err != nil { + return []byte{}, err + } + return json.Marshal(toSerialize) +} + +func (o LowPerformanceInsight) ToMap() (map[string]interface{}, error) { + toSerialize := map[string]interface{}{} + toSerialize["id_"] = o.Id + if !IsNil(o.ParentId) { + toSerialize["parent_id"] = o.ParentId + } + toSerialize["type"] = o.Type + if !IsNil(o.DisplayFilters) { + toSerialize["display_filters"] = o.DisplayFilters + } + toSerialize["n_samples"] = o.NSamples + toSerialize["mutual_info_elements"] = o.MutualInfoElements + toSerialize["blob_path"] = o.BlobPath + toSerialize["severity"] = o.Severity + toSerialize["severity_metrics"] = o.SeverityMetrics + toSerialize["metrics_info"] = o.MetricsInfo + toSerialize["min_hash"] = o.MinHash + if !IsNil(o.CsvPath) { + toSerialize["csv_path"] = o.CsvPath + } + if !IsNil(o.AutomaticTests) { + toSerialize["automatic_tests"] = o.AutomaticTests + } + toSerialize["auto_generated"] = o.AutoGenerated + if !IsNil(o.EsFiltersUsedInAnalysis) { + toSerialize["es_filters_used_in_analysis"] = o.EsFiltersUsedInAnalysis + } + if !IsNil(o.LatentSpace) { + toSerialize["latent_space"] = o.LatentSpace + } + if !IsNil(o.AggressorFixing) { + toSerialize["aggressor_fixing"] = o.AggressorFixing + } + if !IsNil(o.IsTrainAggressor) { + toSerialize["is_train_aggressor"] = o.IsTrainAggressor + } + if !IsNil(o.OverfittingMetrics) { + toSerialize["overfitting_metrics"] = o.OverfittingMetrics + } + + for key, value := range o.AdditionalProperties { + toSerialize[key] = value + } + + return toSerialize, nil +} + +func (o *LowPerformanceInsight) UnmarshalJSON(data []byte) (err error) { + // This validates that all required properties are included in the JSON object + // by unmarshalling the object into a generic map with string keys and checking + // that every required field exists as a key in the generic map. + requiredProperties := []string{ + "id_", + "type", + "n_samples", + "mutual_info_elements", + "blob_path", + "severity", + "severity_metrics", + "metrics_info", + "min_hash", + "auto_generated", + } + + allProperties := make(map[string]interface{}) + + err = json.Unmarshal(data, &allProperties) + + if err != nil { + return err + } + + for _, requiredProperty := range requiredProperties { + if _, exists := allProperties[requiredProperty]; !exists { + return fmt.Errorf("no value given for required property %v", requiredProperty) + } + } + + varLowPerformanceInsight := _LowPerformanceInsight{} + + err = json.Unmarshal(data, &varLowPerformanceInsight) + + if err != nil { + return err + } + + *o = LowPerformanceInsight(varLowPerformanceInsight) + + additionalProperties := make(map[string]interface{}) + + if err = json.Unmarshal(data, &additionalProperties); err == nil { + delete(additionalProperties, "id_") + delete(additionalProperties, "parent_id") + delete(additionalProperties, "type") + delete(additionalProperties, "display_filters") + delete(additionalProperties, "n_samples") + delete(additionalProperties, "mutual_info_elements") + delete(additionalProperties, "blob_path") + delete(additionalProperties, "severity") + delete(additionalProperties, "severity_metrics") + delete(additionalProperties, "metrics_info") + delete(additionalProperties, "min_hash") + delete(additionalProperties, "csv_path") + delete(additionalProperties, "automatic_tests") + delete(additionalProperties, "auto_generated") + delete(additionalProperties, "es_filters_used_in_analysis") + delete(additionalProperties, "latent_space") + delete(additionalProperties, "aggressor_fixing") + delete(additionalProperties, "is_train_aggressor") + delete(additionalProperties, "overfitting_metrics") + o.AdditionalProperties = additionalProperties + } + + return err +} + +type NullableLowPerformanceInsight struct { + value *LowPerformanceInsight + isSet bool +} + +func (v NullableLowPerformanceInsight) Get() *LowPerformanceInsight { + return v.value +} + +func (v *NullableLowPerformanceInsight) Set(val *LowPerformanceInsight) { + v.value = val + v.isSet = true +} + +func (v NullableLowPerformanceInsight) IsSet() bool { + return v.isSet +} + +func (v *NullableLowPerformanceInsight) Unset() { + v.value = nil + v.isSet = false +} + +func NewNullableLowPerformanceInsight(val *LowPerformanceInsight) *NullableLowPerformanceInsight { + return &NullableLowPerformanceInsight{value: val, isSet: true} +} + +func (v NullableLowPerformanceInsight) MarshalJSON() ([]byte, error) { + return json.Marshal(v.value) +} + +func (v *NullableLowPerformanceInsight) UnmarshalJSON(src []byte) error { + v.isSet = true + return json.Unmarshal(src, &v.value) +} diff --git a/pkg/tensorleapapi/model_machine_type_option.go b/pkg/tensorleapapi/model_machine_type_option.go index f5ce64107..0ece34e37 100644 --- a/pkg/tensorleapapi/model_machine_type_option.go +++ b/pkg/tensorleapapi/model_machine_type_option.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_mask_image_data.go b/pkg/tensorleapapi/model_mask_image_data.go index c5614ec6f..90c1f2362 100644 --- a/pkg/tensorleapapi/model_mask_image_data.go +++ b/pkg/tensorleapapi/model_mask_image_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_mask_text_data.go b/pkg/tensorleapapi/model_mask_text_data.go index 867cfda11..288cb0145 100644 --- a/pkg/tensorleapapi/model_mask_text_data.go +++ b/pkg/tensorleapapi/model_mask_text_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_message_level.go b/pkg/tensorleapapi/model_message_level.go index ecb9b972a..04081a0c5 100644 --- a/pkg/tensorleapapi/model_message_level.go +++ b/pkg/tensorleapapi/model_message_level.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_metric_instance.go b/pkg/tensorleapapi/model_metric_instance.go index 776b5e63e..25b02e693 100644 --- a/pkg/tensorleapapi/model_metric_instance.go +++ b/pkg/tensorleapapi/model_metric_instance.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_metric_message_params.go b/pkg/tensorleapapi/model_metric_message_params.go index ba270971b..fb65bfb30 100644 --- a/pkg/tensorleapapi/model_metric_message_params.go +++ b/pkg/tensorleapapi/model_metric_message_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_metric_statistic_element.go b/pkg/tensorleapapi/model_metric_statistic_element.go index a51316780..25bd82a23 100644 --- a/pkg/tensorleapapi/model_metric_statistic_element.go +++ b/pkg/tensorleapapi/model_metric_statistic_element.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_metric_statistic_element_value.go b/pkg/tensorleapapi/model_metric_statistic_element_value.go index 1cd8faa6b..fe3cfee11 100644 --- a/pkg/tensorleapapi/model_metric_statistic_element_value.go +++ b/pkg/tensorleapapi/model_metric_statistic_element_value.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_mislabeled_samples_insight.go b/pkg/tensorleapapi/model_mislabeled_samples_insight.go index cbee47126..e93985901 100644 --- a/pkg/tensorleapapi/model_mislabeled_samples_insight.go +++ b/pkg/tensorleapapi/model_mislabeled_samples_insight.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -35,6 +35,7 @@ type MislabeledSamplesInsight struct { AutomaticTests []InsightAutomaticTest `json:"automatic_tests,omitempty"` AutoGenerated bool `json:"auto_generated"` EsFiltersUsedInAnalysis []ESFilter `json:"es_filters_used_in_analysis,omitempty"` + LatentSpace *string `json:"latent_space,omitempty"` Subset DataStateType `json:"subset"` AdditionalProperties map[string]interface{} } @@ -469,6 +470,38 @@ func (o *MislabeledSamplesInsight) SetEsFiltersUsedInAnalysis(v []ESFilter) { o.EsFiltersUsedInAnalysis = v } +// GetLatentSpace returns the LatentSpace field value if set, zero value otherwise. +func (o *MislabeledSamplesInsight) GetLatentSpace() string { + if o == nil || IsNil(o.LatentSpace) { + var ret string + return ret + } + return *o.LatentSpace +} + +// GetLatentSpaceOk returns a tuple with the LatentSpace field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *MislabeledSamplesInsight) GetLatentSpaceOk() (*string, bool) { + if o == nil || IsNil(o.LatentSpace) { + return nil, false + } + return o.LatentSpace, true +} + +// HasLatentSpace returns a boolean if a field has been set. +func (o *MislabeledSamplesInsight) HasLatentSpace() bool { + if o != nil && !IsNil(o.LatentSpace) { + return true + } + + return false +} + +// SetLatentSpace gets a reference to the given string and assigns it to the LatentSpace field. +func (o *MislabeledSamplesInsight) SetLatentSpace(v string) { + o.LatentSpace = &v +} + // GetSubset returns the Subset field value func (o *MislabeledSamplesInsight) GetSubset() DataStateType { if o == nil { @@ -528,6 +561,9 @@ func (o MislabeledSamplesInsight) ToMap() (map[string]interface{}, error) { if !IsNil(o.EsFiltersUsedInAnalysis) { toSerialize["es_filters_used_in_analysis"] = o.EsFiltersUsedInAnalysis } + if !IsNil(o.LatentSpace) { + toSerialize["latent_space"] = o.LatentSpace + } toSerialize["subset"] = o.Subset for key, value := range o.AdditionalProperties { @@ -597,6 +633,7 @@ func (o *MislabeledSamplesInsight) UnmarshalJSON(data []byte) (err error) { delete(additionalProperties, "automatic_tests") delete(additionalProperties, "auto_generated") delete(additionalProperties, "es_filters_used_in_analysis") + delete(additionalProperties, "latent_space") delete(additionalProperties, "subset") o.AdditionalProperties = additionalProperties } diff --git a/pkg/tensorleapapi/model_model_graph.go b/pkg/tensorleapapi/model_model_graph.go index 5c379ff0c..a1921e07b 100644 --- a/pkg/tensorleapapi/model_model_graph.go +++ b/pkg/tensorleapapi/model_model_graph.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_model_setup.go b/pkg/tensorleapapi/model_model_setup.go index 1351f70cc..f24359961 100644 --- a/pkg/tensorleapapi/model_model_setup.go +++ b/pkg/tensorleapapi/model_model_setup.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_module.go b/pkg/tensorleapapi/model_module.go index 6934af2c4..2d5b045e9 100644 --- a/pkg/tensorleapapi/model_module.go +++ b/pkg/tensorleapapi/model_module.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_module_message_data.go b/pkg/tensorleapapi/model_module_message_data.go index d714689c1..38ec8aed1 100644 --- a/pkg/tensorleapapi/model_module_message_data.go +++ b/pkg/tensorleapapi/model_module_message_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_module_status.go b/pkg/tensorleapapi/model_module_status.go index 98a8acf60..f88adc453 100644 --- a/pkg/tensorleapapi/model_module_status.go +++ b/pkg/tensorleapapi/model_module_status.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_module_status_all_modules.go b/pkg/tensorleapapi/model_module_status_all_modules.go index e2a982fe3..7050bcc3d 100644 --- a/pkg/tensorleapapi/model_module_status_all_modules.go +++ b/pkg/tensorleapapi/model_module_status_all_modules.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_monitored_module_type.go b/pkg/tensorleapapi/model_monitored_module_type.go index 753fdc321..24b51af84 100644 --- a/pkg/tensorleapapi/model_monitored_module_type.go +++ b/pkg/tensorleapapi/model_monitored_module_type.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_multi_charts_params.go b/pkg/tensorleapapi/model_multi_charts_params.go index fedbbed88..1e463f048 100644 --- a/pkg/tensorleapapi/model_multi_charts_params.go +++ b/pkg/tensorleapapi/model_multi_charts_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -20,16 +20,16 @@ var _ MappedNullable = &MultiChartsParams{} // MultiChartsParams struct for MultiChartsParams type MultiChartsParams struct { - ProjectId string `json:"projectId"` - X SplitAgg `json:"x"` - Y Aggregations `json:"y"` - VerticalSplit *SplitAgg `json:"verticalSplit,omitempty"` - HorizontalSplit *SplitAgg `json:"horizontalSplit,omitempty"` - InnerSplit *SplitAgg `json:"innerSplit,omitempty"` - Filters []ESFilter `json:"filters,omitempty"` - SessionRunsToEpochs []SessionRunToEpoch `json:"sessionRunsToEpochs"` - ShowAllEpochs bool `json:"showAllEpochs"` - ElementInstance *bool `json:"elementInstance,omitempty"` + ProjectId string `json:"projectId"` + X SplitAgg `json:"x"` + Y Aggregations `json:"y"` + VerticalSplit *SplitAgg `json:"verticalSplit,omitempty"` + HorizontalSplit *SplitAgg `json:"horizontalSplit,omitempty"` + InnerSplit *SplitAgg `json:"innerSplit,omitempty"` + Filters []ESFilter `json:"filters,omitempty"` + InferenceArtifactIds []string `json:"inferenceArtifactIds"` + ShowAllEpochs bool `json:"showAllEpochs"` + ElementInstance *bool `json:"elementInstance,omitempty"` AdditionalProperties map[string]interface{} } @@ -39,12 +39,12 @@ type _MultiChartsParams MultiChartsParams // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewMultiChartsParams(projectId string, x SplitAgg, y Aggregations, sessionRunsToEpochs []SessionRunToEpoch, showAllEpochs bool) *MultiChartsParams { +func NewMultiChartsParams(projectId string, x SplitAgg, y Aggregations, inferenceArtifactIds []string, showAllEpochs bool) *MultiChartsParams { this := MultiChartsParams{} this.ProjectId = projectId this.X = x this.Y = y - this.SessionRunsToEpochs = sessionRunsToEpochs + this.InferenceArtifactIds = inferenceArtifactIds this.ShowAllEpochs = showAllEpochs return &this } @@ -257,28 +257,28 @@ func (o *MultiChartsParams) SetFilters(v []ESFilter) { o.Filters = v } -// GetSessionRunsToEpochs returns the SessionRunsToEpochs field value -func (o *MultiChartsParams) GetSessionRunsToEpochs() []SessionRunToEpoch { +// GetInferenceArtifactIds returns the InferenceArtifactIds field value +func (o *MultiChartsParams) GetInferenceArtifactIds() []string { if o == nil { - var ret []SessionRunToEpoch + var ret []string return ret } - return o.SessionRunsToEpochs + return o.InferenceArtifactIds } -// GetSessionRunsToEpochsOk returns a tuple with the SessionRunsToEpochs field value +// GetInferenceArtifactIdsOk returns a tuple with the InferenceArtifactIds field value // and a boolean to check if the value has been set. -func (o *MultiChartsParams) GetSessionRunsToEpochsOk() ([]SessionRunToEpoch, bool) { +func (o *MultiChartsParams) GetInferenceArtifactIdsOk() ([]string, bool) { if o == nil { return nil, false } - return o.SessionRunsToEpochs, true + return o.InferenceArtifactIds, true } -// SetSessionRunsToEpochs sets field value -func (o *MultiChartsParams) SetSessionRunsToEpochs(v []SessionRunToEpoch) { - o.SessionRunsToEpochs = v +// SetInferenceArtifactIds sets field value +func (o *MultiChartsParams) SetInferenceArtifactIds(v []string) { + o.InferenceArtifactIds = v } // GetShowAllEpochs returns the ShowAllEpochs field value @@ -362,7 +362,7 @@ func (o MultiChartsParams) ToMap() (map[string]interface{}, error) { if !IsNil(o.Filters) { toSerialize["filters"] = o.Filters } - toSerialize["sessionRunsToEpochs"] = o.SessionRunsToEpochs + toSerialize["inferenceArtifactIds"] = o.InferenceArtifactIds toSerialize["showAllEpochs"] = o.ShowAllEpochs if !IsNil(o.ElementInstance) { toSerialize["elementInstance"] = o.ElementInstance @@ -383,7 +383,7 @@ func (o *MultiChartsParams) UnmarshalJSON(data []byte) (err error) { "projectId", "x", "y", - "sessionRunsToEpochs", + "inferenceArtifactIds", "showAllEpochs", } @@ -421,7 +421,7 @@ func (o *MultiChartsParams) UnmarshalJSON(data []byte) (err error) { delete(additionalProperties, "horizontalSplit") delete(additionalProperties, "innerSplit") delete(additionalProperties, "filters") - delete(additionalProperties, "sessionRunsToEpochs") + delete(additionalProperties, "inferenceArtifactIds") delete(additionalProperties, "showAllEpochs") delete(additionalProperties, "elementInstance") o.AdditionalProperties = additionalProperties diff --git a/pkg/tensorleapapi/model_multi_charts_response.go b/pkg/tensorleapapi/model_multi_charts_response.go index 73a040c44..de9417a57 100644 --- a/pkg/tensorleapapi/model_multi_charts_response.go +++ b/pkg/tensorleapapi/model_multi_charts_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_multi_threshold_confusion_matrix_params.go b/pkg/tensorleapapi/model_multi_threshold_confusion_matrix_params.go index f7e58d278..6af3c0f92 100644 --- a/pkg/tensorleapapi/model_multi_threshold_confusion_matrix_params.go +++ b/pkg/tensorleapapi/model_multi_threshold_confusion_matrix_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -20,13 +20,13 @@ var _ MappedNullable = &MultiThresholdConfusionMatrixParams{} // MultiThresholdConfusionMatrixParams struct for MultiThresholdConfusionMatrixParams type MultiThresholdConfusionMatrixParams struct { - SessionRunsToEpochs []SessionRunToEpoch `json:"sessionRunsToEpochs"` - ProjectId string `json:"projectId"` - CustomMetricName string `json:"customMetricName"` - VerticalSplit *SplitAgg `json:"verticalSplit,omitempty"` - HorizontalSplit *SplitAgg `json:"horizontalSplit,omitempty"` - Filters []ESFilter `json:"filters,omitempty"` - ElementInstance *bool `json:"elementInstance,omitempty"` + InferenceArtifactIds []string `json:"inferenceArtifactIds"` + ProjectId string `json:"projectId"` + CustomMetricName string `json:"customMetricName"` + VerticalSplit *SplitAgg `json:"verticalSplit,omitempty"` + HorizontalSplit *SplitAgg `json:"horizontalSplit,omitempty"` + Filters []ESFilter `json:"filters,omitempty"` + ElementInstance *bool `json:"elementInstance,omitempty"` AdditionalProperties map[string]interface{} } @@ -36,9 +36,9 @@ type _MultiThresholdConfusionMatrixParams MultiThresholdConfusionMatrixParams // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewMultiThresholdConfusionMatrixParams(sessionRunsToEpochs []SessionRunToEpoch, projectId string, customMetricName string) *MultiThresholdConfusionMatrixParams { +func NewMultiThresholdConfusionMatrixParams(inferenceArtifactIds []string, projectId string, customMetricName string) *MultiThresholdConfusionMatrixParams { this := MultiThresholdConfusionMatrixParams{} - this.SessionRunsToEpochs = sessionRunsToEpochs + this.InferenceArtifactIds = inferenceArtifactIds this.ProjectId = projectId this.CustomMetricName = customMetricName return &this @@ -52,28 +52,28 @@ func NewMultiThresholdConfusionMatrixParamsWithDefaults() *MultiThresholdConfusi return &this } -// GetSessionRunsToEpochs returns the SessionRunsToEpochs field value -func (o *MultiThresholdConfusionMatrixParams) GetSessionRunsToEpochs() []SessionRunToEpoch { +// GetInferenceArtifactIds returns the InferenceArtifactIds field value +func (o *MultiThresholdConfusionMatrixParams) GetInferenceArtifactIds() []string { if o == nil { - var ret []SessionRunToEpoch + var ret []string return ret } - return o.SessionRunsToEpochs + return o.InferenceArtifactIds } -// GetSessionRunsToEpochsOk returns a tuple with the SessionRunsToEpochs field value +// GetInferenceArtifactIdsOk returns a tuple with the InferenceArtifactIds field value // and a boolean to check if the value has been set. -func (o *MultiThresholdConfusionMatrixParams) GetSessionRunsToEpochsOk() ([]SessionRunToEpoch, bool) { +func (o *MultiThresholdConfusionMatrixParams) GetInferenceArtifactIdsOk() ([]string, bool) { if o == nil { return nil, false } - return o.SessionRunsToEpochs, true + return o.InferenceArtifactIds, true } -// SetSessionRunsToEpochs sets field value -func (o *MultiThresholdConfusionMatrixParams) SetSessionRunsToEpochs(v []SessionRunToEpoch) { - o.SessionRunsToEpochs = v +// SetInferenceArtifactIds sets field value +func (o *MultiThresholdConfusionMatrixParams) SetInferenceArtifactIds(v []string) { + o.InferenceArtifactIds = v } // GetProjectId returns the ProjectId field value @@ -262,7 +262,7 @@ func (o MultiThresholdConfusionMatrixParams) MarshalJSON() ([]byte, error) { func (o MultiThresholdConfusionMatrixParams) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} - toSerialize["sessionRunsToEpochs"] = o.SessionRunsToEpochs + toSerialize["inferenceArtifactIds"] = o.InferenceArtifactIds toSerialize["projectId"] = o.ProjectId toSerialize["customMetricName"] = o.CustomMetricName if !IsNil(o.VerticalSplit) { @@ -290,7 +290,7 @@ func (o *MultiThresholdConfusionMatrixParams) UnmarshalJSON(data []byte) (err er // by unmarshalling the object into a generic map with string keys and checking // that every required field exists as a key in the generic map. requiredProperties := []string{ - "sessionRunsToEpochs", + "inferenceArtifactIds", "projectId", "customMetricName", } @@ -322,7 +322,7 @@ func (o *MultiThresholdConfusionMatrixParams) UnmarshalJSON(data []byte) (err er additionalProperties := make(map[string]interface{}) if err = json.Unmarshal(data, &additionalProperties); err == nil { - delete(additionalProperties, "sessionRunsToEpochs") + delete(additionalProperties, "inferenceArtifactIds") delete(additionalProperties, "projectId") delete(additionalProperties, "customMetricName") delete(additionalProperties, "verticalSplit") diff --git a/pkg/tensorleapapi/model_mutual_information_element.go b/pkg/tensorleapapi/model_mutual_information_element.go index 03df55971..e7dd5f0dd 100644 --- a/pkg/tensorleapapi/model_mutual_information_element.go +++ b/pkg/tensorleapapi/model_mutual_information_element.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_mutual_information_feature.go b/pkg/tensorleapapi/model_mutual_information_feature.go index 7b9f99be6..eca0111b8 100644 --- a/pkg/tensorleapapi/model_mutual_information_feature.go +++ b/pkg/tensorleapapi/model_mutual_information_feature.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_node_message_params.go b/pkg/tensorleapapi/model_node_message_params.go index 91a90d56d..6eca73a6f 100644 --- a/pkg/tensorleapapi/model_node_message_params.go +++ b/pkg/tensorleapapi/model_node_message_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_node_type.go b/pkg/tensorleapapi/model_node_type.go index 1ff1fa4bf..a8f226bba 100644 --- a/pkg/tensorleapapi/model_node_type.go +++ b/pkg/tensorleapapi/model_node_type.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_notification.go b/pkg/tensorleapapi/model_notification.go index 5967d8e97..2dcf9fd88 100644 --- a/pkg/tensorleapapi/model_notification.go +++ b/pkg/tensorleapapi/model_notification.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_number_or_string.go b/pkg/tensorleapapi/model_number_or_string.go index f707cfea7..e18c26112 100644 --- a/pkg/tensorleapapi/model_number_or_string.go +++ b/pkg/tensorleapapi/model_number_or_string.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_number_schema.go b/pkg/tensorleapapi/model_number_schema.go index 8803f3640..47898c5be 100644 --- a/pkg/tensorleapapi/model_number_schema.go +++ b/pkg/tensorleapapi/model_number_schema.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_operator_enum.go b/pkg/tensorleapapi/model_operator_enum.go index 07e687559..9048f6653 100644 --- a/pkg/tensorleapapi/model_operator_enum.go +++ b/pkg/tensorleapapi/model_operator_enum.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_optional_analysis.go b/pkg/tensorleapapi/model_optional_analysis.go index baf031758..d6c0b89f4 100644 --- a/pkg/tensorleapapi/model_optional_analysis.go +++ b/pkg/tensorleapapi/model_optional_analysis.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_order_type.go b/pkg/tensorleapapi/model_order_type.go index 708e8c15e..02f6a540e 100644 --- a/pkg/tensorleapapi/model_order_type.go +++ b/pkg/tensorleapapi/model_order_type.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_overwrite_model_params.go b/pkg/tensorleapapi/model_overwrite_model_params.go index d928d3ac3..deec2f2ff 100644 --- a/pkg/tensorleapapi/model_overwrite_model_params.go +++ b/pkg/tensorleapapi/model_overwrite_model_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_panel_layout.go b/pkg/tensorleapapi/model_panel_layout.go index cd5bcc1d1..12ef5ebb3 100644 --- a/pkg/tensorleapapi/model_panel_layout.go +++ b/pkg/tensorleapapi/model_panel_layout.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_pares_code_snapshot_params.go b/pkg/tensorleapapi/model_pares_code_snapshot_params.go index 2a10e01df..43469f976 100644 --- a/pkg/tensorleapapi/model_pares_code_snapshot_params.go +++ b/pkg/tensorleapapi/model_pares_code_snapshot_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_partial_population_exploration_artifacts_.go b/pkg/tensorleapapi/model_partial_population_exploration_artifacts_.go index 48581a5fc..02363049f 100644 --- a/pkg/tensorleapapi/model_partial_population_exploration_artifacts_.go +++ b/pkg/tensorleapapi/model_partial_population_exploration_artifacts_.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_pick_population_exploration_params_exclude_keyof_population_exploration_params_digest_or_re_run_after_fail__.go b/pkg/tensorleapapi/model_pick_population_exploration_params_exclude_keyof_population_exploration_params_digest_or_re_run_after_fail__.go index 9432afc9a..2d3b0d9ce 100644 --- a/pkg/tensorleapapi/model_pick_population_exploration_params_exclude_keyof_population_exploration_params_digest_or_re_run_after_fail__.go +++ b/pkg/tensorleapapi/model_pick_population_exploration_params_exclude_keyof_population_exploration_params_digest_or_re_run_after_fail__.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -20,10 +20,10 @@ var _ MappedNullable = &PickPopulationExplorationParamsExcludeKeyofPopulationExp // PickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestOrReRunAfterFail From T, pick a set of properties whose keys are in the union K type PickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestOrReRunAfterFail struct { - SessionRunId string `json:"sessionRunId"` + VersionId string `json:"versionId"` + InferenceArtifactId string `json:"inferenceArtifactId"` ProjectId string `json:"projectId"` BatchSize float64 `json:"batchSize"` - FromEpoch float64 `json:"fromEpoch"` Filters []ESFilter `json:"filters,omitempty"` TimeFilter *ESFilter `json:"timeFilter,omitempty"` NotApplyTimeFilterOnUnlabeledOnly *bool `json:"notApplyTimeFilterOnUnlabeledOnly,omitempty"` @@ -44,12 +44,12 @@ type _PickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDige // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewPickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestOrReRunAfterFail(sessionRunId string, projectId string, batchSize float64, fromEpoch float64, numOfSamples float64, balanceBy []string, shouldFillRemainingWithUnbalanced bool, reductionAlgorithm ReductionAlgorithm) *PickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestOrReRunAfterFail { +func NewPickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestOrReRunAfterFail(versionId string, inferenceArtifactId string, projectId string, batchSize float64, numOfSamples float64, balanceBy []string, shouldFillRemainingWithUnbalanced bool, reductionAlgorithm ReductionAlgorithm) *PickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestOrReRunAfterFail { this := PickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestOrReRunAfterFail{} - this.SessionRunId = sessionRunId + this.VersionId = versionId + this.InferenceArtifactId = inferenceArtifactId this.ProjectId = projectId this.BatchSize = batchSize - this.FromEpoch = fromEpoch this.NumOfSamples = numOfSamples this.BalanceBy = balanceBy this.ShouldFillRemainingWithUnbalanced = shouldFillRemainingWithUnbalanced @@ -65,28 +65,52 @@ func NewPickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDi return &this } -// GetSessionRunId returns the SessionRunId field value -func (o *PickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestOrReRunAfterFail) GetSessionRunId() string { +// GetVersionId returns the VersionId field value +func (o *PickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestOrReRunAfterFail) GetVersionId() string { if o == nil { var ret string return ret } - return o.SessionRunId + return o.VersionId } -// GetSessionRunIdOk returns a tuple with the SessionRunId field value +// GetVersionIdOk returns a tuple with the VersionId field value // and a boolean to check if the value has been set. -func (o *PickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestOrReRunAfterFail) GetSessionRunIdOk() (*string, bool) { +func (o *PickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestOrReRunAfterFail) GetVersionIdOk() (*string, bool) { if o == nil { return nil, false } - return &o.SessionRunId, true + return &o.VersionId, true } -// SetSessionRunId sets field value -func (o *PickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestOrReRunAfterFail) SetSessionRunId(v string) { - o.SessionRunId = v +// SetVersionId sets field value +func (o *PickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestOrReRunAfterFail) SetVersionId(v string) { + o.VersionId = v +} + +// GetInferenceArtifactId returns the InferenceArtifactId field value +func (o *PickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestOrReRunAfterFail) GetInferenceArtifactId() string { + if o == nil { + var ret string + return ret + } + + return o.InferenceArtifactId +} + +// GetInferenceArtifactIdOk returns a tuple with the InferenceArtifactId field value +// and a boolean to check if the value has been set. +func (o *PickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestOrReRunAfterFail) GetInferenceArtifactIdOk() (*string, bool) { + if o == nil { + return nil, false + } + return &o.InferenceArtifactId, true +} + +// SetInferenceArtifactId sets field value +func (o *PickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestOrReRunAfterFail) SetInferenceArtifactId(v string) { + o.InferenceArtifactId = v } // GetProjectId returns the ProjectId field value @@ -137,30 +161,6 @@ func (o *PickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsD o.BatchSize = v } -// GetFromEpoch returns the FromEpoch field value -func (o *PickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestOrReRunAfterFail) GetFromEpoch() float64 { - if o == nil { - var ret float64 - return ret - } - - return o.FromEpoch -} - -// GetFromEpochOk returns a tuple with the FromEpoch field value -// and a boolean to check if the value has been set. -func (o *PickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestOrReRunAfterFail) GetFromEpochOk() (*float64, bool) { - if o == nil { - return nil, false - } - return &o.FromEpoch, true -} - -// SetFromEpoch sets field value -func (o *PickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestOrReRunAfterFail) SetFromEpoch(v float64) { - o.FromEpoch = v -} - // GetFilters returns the Filters field value if set, zero value otherwise. func (o *PickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestOrReRunAfterFail) GetFilters() []ESFilter { if o == nil || IsNil(o.Filters) { @@ -491,10 +491,10 @@ func (o PickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDi func (o PickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsDigestOrReRunAfterFail) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} - toSerialize["sessionRunId"] = o.SessionRunId + toSerialize["versionId"] = o.VersionId + toSerialize["inferenceArtifactId"] = o.InferenceArtifactId toSerialize["projectId"] = o.ProjectId toSerialize["batchSize"] = o.BatchSize - toSerialize["fromEpoch"] = o.FromEpoch if !IsNil(o.Filters) { toSerialize["filters"] = o.Filters } @@ -533,10 +533,10 @@ func (o *PickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsD // by unmarshalling the object into a generic map with string keys and checking // that every required field exists as a key in the generic map. requiredProperties := []string{ - "sessionRunId", + "versionId", + "inferenceArtifactId", "projectId", "batchSize", - "fromEpoch", "numOfSamples", "balanceBy", "shouldFillRemainingWithUnbalanced", @@ -570,10 +570,10 @@ func (o *PickPopulationExplorationParamsExcludeKeyofPopulationExplorationParamsD additionalProperties := make(map[string]interface{}) if err = json.Unmarshal(data, &additionalProperties); err == nil { - delete(additionalProperties, "sessionRunId") + delete(additionalProperties, "versionId") + delete(additionalProperties, "inferenceArtifactId") delete(additionalProperties, "projectId") delete(additionalProperties, "batchSize") - delete(additionalProperties, "fromEpoch") delete(additionalProperties, "filters") delete(additionalProperties, "timeFilter") delete(additionalProperties, "notApplyTimeFilterOnUnlabeledOnly") diff --git a/pkg/tensorleapapi/model_pod_logs.go b/pkg/tensorleapapi/model_pod_logs.go index bc0021d3c..33745f221 100644 --- a/pkg/tensorleapapi/model_pod_logs.go +++ b/pkg/tensorleapapi/model_pod_logs.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_pop_explore_info.go b/pkg/tensorleapapi/model_pop_explore_info.go index ab7a99459..f38cba8f6 100644 --- a/pkg/tensorleapapi/model_pop_explore_info.go +++ b/pkg/tensorleapapi/model_pop_explore_info.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_populate_collection_from_filters_params.go b/pkg/tensorleapapi/model_populate_collection_from_filters_params.go new file mode 100644 index 000000000..b8b6da43a --- /dev/null +++ b/pkg/tensorleapapi/model_populate_collection_from_filters_params.go @@ -0,0 +1,335 @@ +/* +node-server + +No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + +API version: 11.0.23 +*/ + +// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. + +package tensorleapapi + +import ( + "encoding/json" + "fmt" +) + +// checks if the PopulateCollectionFromFiltersParams type satisfies the MappedNullable interface at compile time +var _ MappedNullable = &PopulateCollectionFromFiltersParams{} + +// PopulateCollectionFromFiltersParams struct for PopulateCollectionFromFiltersParams +type PopulateCollectionFromFiltersParams struct { + Description *string `json:"description,omitempty"` + Name *string `json:"name,omitempty"` + CollectionId *string `json:"collectionId,omitempty"` + Filters []ESFilter `json:"filters"` + InferenceArtifactIds []string `json:"inferenceArtifactIds"` + ProjectId string `json:"projectId"` + AdditionalProperties map[string]interface{} +} + +type _PopulateCollectionFromFiltersParams PopulateCollectionFromFiltersParams + +// NewPopulateCollectionFromFiltersParams instantiates a new PopulateCollectionFromFiltersParams object +// This constructor will assign default values to properties that have it defined, +// and makes sure properties required by API are set, but the set of arguments +// will change when the set of required properties is changed +func NewPopulateCollectionFromFiltersParams(filters []ESFilter, inferenceArtifactIds []string, projectId string) *PopulateCollectionFromFiltersParams { + this := PopulateCollectionFromFiltersParams{} + this.Filters = filters + this.InferenceArtifactIds = inferenceArtifactIds + this.ProjectId = projectId + return &this +} + +// NewPopulateCollectionFromFiltersParamsWithDefaults instantiates a new PopulateCollectionFromFiltersParams object +// This constructor will only assign default values to properties that have it defined, +// but it doesn't guarantee that properties required by API are set +func NewPopulateCollectionFromFiltersParamsWithDefaults() *PopulateCollectionFromFiltersParams { + this := PopulateCollectionFromFiltersParams{} + return &this +} + +// GetDescription returns the Description field value if set, zero value otherwise. +func (o *PopulateCollectionFromFiltersParams) GetDescription() string { + if o == nil || IsNil(o.Description) { + var ret string + return ret + } + return *o.Description +} + +// GetDescriptionOk returns a tuple with the Description field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *PopulateCollectionFromFiltersParams) GetDescriptionOk() (*string, bool) { + if o == nil || IsNil(o.Description) { + return nil, false + } + return o.Description, true +} + +// HasDescription returns a boolean if a field has been set. +func (o *PopulateCollectionFromFiltersParams) HasDescription() bool { + if o != nil && !IsNil(o.Description) { + return true + } + + return false +} + +// SetDescription gets a reference to the given string and assigns it to the Description field. +func (o *PopulateCollectionFromFiltersParams) SetDescription(v string) { + o.Description = &v +} + +// GetName returns the Name field value if set, zero value otherwise. +func (o *PopulateCollectionFromFiltersParams) GetName() string { + if o == nil || IsNil(o.Name) { + var ret string + return ret + } + return *o.Name +} + +// GetNameOk returns a tuple with the Name field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *PopulateCollectionFromFiltersParams) GetNameOk() (*string, bool) { + if o == nil || IsNil(o.Name) { + return nil, false + } + return o.Name, true +} + +// HasName returns a boolean if a field has been set. +func (o *PopulateCollectionFromFiltersParams) HasName() bool { + if o != nil && !IsNil(o.Name) { + return true + } + + return false +} + +// SetName gets a reference to the given string and assigns it to the Name field. +func (o *PopulateCollectionFromFiltersParams) SetName(v string) { + o.Name = &v +} + +// GetCollectionId returns the CollectionId field value if set, zero value otherwise. +func (o *PopulateCollectionFromFiltersParams) GetCollectionId() string { + if o == nil || IsNil(o.CollectionId) { + var ret string + return ret + } + return *o.CollectionId +} + +// GetCollectionIdOk returns a tuple with the CollectionId field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *PopulateCollectionFromFiltersParams) GetCollectionIdOk() (*string, bool) { + if o == nil || IsNil(o.CollectionId) { + return nil, false + } + return o.CollectionId, true +} + +// HasCollectionId returns a boolean if a field has been set. +func (o *PopulateCollectionFromFiltersParams) HasCollectionId() bool { + if o != nil && !IsNil(o.CollectionId) { + return true + } + + return false +} + +// SetCollectionId gets a reference to the given string and assigns it to the CollectionId field. +func (o *PopulateCollectionFromFiltersParams) SetCollectionId(v string) { + o.CollectionId = &v +} + +// GetFilters returns the Filters field value +func (o *PopulateCollectionFromFiltersParams) GetFilters() []ESFilter { + if o == nil { + var ret []ESFilter + return ret + } + + return o.Filters +} + +// GetFiltersOk returns a tuple with the Filters field value +// and a boolean to check if the value has been set. +func (o *PopulateCollectionFromFiltersParams) GetFiltersOk() ([]ESFilter, bool) { + if o == nil { + return nil, false + } + return o.Filters, true +} + +// SetFilters sets field value +func (o *PopulateCollectionFromFiltersParams) SetFilters(v []ESFilter) { + o.Filters = v +} + +// GetInferenceArtifactIds returns the InferenceArtifactIds field value +func (o *PopulateCollectionFromFiltersParams) GetInferenceArtifactIds() []string { + if o == nil { + var ret []string + return ret + } + + return o.InferenceArtifactIds +} + +// GetInferenceArtifactIdsOk returns a tuple with the InferenceArtifactIds field value +// and a boolean to check if the value has been set. +func (o *PopulateCollectionFromFiltersParams) GetInferenceArtifactIdsOk() ([]string, bool) { + if o == nil { + return nil, false + } + return o.InferenceArtifactIds, true +} + +// SetInferenceArtifactIds sets field value +func (o *PopulateCollectionFromFiltersParams) SetInferenceArtifactIds(v []string) { + o.InferenceArtifactIds = v +} + +// GetProjectId returns the ProjectId field value +func (o *PopulateCollectionFromFiltersParams) GetProjectId() string { + if o == nil { + var ret string + return ret + } + + return o.ProjectId +} + +// GetProjectIdOk returns a tuple with the ProjectId field value +// and a boolean to check if the value has been set. +func (o *PopulateCollectionFromFiltersParams) GetProjectIdOk() (*string, bool) { + if o == nil { + return nil, false + } + return &o.ProjectId, true +} + +// SetProjectId sets field value +func (o *PopulateCollectionFromFiltersParams) SetProjectId(v string) { + o.ProjectId = v +} + +func (o PopulateCollectionFromFiltersParams) MarshalJSON() ([]byte, error) { + toSerialize, err := o.ToMap() + if err != nil { + return []byte{}, err + } + return json.Marshal(toSerialize) +} + +func (o PopulateCollectionFromFiltersParams) ToMap() (map[string]interface{}, error) { + toSerialize := map[string]interface{}{} + if !IsNil(o.Description) { + toSerialize["description"] = o.Description + } + if !IsNil(o.Name) { + toSerialize["name"] = o.Name + } + if !IsNil(o.CollectionId) { + toSerialize["collectionId"] = o.CollectionId + } + toSerialize["filters"] = o.Filters + toSerialize["inferenceArtifactIds"] = o.InferenceArtifactIds + toSerialize["projectId"] = o.ProjectId + + for key, value := range o.AdditionalProperties { + toSerialize[key] = value + } + + return toSerialize, nil +} + +func (o *PopulateCollectionFromFiltersParams) UnmarshalJSON(data []byte) (err error) { + // This validates that all required properties are included in the JSON object + // by unmarshalling the object into a generic map with string keys and checking + // that every required field exists as a key in the generic map. + requiredProperties := []string{ + "filters", + "inferenceArtifactIds", + "projectId", + } + + allProperties := make(map[string]interface{}) + + err = json.Unmarshal(data, &allProperties) + + if err != nil { + return err + } + + for _, requiredProperty := range requiredProperties { + if _, exists := allProperties[requiredProperty]; !exists { + return fmt.Errorf("no value given for required property %v", requiredProperty) + } + } + + varPopulateCollectionFromFiltersParams := _PopulateCollectionFromFiltersParams{} + + err = json.Unmarshal(data, &varPopulateCollectionFromFiltersParams) + + if err != nil { + return err + } + + *o = PopulateCollectionFromFiltersParams(varPopulateCollectionFromFiltersParams) + + additionalProperties := make(map[string]interface{}) + + if err = json.Unmarshal(data, &additionalProperties); err == nil { + delete(additionalProperties, "description") + delete(additionalProperties, "name") + delete(additionalProperties, "collectionId") + delete(additionalProperties, "filters") + delete(additionalProperties, "inferenceArtifactIds") + delete(additionalProperties, "projectId") + o.AdditionalProperties = additionalProperties + } + + return err +} + +type NullablePopulateCollectionFromFiltersParams struct { + value *PopulateCollectionFromFiltersParams + isSet bool +} + +func (v NullablePopulateCollectionFromFiltersParams) Get() *PopulateCollectionFromFiltersParams { + return v.value +} + +func (v *NullablePopulateCollectionFromFiltersParams) Set(val *PopulateCollectionFromFiltersParams) { + v.value = val + v.isSet = true +} + +func (v NullablePopulateCollectionFromFiltersParams) IsSet() bool { + return v.isSet +} + +func (v *NullablePopulateCollectionFromFiltersParams) Unset() { + v.value = nil + v.isSet = false +} + +func NewNullablePopulateCollectionFromFiltersParams(val *PopulateCollectionFromFiltersParams) *NullablePopulateCollectionFromFiltersParams { + return &NullablePopulateCollectionFromFiltersParams{value: val, isSet: true} +} + +func (v NullablePopulateCollectionFromFiltersParams) MarshalJSON() ([]byte, error) { + return json.Marshal(v.value) +} + +func (v *NullablePopulateCollectionFromFiltersParams) UnmarshalJSON(src []byte) error { + v.isSet = true + return json.Unmarshal(src, &v.value) +} diff --git a/pkg/tensorleapapi/model_populate_collection_from_filters_response.go b/pkg/tensorleapapi/model_populate_collection_from_filters_response.go new file mode 100644 index 000000000..1f784a555 --- /dev/null +++ b/pkg/tensorleapapi/model_populate_collection_from_filters_response.go @@ -0,0 +1,195 @@ +/* +node-server + +No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + +API version: 11.0.23 +*/ + +// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. + +package tensorleapapi + +import ( + "encoding/json" + "fmt" +) + +// checks if the PopulateCollectionFromFiltersResponse type satisfies the MappedNullable interface at compile time +var _ MappedNullable = &PopulateCollectionFromFiltersResponse{} + +// PopulateCollectionFromFiltersResponse struct for PopulateCollectionFromFiltersResponse +type PopulateCollectionFromFiltersResponse struct { + NumOfAddedSamples float64 `json:"numOfAddedSamples"` + CollectionId string `json:"collectionId"` + AdditionalProperties map[string]interface{} +} + +type _PopulateCollectionFromFiltersResponse PopulateCollectionFromFiltersResponse + +// NewPopulateCollectionFromFiltersResponse instantiates a new PopulateCollectionFromFiltersResponse object +// This constructor will assign default values to properties that have it defined, +// and makes sure properties required by API are set, but the set of arguments +// will change when the set of required properties is changed +func NewPopulateCollectionFromFiltersResponse(numOfAddedSamples float64, collectionId string) *PopulateCollectionFromFiltersResponse { + this := PopulateCollectionFromFiltersResponse{} + this.NumOfAddedSamples = numOfAddedSamples + this.CollectionId = collectionId + return &this +} + +// NewPopulateCollectionFromFiltersResponseWithDefaults instantiates a new PopulateCollectionFromFiltersResponse object +// This constructor will only assign default values to properties that have it defined, +// but it doesn't guarantee that properties required by API are set +func NewPopulateCollectionFromFiltersResponseWithDefaults() *PopulateCollectionFromFiltersResponse { + this := PopulateCollectionFromFiltersResponse{} + return &this +} + +// GetNumOfAddedSamples returns the NumOfAddedSamples field value +func (o *PopulateCollectionFromFiltersResponse) GetNumOfAddedSamples() float64 { + if o == nil { + var ret float64 + return ret + } + + return o.NumOfAddedSamples +} + +// GetNumOfAddedSamplesOk returns a tuple with the NumOfAddedSamples field value +// and a boolean to check if the value has been set. +func (o *PopulateCollectionFromFiltersResponse) GetNumOfAddedSamplesOk() (*float64, bool) { + if o == nil { + return nil, false + } + return &o.NumOfAddedSamples, true +} + +// SetNumOfAddedSamples sets field value +func (o *PopulateCollectionFromFiltersResponse) SetNumOfAddedSamples(v float64) { + o.NumOfAddedSamples = v +} + +// GetCollectionId returns the CollectionId field value +func (o *PopulateCollectionFromFiltersResponse) GetCollectionId() string { + if o == nil { + var ret string + return ret + } + + return o.CollectionId +} + +// GetCollectionIdOk returns a tuple with the CollectionId field value +// and a boolean to check if the value has been set. +func (o *PopulateCollectionFromFiltersResponse) GetCollectionIdOk() (*string, bool) { + if o == nil { + return nil, false + } + return &o.CollectionId, true +} + +// SetCollectionId sets field value +func (o *PopulateCollectionFromFiltersResponse) SetCollectionId(v string) { + o.CollectionId = v +} + +func (o PopulateCollectionFromFiltersResponse) MarshalJSON() ([]byte, error) { + toSerialize, err := o.ToMap() + if err != nil { + return []byte{}, err + } + return json.Marshal(toSerialize) +} + +func (o PopulateCollectionFromFiltersResponse) ToMap() (map[string]interface{}, error) { + toSerialize := map[string]interface{}{} + toSerialize["numOfAddedSamples"] = o.NumOfAddedSamples + toSerialize["collectionId"] = o.CollectionId + + for key, value := range o.AdditionalProperties { + toSerialize[key] = value + } + + return toSerialize, nil +} + +func (o *PopulateCollectionFromFiltersResponse) UnmarshalJSON(data []byte) (err error) { + // This validates that all required properties are included in the JSON object + // by unmarshalling the object into a generic map with string keys and checking + // that every required field exists as a key in the generic map. + requiredProperties := []string{ + "numOfAddedSamples", + "collectionId", + } + + allProperties := make(map[string]interface{}) + + err = json.Unmarshal(data, &allProperties) + + if err != nil { + return err + } + + for _, requiredProperty := range requiredProperties { + if _, exists := allProperties[requiredProperty]; !exists { + return fmt.Errorf("no value given for required property %v", requiredProperty) + } + } + + varPopulateCollectionFromFiltersResponse := _PopulateCollectionFromFiltersResponse{} + + err = json.Unmarshal(data, &varPopulateCollectionFromFiltersResponse) + + if err != nil { + return err + } + + *o = PopulateCollectionFromFiltersResponse(varPopulateCollectionFromFiltersResponse) + + additionalProperties := make(map[string]interface{}) + + if err = json.Unmarshal(data, &additionalProperties); err == nil { + delete(additionalProperties, "numOfAddedSamples") + delete(additionalProperties, "collectionId") + o.AdditionalProperties = additionalProperties + } + + return err +} + +type NullablePopulateCollectionFromFiltersResponse struct { + value *PopulateCollectionFromFiltersResponse + isSet bool +} + +func (v NullablePopulateCollectionFromFiltersResponse) Get() *PopulateCollectionFromFiltersResponse { + return v.value +} + +func (v *NullablePopulateCollectionFromFiltersResponse) Set(val *PopulateCollectionFromFiltersResponse) { + v.value = val + v.isSet = true +} + +func (v NullablePopulateCollectionFromFiltersResponse) IsSet() bool { + return v.isSet +} + +func (v *NullablePopulateCollectionFromFiltersResponse) Unset() { + v.value = nil + v.isSet = false +} + +func NewNullablePopulateCollectionFromFiltersResponse(val *PopulateCollectionFromFiltersResponse) *NullablePopulateCollectionFromFiltersResponse { + return &NullablePopulateCollectionFromFiltersResponse{value: val, isSet: true} +} + +func (v NullablePopulateCollectionFromFiltersResponse) MarshalJSON() ([]byte, error) { + return json.Marshal(v.value) +} + +func (v *NullablePopulateCollectionFromFiltersResponse) UnmarshalJSON(src []byte) error { + v.isSet = true + return json.Unmarshal(src, &v.value) +} diff --git a/pkg/tensorleapapi/model_population_exploration_dashlet.go b/pkg/tensorleapapi/model_population_exploration_dashlet.go index 94d48f583..ec77ca8fc 100644 --- a/pkg/tensorleapapi/model_population_exploration_dashlet.go +++ b/pkg/tensorleapapi/model_population_exploration_dashlet.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_population_exploration_dashlet_data.go b/pkg/tensorleapapi/model_population_exploration_dashlet_data.go index d4872970a..4ee9e9538 100644 --- a/pkg/tensorleapapi/model_population_exploration_dashlet_data.go +++ b/pkg/tensorleapapi/model_population_exploration_dashlet_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_population_exploration_job_params.go b/pkg/tensorleapapi/model_population_exploration_job_params.go index b21309e01..a8ab7fa3d 100644 --- a/pkg/tensorleapapi/model_population_exploration_job_params.go +++ b/pkg/tensorleapapi/model_population_exploration_job_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -33,9 +33,9 @@ type PopulationExplorationJobParams struct { ProjectionMetric *string `json:"projectionMetric,omitempty"` Digest string `json:"digest"` Filters []ESFilter `json:"filters,omitempty"` - FromEpoch float64 `json:"fromEpoch"` BatchSize float64 `json:"batchSize"` - SessionRunId string `json:"sessionRunId"` + InferenceArtifactId string `json:"inferenceArtifactId"` + VersionId string `json:"versionId"` Type string `json:"type"` AdditionalProperties map[string]interface{} } @@ -46,16 +46,16 @@ type _PopulationExplorationJobParams PopulationExplorationJobParams // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewPopulationExplorationJobParams(reductionAlgorithm ReductionAlgorithm, shouldFillRemainingWithUnbalanced bool, balanceBy []string, numOfSamples float64, digest string, fromEpoch float64, batchSize float64, sessionRunId string, type_ string) *PopulationExplorationJobParams { +func NewPopulationExplorationJobParams(reductionAlgorithm ReductionAlgorithm, shouldFillRemainingWithUnbalanced bool, balanceBy []string, numOfSamples float64, digest string, batchSize float64, inferenceArtifactId string, versionId string, type_ string) *PopulationExplorationJobParams { this := PopulationExplorationJobParams{} this.ReductionAlgorithm = reductionAlgorithm this.ShouldFillRemainingWithUnbalanced = shouldFillRemainingWithUnbalanced this.BalanceBy = balanceBy this.NumOfSamples = numOfSamples this.Digest = digest - this.FromEpoch = fromEpoch this.BatchSize = batchSize - this.SessionRunId = sessionRunId + this.InferenceArtifactId = inferenceArtifactId + this.VersionId = versionId this.Type = type_ return &this } @@ -444,76 +444,76 @@ func (o *PopulationExplorationJobParams) SetFilters(v []ESFilter) { o.Filters = v } -// GetFromEpoch returns the FromEpoch field value -func (o *PopulationExplorationJobParams) GetFromEpoch() float64 { +// GetBatchSize returns the BatchSize field value +func (o *PopulationExplorationJobParams) GetBatchSize() float64 { if o == nil { var ret float64 return ret } - return o.FromEpoch + return o.BatchSize } -// GetFromEpochOk returns a tuple with the FromEpoch field value +// GetBatchSizeOk returns a tuple with the BatchSize field value // and a boolean to check if the value has been set. -func (o *PopulationExplorationJobParams) GetFromEpochOk() (*float64, bool) { +func (o *PopulationExplorationJobParams) GetBatchSizeOk() (*float64, bool) { if o == nil { return nil, false } - return &o.FromEpoch, true + return &o.BatchSize, true } -// SetFromEpoch sets field value -func (o *PopulationExplorationJobParams) SetFromEpoch(v float64) { - o.FromEpoch = v +// SetBatchSize sets field value +func (o *PopulationExplorationJobParams) SetBatchSize(v float64) { + o.BatchSize = v } -// GetBatchSize returns the BatchSize field value -func (o *PopulationExplorationJobParams) GetBatchSize() float64 { +// GetInferenceArtifactId returns the InferenceArtifactId field value +func (o *PopulationExplorationJobParams) GetInferenceArtifactId() string { if o == nil { - var ret float64 + var ret string return ret } - return o.BatchSize + return o.InferenceArtifactId } -// GetBatchSizeOk returns a tuple with the BatchSize field value +// GetInferenceArtifactIdOk returns a tuple with the InferenceArtifactId field value // and a boolean to check if the value has been set. -func (o *PopulationExplorationJobParams) GetBatchSizeOk() (*float64, bool) { +func (o *PopulationExplorationJobParams) GetInferenceArtifactIdOk() (*string, bool) { if o == nil { return nil, false } - return &o.BatchSize, true + return &o.InferenceArtifactId, true } -// SetBatchSize sets field value -func (o *PopulationExplorationJobParams) SetBatchSize(v float64) { - o.BatchSize = v +// SetInferenceArtifactId sets field value +func (o *PopulationExplorationJobParams) SetInferenceArtifactId(v string) { + o.InferenceArtifactId = v } -// GetSessionRunId returns the SessionRunId field value -func (o *PopulationExplorationJobParams) GetSessionRunId() string { +// GetVersionId returns the VersionId field value +func (o *PopulationExplorationJobParams) GetVersionId() string { if o == nil { var ret string return ret } - return o.SessionRunId + return o.VersionId } -// GetSessionRunIdOk returns a tuple with the SessionRunId field value +// GetVersionIdOk returns a tuple with the VersionId field value // and a boolean to check if the value has been set. -func (o *PopulationExplorationJobParams) GetSessionRunIdOk() (*string, bool) { +func (o *PopulationExplorationJobParams) GetVersionIdOk() (*string, bool) { if o == nil { return nil, false } - return &o.SessionRunId, true + return &o.VersionId, true } -// SetSessionRunId sets field value -func (o *PopulationExplorationJobParams) SetSessionRunId(v string) { - o.SessionRunId = v +// SetVersionId sets field value +func (o *PopulationExplorationJobParams) SetVersionId(v string) { + o.VersionId = v } // GetType returns the Type field value @@ -579,9 +579,9 @@ func (o PopulationExplorationJobParams) ToMap() (map[string]interface{}, error) if !IsNil(o.Filters) { toSerialize["filters"] = o.Filters } - toSerialize["fromEpoch"] = o.FromEpoch toSerialize["batchSize"] = o.BatchSize - toSerialize["sessionRunId"] = o.SessionRunId + toSerialize["inferenceArtifactId"] = o.InferenceArtifactId + toSerialize["versionId"] = o.VersionId toSerialize["type"] = o.Type for key, value := range o.AdditionalProperties { @@ -601,9 +601,9 @@ func (o *PopulationExplorationJobParams) UnmarshalJSON(data []byte) (err error) "balanceBy", "numOfSamples", "digest", - "fromEpoch", "batchSize", - "sessionRunId", + "inferenceArtifactId", + "versionId", "type", } @@ -647,9 +647,9 @@ func (o *PopulationExplorationJobParams) UnmarshalJSON(data []byte) (err error) delete(additionalProperties, "projectionMetric") delete(additionalProperties, "digest") delete(additionalProperties, "filters") - delete(additionalProperties, "fromEpoch") delete(additionalProperties, "batchSize") - delete(additionalProperties, "sessionRunId") + delete(additionalProperties, "inferenceArtifactId") + delete(additionalProperties, "versionId") delete(additionalProperties, "type") o.AdditionalProperties = additionalProperties } diff --git a/pkg/tensorleapapi/model_population_exploration_params.go b/pkg/tensorleapapi/model_population_exploration_params.go index ace84c343..350e20edd 100644 --- a/pkg/tensorleapapi/model_population_exploration_params.go +++ b/pkg/tensorleapapi/model_population_exploration_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -20,10 +20,10 @@ var _ MappedNullable = &PopulationExplorationParams{} // PopulationExplorationParams struct for PopulationExplorationParams type PopulationExplorationParams struct { - SessionRunId string `json:"sessionRunId"` + VersionId string `json:"versionId"` + InferenceArtifactId string `json:"inferenceArtifactId"` ProjectId string `json:"projectId"` BatchSize float64 `json:"batchSize"` - FromEpoch float64 `json:"fromEpoch"` Filters []ESFilter `json:"filters,omitempty"` TimeFilter *ESFilter `json:"timeFilter,omitempty"` NotApplyTimeFilterOnUnlabeledOnly *bool `json:"notApplyTimeFilterOnUnlabeledOnly,omitempty"` @@ -46,12 +46,12 @@ type _PopulationExplorationParams PopulationExplorationParams // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewPopulationExplorationParams(sessionRunId string, projectId string, batchSize float64, fromEpoch float64, digest string, numOfSamples float64, balanceBy []string, shouldFillRemainingWithUnbalanced bool, reductionAlgorithm ReductionAlgorithm) *PopulationExplorationParams { +func NewPopulationExplorationParams(versionId string, inferenceArtifactId string, projectId string, batchSize float64, digest string, numOfSamples float64, balanceBy []string, shouldFillRemainingWithUnbalanced bool, reductionAlgorithm ReductionAlgorithm) *PopulationExplorationParams { this := PopulationExplorationParams{} - this.SessionRunId = sessionRunId + this.VersionId = versionId + this.InferenceArtifactId = inferenceArtifactId this.ProjectId = projectId this.BatchSize = batchSize - this.FromEpoch = fromEpoch this.Digest = digest this.NumOfSamples = numOfSamples this.BalanceBy = balanceBy @@ -68,28 +68,52 @@ func NewPopulationExplorationParamsWithDefaults() *PopulationExplorationParams { return &this } -// GetSessionRunId returns the SessionRunId field value -func (o *PopulationExplorationParams) GetSessionRunId() string { +// GetVersionId returns the VersionId field value +func (o *PopulationExplorationParams) GetVersionId() string { if o == nil { var ret string return ret } - return o.SessionRunId + return o.VersionId } -// GetSessionRunIdOk returns a tuple with the SessionRunId field value +// GetVersionIdOk returns a tuple with the VersionId field value // and a boolean to check if the value has been set. -func (o *PopulationExplorationParams) GetSessionRunIdOk() (*string, bool) { +func (o *PopulationExplorationParams) GetVersionIdOk() (*string, bool) { if o == nil { return nil, false } - return &o.SessionRunId, true + return &o.VersionId, true } -// SetSessionRunId sets field value -func (o *PopulationExplorationParams) SetSessionRunId(v string) { - o.SessionRunId = v +// SetVersionId sets field value +func (o *PopulationExplorationParams) SetVersionId(v string) { + o.VersionId = v +} + +// GetInferenceArtifactId returns the InferenceArtifactId field value +func (o *PopulationExplorationParams) GetInferenceArtifactId() string { + if o == nil { + var ret string + return ret + } + + return o.InferenceArtifactId +} + +// GetInferenceArtifactIdOk returns a tuple with the InferenceArtifactId field value +// and a boolean to check if the value has been set. +func (o *PopulationExplorationParams) GetInferenceArtifactIdOk() (*string, bool) { + if o == nil { + return nil, false + } + return &o.InferenceArtifactId, true +} + +// SetInferenceArtifactId sets field value +func (o *PopulationExplorationParams) SetInferenceArtifactId(v string) { + o.InferenceArtifactId = v } // GetProjectId returns the ProjectId field value @@ -140,30 +164,6 @@ func (o *PopulationExplorationParams) SetBatchSize(v float64) { o.BatchSize = v } -// GetFromEpoch returns the FromEpoch field value -func (o *PopulationExplorationParams) GetFromEpoch() float64 { - if o == nil { - var ret float64 - return ret - } - - return o.FromEpoch -} - -// GetFromEpochOk returns a tuple with the FromEpoch field value -// and a boolean to check if the value has been set. -func (o *PopulationExplorationParams) GetFromEpochOk() (*float64, bool) { - if o == nil { - return nil, false - } - return &o.FromEpoch, true -} - -// SetFromEpoch sets field value -func (o *PopulationExplorationParams) SetFromEpoch(v float64) { - o.FromEpoch = v -} - // GetFilters returns the Filters field value if set, zero value otherwise. func (o *PopulationExplorationParams) GetFilters() []ESFilter { if o == nil || IsNil(o.Filters) { @@ -550,10 +550,10 @@ func (o PopulationExplorationParams) MarshalJSON() ([]byte, error) { func (o PopulationExplorationParams) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} - toSerialize["sessionRunId"] = o.SessionRunId + toSerialize["versionId"] = o.VersionId + toSerialize["inferenceArtifactId"] = o.InferenceArtifactId toSerialize["projectId"] = o.ProjectId toSerialize["batchSize"] = o.BatchSize - toSerialize["fromEpoch"] = o.FromEpoch if !IsNil(o.Filters) { toSerialize["filters"] = o.Filters } @@ -596,10 +596,10 @@ func (o *PopulationExplorationParams) UnmarshalJSON(data []byte) (err error) { // by unmarshalling the object into a generic map with string keys and checking // that every required field exists as a key in the generic map. requiredProperties := []string{ - "sessionRunId", + "versionId", + "inferenceArtifactId", "projectId", "batchSize", - "fromEpoch", "digest", "numOfSamples", "balanceBy", @@ -634,10 +634,10 @@ func (o *PopulationExplorationParams) UnmarshalJSON(data []byte) (err error) { additionalProperties := make(map[string]interface{}) if err = json.Unmarshal(data, &additionalProperties); err == nil { - delete(additionalProperties, "sessionRunId") + delete(additionalProperties, "versionId") + delete(additionalProperties, "inferenceArtifactId") delete(additionalProperties, "projectId") delete(additionalProperties, "batchSize") - delete(additionalProperties, "fromEpoch") delete(additionalProperties, "filters") delete(additionalProperties, "timeFilter") delete(additionalProperties, "notApplyTimeFilterOnUnlabeledOnly") diff --git a/pkg/tensorleapapi/model_population_exploration_response.go b/pkg/tensorleapapi/model_population_exploration_response.go index ce5479fb7..389c66a9c 100644 --- a/pkg/tensorleapapi/model_population_exploration_response.go +++ b/pkg/tensorleapapi/model_population_exploration_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_population_exploration_response_status.go b/pkg/tensorleapapi/model_population_exploration_response_status.go index dd6c47559..d2dbf15ad 100644 --- a/pkg/tensorleapapi/model_population_exploration_response_status.go +++ b/pkg/tensorleapapi/model_population_exploration_response_status.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_prediction_labels.go b/pkg/tensorleapapi/model_prediction_labels.go index 8b9323500..32f8102fe 100644 --- a/pkg/tensorleapapi/model_prediction_labels.go +++ b/pkg/tensorleapapi/model_prediction_labels.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_prediction_type_instance.go b/pkg/tensorleapapi/model_prediction_type_instance.go index 031b8f68b..9cb9aab15 100644 --- a/pkg/tensorleapapi/model_prediction_type_instance.go +++ b/pkg/tensorleapapi/model_prediction_type_instance.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_project.go b/pkg/tensorleapapi/model_project.go index 0dde4669f..14540a3f4 100644 --- a/pkg/tensorleapapi/model_project.go +++ b/pkg/tensorleapapi/model_project.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_project_access.go b/pkg/tensorleapapi/model_project_access.go index e909503d1..da39f761f 100644 --- a/pkg/tensorleapapi/model_project_access.go +++ b/pkg/tensorleapapi/model_project_access.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_project_meta.go b/pkg/tensorleapapi/model_project_meta.go index 7fad441f1..e0d609f4d 100644 --- a/pkg/tensorleapapi/model_project_meta.go +++ b/pkg/tensorleapapi/model_project_meta.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_project_status.go b/pkg/tensorleapapi/model_project_status.go index 50b51d780..ee901c710 100644 --- a/pkg/tensorleapapi/model_project_status.go +++ b/pkg/tensorleapapi/model_project_status.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_push_code_snapshot_params.go b/pkg/tensorleapapi/model_push_code_snapshot_params.go index 7065e5b8d..488bec070 100644 --- a/pkg/tensorleapapi/model_push_code_snapshot_params.go +++ b/pkg/tensorleapapi/model_push_code_snapshot_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_push_code_snapshot_response.go b/pkg/tensorleapapi/model_push_code_snapshot_response.go index 200a8741f..2a823b724 100644 --- a/pkg/tensorleapapi/model_push_code_snapshot_response.go +++ b/pkg/tensorleapapi/model_push_code_snapshot_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_query_field_values.go b/pkg/tensorleapapi/model_query_field_values.go index 86a38cc9a..bae5a3b0f 100644 --- a/pkg/tensorleapapi/model_query_field_values.go +++ b/pkg/tensorleapapi/model_query_field_values.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_recent_sessions_response.go b/pkg/tensorleapapi/model_recent_sessions_response.go deleted file mode 100644 index 2bd14e5d5..000000000 --- a/pkg/tensorleapapi/model_recent_sessions_response.go +++ /dev/null @@ -1,166 +0,0 @@ -/* -node-server - -No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - -API version: 11.0.7 -*/ - -// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. - -package tensorleapapi - -import ( - "encoding/json" - "fmt" -) - -// checks if the RecentSessionsResponse type satisfies the MappedNullable interface at compile time -var _ MappedNullable = &RecentSessionsResponse{} - -// RecentSessionsResponse struct for RecentSessionsResponse -type RecentSessionsResponse struct { - Sessions []SessionPopulatedJob `json:"sessions"` - AdditionalProperties map[string]interface{} -} - -type _RecentSessionsResponse RecentSessionsResponse - -// NewRecentSessionsResponse instantiates a new RecentSessionsResponse object -// This constructor will assign default values to properties that have it defined, -// and makes sure properties required by API are set, but the set of arguments -// will change when the set of required properties is changed -func NewRecentSessionsResponse(sessions []SessionPopulatedJob) *RecentSessionsResponse { - this := RecentSessionsResponse{} - this.Sessions = sessions - return &this -} - -// NewRecentSessionsResponseWithDefaults instantiates a new RecentSessionsResponse object -// This constructor will only assign default values to properties that have it defined, -// but it doesn't guarantee that properties required by API are set -func NewRecentSessionsResponseWithDefaults() *RecentSessionsResponse { - this := RecentSessionsResponse{} - return &this -} - -// GetSessions returns the Sessions field value -func (o *RecentSessionsResponse) GetSessions() []SessionPopulatedJob { - if o == nil { - var ret []SessionPopulatedJob - return ret - } - - return o.Sessions -} - -// GetSessionsOk returns a tuple with the Sessions field value -// and a boolean to check if the value has been set. -func (o *RecentSessionsResponse) GetSessionsOk() ([]SessionPopulatedJob, bool) { - if o == nil { - return nil, false - } - return o.Sessions, true -} - -// SetSessions sets field value -func (o *RecentSessionsResponse) SetSessions(v []SessionPopulatedJob) { - o.Sessions = v -} - -func (o RecentSessionsResponse) MarshalJSON() ([]byte, error) { - toSerialize, err := o.ToMap() - if err != nil { - return []byte{}, err - } - return json.Marshal(toSerialize) -} - -func (o RecentSessionsResponse) ToMap() (map[string]interface{}, error) { - toSerialize := map[string]interface{}{} - toSerialize["sessions"] = o.Sessions - - for key, value := range o.AdditionalProperties { - toSerialize[key] = value - } - - return toSerialize, nil -} - -func (o *RecentSessionsResponse) UnmarshalJSON(data []byte) (err error) { - // This validates that all required properties are included in the JSON object - // by unmarshalling the object into a generic map with string keys and checking - // that every required field exists as a key in the generic map. - requiredProperties := []string{ - "sessions", - } - - allProperties := make(map[string]interface{}) - - err = json.Unmarshal(data, &allProperties) - - if err != nil { - return err - } - - for _, requiredProperty := range requiredProperties { - if _, exists := allProperties[requiredProperty]; !exists { - return fmt.Errorf("no value given for required property %v", requiredProperty) - } - } - - varRecentSessionsResponse := _RecentSessionsResponse{} - - err = json.Unmarshal(data, &varRecentSessionsResponse) - - if err != nil { - return err - } - - *o = RecentSessionsResponse(varRecentSessionsResponse) - - additionalProperties := make(map[string]interface{}) - - if err = json.Unmarshal(data, &additionalProperties); err == nil { - delete(additionalProperties, "sessions") - o.AdditionalProperties = additionalProperties - } - - return err -} - -type NullableRecentSessionsResponse struct { - value *RecentSessionsResponse - isSet bool -} - -func (v NullableRecentSessionsResponse) Get() *RecentSessionsResponse { - return v.value -} - -func (v *NullableRecentSessionsResponse) Set(val *RecentSessionsResponse) { - v.value = val - v.isSet = true -} - -func (v NullableRecentSessionsResponse) IsSet() bool { - return v.isSet -} - -func (v *NullableRecentSessionsResponse) Unset() { - v.value = nil - v.isSet = false -} - -func NewNullableRecentSessionsResponse(val *RecentSessionsResponse) *NullableRecentSessionsResponse { - return &NullableRecentSessionsResponse{value: val, isSet: true} -} - -func (v NullableRecentSessionsResponse) MarshalJSON() ([]byte, error) { - return json.Marshal(v.value) -} - -func (v *NullableRecentSessionsResponse) UnmarshalJSON(src []byte) error { - v.isSet = true - return json.Unmarshal(src, &v.value) -} diff --git a/pkg/tensorleapapi/model_recent_team_sessions_request_params.go b/pkg/tensorleapapi/model_recent_team_sessions_request_params.go deleted file mode 100644 index f95246673..000000000 --- a/pkg/tensorleapapi/model_recent_team_sessions_request_params.go +++ /dev/null @@ -1,195 +0,0 @@ -/* -node-server - -No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - -API version: 11.0.7 -*/ - -// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. - -package tensorleapapi - -import ( - "encoding/json" - "fmt" -) - -// checks if the RecentTeamSessionsRequestParams type satisfies the MappedNullable interface at compile time -var _ MappedNullable = &RecentTeamSessionsRequestParams{} - -// RecentTeamSessionsRequestParams struct for RecentTeamSessionsRequestParams -type RecentTeamSessionsRequestParams struct { - TopSessions float64 `json:"topSessions"` - ProjectId string `json:"projectId"` - AdditionalProperties map[string]interface{} -} - -type _RecentTeamSessionsRequestParams RecentTeamSessionsRequestParams - -// NewRecentTeamSessionsRequestParams instantiates a new RecentTeamSessionsRequestParams object -// This constructor will assign default values to properties that have it defined, -// and makes sure properties required by API are set, but the set of arguments -// will change when the set of required properties is changed -func NewRecentTeamSessionsRequestParams(topSessions float64, projectId string) *RecentTeamSessionsRequestParams { - this := RecentTeamSessionsRequestParams{} - this.TopSessions = topSessions - this.ProjectId = projectId - return &this -} - -// NewRecentTeamSessionsRequestParamsWithDefaults instantiates a new RecentTeamSessionsRequestParams object -// This constructor will only assign default values to properties that have it defined, -// but it doesn't guarantee that properties required by API are set -func NewRecentTeamSessionsRequestParamsWithDefaults() *RecentTeamSessionsRequestParams { - this := RecentTeamSessionsRequestParams{} - return &this -} - -// GetTopSessions returns the TopSessions field value -func (o *RecentTeamSessionsRequestParams) GetTopSessions() float64 { - if o == nil { - var ret float64 - return ret - } - - return o.TopSessions -} - -// GetTopSessionsOk returns a tuple with the TopSessions field value -// and a boolean to check if the value has been set. -func (o *RecentTeamSessionsRequestParams) GetTopSessionsOk() (*float64, bool) { - if o == nil { - return nil, false - } - return &o.TopSessions, true -} - -// SetTopSessions sets field value -func (o *RecentTeamSessionsRequestParams) SetTopSessions(v float64) { - o.TopSessions = v -} - -// GetProjectId returns the ProjectId field value -func (o *RecentTeamSessionsRequestParams) GetProjectId() string { - if o == nil { - var ret string - return ret - } - - return o.ProjectId -} - -// GetProjectIdOk returns a tuple with the ProjectId field value -// and a boolean to check if the value has been set. -func (o *RecentTeamSessionsRequestParams) GetProjectIdOk() (*string, bool) { - if o == nil { - return nil, false - } - return &o.ProjectId, true -} - -// SetProjectId sets field value -func (o *RecentTeamSessionsRequestParams) SetProjectId(v string) { - o.ProjectId = v -} - -func (o RecentTeamSessionsRequestParams) MarshalJSON() ([]byte, error) { - toSerialize, err := o.ToMap() - if err != nil { - return []byte{}, err - } - return json.Marshal(toSerialize) -} - -func (o RecentTeamSessionsRequestParams) ToMap() (map[string]interface{}, error) { - toSerialize := map[string]interface{}{} - toSerialize["topSessions"] = o.TopSessions - toSerialize["projectId"] = o.ProjectId - - for key, value := range o.AdditionalProperties { - toSerialize[key] = value - } - - return toSerialize, nil -} - -func (o *RecentTeamSessionsRequestParams) UnmarshalJSON(data []byte) (err error) { - // This validates that all required properties are included in the JSON object - // by unmarshalling the object into a generic map with string keys and checking - // that every required field exists as a key in the generic map. - requiredProperties := []string{ - "topSessions", - "projectId", - } - - allProperties := make(map[string]interface{}) - - err = json.Unmarshal(data, &allProperties) - - if err != nil { - return err - } - - for _, requiredProperty := range requiredProperties { - if _, exists := allProperties[requiredProperty]; !exists { - return fmt.Errorf("no value given for required property %v", requiredProperty) - } - } - - varRecentTeamSessionsRequestParams := _RecentTeamSessionsRequestParams{} - - err = json.Unmarshal(data, &varRecentTeamSessionsRequestParams) - - if err != nil { - return err - } - - *o = RecentTeamSessionsRequestParams(varRecentTeamSessionsRequestParams) - - additionalProperties := make(map[string]interface{}) - - if err = json.Unmarshal(data, &additionalProperties); err == nil { - delete(additionalProperties, "topSessions") - delete(additionalProperties, "projectId") - o.AdditionalProperties = additionalProperties - } - - return err -} - -type NullableRecentTeamSessionsRequestParams struct { - value *RecentTeamSessionsRequestParams - isSet bool -} - -func (v NullableRecentTeamSessionsRequestParams) Get() *RecentTeamSessionsRequestParams { - return v.value -} - -func (v *NullableRecentTeamSessionsRequestParams) Set(val *RecentTeamSessionsRequestParams) { - v.value = val - v.isSet = true -} - -func (v NullableRecentTeamSessionsRequestParams) IsSet() bool { - return v.isSet -} - -func (v *NullableRecentTeamSessionsRequestParams) Unset() { - v.value = nil - v.isSet = false -} - -func NewNullableRecentTeamSessionsRequestParams(val *RecentTeamSessionsRequestParams) *NullableRecentTeamSessionsRequestParams { - return &NullableRecentTeamSessionsRequestParams{value: val, isSet: true} -} - -func (v NullableRecentTeamSessionsRequestParams) MarshalJSON() ([]byte, error) { - return json.Marshal(v.value) -} - -func (v *NullableRecentTeamSessionsRequestParams) UnmarshalJSON(src []byte) error { - v.isSet = true - return json.Unmarshal(src, &v.value) -} diff --git a/pkg/tensorleapapi/model_reduction_algorithm.go b/pkg/tensorleapapi/model_reduction_algorithm.go index 7d6dfb981..2e5471a90 100644 --- a/pkg/tensorleapapi/model_reduction_algorithm.go +++ b/pkg/tensorleapapi/model_reduction_algorithm.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_remove_sample_collection_params.go b/pkg/tensorleapapi/model_remove_sample_collection_params.go index b2e244322..5e81b23e2 100644 --- a/pkg/tensorleapapi/model_remove_sample_collection_params.go +++ b/pkg/tensorleapapi/model_remove_sample_collection_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_roc_confusion_matrix_params.go b/pkg/tensorleapapi/model_roc_confusion_matrix_params.go index 3ca74a0cc..5d46dce2b 100644 --- a/pkg/tensorleapapi/model_roc_confusion_matrix_params.go +++ b/pkg/tensorleapapi/model_roc_confusion_matrix_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -20,14 +20,14 @@ var _ MappedNullable = &RocConfusionMatrixParams{} // RocConfusionMatrixParams struct for RocConfusionMatrixParams type RocConfusionMatrixParams struct { - SessionRunsToEpochs []SessionRunToEpoch `json:"sessionRunsToEpochs"` - ProjectId string `json:"projectId"` - CustomMetricName string `json:"customMetricName"` - VerticalSplit *SplitAgg `json:"verticalSplit,omitempty"` - HorizontalSplit *SplitAgg `json:"horizontalSplit,omitempty"` - Filters []ESFilter `json:"filters,omitempty"` - ElementInstance *bool `json:"elementInstance,omitempty"` - AbsAxis *bool `json:"absAxis,omitempty"` + InferenceArtifactIds []string `json:"inferenceArtifactIds"` + ProjectId string `json:"projectId"` + CustomMetricName string `json:"customMetricName"` + VerticalSplit *SplitAgg `json:"verticalSplit,omitempty"` + HorizontalSplit *SplitAgg `json:"horizontalSplit,omitempty"` + Filters []ESFilter `json:"filters,omitempty"` + ElementInstance *bool `json:"elementInstance,omitempty"` + AbsAxis *bool `json:"absAxis,omitempty"` AdditionalProperties map[string]interface{} } @@ -37,9 +37,9 @@ type _RocConfusionMatrixParams RocConfusionMatrixParams // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewRocConfusionMatrixParams(sessionRunsToEpochs []SessionRunToEpoch, projectId string, customMetricName string) *RocConfusionMatrixParams { +func NewRocConfusionMatrixParams(inferenceArtifactIds []string, projectId string, customMetricName string) *RocConfusionMatrixParams { this := RocConfusionMatrixParams{} - this.SessionRunsToEpochs = sessionRunsToEpochs + this.InferenceArtifactIds = inferenceArtifactIds this.ProjectId = projectId this.CustomMetricName = customMetricName return &this @@ -53,28 +53,28 @@ func NewRocConfusionMatrixParamsWithDefaults() *RocConfusionMatrixParams { return &this } -// GetSessionRunsToEpochs returns the SessionRunsToEpochs field value -func (o *RocConfusionMatrixParams) GetSessionRunsToEpochs() []SessionRunToEpoch { +// GetInferenceArtifactIds returns the InferenceArtifactIds field value +func (o *RocConfusionMatrixParams) GetInferenceArtifactIds() []string { if o == nil { - var ret []SessionRunToEpoch + var ret []string return ret } - return o.SessionRunsToEpochs + return o.InferenceArtifactIds } -// GetSessionRunsToEpochsOk returns a tuple with the SessionRunsToEpochs field value +// GetInferenceArtifactIdsOk returns a tuple with the InferenceArtifactIds field value // and a boolean to check if the value has been set. -func (o *RocConfusionMatrixParams) GetSessionRunsToEpochsOk() ([]SessionRunToEpoch, bool) { +func (o *RocConfusionMatrixParams) GetInferenceArtifactIdsOk() ([]string, bool) { if o == nil { return nil, false } - return o.SessionRunsToEpochs, true + return o.InferenceArtifactIds, true } -// SetSessionRunsToEpochs sets field value -func (o *RocConfusionMatrixParams) SetSessionRunsToEpochs(v []SessionRunToEpoch) { - o.SessionRunsToEpochs = v +// SetInferenceArtifactIds sets field value +func (o *RocConfusionMatrixParams) SetInferenceArtifactIds(v []string) { + o.InferenceArtifactIds = v } // GetProjectId returns the ProjectId field value @@ -295,7 +295,7 @@ func (o RocConfusionMatrixParams) MarshalJSON() ([]byte, error) { func (o RocConfusionMatrixParams) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} - toSerialize["sessionRunsToEpochs"] = o.SessionRunsToEpochs + toSerialize["inferenceArtifactIds"] = o.InferenceArtifactIds toSerialize["projectId"] = o.ProjectId toSerialize["customMetricName"] = o.CustomMetricName if !IsNil(o.VerticalSplit) { @@ -326,7 +326,7 @@ func (o *RocConfusionMatrixParams) UnmarshalJSON(data []byte) (err error) { // by unmarshalling the object into a generic map with string keys and checking // that every required field exists as a key in the generic map. requiredProperties := []string{ - "sessionRunsToEpochs", + "inferenceArtifactIds", "projectId", "customMetricName", } @@ -358,7 +358,7 @@ func (o *RocConfusionMatrixParams) UnmarshalJSON(data []byte) (err error) { additionalProperties := make(map[string]interface{}) if err = json.Unmarshal(data, &additionalProperties); err == nil { - delete(additionalProperties, "sessionRunsToEpochs") + delete(additionalProperties, "inferenceArtifactIds") delete(additionalProperties, "projectId") delete(additionalProperties, "customMetricName") delete(additionalProperties, "verticalSplit") diff --git a/pkg/tensorleapapi/model_rotate_api_key_response.go b/pkg/tensorleapapi/model_rotate_api_key_response.go index 3fee05bd8..1d19fd9f4 100644 --- a/pkg/tensorleapapi/model_rotate_api_key_response.go +++ b/pkg/tensorleapapi/model_rotate_api_key_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_run_import_model_response.go b/pkg/tensorleapapi/model_run_import_model_response.go index 19b790407..61b51ddc8 100644 --- a/pkg/tensorleapapi/model_run_import_model_response.go +++ b/pkg/tensorleapapi/model_run_import_model_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_run_process.go b/pkg/tensorleapapi/model_run_process.go index ff1f6d2d9..02fa5c71e 100644 --- a/pkg/tensorleapapi/model_run_process.go +++ b/pkg/tensorleapapi/model_run_process.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -31,15 +31,13 @@ type RunProcess struct { Status JobStatus `json:"status"` CreatedAt string `json:"createdAt"` UpdatedAt string `json:"updatedAt"` - SessionName *string `json:"sessionName,omitempty"` - SessionRunName *string `json:"sessionRunName,omitempty"` - SessionRunId *string `json:"sessionRunId,omitempty"` Events []JobEvent `json:"events"` Params *JobParams `json:"params,omitempty"` MachineType *string `json:"machineType,omitempty"` BatchSize *float64 `json:"batchSize,omitempty"` CodeSnapshotInfo *CodeSnapshotInfo `json:"codeSnapshotInfo,omitempty"` LogsBlobName *string `json:"logsBlobName,omitempty"` + Notifications []Notification `json:"notifications,omitempty"` AdditionalProperties map[string]interface{} } @@ -373,102 +371,6 @@ func (o *RunProcess) SetUpdatedAt(v string) { o.UpdatedAt = v } -// GetSessionName returns the SessionName field value if set, zero value otherwise. -func (o *RunProcess) GetSessionName() string { - if o == nil || IsNil(o.SessionName) { - var ret string - return ret - } - return *o.SessionName -} - -// GetSessionNameOk returns a tuple with the SessionName field value if set, nil otherwise -// and a boolean to check if the value has been set. -func (o *RunProcess) GetSessionNameOk() (*string, bool) { - if o == nil || IsNil(o.SessionName) { - return nil, false - } - return o.SessionName, true -} - -// HasSessionName returns a boolean if a field has been set. -func (o *RunProcess) HasSessionName() bool { - if o != nil && !IsNil(o.SessionName) { - return true - } - - return false -} - -// SetSessionName gets a reference to the given string and assigns it to the SessionName field. -func (o *RunProcess) SetSessionName(v string) { - o.SessionName = &v -} - -// GetSessionRunName returns the SessionRunName field value if set, zero value otherwise. -func (o *RunProcess) GetSessionRunName() string { - if o == nil || IsNil(o.SessionRunName) { - var ret string - return ret - } - return *o.SessionRunName -} - -// GetSessionRunNameOk returns a tuple with the SessionRunName field value if set, nil otherwise -// and a boolean to check if the value has been set. -func (o *RunProcess) GetSessionRunNameOk() (*string, bool) { - if o == nil || IsNil(o.SessionRunName) { - return nil, false - } - return o.SessionRunName, true -} - -// HasSessionRunName returns a boolean if a field has been set. -func (o *RunProcess) HasSessionRunName() bool { - if o != nil && !IsNil(o.SessionRunName) { - return true - } - - return false -} - -// SetSessionRunName gets a reference to the given string and assigns it to the SessionRunName field. -func (o *RunProcess) SetSessionRunName(v string) { - o.SessionRunName = &v -} - -// GetSessionRunId returns the SessionRunId field value if set, zero value otherwise. -func (o *RunProcess) GetSessionRunId() string { - if o == nil || IsNil(o.SessionRunId) { - var ret string - return ret - } - return *o.SessionRunId -} - -// GetSessionRunIdOk returns a tuple with the SessionRunId field value if set, nil otherwise -// and a boolean to check if the value has been set. -func (o *RunProcess) GetSessionRunIdOk() (*string, bool) { - if o == nil || IsNil(o.SessionRunId) { - return nil, false - } - return o.SessionRunId, true -} - -// HasSessionRunId returns a boolean if a field has been set. -func (o *RunProcess) HasSessionRunId() bool { - if o != nil && !IsNil(o.SessionRunId) { - return true - } - - return false -} - -// SetSessionRunId gets a reference to the given string and assigns it to the SessionRunId field. -func (o *RunProcess) SetSessionRunId(v string) { - o.SessionRunId = &v -} - // GetEvents returns the Events field value func (o *RunProcess) GetEvents() []JobEvent { if o == nil { @@ -653,6 +555,38 @@ func (o *RunProcess) SetLogsBlobName(v string) { o.LogsBlobName = &v } +// GetNotifications returns the Notifications field value if set, zero value otherwise. +func (o *RunProcess) GetNotifications() []Notification { + if o == nil || IsNil(o.Notifications) { + var ret []Notification + return ret + } + return o.Notifications +} + +// GetNotificationsOk returns a tuple with the Notifications field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *RunProcess) GetNotificationsOk() ([]Notification, bool) { + if o == nil || IsNil(o.Notifications) { + return nil, false + } + return o.Notifications, true +} + +// HasNotifications returns a boolean if a field has been set. +func (o *RunProcess) HasNotifications() bool { + if o != nil && !IsNil(o.Notifications) { + return true + } + + return false +} + +// SetNotifications gets a reference to the given []Notification and assigns it to the Notifications field. +func (o *RunProcess) SetNotifications(v []Notification) { + o.Notifications = v +} + func (o RunProcess) MarshalJSON() ([]byte, error) { toSerialize, err := o.ToMap() if err != nil { @@ -684,15 +618,6 @@ func (o RunProcess) ToMap() (map[string]interface{}, error) { toSerialize["status"] = o.Status toSerialize["createdAt"] = o.CreatedAt toSerialize["updatedAt"] = o.UpdatedAt - if !IsNil(o.SessionName) { - toSerialize["sessionName"] = o.SessionName - } - if !IsNil(o.SessionRunName) { - toSerialize["sessionRunName"] = o.SessionRunName - } - if !IsNil(o.SessionRunId) { - toSerialize["sessionRunId"] = o.SessionRunId - } toSerialize["events"] = o.Events if !IsNil(o.Params) { toSerialize["params"] = o.Params @@ -709,6 +634,9 @@ func (o RunProcess) ToMap() (map[string]interface{}, error) { if !IsNil(o.LogsBlobName) { toSerialize["logsBlobName"] = o.LogsBlobName } + if !IsNil(o.Notifications) { + toSerialize["notifications"] = o.Notifications + } for key, value := range o.AdditionalProperties { toSerialize[key] = value @@ -769,15 +697,13 @@ func (o *RunProcess) UnmarshalJSON(data []byte) (err error) { delete(additionalProperties, "status") delete(additionalProperties, "createdAt") delete(additionalProperties, "updatedAt") - delete(additionalProperties, "sessionName") - delete(additionalProperties, "sessionRunName") - delete(additionalProperties, "sessionRunId") delete(additionalProperties, "events") delete(additionalProperties, "params") delete(additionalProperties, "machineType") delete(additionalProperties, "batchSize") delete(additionalProperties, "codeSnapshotInfo") delete(additionalProperties, "logsBlobName") + delete(additionalProperties, "notifications") o.AdditionalProperties = additionalProperties } diff --git a/pkg/tensorleapapi/model_sample_analysis_algo.go b/pkg/tensorleapapi/model_sample_analysis_algo.go index 4a09f356c..8aaec6aaf 100644 --- a/pkg/tensorleapapi/model_sample_analysis_algo.go +++ b/pkg/tensorleapapi/model_sample_analysis_algo.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_sample_analysis_dashlet.go b/pkg/tensorleapapi/model_sample_analysis_dashlet.go index 1f28aec4d..a8d33feef 100644 --- a/pkg/tensorleapapi/model_sample_analysis_dashlet.go +++ b/pkg/tensorleapapi/model_sample_analysis_dashlet.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_sample_analysis_params.go b/pkg/tensorleapapi/model_sample_analysis_params.go index f25e02222..14b5490e7 100644 --- a/pkg/tensorleapapi/model_sample_analysis_params.go +++ b/pkg/tensorleapapi/model_sample_analysis_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -20,10 +20,9 @@ var _ MappedNullable = &SampleAnalysisParams{} // SampleAnalysisParams struct for SampleAnalysisParams type SampleAnalysisParams struct { - SessionRunId string `json:"sessionRunId"` + VersionId string `json:"versionId"` ProjectId string `json:"projectId"` SampleIdentity SampleIdentity `json:"sampleIdentity"` - FromEpoch float64 `json:"fromEpoch"` Algo SampleAnalysisAlgo `json:"algo"` AdditionalProperties map[string]interface{} } @@ -34,12 +33,11 @@ type _SampleAnalysisParams SampleAnalysisParams // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewSampleAnalysisParams(sessionRunId string, projectId string, sampleIdentity SampleIdentity, fromEpoch float64, algo SampleAnalysisAlgo) *SampleAnalysisParams { +func NewSampleAnalysisParams(versionId string, projectId string, sampleIdentity SampleIdentity, algo SampleAnalysisAlgo) *SampleAnalysisParams { this := SampleAnalysisParams{} - this.SessionRunId = sessionRunId + this.VersionId = versionId this.ProjectId = projectId this.SampleIdentity = sampleIdentity - this.FromEpoch = fromEpoch this.Algo = algo return &this } @@ -52,28 +50,28 @@ func NewSampleAnalysisParamsWithDefaults() *SampleAnalysisParams { return &this } -// GetSessionRunId returns the SessionRunId field value -func (o *SampleAnalysisParams) GetSessionRunId() string { +// GetVersionId returns the VersionId field value +func (o *SampleAnalysisParams) GetVersionId() string { if o == nil { var ret string return ret } - return o.SessionRunId + return o.VersionId } -// GetSessionRunIdOk returns a tuple with the SessionRunId field value +// GetVersionIdOk returns a tuple with the VersionId field value // and a boolean to check if the value has been set. -func (o *SampleAnalysisParams) GetSessionRunIdOk() (*string, bool) { +func (o *SampleAnalysisParams) GetVersionIdOk() (*string, bool) { if o == nil { return nil, false } - return &o.SessionRunId, true + return &o.VersionId, true } -// SetSessionRunId sets field value -func (o *SampleAnalysisParams) SetSessionRunId(v string) { - o.SessionRunId = v +// SetVersionId sets field value +func (o *SampleAnalysisParams) SetVersionId(v string) { + o.VersionId = v } // GetProjectId returns the ProjectId field value @@ -124,30 +122,6 @@ func (o *SampleAnalysisParams) SetSampleIdentity(v SampleIdentity) { o.SampleIdentity = v } -// GetFromEpoch returns the FromEpoch field value -func (o *SampleAnalysisParams) GetFromEpoch() float64 { - if o == nil { - var ret float64 - return ret - } - - return o.FromEpoch -} - -// GetFromEpochOk returns a tuple with the FromEpoch field value -// and a boolean to check if the value has been set. -func (o *SampleAnalysisParams) GetFromEpochOk() (*float64, bool) { - if o == nil { - return nil, false - } - return &o.FromEpoch, true -} - -// SetFromEpoch sets field value -func (o *SampleAnalysisParams) SetFromEpoch(v float64) { - o.FromEpoch = v -} - // GetAlgo returns the Algo field value func (o *SampleAnalysisParams) GetAlgo() SampleAnalysisAlgo { if o == nil { @@ -182,10 +156,9 @@ func (o SampleAnalysisParams) MarshalJSON() ([]byte, error) { func (o SampleAnalysisParams) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} - toSerialize["sessionRunId"] = o.SessionRunId + toSerialize["versionId"] = o.VersionId toSerialize["projectId"] = o.ProjectId toSerialize["sampleIdentity"] = o.SampleIdentity - toSerialize["fromEpoch"] = o.FromEpoch toSerialize["algo"] = o.Algo for key, value := range o.AdditionalProperties { @@ -200,10 +173,9 @@ func (o *SampleAnalysisParams) UnmarshalJSON(data []byte) (err error) { // by unmarshalling the object into a generic map with string keys and checking // that every required field exists as a key in the generic map. requiredProperties := []string{ - "sessionRunId", + "versionId", "projectId", "sampleIdentity", - "fromEpoch", "algo", } @@ -234,10 +206,9 @@ func (o *SampleAnalysisParams) UnmarshalJSON(data []byte) (err error) { additionalProperties := make(map[string]interface{}) if err = json.Unmarshal(data, &additionalProperties); err == nil { - delete(additionalProperties, "sessionRunId") + delete(additionalProperties, "versionId") delete(additionalProperties, "projectId") delete(additionalProperties, "sampleIdentity") - delete(additionalProperties, "fromEpoch") delete(additionalProperties, "algo") o.AdditionalProperties = additionalProperties } diff --git a/pkg/tensorleapapi/model_sample_analysis_viz.go b/pkg/tensorleapapi/model_sample_analysis_viz.go index 68d39e7df..4e4c2368d 100644 --- a/pkg/tensorleapapi/model_sample_analysis_viz.go +++ b/pkg/tensorleapapi/model_sample_analysis_viz.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_sample_asset_id.go b/pkg/tensorleapapi/model_sample_asset_id.go index 4da7c900a..55fb08dc5 100644 --- a/pkg/tensorleapapi/model_sample_asset_id.go +++ b/pkg/tensorleapapi/model_sample_asset_id.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_sample_asset_names.go b/pkg/tensorleapapi/model_sample_asset_names.go index bcd0db707..46c858c12 100644 --- a/pkg/tensorleapapi/model_sample_asset_names.go +++ b/pkg/tensorleapapi/model_sample_asset_names.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_sample_collection.go b/pkg/tensorleapapi/model_sample_collection.go index 3c359c978..a32ce8f9f 100644 --- a/pkg/tensorleapapi/model_sample_collection.go +++ b/pkg/tensorleapapi/model_sample_collection.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_sample_id_type.go b/pkg/tensorleapapi/model_sample_id_type.go index 67e63fc33..987db3108 100644 --- a/pkg/tensorleapapi/model_sample_id_type.go +++ b/pkg/tensorleapapi/model_sample_id_type.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_sample_identity.go b/pkg/tensorleapapi/model_sample_identity.go index 7911c069c..1e7b32aeb 100644 --- a/pkg/tensorleapapi/model_sample_identity.go +++ b/pkg/tensorleapapi/model_sample_identity.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_sample_selection_info.go b/pkg/tensorleapapi/model_sample_selection_info.go index 8cc60b1bd..b6634ea42 100644 --- a/pkg/tensorleapapi/model_sample_selection_info.go +++ b/pkg/tensorleapapi/model_sample_selection_info.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_sample_visualization_info.go b/pkg/tensorleapapi/model_sample_visualization_info.go index 912634363..91a16e21d 100644 --- a/pkg/tensorleapapi/model_sample_visualization_info.go +++ b/pkg/tensorleapapi/model_sample_visualization_info.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_samples_visualizations_refresh_params.go b/pkg/tensorleapapi/model_samples_visualizations_refresh_params.go index c4f052324..31d37cccd 100644 --- a/pkg/tensorleapapi/model_samples_visualizations_refresh_params.go +++ b/pkg/tensorleapapi/model_samples_visualizations_refresh_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -21,7 +21,7 @@ var _ MappedNullable = &SamplesVisualizationsRefreshParams{} // SamplesVisualizationsRefreshParams struct for SamplesVisualizationsRefreshParams type SamplesVisualizationsRefreshParams struct { ProjectId string `json:"projectId"` - SessionRunId string `json:"sessionRunId"` + VersionId string `json:"versionId"` AdditionalProperties map[string]interface{} } @@ -31,10 +31,10 @@ type _SamplesVisualizationsRefreshParams SamplesVisualizationsRefreshParams // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewSamplesVisualizationsRefreshParams(projectId string, sessionRunId string) *SamplesVisualizationsRefreshParams { +func NewSamplesVisualizationsRefreshParams(projectId string, versionId string) *SamplesVisualizationsRefreshParams { this := SamplesVisualizationsRefreshParams{} this.ProjectId = projectId - this.SessionRunId = sessionRunId + this.VersionId = versionId return &this } @@ -70,28 +70,28 @@ func (o *SamplesVisualizationsRefreshParams) SetProjectId(v string) { o.ProjectId = v } -// GetSessionRunId returns the SessionRunId field value -func (o *SamplesVisualizationsRefreshParams) GetSessionRunId() string { +// GetVersionId returns the VersionId field value +func (o *SamplesVisualizationsRefreshParams) GetVersionId() string { if o == nil { var ret string return ret } - return o.SessionRunId + return o.VersionId } -// GetSessionRunIdOk returns a tuple with the SessionRunId field value +// GetVersionIdOk returns a tuple with the VersionId field value // and a boolean to check if the value has been set. -func (o *SamplesVisualizationsRefreshParams) GetSessionRunIdOk() (*string, bool) { +func (o *SamplesVisualizationsRefreshParams) GetVersionIdOk() (*string, bool) { if o == nil { return nil, false } - return &o.SessionRunId, true + return &o.VersionId, true } -// SetSessionRunId sets field value -func (o *SamplesVisualizationsRefreshParams) SetSessionRunId(v string) { - o.SessionRunId = v +// SetVersionId sets field value +func (o *SamplesVisualizationsRefreshParams) SetVersionId(v string) { + o.VersionId = v } func (o SamplesVisualizationsRefreshParams) MarshalJSON() ([]byte, error) { @@ -105,7 +105,7 @@ func (o SamplesVisualizationsRefreshParams) MarshalJSON() ([]byte, error) { func (o SamplesVisualizationsRefreshParams) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} toSerialize["projectId"] = o.ProjectId - toSerialize["sessionRunId"] = o.SessionRunId + toSerialize["versionId"] = o.VersionId for key, value := range o.AdditionalProperties { toSerialize[key] = value @@ -120,7 +120,7 @@ func (o *SamplesVisualizationsRefreshParams) UnmarshalJSON(data []byte) (err err // that every required field exists as a key in the generic map. requiredProperties := []string{ "projectId", - "sessionRunId", + "versionId", } allProperties := make(map[string]interface{}) @@ -151,7 +151,7 @@ func (o *SamplesVisualizationsRefreshParams) UnmarshalJSON(data []byte) (err err if err = json.Unmarshal(data, &additionalProperties); err == nil { delete(additionalProperties, "projectId") - delete(additionalProperties, "sessionRunId") + delete(additionalProperties, "versionId") o.AdditionalProperties = additionalProperties } diff --git a/pkg/tensorleapapi/model_save_analyzer_layout_params.go b/pkg/tensorleapapi/model_save_analyzer_layout_params.go index ab1e567fa..febd8a8da 100644 --- a/pkg/tensorleapapi/model_save_analyzer_layout_params.go +++ b/pkg/tensorleapapi/model_save_analyzer_layout_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_scatter_filter.go b/pkg/tensorleapapi/model_scatter_filter.go index 65ec750ee..f58bae5b4 100644 --- a/pkg/tensorleapapi/model_scatter_filter.go +++ b/pkg/tensorleapapi/model_scatter_filter.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_scatter_filter_value.go b/pkg/tensorleapapi/model_scatter_filter_value.go index 0cac53cab..521476c5b 100644 --- a/pkg/tensorleapapi/model_scatter_filter_value.go +++ b/pkg/tensorleapapi/model_scatter_filter_value.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_scatter_insight_base.go b/pkg/tensorleapapi/model_scatter_insight_base.go index eeb1dd1d6..c82c8db55 100644 --- a/pkg/tensorleapapi/model_scatter_insight_base.go +++ b/pkg/tensorleapapi/model_scatter_insight_base.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -35,6 +35,7 @@ type ScatterInsightBase struct { AutomaticTests []InsightAutomaticTest `json:"automatic_tests,omitempty"` AutoGenerated bool `json:"auto_generated"` EsFiltersUsedInAnalysis []ESFilter `json:"es_filters_used_in_analysis,omitempty"` + LatentSpace *string `json:"latent_space,omitempty"` AdditionalProperties map[string]interface{} } @@ -467,6 +468,38 @@ func (o *ScatterInsightBase) SetEsFiltersUsedInAnalysis(v []ESFilter) { o.EsFiltersUsedInAnalysis = v } +// GetLatentSpace returns the LatentSpace field value if set, zero value otherwise. +func (o *ScatterInsightBase) GetLatentSpace() string { + if o == nil || IsNil(o.LatentSpace) { + var ret string + return ret + } + return *o.LatentSpace +} + +// GetLatentSpaceOk returns a tuple with the LatentSpace field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *ScatterInsightBase) GetLatentSpaceOk() (*string, bool) { + if o == nil || IsNil(o.LatentSpace) { + return nil, false + } + return o.LatentSpace, true +} + +// HasLatentSpace returns a boolean if a field has been set. +func (o *ScatterInsightBase) HasLatentSpace() bool { + if o != nil && !IsNil(o.LatentSpace) { + return true + } + + return false +} + +// SetLatentSpace gets a reference to the given string and assigns it to the LatentSpace field. +func (o *ScatterInsightBase) SetLatentSpace(v string) { + o.LatentSpace = &v +} + func (o ScatterInsightBase) MarshalJSON() ([]byte, error) { toSerialize, err := o.ToMap() if err != nil { @@ -502,6 +535,9 @@ func (o ScatterInsightBase) ToMap() (map[string]interface{}, error) { if !IsNil(o.EsFiltersUsedInAnalysis) { toSerialize["es_filters_used_in_analysis"] = o.EsFiltersUsedInAnalysis } + if !IsNil(o.LatentSpace) { + toSerialize["latent_space"] = o.LatentSpace + } for key, value := range o.AdditionalProperties { toSerialize[key] = value @@ -569,6 +605,7 @@ func (o *ScatterInsightBase) UnmarshalJSON(data []byte) (err error) { delete(additionalProperties, "automatic_tests") delete(additionalProperties, "auto_generated") delete(additionalProperties, "es_filters_used_in_analysis") + delete(additionalProperties, "latent_space") o.AdditionalProperties = additionalProperties } diff --git a/pkg/tensorleapapi/model_scatter_insight_type.go b/pkg/tensorleapapi/model_scatter_insight_type.go index a407dad37..fa5c393d3 100644 --- a/pkg/tensorleapapi/model_scatter_insight_type.go +++ b/pkg/tensorleapapi/model_scatter_insight_type.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_scatter_viz.go b/pkg/tensorleapapi/model_scatter_viz.go index ab837c34f..a58712f2e 100644 --- a/pkg/tensorleapapi/model_scatter_viz.go +++ b/pkg/tensorleapapi/model_scatter_viz.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_scatter_viz_data_state.go b/pkg/tensorleapapi/model_scatter_viz_data_state.go index c72229f82..415fb1092 100644 --- a/pkg/tensorleapapi/model_scatter_viz_data_state.go +++ b/pkg/tensorleapapi/model_scatter_viz_data_state.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -30,9 +30,10 @@ type ScatterVizDataState struct { // Construct a type with a set of properties K of type T ClustersBlobPath map[string]interface{} `json:"clusters_blob_path,omitempty"` // Construct a type with a set of properties K of type T - DomainGapDist map[string]interface{} `json:"domain_gap_dist,omitempty"` - HiddenMetadataKeys []string `json:"hidden_metadata_keys,omitempty"` - AdditionalProperties map[string]interface{} + DomainGapDist map[string]interface{} `json:"domain_gap_dist,omitempty"` + HiddenMetadataKeys []string `json:"hidden_metadata_keys,omitempty"` + AvailableLatentSpaces []string `json:"available_latent_spaces,omitempty"` + AdditionalProperties map[string]interface{} } type _ScatterVizDataState ScatterVizDataState @@ -289,6 +290,38 @@ func (o *ScatterVizDataState) SetHiddenMetadataKeys(v []string) { o.HiddenMetadataKeys = v } +// GetAvailableLatentSpaces returns the AvailableLatentSpaces field value if set, zero value otherwise. +func (o *ScatterVizDataState) GetAvailableLatentSpaces() []string { + if o == nil || IsNil(o.AvailableLatentSpaces) { + var ret []string + return ret + } + return o.AvailableLatentSpaces +} + +// GetAvailableLatentSpacesOk returns a tuple with the AvailableLatentSpaces field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *ScatterVizDataState) GetAvailableLatentSpacesOk() ([]string, bool) { + if o == nil || IsNil(o.AvailableLatentSpaces) { + return nil, false + } + return o.AvailableLatentSpaces, true +} + +// HasAvailableLatentSpaces returns a boolean if a field has been set. +func (o *ScatterVizDataState) HasAvailableLatentSpaces() bool { + if o != nil && !IsNil(o.AvailableLatentSpaces) { + return true + } + + return false +} + +// SetAvailableLatentSpaces gets a reference to the given []string and assigns it to the AvailableLatentSpaces field. +func (o *ScatterVizDataState) SetAvailableLatentSpaces(v []string) { + o.AvailableLatentSpaces = v +} + func (o ScatterVizDataState) MarshalJSON() ([]byte, error) { toSerialize, err := o.ToMap() if err != nil { @@ -317,6 +350,9 @@ func (o ScatterVizDataState) ToMap() (map[string]interface{}, error) { if !IsNil(o.HiddenMetadataKeys) { toSerialize["hidden_metadata_keys"] = o.HiddenMetadataKeys } + if !IsNil(o.AvailableLatentSpaces) { + toSerialize["available_latent_spaces"] = o.AvailableLatentSpaces + } for key, value := range o.AdditionalProperties { toSerialize[key] = value @@ -370,6 +406,7 @@ func (o *ScatterVizDataState) UnmarshalJSON(data []byte) (err error) { delete(additionalProperties, "clusters_blob_path") delete(additionalProperties, "domain_gap_dist") delete(additionalProperties, "hidden_metadata_keys") + delete(additionalProperties, "available_latent_spaces") o.AdditionalProperties = additionalProperties } diff --git a/pkg/tensorleapapi/model_schema_with_key.go b/pkg/tensorleapapi/model_schema_with_key.go index d02eff742..b9c63345d 100644 --- a/pkg/tensorleapapi/model_schema_with_key.go +++ b/pkg/tensorleapapi/model_schema_with_key.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_secret_manager.go b/pkg/tensorleapapi/model_secret_manager.go index 0200bd7cf..e44ce4623 100644 --- a/pkg/tensorleapapi/model_secret_manager.go +++ b/pkg/tensorleapapi/model_secret_manager.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_send_user_message_params.go b/pkg/tensorleapapi/model_send_user_message_params.go index 637987b9b..c2102d477 100644 --- a/pkg/tensorleapapi/model_send_user_message_params.go +++ b/pkg/tensorleapapi/model_send_user_message_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_send_user_message_response.go b/pkg/tensorleapapi/model_send_user_message_response.go index 7e053fe0e..984c91c23 100644 --- a/pkg/tensorleapapi/model_send_user_message_response.go +++ b/pkg/tensorleapapi/model_send_user_message_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_session.go b/pkg/tensorleapapi/model_session.go deleted file mode 100644 index f25014e10..000000000 --- a/pkg/tensorleapapi/model_session.go +++ /dev/null @@ -1,583 +0,0 @@ -/* -node-server - -No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - -API version: 11.0.7 -*/ - -// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. - -package tensorleapapi - -import ( - "encoding/json" - "fmt" - "time" -) - -// checks if the Session type satisfies the MappedNullable interface at compile time -var _ MappedNullable = &Session{} - -// Session struct for Session -type Session struct { - ProjectId string `json:"projectId"` - Cid string `json:"cid"` - ExtId *string `json:"extId,omitempty"` - ModelName string `json:"modelName"` - CreatedAt time.Time `json:"createdAt"` - CreatedBy *string `json:"createdBy,omitempty"` - TeamId string `json:"teamId"` - Hash NullableString `json:"hash,omitempty"` - TrainingParams *TrainingParams `json:"trainingParams,omitempty"` - SessionRuns []SessionRunData `json:"sessionRuns,omitempty"` - SessionWeights []SessionWeightData `json:"sessionWeights,omitempty"` - // Construct a type with a set of properties K of type T - Properties map[string]interface{} `json:"properties,omitempty"` - HasExternalEpoch bool `json:"hasExternalEpoch"` - AdditionalProperties map[string]interface{} -} - -type _Session Session - -// NewSession instantiates a new Session object -// This constructor will assign default values to properties that have it defined, -// and makes sure properties required by API are set, but the set of arguments -// will change when the set of required properties is changed -func NewSession(projectId string, cid string, modelName string, createdAt time.Time, teamId string, hasExternalEpoch bool) *Session { - this := Session{} - this.ProjectId = projectId - this.Cid = cid - this.ModelName = modelName - this.CreatedAt = createdAt - this.TeamId = teamId - this.HasExternalEpoch = hasExternalEpoch - return &this -} - -// NewSessionWithDefaults instantiates a new Session object -// This constructor will only assign default values to properties that have it defined, -// but it doesn't guarantee that properties required by API are set -func NewSessionWithDefaults() *Session { - this := Session{} - return &this -} - -// GetProjectId returns the ProjectId field value -func (o *Session) GetProjectId() string { - if o == nil { - var ret string - return ret - } - - return o.ProjectId -} - -// GetProjectIdOk returns a tuple with the ProjectId field value -// and a boolean to check if the value has been set. -func (o *Session) GetProjectIdOk() (*string, bool) { - if o == nil { - return nil, false - } - return &o.ProjectId, true -} - -// SetProjectId sets field value -func (o *Session) SetProjectId(v string) { - o.ProjectId = v -} - -// GetCid returns the Cid field value -func (o *Session) GetCid() string { - if o == nil { - var ret string - return ret - } - - return o.Cid -} - -// GetCidOk returns a tuple with the Cid field value -// and a boolean to check if the value has been set. -func (o *Session) GetCidOk() (*string, bool) { - if o == nil { - return nil, false - } - return &o.Cid, true -} - -// SetCid sets field value -func (o *Session) SetCid(v string) { - o.Cid = v -} - -// GetExtId returns the ExtId field value if set, zero value otherwise. -func (o *Session) GetExtId() string { - if o == nil || IsNil(o.ExtId) { - var ret string - return ret - } - return *o.ExtId -} - -// GetExtIdOk returns a tuple with the ExtId field value if set, nil otherwise -// and a boolean to check if the value has been set. -func (o *Session) GetExtIdOk() (*string, bool) { - if o == nil || IsNil(o.ExtId) { - return nil, false - } - return o.ExtId, true -} - -// HasExtId returns a boolean if a field has been set. -func (o *Session) HasExtId() bool { - if o != nil && !IsNil(o.ExtId) { - return true - } - - return false -} - -// SetExtId gets a reference to the given string and assigns it to the ExtId field. -func (o *Session) SetExtId(v string) { - o.ExtId = &v -} - -// GetModelName returns the ModelName field value -func (o *Session) GetModelName() string { - if o == nil { - var ret string - return ret - } - - return o.ModelName -} - -// GetModelNameOk returns a tuple with the ModelName field value -// and a boolean to check if the value has been set. -func (o *Session) GetModelNameOk() (*string, bool) { - if o == nil { - return nil, false - } - return &o.ModelName, true -} - -// SetModelName sets field value -func (o *Session) SetModelName(v string) { - o.ModelName = v -} - -// GetCreatedAt returns the CreatedAt field value -func (o *Session) GetCreatedAt() time.Time { - if o == nil { - var ret time.Time - return ret - } - - return o.CreatedAt -} - -// GetCreatedAtOk returns a tuple with the CreatedAt field value -// and a boolean to check if the value has been set. -func (o *Session) GetCreatedAtOk() (*time.Time, bool) { - if o == nil { - return nil, false - } - return &o.CreatedAt, true -} - -// SetCreatedAt sets field value -func (o *Session) SetCreatedAt(v time.Time) { - o.CreatedAt = v -} - -// GetCreatedBy returns the CreatedBy field value if set, zero value otherwise. -func (o *Session) GetCreatedBy() string { - if o == nil || IsNil(o.CreatedBy) { - var ret string - return ret - } - return *o.CreatedBy -} - -// GetCreatedByOk returns a tuple with the CreatedBy field value if set, nil otherwise -// and a boolean to check if the value has been set. -func (o *Session) GetCreatedByOk() (*string, bool) { - if o == nil || IsNil(o.CreatedBy) { - return nil, false - } - return o.CreatedBy, true -} - -// HasCreatedBy returns a boolean if a field has been set. -func (o *Session) HasCreatedBy() bool { - if o != nil && !IsNil(o.CreatedBy) { - return true - } - - return false -} - -// SetCreatedBy gets a reference to the given string and assigns it to the CreatedBy field. -func (o *Session) SetCreatedBy(v string) { - o.CreatedBy = &v -} - -// GetTeamId returns the TeamId field value -func (o *Session) GetTeamId() string { - if o == nil { - var ret string - return ret - } - - return o.TeamId -} - -// GetTeamIdOk returns a tuple with the TeamId field value -// and a boolean to check if the value has been set. -func (o *Session) GetTeamIdOk() (*string, bool) { - if o == nil { - return nil, false - } - return &o.TeamId, true -} - -// SetTeamId sets field value -func (o *Session) SetTeamId(v string) { - o.TeamId = v -} - -// GetHash returns the Hash field value if set, zero value otherwise (both if not set or set to explicit null). -func (o *Session) GetHash() string { - if o == nil || IsNil(o.Hash.Get()) { - var ret string - return ret - } - return *o.Hash.Get() -} - -// GetHashOk returns a tuple with the Hash field value if set, nil otherwise -// and a boolean to check if the value has been set. -// NOTE: If the value is an explicit nil, `nil, true` will be returned -func (o *Session) GetHashOk() (*string, bool) { - if o == nil { - return nil, false - } - return o.Hash.Get(), o.Hash.IsSet() -} - -// HasHash returns a boolean if a field has been set. -func (o *Session) HasHash() bool { - if o != nil && o.Hash.IsSet() { - return true - } - - return false -} - -// SetHash gets a reference to the given NullableString and assigns it to the Hash field. -func (o *Session) SetHash(v string) { - o.Hash.Set(&v) -} - -// SetHashNil sets the value for Hash to be an explicit nil -func (o *Session) SetHashNil() { - o.Hash.Set(nil) -} - -// UnsetHash ensures that no value is present for Hash, not even an explicit nil -func (o *Session) UnsetHash() { - o.Hash.Unset() -} - -// GetTrainingParams returns the TrainingParams field value if set, zero value otherwise. -func (o *Session) GetTrainingParams() TrainingParams { - if o == nil || IsNil(o.TrainingParams) { - var ret TrainingParams - return ret - } - return *o.TrainingParams -} - -// GetTrainingParamsOk returns a tuple with the TrainingParams field value if set, nil otherwise -// and a boolean to check if the value has been set. -func (o *Session) GetTrainingParamsOk() (*TrainingParams, bool) { - if o == nil || IsNil(o.TrainingParams) { - return nil, false - } - return o.TrainingParams, true -} - -// HasTrainingParams returns a boolean if a field has been set. -func (o *Session) HasTrainingParams() bool { - if o != nil && !IsNil(o.TrainingParams) { - return true - } - - return false -} - -// SetTrainingParams gets a reference to the given TrainingParams and assigns it to the TrainingParams field. -func (o *Session) SetTrainingParams(v TrainingParams) { - o.TrainingParams = &v -} - -// GetSessionRuns returns the SessionRuns field value if set, zero value otherwise. -func (o *Session) GetSessionRuns() []SessionRunData { - if o == nil || IsNil(o.SessionRuns) { - var ret []SessionRunData - return ret - } - return o.SessionRuns -} - -// GetSessionRunsOk returns a tuple with the SessionRuns field value if set, nil otherwise -// and a boolean to check if the value has been set. -func (o *Session) GetSessionRunsOk() ([]SessionRunData, bool) { - if o == nil || IsNil(o.SessionRuns) { - return nil, false - } - return o.SessionRuns, true -} - -// HasSessionRuns returns a boolean if a field has been set. -func (o *Session) HasSessionRuns() bool { - if o != nil && !IsNil(o.SessionRuns) { - return true - } - - return false -} - -// SetSessionRuns gets a reference to the given []SessionRunData and assigns it to the SessionRuns field. -func (o *Session) SetSessionRuns(v []SessionRunData) { - o.SessionRuns = v -} - -// GetSessionWeights returns the SessionWeights field value if set, zero value otherwise. -func (o *Session) GetSessionWeights() []SessionWeightData { - if o == nil || IsNil(o.SessionWeights) { - var ret []SessionWeightData - return ret - } - return o.SessionWeights -} - -// GetSessionWeightsOk returns a tuple with the SessionWeights field value if set, nil otherwise -// and a boolean to check if the value has been set. -func (o *Session) GetSessionWeightsOk() ([]SessionWeightData, bool) { - if o == nil || IsNil(o.SessionWeights) { - return nil, false - } - return o.SessionWeights, true -} - -// HasSessionWeights returns a boolean if a field has been set. -func (o *Session) HasSessionWeights() bool { - if o != nil && !IsNil(o.SessionWeights) { - return true - } - - return false -} - -// SetSessionWeights gets a reference to the given []SessionWeightData and assigns it to the SessionWeights field. -func (o *Session) SetSessionWeights(v []SessionWeightData) { - o.SessionWeights = v -} - -// GetProperties returns the Properties field value if set, zero value otherwise. -func (o *Session) GetProperties() map[string]interface{} { - if o == nil || IsNil(o.Properties) { - var ret map[string]interface{} - return ret - } - return o.Properties -} - -// GetPropertiesOk returns a tuple with the Properties field value if set, nil otherwise -// and a boolean to check if the value has been set. -func (o *Session) GetPropertiesOk() (map[string]interface{}, bool) { - if o == nil || IsNil(o.Properties) { - return map[string]interface{}{}, false - } - return o.Properties, true -} - -// HasProperties returns a boolean if a field has been set. -func (o *Session) HasProperties() bool { - if o != nil && !IsNil(o.Properties) { - return true - } - - return false -} - -// SetProperties gets a reference to the given map[string]interface{} and assigns it to the Properties field. -func (o *Session) SetProperties(v map[string]interface{}) { - o.Properties = v -} - -// GetHasExternalEpoch returns the HasExternalEpoch field value -func (o *Session) GetHasExternalEpoch() bool { - if o == nil { - var ret bool - return ret - } - - return o.HasExternalEpoch -} - -// GetHasExternalEpochOk returns a tuple with the HasExternalEpoch field value -// and a boolean to check if the value has been set. -func (o *Session) GetHasExternalEpochOk() (*bool, bool) { - if o == nil { - return nil, false - } - return &o.HasExternalEpoch, true -} - -// SetHasExternalEpoch sets field value -func (o *Session) SetHasExternalEpoch(v bool) { - o.HasExternalEpoch = v -} - -func (o Session) MarshalJSON() ([]byte, error) { - toSerialize, err := o.ToMap() - if err != nil { - return []byte{}, err - } - return json.Marshal(toSerialize) -} - -func (o Session) ToMap() (map[string]interface{}, error) { - toSerialize := map[string]interface{}{} - toSerialize["projectId"] = o.ProjectId - toSerialize["cid"] = o.Cid - if !IsNil(o.ExtId) { - toSerialize["extId"] = o.ExtId - } - toSerialize["modelName"] = o.ModelName - toSerialize["createdAt"] = o.CreatedAt - if !IsNil(o.CreatedBy) { - toSerialize["createdBy"] = o.CreatedBy - } - toSerialize["teamId"] = o.TeamId - if o.Hash.IsSet() { - toSerialize["hash"] = o.Hash.Get() - } - if !IsNil(o.TrainingParams) { - toSerialize["trainingParams"] = o.TrainingParams - } - if !IsNil(o.SessionRuns) { - toSerialize["sessionRuns"] = o.SessionRuns - } - if !IsNil(o.SessionWeights) { - toSerialize["sessionWeights"] = o.SessionWeights - } - if !IsNil(o.Properties) { - toSerialize["properties"] = o.Properties - } - toSerialize["hasExternalEpoch"] = o.HasExternalEpoch - - for key, value := range o.AdditionalProperties { - toSerialize[key] = value - } - - return toSerialize, nil -} - -func (o *Session) UnmarshalJSON(data []byte) (err error) { - // This validates that all required properties are included in the JSON object - // by unmarshalling the object into a generic map with string keys and checking - // that every required field exists as a key in the generic map. - requiredProperties := []string{ - "projectId", - "cid", - "modelName", - "createdAt", - "teamId", - "hasExternalEpoch", - } - - allProperties := make(map[string]interface{}) - - err = json.Unmarshal(data, &allProperties) - - if err != nil { - return err - } - - for _, requiredProperty := range requiredProperties { - if _, exists := allProperties[requiredProperty]; !exists { - return fmt.Errorf("no value given for required property %v", requiredProperty) - } - } - - varSession := _Session{} - - err = json.Unmarshal(data, &varSession) - - if err != nil { - return err - } - - *o = Session(varSession) - - additionalProperties := make(map[string]interface{}) - - if err = json.Unmarshal(data, &additionalProperties); err == nil { - delete(additionalProperties, "projectId") - delete(additionalProperties, "cid") - delete(additionalProperties, "extId") - delete(additionalProperties, "modelName") - delete(additionalProperties, "createdAt") - delete(additionalProperties, "createdBy") - delete(additionalProperties, "teamId") - delete(additionalProperties, "hash") - delete(additionalProperties, "trainingParams") - delete(additionalProperties, "sessionRuns") - delete(additionalProperties, "sessionWeights") - delete(additionalProperties, "properties") - delete(additionalProperties, "hasExternalEpoch") - o.AdditionalProperties = additionalProperties - } - - return err -} - -type NullableSession struct { - value *Session - isSet bool -} - -func (v NullableSession) Get() *Session { - return v.value -} - -func (v *NullableSession) Set(val *Session) { - v.value = val - v.isSet = true -} - -func (v NullableSession) IsSet() bool { - return v.isSet -} - -func (v *NullableSession) Unset() { - v.value = nil - v.isSet = false -} - -func NewNullableSession(val *Session) *NullableSession { - return &NullableSession{value: val, isSet: true} -} - -func (v NullableSession) MarshalJSON() ([]byte, error) { - return json.Marshal(v.value) -} - -func (v *NullableSession) UnmarshalJSON(src []byte) error { - v.isSet = true - return json.Unmarshal(src, &v.value) -} diff --git a/pkg/tensorleapapi/model_session_hash_request_params.go b/pkg/tensorleapapi/model_session_hash_request_params.go deleted file mode 100644 index 391493031..000000000 --- a/pkg/tensorleapapi/model_session_hash_request_params.go +++ /dev/null @@ -1,195 +0,0 @@ -/* -node-server - -No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - -API version: 11.0.7 -*/ - -// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. - -package tensorleapapi - -import ( - "encoding/json" - "fmt" -) - -// checks if the SessionHashRequestParams type satisfies the MappedNullable interface at compile time -var _ MappedNullable = &SessionHashRequestParams{} - -// SessionHashRequestParams struct for SessionHashRequestParams -type SessionHashRequestParams struct { - Hash string `json:"hash"` - ProjectId string `json:"projectId"` - AdditionalProperties map[string]interface{} -} - -type _SessionHashRequestParams SessionHashRequestParams - -// NewSessionHashRequestParams instantiates a new SessionHashRequestParams object -// This constructor will assign default values to properties that have it defined, -// and makes sure properties required by API are set, but the set of arguments -// will change when the set of required properties is changed -func NewSessionHashRequestParams(hash string, projectId string) *SessionHashRequestParams { - this := SessionHashRequestParams{} - this.Hash = hash - this.ProjectId = projectId - return &this -} - -// NewSessionHashRequestParamsWithDefaults instantiates a new SessionHashRequestParams object -// This constructor will only assign default values to properties that have it defined, -// but it doesn't guarantee that properties required by API are set -func NewSessionHashRequestParamsWithDefaults() *SessionHashRequestParams { - this := SessionHashRequestParams{} - return &this -} - -// GetHash returns the Hash field value -func (o *SessionHashRequestParams) GetHash() string { - if o == nil { - var ret string - return ret - } - - return o.Hash -} - -// GetHashOk returns a tuple with the Hash field value -// and a boolean to check if the value has been set. -func (o *SessionHashRequestParams) GetHashOk() (*string, bool) { - if o == nil { - return nil, false - } - return &o.Hash, true -} - -// SetHash sets field value -func (o *SessionHashRequestParams) SetHash(v string) { - o.Hash = v -} - -// GetProjectId returns the ProjectId field value -func (o *SessionHashRequestParams) GetProjectId() string { - if o == nil { - var ret string - return ret - } - - return o.ProjectId -} - -// GetProjectIdOk returns a tuple with the ProjectId field value -// and a boolean to check if the value has been set. -func (o *SessionHashRequestParams) GetProjectIdOk() (*string, bool) { - if o == nil { - return nil, false - } - return &o.ProjectId, true -} - -// SetProjectId sets field value -func (o *SessionHashRequestParams) SetProjectId(v string) { - o.ProjectId = v -} - -func (o SessionHashRequestParams) MarshalJSON() ([]byte, error) { - toSerialize, err := o.ToMap() - if err != nil { - return []byte{}, err - } - return json.Marshal(toSerialize) -} - -func (o SessionHashRequestParams) ToMap() (map[string]interface{}, error) { - toSerialize := map[string]interface{}{} - toSerialize["hash"] = o.Hash - toSerialize["projectId"] = o.ProjectId - - for key, value := range o.AdditionalProperties { - toSerialize[key] = value - } - - return toSerialize, nil -} - -func (o *SessionHashRequestParams) UnmarshalJSON(data []byte) (err error) { - // This validates that all required properties are included in the JSON object - // by unmarshalling the object into a generic map with string keys and checking - // that every required field exists as a key in the generic map. - requiredProperties := []string{ - "hash", - "projectId", - } - - allProperties := make(map[string]interface{}) - - err = json.Unmarshal(data, &allProperties) - - if err != nil { - return err - } - - for _, requiredProperty := range requiredProperties { - if _, exists := allProperties[requiredProperty]; !exists { - return fmt.Errorf("no value given for required property %v", requiredProperty) - } - } - - varSessionHashRequestParams := _SessionHashRequestParams{} - - err = json.Unmarshal(data, &varSessionHashRequestParams) - - if err != nil { - return err - } - - *o = SessionHashRequestParams(varSessionHashRequestParams) - - additionalProperties := make(map[string]interface{}) - - if err = json.Unmarshal(data, &additionalProperties); err == nil { - delete(additionalProperties, "hash") - delete(additionalProperties, "projectId") - o.AdditionalProperties = additionalProperties - } - - return err -} - -type NullableSessionHashRequestParams struct { - value *SessionHashRequestParams - isSet bool -} - -func (v NullableSessionHashRequestParams) Get() *SessionHashRequestParams { - return v.value -} - -func (v *NullableSessionHashRequestParams) Set(val *SessionHashRequestParams) { - v.value = val - v.isSet = true -} - -func (v NullableSessionHashRequestParams) IsSet() bool { - return v.isSet -} - -func (v *NullableSessionHashRequestParams) Unset() { - v.value = nil - v.isSet = false -} - -func NewNullableSessionHashRequestParams(val *SessionHashRequestParams) *NullableSessionHashRequestParams { - return &NullableSessionHashRequestParams{value: val, isSet: true} -} - -func (v NullableSessionHashRequestParams) MarshalJSON() ([]byte, error) { - return json.Marshal(v.value) -} - -func (v *NullableSessionHashRequestParams) UnmarshalJSON(src []byte) error { - v.isSet = true - return json.Unmarshal(src, &v.value) -} diff --git a/pkg/tensorleapapi/model_session_populated_job.go b/pkg/tensorleapapi/model_session_populated_job.go deleted file mode 100644 index 6349dc28b..000000000 --- a/pkg/tensorleapapi/model_session_populated_job.go +++ /dev/null @@ -1,487 +0,0 @@ -/* -node-server - -No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - -API version: 11.0.7 -*/ - -// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. - -package tensorleapapi - -import ( - "encoding/json" - "fmt" - "time" -) - -// checks if the SessionPopulatedJob type satisfies the MappedNullable interface at compile time -var _ MappedNullable = &SessionPopulatedJob{} - -// SessionPopulatedJob struct for SessionPopulatedJob -type SessionPopulatedJob struct { - Cid string `json:"cid"` - ExtId *string `json:"extId,omitempty"` - ModelName string `json:"modelName"` - CreatedAt time.Time `json:"createdAt"` - CreatedBy *string `json:"createdBy,omitempty"` - TeamId string `json:"teamId"` - Hash NullableString `json:"hash,omitempty"` - TrainingParams *TrainingParams `json:"trainingParams,omitempty"` - SessionRuns []SessionRunData `json:"sessionRuns,omitempty"` - SessionWeights []SessionWeightData `json:"sessionWeights,omitempty"` - AdditionalProperties map[string]interface{} -} - -type _SessionPopulatedJob SessionPopulatedJob - -// NewSessionPopulatedJob instantiates a new SessionPopulatedJob object -// This constructor will assign default values to properties that have it defined, -// and makes sure properties required by API are set, but the set of arguments -// will change when the set of required properties is changed -func NewSessionPopulatedJob(cid string, modelName string, createdAt time.Time, teamId string) *SessionPopulatedJob { - this := SessionPopulatedJob{} - this.Cid = cid - this.ModelName = modelName - this.CreatedAt = createdAt - this.TeamId = teamId - return &this -} - -// NewSessionPopulatedJobWithDefaults instantiates a new SessionPopulatedJob object -// This constructor will only assign default values to properties that have it defined, -// but it doesn't guarantee that properties required by API are set -func NewSessionPopulatedJobWithDefaults() *SessionPopulatedJob { - this := SessionPopulatedJob{} - return &this -} - -// GetCid returns the Cid field value -func (o *SessionPopulatedJob) GetCid() string { - if o == nil { - var ret string - return ret - } - - return o.Cid -} - -// GetCidOk returns a tuple with the Cid field value -// and a boolean to check if the value has been set. -func (o *SessionPopulatedJob) GetCidOk() (*string, bool) { - if o == nil { - return nil, false - } - return &o.Cid, true -} - -// SetCid sets field value -func (o *SessionPopulatedJob) SetCid(v string) { - o.Cid = v -} - -// GetExtId returns the ExtId field value if set, zero value otherwise. -func (o *SessionPopulatedJob) GetExtId() string { - if o == nil || IsNil(o.ExtId) { - var ret string - return ret - } - return *o.ExtId -} - -// GetExtIdOk returns a tuple with the ExtId field value if set, nil otherwise -// and a boolean to check if the value has been set. -func (o *SessionPopulatedJob) GetExtIdOk() (*string, bool) { - if o == nil || IsNil(o.ExtId) { - return nil, false - } - return o.ExtId, true -} - -// HasExtId returns a boolean if a field has been set. -func (o *SessionPopulatedJob) HasExtId() bool { - if o != nil && !IsNil(o.ExtId) { - return true - } - - return false -} - -// SetExtId gets a reference to the given string and assigns it to the ExtId field. -func (o *SessionPopulatedJob) SetExtId(v string) { - o.ExtId = &v -} - -// GetModelName returns the ModelName field value -func (o *SessionPopulatedJob) GetModelName() string { - if o == nil { - var ret string - return ret - } - - return o.ModelName -} - -// GetModelNameOk returns a tuple with the ModelName field value -// and a boolean to check if the value has been set. -func (o *SessionPopulatedJob) GetModelNameOk() (*string, bool) { - if o == nil { - return nil, false - } - return &o.ModelName, true -} - -// SetModelName sets field value -func (o *SessionPopulatedJob) SetModelName(v string) { - o.ModelName = v -} - -// GetCreatedAt returns the CreatedAt field value -func (o *SessionPopulatedJob) GetCreatedAt() time.Time { - if o == nil { - var ret time.Time - return ret - } - - return o.CreatedAt -} - -// GetCreatedAtOk returns a tuple with the CreatedAt field value -// and a boolean to check if the value has been set. -func (o *SessionPopulatedJob) GetCreatedAtOk() (*time.Time, bool) { - if o == nil { - return nil, false - } - return &o.CreatedAt, true -} - -// SetCreatedAt sets field value -func (o *SessionPopulatedJob) SetCreatedAt(v time.Time) { - o.CreatedAt = v -} - -// GetCreatedBy returns the CreatedBy field value if set, zero value otherwise. -func (o *SessionPopulatedJob) GetCreatedBy() string { - if o == nil || IsNil(o.CreatedBy) { - var ret string - return ret - } - return *o.CreatedBy -} - -// GetCreatedByOk returns a tuple with the CreatedBy field value if set, nil otherwise -// and a boolean to check if the value has been set. -func (o *SessionPopulatedJob) GetCreatedByOk() (*string, bool) { - if o == nil || IsNil(o.CreatedBy) { - return nil, false - } - return o.CreatedBy, true -} - -// HasCreatedBy returns a boolean if a field has been set. -func (o *SessionPopulatedJob) HasCreatedBy() bool { - if o != nil && !IsNil(o.CreatedBy) { - return true - } - - return false -} - -// SetCreatedBy gets a reference to the given string and assigns it to the CreatedBy field. -func (o *SessionPopulatedJob) SetCreatedBy(v string) { - o.CreatedBy = &v -} - -// GetTeamId returns the TeamId field value -func (o *SessionPopulatedJob) GetTeamId() string { - if o == nil { - var ret string - return ret - } - - return o.TeamId -} - -// GetTeamIdOk returns a tuple with the TeamId field value -// and a boolean to check if the value has been set. -func (o *SessionPopulatedJob) GetTeamIdOk() (*string, bool) { - if o == nil { - return nil, false - } - return &o.TeamId, true -} - -// SetTeamId sets field value -func (o *SessionPopulatedJob) SetTeamId(v string) { - o.TeamId = v -} - -// GetHash returns the Hash field value if set, zero value otherwise (both if not set or set to explicit null). -func (o *SessionPopulatedJob) GetHash() string { - if o == nil || IsNil(o.Hash.Get()) { - var ret string - return ret - } - return *o.Hash.Get() -} - -// GetHashOk returns a tuple with the Hash field value if set, nil otherwise -// and a boolean to check if the value has been set. -// NOTE: If the value is an explicit nil, `nil, true` will be returned -func (o *SessionPopulatedJob) GetHashOk() (*string, bool) { - if o == nil { - return nil, false - } - return o.Hash.Get(), o.Hash.IsSet() -} - -// HasHash returns a boolean if a field has been set. -func (o *SessionPopulatedJob) HasHash() bool { - if o != nil && o.Hash.IsSet() { - return true - } - - return false -} - -// SetHash gets a reference to the given NullableString and assigns it to the Hash field. -func (o *SessionPopulatedJob) SetHash(v string) { - o.Hash.Set(&v) -} - -// SetHashNil sets the value for Hash to be an explicit nil -func (o *SessionPopulatedJob) SetHashNil() { - o.Hash.Set(nil) -} - -// UnsetHash ensures that no value is present for Hash, not even an explicit nil -func (o *SessionPopulatedJob) UnsetHash() { - o.Hash.Unset() -} - -// GetTrainingParams returns the TrainingParams field value if set, zero value otherwise. -func (o *SessionPopulatedJob) GetTrainingParams() TrainingParams { - if o == nil || IsNil(o.TrainingParams) { - var ret TrainingParams - return ret - } - return *o.TrainingParams -} - -// GetTrainingParamsOk returns a tuple with the TrainingParams field value if set, nil otherwise -// and a boolean to check if the value has been set. -func (o *SessionPopulatedJob) GetTrainingParamsOk() (*TrainingParams, bool) { - if o == nil || IsNil(o.TrainingParams) { - return nil, false - } - return o.TrainingParams, true -} - -// HasTrainingParams returns a boolean if a field has been set. -func (o *SessionPopulatedJob) HasTrainingParams() bool { - if o != nil && !IsNil(o.TrainingParams) { - return true - } - - return false -} - -// SetTrainingParams gets a reference to the given TrainingParams and assigns it to the TrainingParams field. -func (o *SessionPopulatedJob) SetTrainingParams(v TrainingParams) { - o.TrainingParams = &v -} - -// GetSessionRuns returns the SessionRuns field value if set, zero value otherwise. -func (o *SessionPopulatedJob) GetSessionRuns() []SessionRunData { - if o == nil || IsNil(o.SessionRuns) { - var ret []SessionRunData - return ret - } - return o.SessionRuns -} - -// GetSessionRunsOk returns a tuple with the SessionRuns field value if set, nil otherwise -// and a boolean to check if the value has been set. -func (o *SessionPopulatedJob) GetSessionRunsOk() ([]SessionRunData, bool) { - if o == nil || IsNil(o.SessionRuns) { - return nil, false - } - return o.SessionRuns, true -} - -// HasSessionRuns returns a boolean if a field has been set. -func (o *SessionPopulatedJob) HasSessionRuns() bool { - if o != nil && !IsNil(o.SessionRuns) { - return true - } - - return false -} - -// SetSessionRuns gets a reference to the given []SessionRunData and assigns it to the SessionRuns field. -func (o *SessionPopulatedJob) SetSessionRuns(v []SessionRunData) { - o.SessionRuns = v -} - -// GetSessionWeights returns the SessionWeights field value if set, zero value otherwise. -func (o *SessionPopulatedJob) GetSessionWeights() []SessionWeightData { - if o == nil || IsNil(o.SessionWeights) { - var ret []SessionWeightData - return ret - } - return o.SessionWeights -} - -// GetSessionWeightsOk returns a tuple with the SessionWeights field value if set, nil otherwise -// and a boolean to check if the value has been set. -func (o *SessionPopulatedJob) GetSessionWeightsOk() ([]SessionWeightData, bool) { - if o == nil || IsNil(o.SessionWeights) { - return nil, false - } - return o.SessionWeights, true -} - -// HasSessionWeights returns a boolean if a field has been set. -func (o *SessionPopulatedJob) HasSessionWeights() bool { - if o != nil && !IsNil(o.SessionWeights) { - return true - } - - return false -} - -// SetSessionWeights gets a reference to the given []SessionWeightData and assigns it to the SessionWeights field. -func (o *SessionPopulatedJob) SetSessionWeights(v []SessionWeightData) { - o.SessionWeights = v -} - -func (o SessionPopulatedJob) MarshalJSON() ([]byte, error) { - toSerialize, err := o.ToMap() - if err != nil { - return []byte{}, err - } - return json.Marshal(toSerialize) -} - -func (o SessionPopulatedJob) ToMap() (map[string]interface{}, error) { - toSerialize := map[string]interface{}{} - toSerialize["cid"] = o.Cid - if !IsNil(o.ExtId) { - toSerialize["extId"] = o.ExtId - } - toSerialize["modelName"] = o.ModelName - toSerialize["createdAt"] = o.CreatedAt - if !IsNil(o.CreatedBy) { - toSerialize["createdBy"] = o.CreatedBy - } - toSerialize["teamId"] = o.TeamId - if o.Hash.IsSet() { - toSerialize["hash"] = o.Hash.Get() - } - if !IsNil(o.TrainingParams) { - toSerialize["trainingParams"] = o.TrainingParams - } - if !IsNil(o.SessionRuns) { - toSerialize["sessionRuns"] = o.SessionRuns - } - if !IsNil(o.SessionWeights) { - toSerialize["sessionWeights"] = o.SessionWeights - } - - for key, value := range o.AdditionalProperties { - toSerialize[key] = value - } - - return toSerialize, nil -} - -func (o *SessionPopulatedJob) UnmarshalJSON(data []byte) (err error) { - // This validates that all required properties are included in the JSON object - // by unmarshalling the object into a generic map with string keys and checking - // that every required field exists as a key in the generic map. - requiredProperties := []string{ - "cid", - "modelName", - "createdAt", - "teamId", - } - - allProperties := make(map[string]interface{}) - - err = json.Unmarshal(data, &allProperties) - - if err != nil { - return err - } - - for _, requiredProperty := range requiredProperties { - if _, exists := allProperties[requiredProperty]; !exists { - return fmt.Errorf("no value given for required property %v", requiredProperty) - } - } - - varSessionPopulatedJob := _SessionPopulatedJob{} - - err = json.Unmarshal(data, &varSessionPopulatedJob) - - if err != nil { - return err - } - - *o = SessionPopulatedJob(varSessionPopulatedJob) - - additionalProperties := make(map[string]interface{}) - - if err = json.Unmarshal(data, &additionalProperties); err == nil { - delete(additionalProperties, "cid") - delete(additionalProperties, "extId") - delete(additionalProperties, "modelName") - delete(additionalProperties, "createdAt") - delete(additionalProperties, "createdBy") - delete(additionalProperties, "teamId") - delete(additionalProperties, "hash") - delete(additionalProperties, "trainingParams") - delete(additionalProperties, "sessionRuns") - delete(additionalProperties, "sessionWeights") - o.AdditionalProperties = additionalProperties - } - - return err -} - -type NullableSessionPopulatedJob struct { - value *SessionPopulatedJob - isSet bool -} - -func (v NullableSessionPopulatedJob) Get() *SessionPopulatedJob { - return v.value -} - -func (v *NullableSessionPopulatedJob) Set(val *SessionPopulatedJob) { - v.value = val - v.isSet = true -} - -func (v NullableSessionPopulatedJob) IsSet() bool { - return v.isSet -} - -func (v *NullableSessionPopulatedJob) Unset() { - v.value = nil - v.isSet = false -} - -func NewNullableSessionPopulatedJob(val *SessionPopulatedJob) *NullableSessionPopulatedJob { - return &NullableSessionPopulatedJob{value: val, isSet: true} -} - -func (v NullableSessionPopulatedJob) MarshalJSON() ([]byte, error) { - return json.Marshal(v.value) -} - -func (v *NullableSessionPopulatedJob) UnmarshalJSON(src []byte) error { - v.isSet = true - return json.Unmarshal(src, &v.value) -} diff --git a/pkg/tensorleapapi/model_session_run_data.go b/pkg/tensorleapapi/model_session_run_data.go deleted file mode 100644 index af769da5f..000000000 --- a/pkg/tensorleapapi/model_session_run_data.go +++ /dev/null @@ -1,568 +0,0 @@ -/* -node-server - -No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - -API version: 11.0.7 -*/ - -// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. - -package tensorleapapi - -import ( - "encoding/json" - "fmt" - "time" -) - -// checks if the SessionRunData type satisfies the MappedNullable interface at compile time -var _ MappedNullable = &SessionRunData{} - -// SessionRunData struct for SessionRunData -type SessionRunData struct { - ProjectId string `json:"projectId"` - Cid string `json:"cid"` - SessionId string `json:"sessionId"` - Name string `json:"name"` - TeamId string `json:"teamId"` - IsEvaluate bool `json:"isEvaluate"` - CreatedAt time.Time `json:"createdAt"` - CreatedBy string `json:"createdBy"` - WeightAssets []WeightAssetData `json:"weightAssets"` - Jobs []Job `json:"jobs"` - Description string `json:"description"` - EvaluateParams *SessionRunEvaluateParams `json:"evaluateParams,omitempty"` - CanContinueEvaluate *bool `json:"canContinueEvaluate,omitempty"` - CsvBlobPath *string `json:"csvBlobPath,omitempty"` - AdditionalProperties map[string]interface{} -} - -type _SessionRunData SessionRunData - -// NewSessionRunData instantiates a new SessionRunData object -// This constructor will assign default values to properties that have it defined, -// and makes sure properties required by API are set, but the set of arguments -// will change when the set of required properties is changed -func NewSessionRunData(projectId string, cid string, sessionId string, name string, teamId string, isEvaluate bool, createdAt time.Time, createdBy string, weightAssets []WeightAssetData, jobs []Job, description string) *SessionRunData { - this := SessionRunData{} - this.ProjectId = projectId - this.Cid = cid - this.SessionId = sessionId - this.Name = name - this.TeamId = teamId - this.IsEvaluate = isEvaluate - this.CreatedAt = createdAt - this.CreatedBy = createdBy - this.WeightAssets = weightAssets - this.Jobs = jobs - this.Description = description - return &this -} - -// NewSessionRunDataWithDefaults instantiates a new SessionRunData object -// This constructor will only assign default values to properties that have it defined, -// but it doesn't guarantee that properties required by API are set -func NewSessionRunDataWithDefaults() *SessionRunData { - this := SessionRunData{} - return &this -} - -// GetProjectId returns the ProjectId field value -func (o *SessionRunData) GetProjectId() string { - if o == nil { - var ret string - return ret - } - - return o.ProjectId -} - -// GetProjectIdOk returns a tuple with the ProjectId field value -// and a boolean to check if the value has been set. -func (o *SessionRunData) GetProjectIdOk() (*string, bool) { - if o == nil { - return nil, false - } - return &o.ProjectId, true -} - -// SetProjectId sets field value -func (o *SessionRunData) SetProjectId(v string) { - o.ProjectId = v -} - -// GetCid returns the Cid field value -func (o *SessionRunData) GetCid() string { - if o == nil { - var ret string - return ret - } - - return o.Cid -} - -// GetCidOk returns a tuple with the Cid field value -// and a boolean to check if the value has been set. -func (o *SessionRunData) GetCidOk() (*string, bool) { - if o == nil { - return nil, false - } - return &o.Cid, true -} - -// SetCid sets field value -func (o *SessionRunData) SetCid(v string) { - o.Cid = v -} - -// GetSessionId returns the SessionId field value -func (o *SessionRunData) GetSessionId() string { - if o == nil { - var ret string - return ret - } - - return o.SessionId -} - -// GetSessionIdOk returns a tuple with the SessionId field value -// and a boolean to check if the value has been set. -func (o *SessionRunData) GetSessionIdOk() (*string, bool) { - if o == nil { - return nil, false - } - return &o.SessionId, true -} - -// SetSessionId sets field value -func (o *SessionRunData) SetSessionId(v string) { - o.SessionId = v -} - -// GetName returns the Name field value -func (o *SessionRunData) GetName() string { - if o == nil { - var ret string - return ret - } - - return o.Name -} - -// GetNameOk returns a tuple with the Name field value -// and a boolean to check if the value has been set. -func (o *SessionRunData) GetNameOk() (*string, bool) { - if o == nil { - return nil, false - } - return &o.Name, true -} - -// SetName sets field value -func (o *SessionRunData) SetName(v string) { - o.Name = v -} - -// GetTeamId returns the TeamId field value -func (o *SessionRunData) GetTeamId() string { - if o == nil { - var ret string - return ret - } - - return o.TeamId -} - -// GetTeamIdOk returns a tuple with the TeamId field value -// and a boolean to check if the value has been set. -func (o *SessionRunData) GetTeamIdOk() (*string, bool) { - if o == nil { - return nil, false - } - return &o.TeamId, true -} - -// SetTeamId sets field value -func (o *SessionRunData) SetTeamId(v string) { - o.TeamId = v -} - -// GetIsEvaluate returns the IsEvaluate field value -func (o *SessionRunData) GetIsEvaluate() bool { - if o == nil { - var ret bool - return ret - } - - return o.IsEvaluate -} - -// GetIsEvaluateOk returns a tuple with the IsEvaluate field value -// and a boolean to check if the value has been set. -func (o *SessionRunData) GetIsEvaluateOk() (*bool, bool) { - if o == nil { - return nil, false - } - return &o.IsEvaluate, true -} - -// SetIsEvaluate sets field value -func (o *SessionRunData) SetIsEvaluate(v bool) { - o.IsEvaluate = v -} - -// GetCreatedAt returns the CreatedAt field value -func (o *SessionRunData) GetCreatedAt() time.Time { - if o == nil { - var ret time.Time - return ret - } - - return o.CreatedAt -} - -// GetCreatedAtOk returns a tuple with the CreatedAt field value -// and a boolean to check if the value has been set. -func (o *SessionRunData) GetCreatedAtOk() (*time.Time, bool) { - if o == nil { - return nil, false - } - return &o.CreatedAt, true -} - -// SetCreatedAt sets field value -func (o *SessionRunData) SetCreatedAt(v time.Time) { - o.CreatedAt = v -} - -// GetCreatedBy returns the CreatedBy field value -func (o *SessionRunData) GetCreatedBy() string { - if o == nil { - var ret string - return ret - } - - return o.CreatedBy -} - -// GetCreatedByOk returns a tuple with the CreatedBy field value -// and a boolean to check if the value has been set. -func (o *SessionRunData) GetCreatedByOk() (*string, bool) { - if o == nil { - return nil, false - } - return &o.CreatedBy, true -} - -// SetCreatedBy sets field value -func (o *SessionRunData) SetCreatedBy(v string) { - o.CreatedBy = v -} - -// GetWeightAssets returns the WeightAssets field value -func (o *SessionRunData) GetWeightAssets() []WeightAssetData { - if o == nil { - var ret []WeightAssetData - return ret - } - - return o.WeightAssets -} - -// GetWeightAssetsOk returns a tuple with the WeightAssets field value -// and a boolean to check if the value has been set. -func (o *SessionRunData) GetWeightAssetsOk() ([]WeightAssetData, bool) { - if o == nil { - return nil, false - } - return o.WeightAssets, true -} - -// SetWeightAssets sets field value -func (o *SessionRunData) SetWeightAssets(v []WeightAssetData) { - o.WeightAssets = v -} - -// GetJobs returns the Jobs field value -func (o *SessionRunData) GetJobs() []Job { - if o == nil { - var ret []Job - return ret - } - - return o.Jobs -} - -// GetJobsOk returns a tuple with the Jobs field value -// and a boolean to check if the value has been set. -func (o *SessionRunData) GetJobsOk() ([]Job, bool) { - if o == nil { - return nil, false - } - return o.Jobs, true -} - -// SetJobs sets field value -func (o *SessionRunData) SetJobs(v []Job) { - o.Jobs = v -} - -// GetDescription returns the Description field value -func (o *SessionRunData) GetDescription() string { - if o == nil { - var ret string - return ret - } - - return o.Description -} - -// GetDescriptionOk returns a tuple with the Description field value -// and a boolean to check if the value has been set. -func (o *SessionRunData) GetDescriptionOk() (*string, bool) { - if o == nil { - return nil, false - } - return &o.Description, true -} - -// SetDescription sets field value -func (o *SessionRunData) SetDescription(v string) { - o.Description = v -} - -// GetEvaluateParams returns the EvaluateParams field value if set, zero value otherwise. -func (o *SessionRunData) GetEvaluateParams() SessionRunEvaluateParams { - if o == nil || IsNil(o.EvaluateParams) { - var ret SessionRunEvaluateParams - return ret - } - return *o.EvaluateParams -} - -// GetEvaluateParamsOk returns a tuple with the EvaluateParams field value if set, nil otherwise -// and a boolean to check if the value has been set. -func (o *SessionRunData) GetEvaluateParamsOk() (*SessionRunEvaluateParams, bool) { - if o == nil || IsNil(o.EvaluateParams) { - return nil, false - } - return o.EvaluateParams, true -} - -// HasEvaluateParams returns a boolean if a field has been set. -func (o *SessionRunData) HasEvaluateParams() bool { - if o != nil && !IsNil(o.EvaluateParams) { - return true - } - - return false -} - -// SetEvaluateParams gets a reference to the given SessionRunEvaluateParams and assigns it to the EvaluateParams field. -func (o *SessionRunData) SetEvaluateParams(v SessionRunEvaluateParams) { - o.EvaluateParams = &v -} - -// GetCanContinueEvaluate returns the CanContinueEvaluate field value if set, zero value otherwise. -func (o *SessionRunData) GetCanContinueEvaluate() bool { - if o == nil || IsNil(o.CanContinueEvaluate) { - var ret bool - return ret - } - return *o.CanContinueEvaluate -} - -// GetCanContinueEvaluateOk returns a tuple with the CanContinueEvaluate field value if set, nil otherwise -// and a boolean to check if the value has been set. -func (o *SessionRunData) GetCanContinueEvaluateOk() (*bool, bool) { - if o == nil || IsNil(o.CanContinueEvaluate) { - return nil, false - } - return o.CanContinueEvaluate, true -} - -// HasCanContinueEvaluate returns a boolean if a field has been set. -func (o *SessionRunData) HasCanContinueEvaluate() bool { - if o != nil && !IsNil(o.CanContinueEvaluate) { - return true - } - - return false -} - -// SetCanContinueEvaluate gets a reference to the given bool and assigns it to the CanContinueEvaluate field. -func (o *SessionRunData) SetCanContinueEvaluate(v bool) { - o.CanContinueEvaluate = &v -} - -// GetCsvBlobPath returns the CsvBlobPath field value if set, zero value otherwise. -func (o *SessionRunData) GetCsvBlobPath() string { - if o == nil || IsNil(o.CsvBlobPath) { - var ret string - return ret - } - return *o.CsvBlobPath -} - -// GetCsvBlobPathOk returns a tuple with the CsvBlobPath field value if set, nil otherwise -// and a boolean to check if the value has been set. -func (o *SessionRunData) GetCsvBlobPathOk() (*string, bool) { - if o == nil || IsNil(o.CsvBlobPath) { - return nil, false - } - return o.CsvBlobPath, true -} - -// HasCsvBlobPath returns a boolean if a field has been set. -func (o *SessionRunData) HasCsvBlobPath() bool { - if o != nil && !IsNil(o.CsvBlobPath) { - return true - } - - return false -} - -// SetCsvBlobPath gets a reference to the given string and assigns it to the CsvBlobPath field. -func (o *SessionRunData) SetCsvBlobPath(v string) { - o.CsvBlobPath = &v -} - -func (o SessionRunData) MarshalJSON() ([]byte, error) { - toSerialize, err := o.ToMap() - if err != nil { - return []byte{}, err - } - return json.Marshal(toSerialize) -} - -func (o SessionRunData) ToMap() (map[string]interface{}, error) { - toSerialize := map[string]interface{}{} - toSerialize["projectId"] = o.ProjectId - toSerialize["cid"] = o.Cid - toSerialize["sessionId"] = o.SessionId - toSerialize["name"] = o.Name - toSerialize["teamId"] = o.TeamId - toSerialize["isEvaluate"] = o.IsEvaluate - toSerialize["createdAt"] = o.CreatedAt - toSerialize["createdBy"] = o.CreatedBy - toSerialize["weightAssets"] = o.WeightAssets - toSerialize["jobs"] = o.Jobs - toSerialize["description"] = o.Description - if !IsNil(o.EvaluateParams) { - toSerialize["evaluateParams"] = o.EvaluateParams - } - if !IsNil(o.CanContinueEvaluate) { - toSerialize["canContinueEvaluate"] = o.CanContinueEvaluate - } - if !IsNil(o.CsvBlobPath) { - toSerialize["csvBlobPath"] = o.CsvBlobPath - } - - for key, value := range o.AdditionalProperties { - toSerialize[key] = value - } - - return toSerialize, nil -} - -func (o *SessionRunData) UnmarshalJSON(data []byte) (err error) { - // This validates that all required properties are included in the JSON object - // by unmarshalling the object into a generic map with string keys and checking - // that every required field exists as a key in the generic map. - requiredProperties := []string{ - "projectId", - "cid", - "sessionId", - "name", - "teamId", - "isEvaluate", - "createdAt", - "createdBy", - "weightAssets", - "jobs", - "description", - } - - allProperties := make(map[string]interface{}) - - err = json.Unmarshal(data, &allProperties) - - if err != nil { - return err - } - - for _, requiredProperty := range requiredProperties { - if _, exists := allProperties[requiredProperty]; !exists { - return fmt.Errorf("no value given for required property %v", requiredProperty) - } - } - - varSessionRunData := _SessionRunData{} - - err = json.Unmarshal(data, &varSessionRunData) - - if err != nil { - return err - } - - *o = SessionRunData(varSessionRunData) - - additionalProperties := make(map[string]interface{}) - - if err = json.Unmarshal(data, &additionalProperties); err == nil { - delete(additionalProperties, "projectId") - delete(additionalProperties, "cid") - delete(additionalProperties, "sessionId") - delete(additionalProperties, "name") - delete(additionalProperties, "teamId") - delete(additionalProperties, "isEvaluate") - delete(additionalProperties, "createdAt") - delete(additionalProperties, "createdBy") - delete(additionalProperties, "weightAssets") - delete(additionalProperties, "jobs") - delete(additionalProperties, "description") - delete(additionalProperties, "evaluateParams") - delete(additionalProperties, "canContinueEvaluate") - delete(additionalProperties, "csvBlobPath") - o.AdditionalProperties = additionalProperties - } - - return err -} - -type NullableSessionRunData struct { - value *SessionRunData - isSet bool -} - -func (v NullableSessionRunData) Get() *SessionRunData { - return v.value -} - -func (v *NullableSessionRunData) Set(val *SessionRunData) { - v.value = val - v.isSet = true -} - -func (v NullableSessionRunData) IsSet() bool { - return v.isSet -} - -func (v *NullableSessionRunData) Unset() { - v.value = nil - v.isSet = false -} - -func NewNullableSessionRunData(val *SessionRunData) *NullableSessionRunData { - return &NullableSessionRunData{value: val, isSet: true} -} - -func (v NullableSessionRunData) MarshalJSON() ([]byte, error) { - return json.Marshal(v.value) -} - -func (v *NullableSessionRunData) UnmarshalJSON(src []byte) error { - v.isSet = true - return json.Unmarshal(src, &v.value) -} diff --git a/pkg/tensorleapapi/model_session_run_to_epoch.go b/pkg/tensorleapapi/model_session_run_to_epoch.go deleted file mode 100644 index e1fab4574..000000000 --- a/pkg/tensorleapapi/model_session_run_to_epoch.go +++ /dev/null @@ -1,195 +0,0 @@ -/* -node-server - -No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - -API version: 11.0.7 -*/ - -// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. - -package tensorleapapi - -import ( - "encoding/json" - "fmt" -) - -// checks if the SessionRunToEpoch type satisfies the MappedNullable interface at compile time -var _ MappedNullable = &SessionRunToEpoch{} - -// SessionRunToEpoch struct for SessionRunToEpoch -type SessionRunToEpoch struct { - SessionRunId string `json:"sessionRunId"` - Epoch float64 `json:"epoch"` - AdditionalProperties map[string]interface{} -} - -type _SessionRunToEpoch SessionRunToEpoch - -// NewSessionRunToEpoch instantiates a new SessionRunToEpoch object -// This constructor will assign default values to properties that have it defined, -// and makes sure properties required by API are set, but the set of arguments -// will change when the set of required properties is changed -func NewSessionRunToEpoch(sessionRunId string, epoch float64) *SessionRunToEpoch { - this := SessionRunToEpoch{} - this.SessionRunId = sessionRunId - this.Epoch = epoch - return &this -} - -// NewSessionRunToEpochWithDefaults instantiates a new SessionRunToEpoch object -// This constructor will only assign default values to properties that have it defined, -// but it doesn't guarantee that properties required by API are set -func NewSessionRunToEpochWithDefaults() *SessionRunToEpoch { - this := SessionRunToEpoch{} - return &this -} - -// GetSessionRunId returns the SessionRunId field value -func (o *SessionRunToEpoch) GetSessionRunId() string { - if o == nil { - var ret string - return ret - } - - return o.SessionRunId -} - -// GetSessionRunIdOk returns a tuple with the SessionRunId field value -// and a boolean to check if the value has been set. -func (o *SessionRunToEpoch) GetSessionRunIdOk() (*string, bool) { - if o == nil { - return nil, false - } - return &o.SessionRunId, true -} - -// SetSessionRunId sets field value -func (o *SessionRunToEpoch) SetSessionRunId(v string) { - o.SessionRunId = v -} - -// GetEpoch returns the Epoch field value -func (o *SessionRunToEpoch) GetEpoch() float64 { - if o == nil { - var ret float64 - return ret - } - - return o.Epoch -} - -// GetEpochOk returns a tuple with the Epoch field value -// and a boolean to check if the value has been set. -func (o *SessionRunToEpoch) GetEpochOk() (*float64, bool) { - if o == nil { - return nil, false - } - return &o.Epoch, true -} - -// SetEpoch sets field value -func (o *SessionRunToEpoch) SetEpoch(v float64) { - o.Epoch = v -} - -func (o SessionRunToEpoch) MarshalJSON() ([]byte, error) { - toSerialize, err := o.ToMap() - if err != nil { - return []byte{}, err - } - return json.Marshal(toSerialize) -} - -func (o SessionRunToEpoch) ToMap() (map[string]interface{}, error) { - toSerialize := map[string]interface{}{} - toSerialize["sessionRunId"] = o.SessionRunId - toSerialize["epoch"] = o.Epoch - - for key, value := range o.AdditionalProperties { - toSerialize[key] = value - } - - return toSerialize, nil -} - -func (o *SessionRunToEpoch) UnmarshalJSON(data []byte) (err error) { - // This validates that all required properties are included in the JSON object - // by unmarshalling the object into a generic map with string keys and checking - // that every required field exists as a key in the generic map. - requiredProperties := []string{ - "sessionRunId", - "epoch", - } - - allProperties := make(map[string]interface{}) - - err = json.Unmarshal(data, &allProperties) - - if err != nil { - return err - } - - for _, requiredProperty := range requiredProperties { - if _, exists := allProperties[requiredProperty]; !exists { - return fmt.Errorf("no value given for required property %v", requiredProperty) - } - } - - varSessionRunToEpoch := _SessionRunToEpoch{} - - err = json.Unmarshal(data, &varSessionRunToEpoch) - - if err != nil { - return err - } - - *o = SessionRunToEpoch(varSessionRunToEpoch) - - additionalProperties := make(map[string]interface{}) - - if err = json.Unmarshal(data, &additionalProperties); err == nil { - delete(additionalProperties, "sessionRunId") - delete(additionalProperties, "epoch") - o.AdditionalProperties = additionalProperties - } - - return err -} - -type NullableSessionRunToEpoch struct { - value *SessionRunToEpoch - isSet bool -} - -func (v NullableSessionRunToEpoch) Get() *SessionRunToEpoch { - return v.value -} - -func (v *NullableSessionRunToEpoch) Set(val *SessionRunToEpoch) { - v.value = val - v.isSet = true -} - -func (v NullableSessionRunToEpoch) IsSet() bool { - return v.isSet -} - -func (v *NullableSessionRunToEpoch) Unset() { - v.value = nil - v.isSet = false -} - -func NewNullableSessionRunToEpoch(val *SessionRunToEpoch) *NullableSessionRunToEpoch { - return &NullableSessionRunToEpoch{value: val, isSet: true} -} - -func (v NullableSessionRunToEpoch) MarshalJSON() ([]byte, error) { - return json.Marshal(v.value) -} - -func (v *NullableSessionRunToEpoch) UnmarshalJSON(src []byte) error { - v.isSet = true - return json.Unmarshal(src, &v.value) -} diff --git a/pkg/tensorleapapi/model_session_test_.go b/pkg/tensorleapapi/model_session_test_.go index ba681e34b..09c7d2322 100644 --- a/pkg/tensorleapapi/model_session_test_.go +++ b/pkg/tensorleapapi/model_session_test_.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_session_test_data.go b/pkg/tensorleapapi/model_session_test_data.go index 94b85f87e..de3fcbb95 100644 --- a/pkg/tensorleapapi/model_session_test_data.go +++ b/pkg/tensorleapapi/model_session_test_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -20,7 +20,7 @@ var _ MappedNullable = &SessionTestData{} // SessionTestData struct for SessionTestData type SessionTestData struct { - SessionRunId string `json:"sessionRunId"` + VersionId string `json:"versionId"` ProjectId string `json:"projectId"` Epoch float64 `json:"epoch"` AdditionalProperties map[string]interface{} @@ -32,9 +32,9 @@ type _SessionTestData SessionTestData // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewSessionTestData(sessionRunId string, projectId string, epoch float64) *SessionTestData { +func NewSessionTestData(versionId string, projectId string, epoch float64) *SessionTestData { this := SessionTestData{} - this.SessionRunId = sessionRunId + this.VersionId = versionId this.ProjectId = projectId this.Epoch = epoch return &this @@ -48,28 +48,28 @@ func NewSessionTestDataWithDefaults() *SessionTestData { return &this } -// GetSessionRunId returns the SessionRunId field value -func (o *SessionTestData) GetSessionRunId() string { +// GetVersionId returns the VersionId field value +func (o *SessionTestData) GetVersionId() string { if o == nil { var ret string return ret } - return o.SessionRunId + return o.VersionId } -// GetSessionRunIdOk returns a tuple with the SessionRunId field value +// GetVersionIdOk returns a tuple with the VersionId field value // and a boolean to check if the value has been set. -func (o *SessionTestData) GetSessionRunIdOk() (*string, bool) { +func (o *SessionTestData) GetVersionIdOk() (*string, bool) { if o == nil { return nil, false } - return &o.SessionRunId, true + return &o.VersionId, true } -// SetSessionRunId sets field value -func (o *SessionTestData) SetSessionRunId(v string) { - o.SessionRunId = v +// SetVersionId sets field value +func (o *SessionTestData) SetVersionId(v string) { + o.VersionId = v } // GetProjectId returns the ProjectId field value @@ -130,7 +130,7 @@ func (o SessionTestData) MarshalJSON() ([]byte, error) { func (o SessionTestData) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} - toSerialize["sessionRunId"] = o.SessionRunId + toSerialize["versionId"] = o.VersionId toSerialize["projectId"] = o.ProjectId toSerialize["epoch"] = o.Epoch @@ -146,7 +146,7 @@ func (o *SessionTestData) UnmarshalJSON(data []byte) (err error) { // by unmarshalling the object into a generic map with string keys and checking // that every required field exists as a key in the generic map. requiredProperties := []string{ - "sessionRunId", + "versionId", "projectId", "epoch", } @@ -178,7 +178,7 @@ func (o *SessionTestData) UnmarshalJSON(data []byte) (err error) { additionalProperties := make(map[string]interface{}) if err = json.Unmarshal(data, &additionalProperties); err == nil { - delete(additionalProperties, "sessionRunId") + delete(additionalProperties, "versionId") delete(additionalProperties, "projectId") delete(additionalProperties, "epoch") o.AdditionalProperties = additionalProperties diff --git a/pkg/tensorleapapi/model_session_test_result.go b/pkg/tensorleapapi/model_session_test_result.go index 5f35eb80f..8d75d83c9 100644 --- a/pkg/tensorleapapi/model_session_test_result.go +++ b/pkg/tensorleapapi/model_session_test_result.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_session_test_result_error.go b/pkg/tensorleapapi/model_session_test_result_error.go index 0256baa11..3e2dbda9c 100644 --- a/pkg/tensorleapapi/model_session_test_result_error.go +++ b/pkg/tensorleapapi/model_session_test_result_error.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -20,7 +20,7 @@ var _ MappedNullable = &SessionTestResultError{} // SessionTestResultError struct for SessionTestResultError type SessionTestResultError struct { - SessionRunId string `json:"sessionRunId"` + VersionId string `json:"versionId"` QueryStatus string `json:"queryStatus"` AdditionalProperties map[string]interface{} } @@ -31,9 +31,9 @@ type _SessionTestResultError SessionTestResultError // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewSessionTestResultError(sessionRunId string, queryStatus string) *SessionTestResultError { +func NewSessionTestResultError(versionId string, queryStatus string) *SessionTestResultError { this := SessionTestResultError{} - this.SessionRunId = sessionRunId + this.VersionId = versionId this.QueryStatus = queryStatus return &this } @@ -46,28 +46,28 @@ func NewSessionTestResultErrorWithDefaults() *SessionTestResultError { return &this } -// GetSessionRunId returns the SessionRunId field value -func (o *SessionTestResultError) GetSessionRunId() string { +// GetVersionId returns the VersionId field value +func (o *SessionTestResultError) GetVersionId() string { if o == nil { var ret string return ret } - return o.SessionRunId + return o.VersionId } -// GetSessionRunIdOk returns a tuple with the SessionRunId field value +// GetVersionIdOk returns a tuple with the VersionId field value // and a boolean to check if the value has been set. -func (o *SessionTestResultError) GetSessionRunIdOk() (*string, bool) { +func (o *SessionTestResultError) GetVersionIdOk() (*string, bool) { if o == nil { return nil, false } - return &o.SessionRunId, true + return &o.VersionId, true } -// SetSessionRunId sets field value -func (o *SessionTestResultError) SetSessionRunId(v string) { - o.SessionRunId = v +// SetVersionId sets field value +func (o *SessionTestResultError) SetVersionId(v string) { + o.VersionId = v } // GetQueryStatus returns the QueryStatus field value @@ -104,7 +104,7 @@ func (o SessionTestResultError) MarshalJSON() ([]byte, error) { func (o SessionTestResultError) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} - toSerialize["sessionRunId"] = o.SessionRunId + toSerialize["versionId"] = o.VersionId toSerialize["queryStatus"] = o.QueryStatus for key, value := range o.AdditionalProperties { @@ -119,7 +119,7 @@ func (o *SessionTestResultError) UnmarshalJSON(data []byte) (err error) { // by unmarshalling the object into a generic map with string keys and checking // that every required field exists as a key in the generic map. requiredProperties := []string{ - "sessionRunId", + "versionId", "queryStatus", } @@ -150,7 +150,7 @@ func (o *SessionTestResultError) UnmarshalJSON(data []byte) (err error) { additionalProperties := make(map[string]interface{}) if err = json.Unmarshal(data, &additionalProperties); err == nil { - delete(additionalProperties, "sessionRunId") + delete(additionalProperties, "versionId") delete(additionalProperties, "queryStatus") o.AdditionalProperties = additionalProperties } diff --git a/pkg/tensorleapapi/model_session_test_result_not_found.go b/pkg/tensorleapapi/model_session_test_result_not_found.go index 4cb26f157..77776b5c8 100644 --- a/pkg/tensorleapapi/model_session_test_result_not_found.go +++ b/pkg/tensorleapapi/model_session_test_result_not_found.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -20,7 +20,7 @@ var _ MappedNullable = &SessionTestResultNotFound{} // SessionTestResultNotFound struct for SessionTestResultNotFound type SessionTestResultNotFound struct { - SessionRunId string `json:"sessionRunId"` + VersionId string `json:"versionId"` QueryStatus string `json:"queryStatus"` AdditionalProperties map[string]interface{} } @@ -31,9 +31,9 @@ type _SessionTestResultNotFound SessionTestResultNotFound // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewSessionTestResultNotFound(sessionRunId string, queryStatus string) *SessionTestResultNotFound { +func NewSessionTestResultNotFound(versionId string, queryStatus string) *SessionTestResultNotFound { this := SessionTestResultNotFound{} - this.SessionRunId = sessionRunId + this.VersionId = versionId this.QueryStatus = queryStatus return &this } @@ -46,28 +46,28 @@ func NewSessionTestResultNotFoundWithDefaults() *SessionTestResultNotFound { return &this } -// GetSessionRunId returns the SessionRunId field value -func (o *SessionTestResultNotFound) GetSessionRunId() string { +// GetVersionId returns the VersionId field value +func (o *SessionTestResultNotFound) GetVersionId() string { if o == nil { var ret string return ret } - return o.SessionRunId + return o.VersionId } -// GetSessionRunIdOk returns a tuple with the SessionRunId field value +// GetVersionIdOk returns a tuple with the VersionId field value // and a boolean to check if the value has been set. -func (o *SessionTestResultNotFound) GetSessionRunIdOk() (*string, bool) { +func (o *SessionTestResultNotFound) GetVersionIdOk() (*string, bool) { if o == nil { return nil, false } - return &o.SessionRunId, true + return &o.VersionId, true } -// SetSessionRunId sets field value -func (o *SessionTestResultNotFound) SetSessionRunId(v string) { - o.SessionRunId = v +// SetVersionId sets field value +func (o *SessionTestResultNotFound) SetVersionId(v string) { + o.VersionId = v } // GetQueryStatus returns the QueryStatus field value @@ -104,7 +104,7 @@ func (o SessionTestResultNotFound) MarshalJSON() ([]byte, error) { func (o SessionTestResultNotFound) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} - toSerialize["sessionRunId"] = o.SessionRunId + toSerialize["versionId"] = o.VersionId toSerialize["queryStatus"] = o.QueryStatus for key, value := range o.AdditionalProperties { @@ -119,7 +119,7 @@ func (o *SessionTestResultNotFound) UnmarshalJSON(data []byte) (err error) { // by unmarshalling the object into a generic map with string keys and checking // that every required field exists as a key in the generic map. requiredProperties := []string{ - "sessionRunId", + "versionId", "queryStatus", } @@ -150,7 +150,7 @@ func (o *SessionTestResultNotFound) UnmarshalJSON(data []byte) (err error) { additionalProperties := make(map[string]interface{}) if err = json.Unmarshal(data, &additionalProperties); err == nil { - delete(additionalProperties, "sessionRunId") + delete(additionalProperties, "versionId") delete(additionalProperties, "queryStatus") o.AdditionalProperties = additionalProperties } diff --git a/pkg/tensorleapapi/model_session_test_result_success.go b/pkg/tensorleapapi/model_session_test_result_success.go index c6da12233..223c074a1 100644 --- a/pkg/tensorleapapi/model_session_test_result_success.go +++ b/pkg/tensorleapapi/model_session_test_result_success.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -21,7 +21,7 @@ var _ MappedNullable = &SessionTestResultSuccess{} // SessionTestResultSuccess struct for SessionTestResultSuccess type SessionTestResultSuccess struct { TestSucceeded bool `json:"testSucceeded"` - SessionRunId string `json:"sessionRunId"` + VersionId string `json:"versionId"` Aggregation float64 `json:"aggregation"` SuccefullSamples float64 `json:"succefullSamples"` AllSamples float64 `json:"allSamples"` @@ -36,10 +36,10 @@ type _SessionTestResultSuccess SessionTestResultSuccess // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewSessionTestResultSuccess(testSucceeded bool, sessionRunId string, aggregation float64, succefullSamples float64, allSamples float64, epoch float64, queryStatus string) *SessionTestResultSuccess { +func NewSessionTestResultSuccess(testSucceeded bool, versionId string, aggregation float64, succefullSamples float64, allSamples float64, epoch float64, queryStatus string) *SessionTestResultSuccess { this := SessionTestResultSuccess{} this.TestSucceeded = testSucceeded - this.SessionRunId = sessionRunId + this.VersionId = versionId this.Aggregation = aggregation this.SuccefullSamples = succefullSamples this.AllSamples = allSamples @@ -80,28 +80,28 @@ func (o *SessionTestResultSuccess) SetTestSucceeded(v bool) { o.TestSucceeded = v } -// GetSessionRunId returns the SessionRunId field value -func (o *SessionTestResultSuccess) GetSessionRunId() string { +// GetVersionId returns the VersionId field value +func (o *SessionTestResultSuccess) GetVersionId() string { if o == nil { var ret string return ret } - return o.SessionRunId + return o.VersionId } -// GetSessionRunIdOk returns a tuple with the SessionRunId field value +// GetVersionIdOk returns a tuple with the VersionId field value // and a boolean to check if the value has been set. -func (o *SessionTestResultSuccess) GetSessionRunIdOk() (*string, bool) { +func (o *SessionTestResultSuccess) GetVersionIdOk() (*string, bool) { if o == nil { return nil, false } - return &o.SessionRunId, true + return &o.VersionId, true } -// SetSessionRunId sets field value -func (o *SessionTestResultSuccess) SetSessionRunId(v string) { - o.SessionRunId = v +// SetVersionId sets field value +func (o *SessionTestResultSuccess) SetVersionId(v string) { + o.VersionId = v } // GetAggregation returns the Aggregation field value @@ -235,7 +235,7 @@ func (o SessionTestResultSuccess) MarshalJSON() ([]byte, error) { func (o SessionTestResultSuccess) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} toSerialize["testSucceeded"] = o.TestSucceeded - toSerialize["sessionRunId"] = o.SessionRunId + toSerialize["versionId"] = o.VersionId toSerialize["aggregation"] = o.Aggregation toSerialize["succefullSamples"] = o.SuccefullSamples toSerialize["allSamples"] = o.AllSamples @@ -255,7 +255,7 @@ func (o *SessionTestResultSuccess) UnmarshalJSON(data []byte) (err error) { // that every required field exists as a key in the generic map. requiredProperties := []string{ "testSucceeded", - "sessionRunId", + "versionId", "aggregation", "succefullSamples", "allSamples", @@ -291,7 +291,7 @@ func (o *SessionTestResultSuccess) UnmarshalJSON(data []byte) (err error) { if err = json.Unmarshal(data, &additionalProperties); err == nil { delete(additionalProperties, "testSucceeded") - delete(additionalProperties, "sessionRunId") + delete(additionalProperties, "versionId") delete(additionalProperties, "aggregation") delete(additionalProperties, "succefullSamples") delete(additionalProperties, "allSamples") diff --git a/pkg/tensorleapapi/model_session_weight_data.go b/pkg/tensorleapapi/model_session_weight_data.go deleted file mode 100644 index e83b89a7d..000000000 --- a/pkg/tensorleapapi/model_session_weight_data.go +++ /dev/null @@ -1,370 +0,0 @@ -/* -node-server - -No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - -API version: 11.0.7 -*/ - -// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. - -package tensorleapapi - -import ( - "encoding/json" - "fmt" - "time" -) - -// checks if the SessionWeightData type satisfies the MappedNullable interface at compile time -var _ MappedNullable = &SessionWeightData{} - -// SessionWeightData struct for SessionWeightData -type SessionWeightData struct { - Cid string `json:"cid"` - SessionId string `json:"sessionId"` - Epoch float64 `json:"epoch"` - GlobalStep float64 `json:"globalStep"` - Status StatusEnum `json:"status"` - TeamId string `json:"teamId"` - CreatedAt time.Time `json:"createdAt"` - CreatedBy string `json:"createdBy"` - AdditionalProperties map[string]interface{} -} - -type _SessionWeightData SessionWeightData - -// NewSessionWeightData instantiates a new SessionWeightData object -// This constructor will assign default values to properties that have it defined, -// and makes sure properties required by API are set, but the set of arguments -// will change when the set of required properties is changed -func NewSessionWeightData(cid string, sessionId string, epoch float64, globalStep float64, status StatusEnum, teamId string, createdAt time.Time, createdBy string) *SessionWeightData { - this := SessionWeightData{} - this.Cid = cid - this.SessionId = sessionId - this.Epoch = epoch - this.GlobalStep = globalStep - this.Status = status - this.TeamId = teamId - this.CreatedAt = createdAt - this.CreatedBy = createdBy - return &this -} - -// NewSessionWeightDataWithDefaults instantiates a new SessionWeightData object -// This constructor will only assign default values to properties that have it defined, -// but it doesn't guarantee that properties required by API are set -func NewSessionWeightDataWithDefaults() *SessionWeightData { - this := SessionWeightData{} - return &this -} - -// GetCid returns the Cid field value -func (o *SessionWeightData) GetCid() string { - if o == nil { - var ret string - return ret - } - - return o.Cid -} - -// GetCidOk returns a tuple with the Cid field value -// and a boolean to check if the value has been set. -func (o *SessionWeightData) GetCidOk() (*string, bool) { - if o == nil { - return nil, false - } - return &o.Cid, true -} - -// SetCid sets field value -func (o *SessionWeightData) SetCid(v string) { - o.Cid = v -} - -// GetSessionId returns the SessionId field value -func (o *SessionWeightData) GetSessionId() string { - if o == nil { - var ret string - return ret - } - - return o.SessionId -} - -// GetSessionIdOk returns a tuple with the SessionId field value -// and a boolean to check if the value has been set. -func (o *SessionWeightData) GetSessionIdOk() (*string, bool) { - if o == nil { - return nil, false - } - return &o.SessionId, true -} - -// SetSessionId sets field value -func (o *SessionWeightData) SetSessionId(v string) { - o.SessionId = v -} - -// GetEpoch returns the Epoch field value -func (o *SessionWeightData) GetEpoch() float64 { - if o == nil { - var ret float64 - return ret - } - - return o.Epoch -} - -// GetEpochOk returns a tuple with the Epoch field value -// and a boolean to check if the value has been set. -func (o *SessionWeightData) GetEpochOk() (*float64, bool) { - if o == nil { - return nil, false - } - return &o.Epoch, true -} - -// SetEpoch sets field value -func (o *SessionWeightData) SetEpoch(v float64) { - o.Epoch = v -} - -// GetGlobalStep returns the GlobalStep field value -func (o *SessionWeightData) GetGlobalStep() float64 { - if o == nil { - var ret float64 - return ret - } - - return o.GlobalStep -} - -// GetGlobalStepOk returns a tuple with the GlobalStep field value -// and a boolean to check if the value has been set. -func (o *SessionWeightData) GetGlobalStepOk() (*float64, bool) { - if o == nil { - return nil, false - } - return &o.GlobalStep, true -} - -// SetGlobalStep sets field value -func (o *SessionWeightData) SetGlobalStep(v float64) { - o.GlobalStep = v -} - -// GetStatus returns the Status field value -func (o *SessionWeightData) GetStatus() StatusEnum { - if o == nil { - var ret StatusEnum - return ret - } - - return o.Status -} - -// GetStatusOk returns a tuple with the Status field value -// and a boolean to check if the value has been set. -func (o *SessionWeightData) GetStatusOk() (*StatusEnum, bool) { - if o == nil { - return nil, false - } - return &o.Status, true -} - -// SetStatus sets field value -func (o *SessionWeightData) SetStatus(v StatusEnum) { - o.Status = v -} - -// GetTeamId returns the TeamId field value -func (o *SessionWeightData) GetTeamId() string { - if o == nil { - var ret string - return ret - } - - return o.TeamId -} - -// GetTeamIdOk returns a tuple with the TeamId field value -// and a boolean to check if the value has been set. -func (o *SessionWeightData) GetTeamIdOk() (*string, bool) { - if o == nil { - return nil, false - } - return &o.TeamId, true -} - -// SetTeamId sets field value -func (o *SessionWeightData) SetTeamId(v string) { - o.TeamId = v -} - -// GetCreatedAt returns the CreatedAt field value -func (o *SessionWeightData) GetCreatedAt() time.Time { - if o == nil { - var ret time.Time - return ret - } - - return o.CreatedAt -} - -// GetCreatedAtOk returns a tuple with the CreatedAt field value -// and a boolean to check if the value has been set. -func (o *SessionWeightData) GetCreatedAtOk() (*time.Time, bool) { - if o == nil { - return nil, false - } - return &o.CreatedAt, true -} - -// SetCreatedAt sets field value -func (o *SessionWeightData) SetCreatedAt(v time.Time) { - o.CreatedAt = v -} - -// GetCreatedBy returns the CreatedBy field value -func (o *SessionWeightData) GetCreatedBy() string { - if o == nil { - var ret string - return ret - } - - return o.CreatedBy -} - -// GetCreatedByOk returns a tuple with the CreatedBy field value -// and a boolean to check if the value has been set. -func (o *SessionWeightData) GetCreatedByOk() (*string, bool) { - if o == nil { - return nil, false - } - return &o.CreatedBy, true -} - -// SetCreatedBy sets field value -func (o *SessionWeightData) SetCreatedBy(v string) { - o.CreatedBy = v -} - -func (o SessionWeightData) MarshalJSON() ([]byte, error) { - toSerialize, err := o.ToMap() - if err != nil { - return []byte{}, err - } - return json.Marshal(toSerialize) -} - -func (o SessionWeightData) ToMap() (map[string]interface{}, error) { - toSerialize := map[string]interface{}{} - toSerialize["cid"] = o.Cid - toSerialize["sessionId"] = o.SessionId - toSerialize["epoch"] = o.Epoch - toSerialize["globalStep"] = o.GlobalStep - toSerialize["status"] = o.Status - toSerialize["teamId"] = o.TeamId - toSerialize["createdAt"] = o.CreatedAt - toSerialize["createdBy"] = o.CreatedBy - - for key, value := range o.AdditionalProperties { - toSerialize[key] = value - } - - return toSerialize, nil -} - -func (o *SessionWeightData) UnmarshalJSON(data []byte) (err error) { - // This validates that all required properties are included in the JSON object - // by unmarshalling the object into a generic map with string keys and checking - // that every required field exists as a key in the generic map. - requiredProperties := []string{ - "cid", - "sessionId", - "epoch", - "globalStep", - "status", - "teamId", - "createdAt", - "createdBy", - } - - allProperties := make(map[string]interface{}) - - err = json.Unmarshal(data, &allProperties) - - if err != nil { - return err - } - - for _, requiredProperty := range requiredProperties { - if _, exists := allProperties[requiredProperty]; !exists { - return fmt.Errorf("no value given for required property %v", requiredProperty) - } - } - - varSessionWeightData := _SessionWeightData{} - - err = json.Unmarshal(data, &varSessionWeightData) - - if err != nil { - return err - } - - *o = SessionWeightData(varSessionWeightData) - - additionalProperties := make(map[string]interface{}) - - if err = json.Unmarshal(data, &additionalProperties); err == nil { - delete(additionalProperties, "cid") - delete(additionalProperties, "sessionId") - delete(additionalProperties, "epoch") - delete(additionalProperties, "globalStep") - delete(additionalProperties, "status") - delete(additionalProperties, "teamId") - delete(additionalProperties, "createdAt") - delete(additionalProperties, "createdBy") - o.AdditionalProperties = additionalProperties - } - - return err -} - -type NullableSessionWeightData struct { - value *SessionWeightData - isSet bool -} - -func (v NullableSessionWeightData) Get() *SessionWeightData { - return v.value -} - -func (v *NullableSessionWeightData) Set(val *SessionWeightData) { - v.value = val - v.isSet = true -} - -func (v NullableSessionWeightData) IsSet() bool { - return v.isSet -} - -func (v *NullableSessionWeightData) Unset() { - v.value = nil - v.isSet = false -} - -func NewNullableSessionWeightData(val *SessionWeightData) *NullableSessionWeightData { - return &NullableSessionWeightData{value: val, isSet: true} -} - -func (v NullableSessionWeightData) MarshalJSON() ([]byte, error) { - return json.Marshal(v.value) -} - -func (v *NullableSessionWeightData) UnmarshalJSON(src []byte) error { - v.isSet = true - return json.Unmarshal(src, &v.value) -} diff --git a/pkg/tensorleapapi/model_sessions_response.go b/pkg/tensorleapapi/model_sessions_response.go deleted file mode 100644 index 3aa9af82d..000000000 --- a/pkg/tensorleapapi/model_sessions_response.go +++ /dev/null @@ -1,166 +0,0 @@ -/* -node-server - -No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - -API version: 11.0.7 -*/ - -// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. - -package tensorleapapi - -import ( - "encoding/json" - "fmt" -) - -// checks if the SessionsResponse type satisfies the MappedNullable interface at compile time -var _ MappedNullable = &SessionsResponse{} - -// SessionsResponse struct for SessionsResponse -type SessionsResponse struct { - Sessions []Session `json:"sessions"` - AdditionalProperties map[string]interface{} -} - -type _SessionsResponse SessionsResponse - -// NewSessionsResponse instantiates a new SessionsResponse object -// This constructor will assign default values to properties that have it defined, -// and makes sure properties required by API are set, but the set of arguments -// will change when the set of required properties is changed -func NewSessionsResponse(sessions []Session) *SessionsResponse { - this := SessionsResponse{} - this.Sessions = sessions - return &this -} - -// NewSessionsResponseWithDefaults instantiates a new SessionsResponse object -// This constructor will only assign default values to properties that have it defined, -// but it doesn't guarantee that properties required by API are set -func NewSessionsResponseWithDefaults() *SessionsResponse { - this := SessionsResponse{} - return &this -} - -// GetSessions returns the Sessions field value -func (o *SessionsResponse) GetSessions() []Session { - if o == nil { - var ret []Session - return ret - } - - return o.Sessions -} - -// GetSessionsOk returns a tuple with the Sessions field value -// and a boolean to check if the value has been set. -func (o *SessionsResponse) GetSessionsOk() ([]Session, bool) { - if o == nil { - return nil, false - } - return o.Sessions, true -} - -// SetSessions sets field value -func (o *SessionsResponse) SetSessions(v []Session) { - o.Sessions = v -} - -func (o SessionsResponse) MarshalJSON() ([]byte, error) { - toSerialize, err := o.ToMap() - if err != nil { - return []byte{}, err - } - return json.Marshal(toSerialize) -} - -func (o SessionsResponse) ToMap() (map[string]interface{}, error) { - toSerialize := map[string]interface{}{} - toSerialize["sessions"] = o.Sessions - - for key, value := range o.AdditionalProperties { - toSerialize[key] = value - } - - return toSerialize, nil -} - -func (o *SessionsResponse) UnmarshalJSON(data []byte) (err error) { - // This validates that all required properties are included in the JSON object - // by unmarshalling the object into a generic map with string keys and checking - // that every required field exists as a key in the generic map. - requiredProperties := []string{ - "sessions", - } - - allProperties := make(map[string]interface{}) - - err = json.Unmarshal(data, &allProperties) - - if err != nil { - return err - } - - for _, requiredProperty := range requiredProperties { - if _, exists := allProperties[requiredProperty]; !exists { - return fmt.Errorf("no value given for required property %v", requiredProperty) - } - } - - varSessionsResponse := _SessionsResponse{} - - err = json.Unmarshal(data, &varSessionsResponse) - - if err != nil { - return err - } - - *o = SessionsResponse(varSessionsResponse) - - additionalProperties := make(map[string]interface{}) - - if err = json.Unmarshal(data, &additionalProperties); err == nil { - delete(additionalProperties, "sessions") - o.AdditionalProperties = additionalProperties - } - - return err -} - -type NullableSessionsResponse struct { - value *SessionsResponse - isSet bool -} - -func (v NullableSessionsResponse) Get() *SessionsResponse { - return v.value -} - -func (v *NullableSessionsResponse) Set(val *SessionsResponse) { - v.value = val - v.isSet = true -} - -func (v NullableSessionsResponse) IsSet() bool { - return v.isSet -} - -func (v *NullableSessionsResponse) Unset() { - v.value = nil - v.isSet = false -} - -func NewNullableSessionsResponse(val *SessionsResponse) *NullableSessionsResponse { - return &NullableSessionsResponse{value: val, isSet: true} -} - -func (v NullableSessionsResponse) MarshalJSON() ([]byte, error) { - return json.Marshal(v.value) -} - -func (v *NullableSessionsResponse) UnmarshalJSON(src []byte) error { - v.isSet = true - return json.Unmarshal(src, &v.value) -} diff --git a/pkg/tensorleapapi/model_set_code_challenge_request.go b/pkg/tensorleapapi/model_set_code_challenge_request.go index d078925d2..e7505d4cd 100644 --- a/pkg/tensorleapapi/model_set_code_challenge_request.go +++ b/pkg/tensorleapapi/model_set_code_challenge_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_set_default_team_request.go b/pkg/tensorleapapi/model_set_default_team_request.go index b17d93309..8899e3b58 100644 --- a/pkg/tensorleapapi/model_set_default_team_request.go +++ b/pkg/tensorleapapi/model_set_default_team_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_set_experiment_properties_request.go b/pkg/tensorleapapi/model_set_experiment_properties_request.go index 5e3515a74..80f299d9c 100644 --- a/pkg/tensorleapapi/model_set_experiment_properties_request.go +++ b/pkg/tensorleapapi/model_set_experiment_properties_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_set_setting_value_wrapper.go b/pkg/tensorleapapi/model_set_setting_value_wrapper.go index 7baba6c2f..c513a2787 100644 --- a/pkg/tensorleapapi/model_set_setting_value_wrapper.go +++ b/pkg/tensorleapapi/model_set_setting_value_wrapper.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_set_team_machine_type_params.go b/pkg/tensorleapapi/model_set_team_machine_type_params.go index 82ba01587..e348edbf4 100644 --- a/pkg/tensorleapapi/model_set_team_machine_type_params.go +++ b/pkg/tensorleapapi/model_set_team_machine_type_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_set_user_notifications_as_read_200_response.go b/pkg/tensorleapapi/model_set_user_notifications_as_read_200_response.go index 85d66983c..a289d7f5d 100644 --- a/pkg/tensorleapapi/model_set_user_notifications_as_read_200_response.go +++ b/pkg/tensorleapapi/model_set_user_notifications_as_read_200_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_setting_schema.go b/pkg/tensorleapapi/model_setting_schema.go index 5c0aec45e..4ccb64c49 100644 --- a/pkg/tensorleapapi/model_setting_schema.go +++ b/pkg/tensorleapapi/model_setting_schema.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_setting_value.go b/pkg/tensorleapapi/model_setting_value.go index d89f6ffbf..ffbde8bd3 100644 --- a/pkg/tensorleapapi/model_setting_value.go +++ b/pkg/tensorleapapi/model_setting_value.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_settings_and_values_wrapper.go b/pkg/tensorleapapi/model_settings_and_values_wrapper.go index 82edb8818..8fc663838 100644 --- a/pkg/tensorleapapi/model_settings_and_values_wrapper.go +++ b/pkg/tensorleapapi/model_settings_and_values_wrapper.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_settings_category.go b/pkg/tensorleapapi/model_settings_category.go index 03e3a4a55..fd0ea0a3e 100644 --- a/pkg/tensorleapapi/model_settings_category.go +++ b/pkg/tensorleapapi/model_settings_category.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_severity_metric_element.go b/pkg/tensorleapapi/model_severity_metric_element.go index 95578c660..ec1731fcb 100644 --- a/pkg/tensorleapapi/model_severity_metric_element.go +++ b/pkg/tensorleapapi/model_severity_metric_element.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_single_user_mode_settings.go b/pkg/tensorleapapi/model_single_user_mode_settings.go index ce0946892..48bb3eaed 100644 --- a/pkg/tensorleapapi/model_single_user_mode_settings.go +++ b/pkg/tensorleapapi/model_single_user_mode_settings.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_sized_layout.go b/pkg/tensorleapapi/model_sized_layout.go index 77bd62c32..199c6e0a1 100644 --- a/pkg/tensorleapapi/model_sized_layout.go +++ b/pkg/tensorleapapi/model_sized_layout.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_slim_team.go b/pkg/tensorleapapi/model_slim_team.go index ccd87a997..68a811e62 100644 --- a/pkg/tensorleapapi/model_slim_team.go +++ b/pkg/tensorleapapi/model_slim_team.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_slim_user_data.go b/pkg/tensorleapapi/model_slim_user_data.go index a676c485e..09ec2ca2d 100644 --- a/pkg/tensorleapapi/model_slim_user_data.go +++ b/pkg/tensorleapapi/model_slim_user_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_slim_user_data_local.go b/pkg/tensorleapapi/model_slim_user_data_local.go index b1bcde87a..b75634ba9 100644 --- a/pkg/tensorleapapi/model_slim_user_data_local.go +++ b/pkg/tensorleapapi/model_slim_user_data_local.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_slim_version.go b/pkg/tensorleapapi/model_slim_version.go index 92afb5965..5cf7934e1 100644 --- a/pkg/tensorleapapi/model_slim_version.go +++ b/pkg/tensorleapapi/model_slim_version.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -21,19 +21,32 @@ var _ MappedNullable = &SlimVersion{} // SlimVersion struct for SlimVersion type SlimVersion struct { - Cid string `json:"cid"` - CreatedBy string `json:"createdBy"` - ProjectId string `json:"projectId"` - BranchName string `json:"branchName"` - Tags string `json:"tags"` - CreatedAt time.Time `json:"createdAt"` - UpdatedAt time.Time `json:"updatedAt"` - Notes string `json:"notes"` - CodeSnapshotId *string `json:"codeSnapshotId,omitempty"` - IsFavourite bool `json:"isFavourite"` - Hash NullableString `json:"hash,omitempty"` - Sessions []Session `json:"sessions"` - GraphValidationData *GraphValidatorData `json:"graphValidationData,omitempty"` + Cid string `json:"cid"` + CreatedBy string `json:"createdBy"` + ProjectId string `json:"projectId"` + BranchName string `json:"branchName"` + Tags string `json:"tags"` + CreatedAt time.Time `json:"createdAt"` + UpdatedAt time.Time `json:"updatedAt"` + Notes string `json:"notes"` + CodeSnapshotId *string `json:"codeSnapshotId,omitempty"` + IsFavourite bool `json:"isFavourite"` + Hash NullableString `json:"hash,omitempty"` + GraphValidationData *GraphValidatorData `json:"graphValidationData,omitempty"` + TeamId string `json:"teamId"` + // Construct a type with a set of properties K of type T + Properties map[string]interface{} `json:"properties,omitempty"` + HasExternalEpoch bool `json:"hasExternalEpoch"` + IsEvaluate bool `json:"isEvaluate"` + EvaluateParams *VersionEvaluateParams `json:"evaluateParams,omitempty"` + CanContinueEvaluate *bool `json:"canContinueEvaluate,omitempty"` + CsvBlobPath *string `json:"csvBlobPath,omitempty"` + Jobs []Job `json:"jobs"` + ModelId *string `json:"modelId,omitempty"` + VisArtifactId *string `json:"visArtifactId,omitempty"` + InferenceArtifactId *string `json:"inferenceArtifactId,omitempty"` + EsMetricIndex *string `json:"esMetricIndex,omitempty"` + EpochTags *map[string]float64 `json:"epochTags,omitempty"` AdditionalProperties map[string]interface{} } @@ -43,7 +56,7 @@ type _SlimVersion SlimVersion // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewSlimVersion(cid string, createdBy string, projectId string, branchName string, tags string, createdAt time.Time, updatedAt time.Time, notes string, isFavourite bool, sessions []Session) *SlimVersion { +func NewSlimVersion(cid string, createdBy string, projectId string, branchName string, tags string, createdAt time.Time, updatedAt time.Time, notes string, isFavourite bool, teamId string, hasExternalEpoch bool, isEvaluate bool, jobs []Job) *SlimVersion { this := SlimVersion{} this.Cid = cid this.CreatedBy = createdBy @@ -54,7 +67,10 @@ func NewSlimVersion(cid string, createdBy string, projectId string, branchName s this.UpdatedAt = updatedAt this.Notes = notes this.IsFavourite = isFavourite - this.Sessions = sessions + this.TeamId = teamId + this.HasExternalEpoch = hasExternalEpoch + this.IsEvaluate = isEvaluate + this.Jobs = jobs return &this } @@ -357,30 +373,6 @@ func (o *SlimVersion) UnsetHash() { o.Hash.Unset() } -// GetSessions returns the Sessions field value -func (o *SlimVersion) GetSessions() []Session { - if o == nil { - var ret []Session - return ret - } - - return o.Sessions -} - -// GetSessionsOk returns a tuple with the Sessions field value -// and a boolean to check if the value has been set. -func (o *SlimVersion) GetSessionsOk() ([]Session, bool) { - if o == nil { - return nil, false - } - return o.Sessions, true -} - -// SetSessions sets field value -func (o *SlimVersion) SetSessions(v []Session) { - o.Sessions = v -} - // GetGraphValidationData returns the GraphValidationData field value if set, zero value otherwise. func (o *SlimVersion) GetGraphValidationData() GraphValidatorData { if o == nil || IsNil(o.GraphValidationData) { @@ -413,6 +405,390 @@ func (o *SlimVersion) SetGraphValidationData(v GraphValidatorData) { o.GraphValidationData = &v } +// GetTeamId returns the TeamId field value +func (o *SlimVersion) GetTeamId() string { + if o == nil { + var ret string + return ret + } + + return o.TeamId +} + +// GetTeamIdOk returns a tuple with the TeamId field value +// and a boolean to check if the value has been set. +func (o *SlimVersion) GetTeamIdOk() (*string, bool) { + if o == nil { + return nil, false + } + return &o.TeamId, true +} + +// SetTeamId sets field value +func (o *SlimVersion) SetTeamId(v string) { + o.TeamId = v +} + +// GetProperties returns the Properties field value if set, zero value otherwise. +func (o *SlimVersion) GetProperties() map[string]interface{} { + if o == nil || IsNil(o.Properties) { + var ret map[string]interface{} + return ret + } + return o.Properties +} + +// GetPropertiesOk returns a tuple with the Properties field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *SlimVersion) GetPropertiesOk() (map[string]interface{}, bool) { + if o == nil || IsNil(o.Properties) { + return map[string]interface{}{}, false + } + return o.Properties, true +} + +// HasProperties returns a boolean if a field has been set. +func (o *SlimVersion) HasProperties() bool { + if o != nil && !IsNil(o.Properties) { + return true + } + + return false +} + +// SetProperties gets a reference to the given map[string]interface{} and assigns it to the Properties field. +func (o *SlimVersion) SetProperties(v map[string]interface{}) { + o.Properties = v +} + +// GetHasExternalEpoch returns the HasExternalEpoch field value +func (o *SlimVersion) GetHasExternalEpoch() bool { + if o == nil { + var ret bool + return ret + } + + return o.HasExternalEpoch +} + +// GetHasExternalEpochOk returns a tuple with the HasExternalEpoch field value +// and a boolean to check if the value has been set. +func (o *SlimVersion) GetHasExternalEpochOk() (*bool, bool) { + if o == nil { + return nil, false + } + return &o.HasExternalEpoch, true +} + +// SetHasExternalEpoch sets field value +func (o *SlimVersion) SetHasExternalEpoch(v bool) { + o.HasExternalEpoch = v +} + +// GetIsEvaluate returns the IsEvaluate field value +func (o *SlimVersion) GetIsEvaluate() bool { + if o == nil { + var ret bool + return ret + } + + return o.IsEvaluate +} + +// GetIsEvaluateOk returns a tuple with the IsEvaluate field value +// and a boolean to check if the value has been set. +func (o *SlimVersion) GetIsEvaluateOk() (*bool, bool) { + if o == nil { + return nil, false + } + return &o.IsEvaluate, true +} + +// SetIsEvaluate sets field value +func (o *SlimVersion) SetIsEvaluate(v bool) { + o.IsEvaluate = v +} + +// GetEvaluateParams returns the EvaluateParams field value if set, zero value otherwise. +func (o *SlimVersion) GetEvaluateParams() VersionEvaluateParams { + if o == nil || IsNil(o.EvaluateParams) { + var ret VersionEvaluateParams + return ret + } + return *o.EvaluateParams +} + +// GetEvaluateParamsOk returns a tuple with the EvaluateParams field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *SlimVersion) GetEvaluateParamsOk() (*VersionEvaluateParams, bool) { + if o == nil || IsNil(o.EvaluateParams) { + return nil, false + } + return o.EvaluateParams, true +} + +// HasEvaluateParams returns a boolean if a field has been set. +func (o *SlimVersion) HasEvaluateParams() bool { + if o != nil && !IsNil(o.EvaluateParams) { + return true + } + + return false +} + +// SetEvaluateParams gets a reference to the given VersionEvaluateParams and assigns it to the EvaluateParams field. +func (o *SlimVersion) SetEvaluateParams(v VersionEvaluateParams) { + o.EvaluateParams = &v +} + +// GetCanContinueEvaluate returns the CanContinueEvaluate field value if set, zero value otherwise. +func (o *SlimVersion) GetCanContinueEvaluate() bool { + if o == nil || IsNil(o.CanContinueEvaluate) { + var ret bool + return ret + } + return *o.CanContinueEvaluate +} + +// GetCanContinueEvaluateOk returns a tuple with the CanContinueEvaluate field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *SlimVersion) GetCanContinueEvaluateOk() (*bool, bool) { + if o == nil || IsNil(o.CanContinueEvaluate) { + return nil, false + } + return o.CanContinueEvaluate, true +} + +// HasCanContinueEvaluate returns a boolean if a field has been set. +func (o *SlimVersion) HasCanContinueEvaluate() bool { + if o != nil && !IsNil(o.CanContinueEvaluate) { + return true + } + + return false +} + +// SetCanContinueEvaluate gets a reference to the given bool and assigns it to the CanContinueEvaluate field. +func (o *SlimVersion) SetCanContinueEvaluate(v bool) { + o.CanContinueEvaluate = &v +} + +// GetCsvBlobPath returns the CsvBlobPath field value if set, zero value otherwise. +func (o *SlimVersion) GetCsvBlobPath() string { + if o == nil || IsNil(o.CsvBlobPath) { + var ret string + return ret + } + return *o.CsvBlobPath +} + +// GetCsvBlobPathOk returns a tuple with the CsvBlobPath field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *SlimVersion) GetCsvBlobPathOk() (*string, bool) { + if o == nil || IsNil(o.CsvBlobPath) { + return nil, false + } + return o.CsvBlobPath, true +} + +// HasCsvBlobPath returns a boolean if a field has been set. +func (o *SlimVersion) HasCsvBlobPath() bool { + if o != nil && !IsNil(o.CsvBlobPath) { + return true + } + + return false +} + +// SetCsvBlobPath gets a reference to the given string and assigns it to the CsvBlobPath field. +func (o *SlimVersion) SetCsvBlobPath(v string) { + o.CsvBlobPath = &v +} + +// GetJobs returns the Jobs field value +func (o *SlimVersion) GetJobs() []Job { + if o == nil { + var ret []Job + return ret + } + + return o.Jobs +} + +// GetJobsOk returns a tuple with the Jobs field value +// and a boolean to check if the value has been set. +func (o *SlimVersion) GetJobsOk() ([]Job, bool) { + if o == nil { + return nil, false + } + return o.Jobs, true +} + +// SetJobs sets field value +func (o *SlimVersion) SetJobs(v []Job) { + o.Jobs = v +} + +// GetModelId returns the ModelId field value if set, zero value otherwise. +func (o *SlimVersion) GetModelId() string { + if o == nil || IsNil(o.ModelId) { + var ret string + return ret + } + return *o.ModelId +} + +// GetModelIdOk returns a tuple with the ModelId field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *SlimVersion) GetModelIdOk() (*string, bool) { + if o == nil || IsNil(o.ModelId) { + return nil, false + } + return o.ModelId, true +} + +// HasModelId returns a boolean if a field has been set. +func (o *SlimVersion) HasModelId() bool { + if o != nil && !IsNil(o.ModelId) { + return true + } + + return false +} + +// SetModelId gets a reference to the given string and assigns it to the ModelId field. +func (o *SlimVersion) SetModelId(v string) { + o.ModelId = &v +} + +// GetVisArtifactId returns the VisArtifactId field value if set, zero value otherwise. +func (o *SlimVersion) GetVisArtifactId() string { + if o == nil || IsNil(o.VisArtifactId) { + var ret string + return ret + } + return *o.VisArtifactId +} + +// GetVisArtifactIdOk returns a tuple with the VisArtifactId field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *SlimVersion) GetVisArtifactIdOk() (*string, bool) { + if o == nil || IsNil(o.VisArtifactId) { + return nil, false + } + return o.VisArtifactId, true +} + +// HasVisArtifactId returns a boolean if a field has been set. +func (o *SlimVersion) HasVisArtifactId() bool { + if o != nil && !IsNil(o.VisArtifactId) { + return true + } + + return false +} + +// SetVisArtifactId gets a reference to the given string and assigns it to the VisArtifactId field. +func (o *SlimVersion) SetVisArtifactId(v string) { + o.VisArtifactId = &v +} + +// GetInferenceArtifactId returns the InferenceArtifactId field value if set, zero value otherwise. +func (o *SlimVersion) GetInferenceArtifactId() string { + if o == nil || IsNil(o.InferenceArtifactId) { + var ret string + return ret + } + return *o.InferenceArtifactId +} + +// GetInferenceArtifactIdOk returns a tuple with the InferenceArtifactId field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *SlimVersion) GetInferenceArtifactIdOk() (*string, bool) { + if o == nil || IsNil(o.InferenceArtifactId) { + return nil, false + } + return o.InferenceArtifactId, true +} + +// HasInferenceArtifactId returns a boolean if a field has been set. +func (o *SlimVersion) HasInferenceArtifactId() bool { + if o != nil && !IsNil(o.InferenceArtifactId) { + return true + } + + return false +} + +// SetInferenceArtifactId gets a reference to the given string and assigns it to the InferenceArtifactId field. +func (o *SlimVersion) SetInferenceArtifactId(v string) { + o.InferenceArtifactId = &v +} + +// GetEsMetricIndex returns the EsMetricIndex field value if set, zero value otherwise. +func (o *SlimVersion) GetEsMetricIndex() string { + if o == nil || IsNil(o.EsMetricIndex) { + var ret string + return ret + } + return *o.EsMetricIndex +} + +// GetEsMetricIndexOk returns a tuple with the EsMetricIndex field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *SlimVersion) GetEsMetricIndexOk() (*string, bool) { + if o == nil || IsNil(o.EsMetricIndex) { + return nil, false + } + return o.EsMetricIndex, true +} + +// HasEsMetricIndex returns a boolean if a field has been set. +func (o *SlimVersion) HasEsMetricIndex() bool { + if o != nil && !IsNil(o.EsMetricIndex) { + return true + } + + return false +} + +// SetEsMetricIndex gets a reference to the given string and assigns it to the EsMetricIndex field. +func (o *SlimVersion) SetEsMetricIndex(v string) { + o.EsMetricIndex = &v +} + +// GetEpochTags returns the EpochTags field value if set, zero value otherwise. +func (o *SlimVersion) GetEpochTags() map[string]float64 { + if o == nil || IsNil(o.EpochTags) { + var ret map[string]float64 + return ret + } + return *o.EpochTags +} + +// GetEpochTagsOk returns a tuple with the EpochTags field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *SlimVersion) GetEpochTagsOk() (*map[string]float64, bool) { + if o == nil || IsNil(o.EpochTags) { + return nil, false + } + return o.EpochTags, true +} + +// HasEpochTags returns a boolean if a field has been set. +func (o *SlimVersion) HasEpochTags() bool { + if o != nil && !IsNil(o.EpochTags) { + return true + } + + return false +} + +// SetEpochTags gets a reference to the given map[string]float64 and assigns it to the EpochTags field. +func (o *SlimVersion) SetEpochTags(v map[string]float64) { + o.EpochTags = &v +} + func (o SlimVersion) MarshalJSON() ([]byte, error) { toSerialize, err := o.ToMap() if err != nil { @@ -438,10 +814,40 @@ func (o SlimVersion) ToMap() (map[string]interface{}, error) { if o.Hash.IsSet() { toSerialize["hash"] = o.Hash.Get() } - toSerialize["sessions"] = o.Sessions if !IsNil(o.GraphValidationData) { toSerialize["graphValidationData"] = o.GraphValidationData } + toSerialize["teamId"] = o.TeamId + if !IsNil(o.Properties) { + toSerialize["properties"] = o.Properties + } + toSerialize["hasExternalEpoch"] = o.HasExternalEpoch + toSerialize["isEvaluate"] = o.IsEvaluate + if !IsNil(o.EvaluateParams) { + toSerialize["evaluateParams"] = o.EvaluateParams + } + if !IsNil(o.CanContinueEvaluate) { + toSerialize["canContinueEvaluate"] = o.CanContinueEvaluate + } + if !IsNil(o.CsvBlobPath) { + toSerialize["csvBlobPath"] = o.CsvBlobPath + } + toSerialize["jobs"] = o.Jobs + if !IsNil(o.ModelId) { + toSerialize["modelId"] = o.ModelId + } + if !IsNil(o.VisArtifactId) { + toSerialize["visArtifactId"] = o.VisArtifactId + } + if !IsNil(o.InferenceArtifactId) { + toSerialize["inferenceArtifactId"] = o.InferenceArtifactId + } + if !IsNil(o.EsMetricIndex) { + toSerialize["esMetricIndex"] = o.EsMetricIndex + } + if !IsNil(o.EpochTags) { + toSerialize["epochTags"] = o.EpochTags + } for key, value := range o.AdditionalProperties { toSerialize[key] = value @@ -464,7 +870,10 @@ func (o *SlimVersion) UnmarshalJSON(data []byte) (err error) { "updatedAt", "notes", "isFavourite", - "sessions", + "teamId", + "hasExternalEpoch", + "isEvaluate", + "jobs", } allProperties := make(map[string]interface{}) @@ -505,8 +914,20 @@ func (o *SlimVersion) UnmarshalJSON(data []byte) (err error) { delete(additionalProperties, "codeSnapshotId") delete(additionalProperties, "isFavourite") delete(additionalProperties, "hash") - delete(additionalProperties, "sessions") delete(additionalProperties, "graphValidationData") + delete(additionalProperties, "teamId") + delete(additionalProperties, "properties") + delete(additionalProperties, "hasExternalEpoch") + delete(additionalProperties, "isEvaluate") + delete(additionalProperties, "evaluateParams") + delete(additionalProperties, "canContinueEvaluate") + delete(additionalProperties, "csvBlobPath") + delete(additionalProperties, "jobs") + delete(additionalProperties, "modelId") + delete(additionalProperties, "visArtifactId") + delete(additionalProperties, "inferenceArtifactId") + delete(additionalProperties, "esMetricIndex") + delete(additionalProperties, "epochTags") o.AdditionalProperties = additionalProperties } diff --git a/pkg/tensorleapapi/model_slim_visualization.go b/pkg/tensorleapapi/model_slim_visualization.go index ed4709053..f5e7d9112 100644 --- a/pkg/tensorleapapi/model_slim_visualization.go +++ b/pkg/tensorleapapi/model_slim_visualization.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -24,7 +24,7 @@ type SlimVisualization struct { ProjectId string `json:"projectId"` Cid string `json:"cid"` JobId string `json:"jobId"` - SessionRunId string `json:"sessionRunId"` + InferenceArtifactId string `json:"inferenceArtifactId"` JobParms *JobParams `json:"jobParms,omitempty"` Type AnalyzeTypeEnum `json:"type"` CreatedAt time.Time `json:"createdAt"` @@ -43,12 +43,12 @@ type _SlimVisualization SlimVisualization // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewSlimVisualization(projectId string, cid string, jobId string, sessionRunId string, type_ AnalyzeTypeEnum, createdAt time.Time, epoch float64, visualizationUuid string, blob string, csvBlob string) *SlimVisualization { +func NewSlimVisualization(projectId string, cid string, jobId string, inferenceArtifactId string, type_ AnalyzeTypeEnum, createdAt time.Time, epoch float64, visualizationUuid string, blob string, csvBlob string) *SlimVisualization { this := SlimVisualization{} this.ProjectId = projectId this.Cid = cid this.JobId = jobId - this.SessionRunId = sessionRunId + this.InferenceArtifactId = inferenceArtifactId this.Type = type_ this.CreatedAt = createdAt this.Epoch = epoch @@ -138,28 +138,28 @@ func (o *SlimVisualization) SetJobId(v string) { o.JobId = v } -// GetSessionRunId returns the SessionRunId field value -func (o *SlimVisualization) GetSessionRunId() string { +// GetInferenceArtifactId returns the InferenceArtifactId field value +func (o *SlimVisualization) GetInferenceArtifactId() string { if o == nil { var ret string return ret } - return o.SessionRunId + return o.InferenceArtifactId } -// GetSessionRunIdOk returns a tuple with the SessionRunId field value +// GetInferenceArtifactIdOk returns a tuple with the InferenceArtifactId field value // and a boolean to check if the value has been set. -func (o *SlimVisualization) GetSessionRunIdOk() (*string, bool) { +func (o *SlimVisualization) GetInferenceArtifactIdOk() (*string, bool) { if o == nil { return nil, false } - return &o.SessionRunId, true + return &o.InferenceArtifactId, true } -// SetSessionRunId sets field value -func (o *SlimVisualization) SetSessionRunId(v string) { - o.SessionRunId = v +// SetInferenceArtifactId sets field value +func (o *SlimVisualization) SetInferenceArtifactId(v string) { + o.InferenceArtifactId = v } // GetJobParms returns the JobParms field value if set, zero value otherwise. @@ -415,7 +415,7 @@ func (o SlimVisualization) ToMap() (map[string]interface{}, error) { toSerialize["projectId"] = o.ProjectId toSerialize["cid"] = o.Cid toSerialize["jobId"] = o.JobId - toSerialize["sessionRunId"] = o.SessionRunId + toSerialize["inferenceArtifactId"] = o.InferenceArtifactId if !IsNil(o.JobParms) { toSerialize["jobParms"] = o.JobParms } @@ -447,7 +447,7 @@ func (o *SlimVisualization) UnmarshalJSON(data []byte) (err error) { "projectId", "cid", "jobId", - "sessionRunId", + "inferenceArtifactId", "type", "createdAt", "epoch", @@ -486,7 +486,7 @@ func (o *SlimVisualization) UnmarshalJSON(data []byte) (err error) { delete(additionalProperties, "projectId") delete(additionalProperties, "cid") delete(additionalProperties, "jobId") - delete(additionalProperties, "sessionRunId") + delete(additionalProperties, "inferenceArtifactId") delete(additionalProperties, "jobParms") delete(additionalProperties, "type") delete(additionalProperties, "createdAt") diff --git a/pkg/tensorleapapi/model_split_agg.go b/pkg/tensorleapapi/model_split_agg.go index f5e3e3960..d453473ce 100644 --- a/pkg/tensorleapapi/model_split_agg.go +++ b/pkg/tensorleapapi/model_split_agg.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_split_value.go b/pkg/tensorleapapi/model_split_value.go index b03c7a58a..661f0e81a 100644 --- a/pkg/tensorleapapi/model_split_value.go +++ b/pkg/tensorleapapi/model_split_value.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_start_trial_params.go b/pkg/tensorleapapi/model_start_trial_params.go index d8297948b..19061c5f9 100644 --- a/pkg/tensorleapapi/model_start_trial_params.go +++ b/pkg/tensorleapapi/model_start_trial_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_status_enum.go b/pkg/tensorleapapi/model_status_enum.go index b22d9c9de..05e3bc2b1 100644 --- a/pkg/tensorleapapi/model_status_enum.go +++ b/pkg/tensorleapapi/model_status_enum.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_stop_job_params.go b/pkg/tensorleapapi/model_stop_job_params.go index b4b78f49a..601cc21bf 100644 --- a/pkg/tensorleapapi/model_stop_job_params.go +++ b/pkg/tensorleapapi/model_stop_job_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_stop_job_response.go b/pkg/tensorleapapi/model_stop_job_response.go index 539e47f3a..dc7adfc3c 100644 --- a/pkg/tensorleapapi/model_stop_job_response.go +++ b/pkg/tensorleapapi/model_stop_job_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_string_schema.go b/pkg/tensorleapapi/model_string_schema.go index 0972b19b4..8fbf03b8d 100644 --- a/pkg/tensorleapapi/model_string_schema.go +++ b/pkg/tensorleapapi/model_string_schema.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_synthetic_data.go b/pkg/tensorleapapi/model_synthetic_data.go index 4d44a422f..04685cf08 100644 --- a/pkg/tensorleapapi/model_synthetic_data.go +++ b/pkg/tensorleapapi/model_synthetic_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -21,18 +21,18 @@ var _ MappedNullable = &SyntheticData{} // SyntheticData struct for SyntheticData type SyntheticData struct { - Id string `json:"id"` - JobId string `json:"jobId"` - SessionRunId string `json:"sessionRunId"` - SessionRunName string `json:"sessionRunName"` - Epoch float64 `json:"epoch"` - CreatedAt time.Time `json:"createdAt"` - CreatedBy string `json:"createdBy"` - NextTrialsFileUrl *string `json:"nextTrialsFileUrl,omitempty"` - BestTrialsFileUrl *string `json:"bestTrialsFileUrl,omitempty"` - Status JobStatus `json:"status"` - Sources []GenerateSyntheticDataParamsSourcesInner `json:"sources"` - TargetFilters []ESFilter `json:"targetFilters"` + Id string `json:"id"` + JobId string `json:"jobId"` + VersionId string `json:"versionId"` + VersionName string `json:"versionName"` + CreatedAt time.Time `json:"createdAt"` + CreatedBy string `json:"createdBy"` + NextTrialsFileUrl *string `json:"nextTrialsFileUrl,omitempty"` + BestTrialsFileUrl *string `json:"bestTrialsFileUrl,omitempty"` + Status JobStatus `json:"status"` + Sources []SyntheticDataJobParamsSourcesInner `json:"sources"` + TargetFilters []ESFilter `json:"targetFilters"` + RunProcess *RunProcess `json:"runProcess,omitempty"` AdditionalProperties map[string]interface{} } @@ -42,13 +42,12 @@ type _SyntheticData SyntheticData // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewSyntheticData(id string, jobId string, sessionRunId string, sessionRunName string, epoch float64, createdAt time.Time, createdBy string, status JobStatus, sources []GenerateSyntheticDataParamsSourcesInner, targetFilters []ESFilter) *SyntheticData { +func NewSyntheticData(id string, jobId string, versionId string, versionName string, createdAt time.Time, createdBy string, status JobStatus, sources []SyntheticDataJobParamsSourcesInner, targetFilters []ESFilter) *SyntheticData { this := SyntheticData{} this.Id = id this.JobId = jobId - this.SessionRunId = sessionRunId - this.SessionRunName = sessionRunName - this.Epoch = epoch + this.VersionId = versionId + this.VersionName = versionName this.CreatedAt = createdAt this.CreatedBy = createdBy this.Status = status @@ -113,76 +112,52 @@ func (o *SyntheticData) SetJobId(v string) { o.JobId = v } -// GetSessionRunId returns the SessionRunId field value -func (o *SyntheticData) GetSessionRunId() string { +// GetVersionId returns the VersionId field value +func (o *SyntheticData) GetVersionId() string { if o == nil { var ret string return ret } - return o.SessionRunId + return o.VersionId } -// GetSessionRunIdOk returns a tuple with the SessionRunId field value +// GetVersionIdOk returns a tuple with the VersionId field value // and a boolean to check if the value has been set. -func (o *SyntheticData) GetSessionRunIdOk() (*string, bool) { +func (o *SyntheticData) GetVersionIdOk() (*string, bool) { if o == nil { return nil, false } - return &o.SessionRunId, true + return &o.VersionId, true } -// SetSessionRunId sets field value -func (o *SyntheticData) SetSessionRunId(v string) { - o.SessionRunId = v +// SetVersionId sets field value +func (o *SyntheticData) SetVersionId(v string) { + o.VersionId = v } -// GetSessionRunName returns the SessionRunName field value -func (o *SyntheticData) GetSessionRunName() string { +// GetVersionName returns the VersionName field value +func (o *SyntheticData) GetVersionName() string { if o == nil { var ret string return ret } - return o.SessionRunName + return o.VersionName } -// GetSessionRunNameOk returns a tuple with the SessionRunName field value +// GetVersionNameOk returns a tuple with the VersionName field value // and a boolean to check if the value has been set. -func (o *SyntheticData) GetSessionRunNameOk() (*string, bool) { +func (o *SyntheticData) GetVersionNameOk() (*string, bool) { if o == nil { return nil, false } - return &o.SessionRunName, true + return &o.VersionName, true } -// SetSessionRunName sets field value -func (o *SyntheticData) SetSessionRunName(v string) { - o.SessionRunName = v -} - -// GetEpoch returns the Epoch field value -func (o *SyntheticData) GetEpoch() float64 { - if o == nil { - var ret float64 - return ret - } - - return o.Epoch -} - -// GetEpochOk returns a tuple with the Epoch field value -// and a boolean to check if the value has been set. -func (o *SyntheticData) GetEpochOk() (*float64, bool) { - if o == nil { - return nil, false - } - return &o.Epoch, true -} - -// SetEpoch sets field value -func (o *SyntheticData) SetEpoch(v float64) { - o.Epoch = v +// SetVersionName sets field value +func (o *SyntheticData) SetVersionName(v string) { + o.VersionName = v } // GetCreatedAt returns the CreatedAt field value @@ -322,9 +297,9 @@ func (o *SyntheticData) SetStatus(v JobStatus) { } // GetSources returns the Sources field value -func (o *SyntheticData) GetSources() []GenerateSyntheticDataParamsSourcesInner { +func (o *SyntheticData) GetSources() []SyntheticDataJobParamsSourcesInner { if o == nil { - var ret []GenerateSyntheticDataParamsSourcesInner + var ret []SyntheticDataJobParamsSourcesInner return ret } @@ -333,7 +308,7 @@ func (o *SyntheticData) GetSources() []GenerateSyntheticDataParamsSourcesInner { // GetSourcesOk returns a tuple with the Sources field value // and a boolean to check if the value has been set. -func (o *SyntheticData) GetSourcesOk() ([]GenerateSyntheticDataParamsSourcesInner, bool) { +func (o *SyntheticData) GetSourcesOk() ([]SyntheticDataJobParamsSourcesInner, bool) { if o == nil { return nil, false } @@ -341,7 +316,7 @@ func (o *SyntheticData) GetSourcesOk() ([]GenerateSyntheticDataParamsSourcesInne } // SetSources sets field value -func (o *SyntheticData) SetSources(v []GenerateSyntheticDataParamsSourcesInner) { +func (o *SyntheticData) SetSources(v []SyntheticDataJobParamsSourcesInner) { o.Sources = v } @@ -369,6 +344,38 @@ func (o *SyntheticData) SetTargetFilters(v []ESFilter) { o.TargetFilters = v } +// GetRunProcess returns the RunProcess field value if set, zero value otherwise. +func (o *SyntheticData) GetRunProcess() RunProcess { + if o == nil || IsNil(o.RunProcess) { + var ret RunProcess + return ret + } + return *o.RunProcess +} + +// GetRunProcessOk returns a tuple with the RunProcess field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *SyntheticData) GetRunProcessOk() (*RunProcess, bool) { + if o == nil || IsNil(o.RunProcess) { + return nil, false + } + return o.RunProcess, true +} + +// HasRunProcess returns a boolean if a field has been set. +func (o *SyntheticData) HasRunProcess() bool { + if o != nil && !IsNil(o.RunProcess) { + return true + } + + return false +} + +// SetRunProcess gets a reference to the given RunProcess and assigns it to the RunProcess field. +func (o *SyntheticData) SetRunProcess(v RunProcess) { + o.RunProcess = &v +} + func (o SyntheticData) MarshalJSON() ([]byte, error) { toSerialize, err := o.ToMap() if err != nil { @@ -381,9 +388,8 @@ func (o SyntheticData) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} toSerialize["id"] = o.Id toSerialize["jobId"] = o.JobId - toSerialize["sessionRunId"] = o.SessionRunId - toSerialize["sessionRunName"] = o.SessionRunName - toSerialize["epoch"] = o.Epoch + toSerialize["versionId"] = o.VersionId + toSerialize["versionName"] = o.VersionName toSerialize["createdAt"] = o.CreatedAt toSerialize["createdBy"] = o.CreatedBy if !IsNil(o.NextTrialsFileUrl) { @@ -395,6 +401,9 @@ func (o SyntheticData) ToMap() (map[string]interface{}, error) { toSerialize["status"] = o.Status toSerialize["sources"] = o.Sources toSerialize["targetFilters"] = o.TargetFilters + if !IsNil(o.RunProcess) { + toSerialize["runProcess"] = o.RunProcess + } for key, value := range o.AdditionalProperties { toSerialize[key] = value @@ -410,9 +419,8 @@ func (o *SyntheticData) UnmarshalJSON(data []byte) (err error) { requiredProperties := []string{ "id", "jobId", - "sessionRunId", - "sessionRunName", - "epoch", + "versionId", + "versionName", "createdAt", "createdBy", "status", @@ -449,9 +457,8 @@ func (o *SyntheticData) UnmarshalJSON(data []byte) (err error) { if err = json.Unmarshal(data, &additionalProperties); err == nil { delete(additionalProperties, "id") delete(additionalProperties, "jobId") - delete(additionalProperties, "sessionRunId") - delete(additionalProperties, "sessionRunName") - delete(additionalProperties, "epoch") + delete(additionalProperties, "versionId") + delete(additionalProperties, "versionName") delete(additionalProperties, "createdAt") delete(additionalProperties, "createdBy") delete(additionalProperties, "nextTrialsFileUrl") @@ -459,6 +466,7 @@ func (o *SyntheticData) UnmarshalJSON(data []byte) (err error) { delete(additionalProperties, "status") delete(additionalProperties, "sources") delete(additionalProperties, "targetFilters") + delete(additionalProperties, "runProcess") o.AdditionalProperties = additionalProperties } diff --git a/pkg/tensorleapapi/model_synthetic_data_job_params.go b/pkg/tensorleapapi/model_synthetic_data_job_params.go index 7e4151869..63c98141e 100644 --- a/pkg/tensorleapapi/model_synthetic_data_job_params.go +++ b/pkg/tensorleapapi/model_synthetic_data_job_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -20,12 +20,12 @@ var _ MappedNullable = &SyntheticDataJobParams{} // SyntheticDataJobParams struct for SyntheticDataJobParams type SyntheticDataJobParams struct { - Digest string `json:"digest"` - TargetFilters []ESFilter `json:"targetFilters"` - Sources []GenerateSyntheticDataParamsSourcesInner `json:"sources"` - FromEpoch float64 `json:"fromEpoch"` - SessionRunId string `json:"sessionRunId"` - Type string `json:"type"` + Digest string `json:"digest"` + TargetFilters []ESFilter `json:"targetFilters"` + Sources []SyntheticDataJobParamsSourcesInner `json:"sources"` + InferenceArtifactId string `json:"inferenceArtifactId"` + VersionId string `json:"versionId"` + Type string `json:"type"` AdditionalProperties map[string]interface{} } @@ -35,13 +35,13 @@ type _SyntheticDataJobParams SyntheticDataJobParams // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewSyntheticDataJobParams(digest string, targetFilters []ESFilter, sources []GenerateSyntheticDataParamsSourcesInner, fromEpoch float64, sessionRunId string, type_ string) *SyntheticDataJobParams { +func NewSyntheticDataJobParams(digest string, targetFilters []ESFilter, sources []SyntheticDataJobParamsSourcesInner, inferenceArtifactId string, versionId string, type_ string) *SyntheticDataJobParams { this := SyntheticDataJobParams{} this.Digest = digest this.TargetFilters = targetFilters this.Sources = sources - this.FromEpoch = fromEpoch - this.SessionRunId = sessionRunId + this.InferenceArtifactId = inferenceArtifactId + this.VersionId = versionId this.Type = type_ return &this } @@ -103,9 +103,9 @@ func (o *SyntheticDataJobParams) SetTargetFilters(v []ESFilter) { } // GetSources returns the Sources field value -func (o *SyntheticDataJobParams) GetSources() []GenerateSyntheticDataParamsSourcesInner { +func (o *SyntheticDataJobParams) GetSources() []SyntheticDataJobParamsSourcesInner { if o == nil { - var ret []GenerateSyntheticDataParamsSourcesInner + var ret []SyntheticDataJobParamsSourcesInner return ret } @@ -114,7 +114,7 @@ func (o *SyntheticDataJobParams) GetSources() []GenerateSyntheticDataParamsSourc // GetSourcesOk returns a tuple with the Sources field value // and a boolean to check if the value has been set. -func (o *SyntheticDataJobParams) GetSourcesOk() ([]GenerateSyntheticDataParamsSourcesInner, bool) { +func (o *SyntheticDataJobParams) GetSourcesOk() ([]SyntheticDataJobParamsSourcesInner, bool) { if o == nil { return nil, false } @@ -122,56 +122,56 @@ func (o *SyntheticDataJobParams) GetSourcesOk() ([]GenerateSyntheticDataParamsSo } // SetSources sets field value -func (o *SyntheticDataJobParams) SetSources(v []GenerateSyntheticDataParamsSourcesInner) { +func (o *SyntheticDataJobParams) SetSources(v []SyntheticDataJobParamsSourcesInner) { o.Sources = v } -// GetFromEpoch returns the FromEpoch field value -func (o *SyntheticDataJobParams) GetFromEpoch() float64 { +// GetInferenceArtifactId returns the InferenceArtifactId field value +func (o *SyntheticDataJobParams) GetInferenceArtifactId() string { if o == nil { - var ret float64 + var ret string return ret } - return o.FromEpoch + return o.InferenceArtifactId } -// GetFromEpochOk returns a tuple with the FromEpoch field value +// GetInferenceArtifactIdOk returns a tuple with the InferenceArtifactId field value // and a boolean to check if the value has been set. -func (o *SyntheticDataJobParams) GetFromEpochOk() (*float64, bool) { +func (o *SyntheticDataJobParams) GetInferenceArtifactIdOk() (*string, bool) { if o == nil { return nil, false } - return &o.FromEpoch, true + return &o.InferenceArtifactId, true } -// SetFromEpoch sets field value -func (o *SyntheticDataJobParams) SetFromEpoch(v float64) { - o.FromEpoch = v +// SetInferenceArtifactId sets field value +func (o *SyntheticDataJobParams) SetInferenceArtifactId(v string) { + o.InferenceArtifactId = v } -// GetSessionRunId returns the SessionRunId field value -func (o *SyntheticDataJobParams) GetSessionRunId() string { +// GetVersionId returns the VersionId field value +func (o *SyntheticDataJobParams) GetVersionId() string { if o == nil { var ret string return ret } - return o.SessionRunId + return o.VersionId } -// GetSessionRunIdOk returns a tuple with the SessionRunId field value +// GetVersionIdOk returns a tuple with the VersionId field value // and a boolean to check if the value has been set. -func (o *SyntheticDataJobParams) GetSessionRunIdOk() (*string, bool) { +func (o *SyntheticDataJobParams) GetVersionIdOk() (*string, bool) { if o == nil { return nil, false } - return &o.SessionRunId, true + return &o.VersionId, true } -// SetSessionRunId sets field value -func (o *SyntheticDataJobParams) SetSessionRunId(v string) { - o.SessionRunId = v +// SetVersionId sets field value +func (o *SyntheticDataJobParams) SetVersionId(v string) { + o.VersionId = v } // GetType returns the Type field value @@ -211,8 +211,8 @@ func (o SyntheticDataJobParams) ToMap() (map[string]interface{}, error) { toSerialize["digest"] = o.Digest toSerialize["targetFilters"] = o.TargetFilters toSerialize["sources"] = o.Sources - toSerialize["fromEpoch"] = o.FromEpoch - toSerialize["sessionRunId"] = o.SessionRunId + toSerialize["inferenceArtifactId"] = o.InferenceArtifactId + toSerialize["versionId"] = o.VersionId toSerialize["type"] = o.Type for key, value := range o.AdditionalProperties { @@ -230,8 +230,8 @@ func (o *SyntheticDataJobParams) UnmarshalJSON(data []byte) (err error) { "digest", "targetFilters", "sources", - "fromEpoch", - "sessionRunId", + "inferenceArtifactId", + "versionId", "type", } @@ -265,8 +265,8 @@ func (o *SyntheticDataJobParams) UnmarshalJSON(data []byte) (err error) { delete(additionalProperties, "digest") delete(additionalProperties, "targetFilters") delete(additionalProperties, "sources") - delete(additionalProperties, "fromEpoch") - delete(additionalProperties, "sessionRunId") + delete(additionalProperties, "inferenceArtifactId") + delete(additionalProperties, "versionId") delete(additionalProperties, "type") o.AdditionalProperties = additionalProperties } diff --git a/pkg/tensorleapapi/model_generate_synthetic_data_params_sources_inner.go b/pkg/tensorleapapi/model_synthetic_data_job_params_sources_inner.go similarity index 51% rename from pkg/tensorleapapi/model_generate_synthetic_data_params_sources_inner.go rename to pkg/tensorleapapi/model_synthetic_data_job_params_sources_inner.go index df81b0b20..694640889 100644 --- a/pkg/tensorleapapi/model_generate_synthetic_data_params_sources_inner.go +++ b/pkg/tensorleapapi/model_synthetic_data_job_params_sources_inner.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -15,39 +15,39 @@ import ( "fmt" ) -// checks if the GenerateSyntheticDataParamsSourcesInner type satisfies the MappedNullable interface at compile time -var _ MappedNullable = &GenerateSyntheticDataParamsSourcesInner{} +// checks if the SyntheticDataJobParamsSourcesInner type satisfies the MappedNullable interface at compile time +var _ MappedNullable = &SyntheticDataJobParamsSourcesInner{} -// GenerateSyntheticDataParamsSourcesInner struct for GenerateSyntheticDataParamsSourcesInner -type GenerateSyntheticDataParamsSourcesInner struct { +// SyntheticDataJobParamsSourcesInner struct for SyntheticDataJobParamsSourcesInner +type SyntheticDataJobParamsSourcesInner struct { MetadataKeys []string `json:"metadataKeys"` Filters []ESFilter `json:"filters"` AdditionalProperties map[string]interface{} } -type _GenerateSyntheticDataParamsSourcesInner GenerateSyntheticDataParamsSourcesInner +type _SyntheticDataJobParamsSourcesInner SyntheticDataJobParamsSourcesInner -// NewGenerateSyntheticDataParamsSourcesInner instantiates a new GenerateSyntheticDataParamsSourcesInner object +// NewSyntheticDataJobParamsSourcesInner instantiates a new SyntheticDataJobParamsSourcesInner object // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewGenerateSyntheticDataParamsSourcesInner(metadataKeys []string, filters []ESFilter) *GenerateSyntheticDataParamsSourcesInner { - this := GenerateSyntheticDataParamsSourcesInner{} +func NewSyntheticDataJobParamsSourcesInner(metadataKeys []string, filters []ESFilter) *SyntheticDataJobParamsSourcesInner { + this := SyntheticDataJobParamsSourcesInner{} this.MetadataKeys = metadataKeys this.Filters = filters return &this } -// NewGenerateSyntheticDataParamsSourcesInnerWithDefaults instantiates a new GenerateSyntheticDataParamsSourcesInner object +// NewSyntheticDataJobParamsSourcesInnerWithDefaults instantiates a new SyntheticDataJobParamsSourcesInner object // This constructor will only assign default values to properties that have it defined, // but it doesn't guarantee that properties required by API are set -func NewGenerateSyntheticDataParamsSourcesInnerWithDefaults() *GenerateSyntheticDataParamsSourcesInner { - this := GenerateSyntheticDataParamsSourcesInner{} +func NewSyntheticDataJobParamsSourcesInnerWithDefaults() *SyntheticDataJobParamsSourcesInner { + this := SyntheticDataJobParamsSourcesInner{} return &this } // GetMetadataKeys returns the MetadataKeys field value -func (o *GenerateSyntheticDataParamsSourcesInner) GetMetadataKeys() []string { +func (o *SyntheticDataJobParamsSourcesInner) GetMetadataKeys() []string { if o == nil { var ret []string return ret @@ -58,7 +58,7 @@ func (o *GenerateSyntheticDataParamsSourcesInner) GetMetadataKeys() []string { // GetMetadataKeysOk returns a tuple with the MetadataKeys field value // and a boolean to check if the value has been set. -func (o *GenerateSyntheticDataParamsSourcesInner) GetMetadataKeysOk() ([]string, bool) { +func (o *SyntheticDataJobParamsSourcesInner) GetMetadataKeysOk() ([]string, bool) { if o == nil { return nil, false } @@ -66,12 +66,12 @@ func (o *GenerateSyntheticDataParamsSourcesInner) GetMetadataKeysOk() ([]string, } // SetMetadataKeys sets field value -func (o *GenerateSyntheticDataParamsSourcesInner) SetMetadataKeys(v []string) { +func (o *SyntheticDataJobParamsSourcesInner) SetMetadataKeys(v []string) { o.MetadataKeys = v } // GetFilters returns the Filters field value -func (o *GenerateSyntheticDataParamsSourcesInner) GetFilters() []ESFilter { +func (o *SyntheticDataJobParamsSourcesInner) GetFilters() []ESFilter { if o == nil { var ret []ESFilter return ret @@ -82,7 +82,7 @@ func (o *GenerateSyntheticDataParamsSourcesInner) GetFilters() []ESFilter { // GetFiltersOk returns a tuple with the Filters field value // and a boolean to check if the value has been set. -func (o *GenerateSyntheticDataParamsSourcesInner) GetFiltersOk() ([]ESFilter, bool) { +func (o *SyntheticDataJobParamsSourcesInner) GetFiltersOk() ([]ESFilter, bool) { if o == nil { return nil, false } @@ -90,11 +90,11 @@ func (o *GenerateSyntheticDataParamsSourcesInner) GetFiltersOk() ([]ESFilter, bo } // SetFilters sets field value -func (o *GenerateSyntheticDataParamsSourcesInner) SetFilters(v []ESFilter) { +func (o *SyntheticDataJobParamsSourcesInner) SetFilters(v []ESFilter) { o.Filters = v } -func (o GenerateSyntheticDataParamsSourcesInner) MarshalJSON() ([]byte, error) { +func (o SyntheticDataJobParamsSourcesInner) MarshalJSON() ([]byte, error) { toSerialize, err := o.ToMap() if err != nil { return []byte{}, err @@ -102,7 +102,7 @@ func (o GenerateSyntheticDataParamsSourcesInner) MarshalJSON() ([]byte, error) { return json.Marshal(toSerialize) } -func (o GenerateSyntheticDataParamsSourcesInner) ToMap() (map[string]interface{}, error) { +func (o SyntheticDataJobParamsSourcesInner) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} toSerialize["metadataKeys"] = o.MetadataKeys toSerialize["filters"] = o.Filters @@ -114,7 +114,7 @@ func (o GenerateSyntheticDataParamsSourcesInner) ToMap() (map[string]interface{} return toSerialize, nil } -func (o *GenerateSyntheticDataParamsSourcesInner) UnmarshalJSON(data []byte) (err error) { +func (o *SyntheticDataJobParamsSourcesInner) UnmarshalJSON(data []byte) (err error) { // This validates that all required properties are included in the JSON object // by unmarshalling the object into a generic map with string keys and checking // that every required field exists as a key in the generic map. @@ -137,15 +137,15 @@ func (o *GenerateSyntheticDataParamsSourcesInner) UnmarshalJSON(data []byte) (er } } - varGenerateSyntheticDataParamsSourcesInner := _GenerateSyntheticDataParamsSourcesInner{} + varSyntheticDataJobParamsSourcesInner := _SyntheticDataJobParamsSourcesInner{} - err = json.Unmarshal(data, &varGenerateSyntheticDataParamsSourcesInner) + err = json.Unmarshal(data, &varSyntheticDataJobParamsSourcesInner) if err != nil { return err } - *o = GenerateSyntheticDataParamsSourcesInner(varGenerateSyntheticDataParamsSourcesInner) + *o = SyntheticDataJobParamsSourcesInner(varSyntheticDataJobParamsSourcesInner) additionalProperties := make(map[string]interface{}) @@ -158,38 +158,38 @@ func (o *GenerateSyntheticDataParamsSourcesInner) UnmarshalJSON(data []byte) (er return err } -type NullableGenerateSyntheticDataParamsSourcesInner struct { - value *GenerateSyntheticDataParamsSourcesInner +type NullableSyntheticDataJobParamsSourcesInner struct { + value *SyntheticDataJobParamsSourcesInner isSet bool } -func (v NullableGenerateSyntheticDataParamsSourcesInner) Get() *GenerateSyntheticDataParamsSourcesInner { +func (v NullableSyntheticDataJobParamsSourcesInner) Get() *SyntheticDataJobParamsSourcesInner { return v.value } -func (v *NullableGenerateSyntheticDataParamsSourcesInner) Set(val *GenerateSyntheticDataParamsSourcesInner) { +func (v *NullableSyntheticDataJobParamsSourcesInner) Set(val *SyntheticDataJobParamsSourcesInner) { v.value = val v.isSet = true } -func (v NullableGenerateSyntheticDataParamsSourcesInner) IsSet() bool { +func (v NullableSyntheticDataJobParamsSourcesInner) IsSet() bool { return v.isSet } -func (v *NullableGenerateSyntheticDataParamsSourcesInner) Unset() { +func (v *NullableSyntheticDataJobParamsSourcesInner) Unset() { v.value = nil v.isSet = false } -func NewNullableGenerateSyntheticDataParamsSourcesInner(val *GenerateSyntheticDataParamsSourcesInner) *NullableGenerateSyntheticDataParamsSourcesInner { - return &NullableGenerateSyntheticDataParamsSourcesInner{value: val, isSet: true} +func NewNullableSyntheticDataJobParamsSourcesInner(val *SyntheticDataJobParamsSourcesInner) *NullableSyntheticDataJobParamsSourcesInner { + return &NullableSyntheticDataJobParamsSourcesInner{value: val, isSet: true} } -func (v NullableGenerateSyntheticDataParamsSourcesInner) MarshalJSON() ([]byte, error) { +func (v NullableSyntheticDataJobParamsSourcesInner) MarshalJSON() ([]byte, error) { return json.Marshal(v.value) } -func (v *NullableGenerateSyntheticDataParamsSourcesInner) UnmarshalJSON(src []byte) error { +func (v *NullableSyntheticDataJobParamsSourcesInner) UnmarshalJSON(src []byte) error { v.isSet = true return json.Unmarshal(src, &v.value) } diff --git a/pkg/tensorleapapi/model_synthetic_data_response.go b/pkg/tensorleapapi/model_synthetic_data_response.go index 4cba491bb..a3bc7deb4 100644 --- a/pkg/tensorleapapi/model_synthetic_data_response.go +++ b/pkg/tensorleapapi/model_synthetic_data_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_tag_model_request.go b/pkg/tensorleapapi/model_tag_model_request.go index 17d00e314..0036833f8 100644 --- a/pkg/tensorleapapi/model_tag_model_request.go +++ b/pkg/tensorleapapi/model_tag_model_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_terminate_all_jobs_params.go b/pkg/tensorleapapi/model_terminate_all_jobs_params.go index 5d3ebd7db..3da15337a 100644 --- a/pkg/tensorleapapi/model_terminate_all_jobs_params.go +++ b/pkg/tensorleapapi/model_terminate_all_jobs_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_terminate_all_jobs_response.go b/pkg/tensorleapapi/model_terminate_all_jobs_response.go index 9745283e6..e70c35ecd 100644 --- a/pkg/tensorleapapi/model_terminate_all_jobs_response.go +++ b/pkg/tensorleapapi/model_terminate_all_jobs_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_terminate_job_params.go b/pkg/tensorleapapi/model_terminate_job_params.go index a1396019e..36b15a860 100644 --- a/pkg/tensorleapapi/model_terminate_job_params.go +++ b/pkg/tensorleapapi/model_terminate_job_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_terminate_job_response.go b/pkg/tensorleapapi/model_terminate_job_response.go index 0c087988b..96cb89850 100644 --- a/pkg/tensorleapapi/model_terminate_job_response.go +++ b/pkg/tensorleapapi/model_terminate_job_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_test_filter_operator_type.go b/pkg/tensorleapapi/model_test_filter_operator_type.go index 735bbdd03..368ed23c1 100644 --- a/pkg/tensorleapapi/model_test_filter_operator_type.go +++ b/pkg/tensorleapapi/model_test_filter_operator_type.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_test_status.go b/pkg/tensorleapapi/model_test_status.go index 4c3fd7e76..861c566e3 100644 --- a/pkg/tensorleapapi/model_test_status.go +++ b/pkg/tensorleapapi/model_test_status.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_text_data.go b/pkg/tensorleapapi/model_text_data.go index 45e798b07..b0b3bfaf7 100644 --- a/pkg/tensorleapapi/model_text_data.go +++ b/pkg/tensorleapapi/model_text_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_text_viz.go b/pkg/tensorleapapi/model_text_viz.go index ebdd8a8c8..138cba79d 100644 --- a/pkg/tensorleapapi/model_text_viz.go +++ b/pkg/tensorleapapi/model_text_viz.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_training_params.go b/pkg/tensorleapapi/model_training_params.go deleted file mode 100644 index b7f0850d5..000000000 --- a/pkg/tensorleapapi/model_training_params.go +++ /dev/null @@ -1,232 +0,0 @@ -/* -node-server - -No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - -API version: 11.0.7 -*/ - -// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. - -package tensorleapapi - -import ( - "encoding/json" - "fmt" -) - -// checks if the TrainingParams type satisfies the MappedNullable interface at compile time -var _ MappedNullable = &TrainingParams{} - -// TrainingParams struct for TrainingParams -type TrainingParams struct { - Epochs float64 `json:"epochs"` - BatchSize float64 `json:"batch_size"` - EarlyStopParams *EarlyStopParams `json:"early_stop_params,omitempty"` - AdditionalProperties map[string]interface{} -} - -type _TrainingParams TrainingParams - -// NewTrainingParams instantiates a new TrainingParams object -// This constructor will assign default values to properties that have it defined, -// and makes sure properties required by API are set, but the set of arguments -// will change when the set of required properties is changed -func NewTrainingParams(epochs float64, batchSize float64) *TrainingParams { - this := TrainingParams{} - this.Epochs = epochs - this.BatchSize = batchSize - return &this -} - -// NewTrainingParamsWithDefaults instantiates a new TrainingParams object -// This constructor will only assign default values to properties that have it defined, -// but it doesn't guarantee that properties required by API are set -func NewTrainingParamsWithDefaults() *TrainingParams { - this := TrainingParams{} - return &this -} - -// GetEpochs returns the Epochs field value -func (o *TrainingParams) GetEpochs() float64 { - if o == nil { - var ret float64 - return ret - } - - return o.Epochs -} - -// GetEpochsOk returns a tuple with the Epochs field value -// and a boolean to check if the value has been set. -func (o *TrainingParams) GetEpochsOk() (*float64, bool) { - if o == nil { - return nil, false - } - return &o.Epochs, true -} - -// SetEpochs sets field value -func (o *TrainingParams) SetEpochs(v float64) { - o.Epochs = v -} - -// GetBatchSize returns the BatchSize field value -func (o *TrainingParams) GetBatchSize() float64 { - if o == nil { - var ret float64 - return ret - } - - return o.BatchSize -} - -// GetBatchSizeOk returns a tuple with the BatchSize field value -// and a boolean to check if the value has been set. -func (o *TrainingParams) GetBatchSizeOk() (*float64, bool) { - if o == nil { - return nil, false - } - return &o.BatchSize, true -} - -// SetBatchSize sets field value -func (o *TrainingParams) SetBatchSize(v float64) { - o.BatchSize = v -} - -// GetEarlyStopParams returns the EarlyStopParams field value if set, zero value otherwise. -func (o *TrainingParams) GetEarlyStopParams() EarlyStopParams { - if o == nil || IsNil(o.EarlyStopParams) { - var ret EarlyStopParams - return ret - } - return *o.EarlyStopParams -} - -// GetEarlyStopParamsOk returns a tuple with the EarlyStopParams field value if set, nil otherwise -// and a boolean to check if the value has been set. -func (o *TrainingParams) GetEarlyStopParamsOk() (*EarlyStopParams, bool) { - if o == nil || IsNil(o.EarlyStopParams) { - return nil, false - } - return o.EarlyStopParams, true -} - -// HasEarlyStopParams returns a boolean if a field has been set. -func (o *TrainingParams) HasEarlyStopParams() bool { - if o != nil && !IsNil(o.EarlyStopParams) { - return true - } - - return false -} - -// SetEarlyStopParams gets a reference to the given EarlyStopParams and assigns it to the EarlyStopParams field. -func (o *TrainingParams) SetEarlyStopParams(v EarlyStopParams) { - o.EarlyStopParams = &v -} - -func (o TrainingParams) MarshalJSON() ([]byte, error) { - toSerialize, err := o.ToMap() - if err != nil { - return []byte{}, err - } - return json.Marshal(toSerialize) -} - -func (o TrainingParams) ToMap() (map[string]interface{}, error) { - toSerialize := map[string]interface{}{} - toSerialize["epochs"] = o.Epochs - toSerialize["batch_size"] = o.BatchSize - if !IsNil(o.EarlyStopParams) { - toSerialize["early_stop_params"] = o.EarlyStopParams - } - - for key, value := range o.AdditionalProperties { - toSerialize[key] = value - } - - return toSerialize, nil -} - -func (o *TrainingParams) UnmarshalJSON(data []byte) (err error) { - // This validates that all required properties are included in the JSON object - // by unmarshalling the object into a generic map with string keys and checking - // that every required field exists as a key in the generic map. - requiredProperties := []string{ - "epochs", - "batch_size", - } - - allProperties := make(map[string]interface{}) - - err = json.Unmarshal(data, &allProperties) - - if err != nil { - return err - } - - for _, requiredProperty := range requiredProperties { - if _, exists := allProperties[requiredProperty]; !exists { - return fmt.Errorf("no value given for required property %v", requiredProperty) - } - } - - varTrainingParams := _TrainingParams{} - - err = json.Unmarshal(data, &varTrainingParams) - - if err != nil { - return err - } - - *o = TrainingParams(varTrainingParams) - - additionalProperties := make(map[string]interface{}) - - if err = json.Unmarshal(data, &additionalProperties); err == nil { - delete(additionalProperties, "epochs") - delete(additionalProperties, "batch_size") - delete(additionalProperties, "early_stop_params") - o.AdditionalProperties = additionalProperties - } - - return err -} - -type NullableTrainingParams struct { - value *TrainingParams - isSet bool -} - -func (v NullableTrainingParams) Get() *TrainingParams { - return v.value -} - -func (v *NullableTrainingParams) Set(val *TrainingParams) { - v.value = val - v.isSet = true -} - -func (v NullableTrainingParams) IsSet() bool { - return v.isSet -} - -func (v *NullableTrainingParams) Unset() { - v.value = nil - v.isSet = false -} - -func NewNullableTrainingParams(val *TrainingParams) *NullableTrainingParams { - return &NullableTrainingParams{value: val, isSet: true} -} - -func (v NullableTrainingParams) MarshalJSON() ([]byte, error) { - return json.Marshal(v.value) -} - -func (v *NullableTrainingParams) UnmarshalJSON(src []byte) error { - v.isSet = true - return json.Unmarshal(src, &v.value) -} diff --git a/pkg/tensorleapapi/model_trash_secret_manager_params.go b/pkg/tensorleapapi/model_trash_secret_manager_params.go index 0e6c408a1..9d76f0256 100644 --- a/pkg/tensorleapapi/model_trash_secret_manager_params.go +++ b/pkg/tensorleapapi/model_trash_secret_manager_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_trash_secret_manager_response.go b/pkg/tensorleapapi/model_trash_secret_manager_response.go index a88d3dc0d..fe9e7371d 100644 --- a/pkg/tensorleapapi/model_trash_secret_manager_response.go +++ b/pkg/tensorleapapi/model_trash_secret_manager_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_under_representation_insight.go b/pkg/tensorleapapi/model_under_representation_insight.go index fe026f062..cb5cd6eb5 100644 --- a/pkg/tensorleapapi/model_under_representation_insight.go +++ b/pkg/tensorleapapi/model_under_representation_insight.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -35,6 +35,7 @@ type UnderRepresentationInsight struct { AutomaticTests []InsightAutomaticTest `json:"automatic_tests,omitempty"` AutoGenerated bool `json:"auto_generated"` EsFiltersUsedInAnalysis []ESFilter `json:"es_filters_used_in_analysis,omitempty"` + LatentSpace *string `json:"latent_space,omitempty"` UnderRepresentationDataset DataStateType `json:"under_representation_dataset"` UnderRepresentationNSamples float64 `json:"under_representation_n_samples"` OverRepresentationDataset DataStateType `json:"over_representation_dataset"` @@ -475,6 +476,38 @@ func (o *UnderRepresentationInsight) SetEsFiltersUsedInAnalysis(v []ESFilter) { o.EsFiltersUsedInAnalysis = v } +// GetLatentSpace returns the LatentSpace field value if set, zero value otherwise. +func (o *UnderRepresentationInsight) GetLatentSpace() string { + if o == nil || IsNil(o.LatentSpace) { + var ret string + return ret + } + return *o.LatentSpace +} + +// GetLatentSpaceOk returns a tuple with the LatentSpace field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *UnderRepresentationInsight) GetLatentSpaceOk() (*string, bool) { + if o == nil || IsNil(o.LatentSpace) { + return nil, false + } + return o.LatentSpace, true +} + +// HasLatentSpace returns a boolean if a field has been set. +func (o *UnderRepresentationInsight) HasLatentSpace() bool { + if o != nil && !IsNil(o.LatentSpace) { + return true + } + + return false +} + +// SetLatentSpace gets a reference to the given string and assigns it to the LatentSpace field. +func (o *UnderRepresentationInsight) SetLatentSpace(v string) { + o.LatentSpace = &v +} + // GetUnderRepresentationDataset returns the UnderRepresentationDataset field value func (o *UnderRepresentationInsight) GetUnderRepresentationDataset() DataStateType { if o == nil { @@ -606,6 +639,9 @@ func (o UnderRepresentationInsight) ToMap() (map[string]interface{}, error) { if !IsNil(o.EsFiltersUsedInAnalysis) { toSerialize["es_filters_used_in_analysis"] = o.EsFiltersUsedInAnalysis } + if !IsNil(o.LatentSpace) { + toSerialize["latent_space"] = o.LatentSpace + } toSerialize["under_representation_dataset"] = o.UnderRepresentationDataset toSerialize["under_representation_n_samples"] = o.UnderRepresentationNSamples toSerialize["over_representation_dataset"] = o.OverRepresentationDataset @@ -681,6 +717,7 @@ func (o *UnderRepresentationInsight) UnmarshalJSON(data []byte) (err error) { delete(additionalProperties, "automatic_tests") delete(additionalProperties, "auto_generated") delete(additionalProperties, "es_filters_used_in_analysis") + delete(additionalProperties, "latent_space") delete(additionalProperties, "under_representation_dataset") delete(additionalProperties, "under_representation_n_samples") delete(additionalProperties, "over_representation_dataset") diff --git a/pkg/tensorleapapi/model_update_dashboard_params.go b/pkg/tensorleapapi/model_update_dashboard_params.go index bb2bb9ad4..ea7c52e6f 100644 --- a/pkg/tensorleapapi/model_update_dashboard_params.go +++ b/pkg/tensorleapapi/model_update_dashboard_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_update_issue_params.go b/pkg/tensorleapapi/model_update_issue_params.go index 9f9c745a6..456fc305c 100644 --- a/pkg/tensorleapapi/model_update_issue_params.go +++ b/pkg/tensorleapapi/model_update_issue_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_update_project_meta_request.go b/pkg/tensorleapapi/model_update_project_meta_request.go index cf8e6fd44..bd164ba1d 100644 --- a/pkg/tensorleapapi/model_update_project_meta_request.go +++ b/pkg/tensorleapapi/model_update_project_meta_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_update_sample_collection_params.go b/pkg/tensorleapapi/model_update_sample_collection_params.go index ac53ba8aa..dbd94ad10 100644 --- a/pkg/tensorleapapi/model_update_sample_collection_params.go +++ b/pkg/tensorleapapi/model_update_sample_collection_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_update_secret_manager_params.go b/pkg/tensorleapapi/model_update_secret_manager_params.go index e92c39dc6..40264b223 100644 --- a/pkg/tensorleapapi/model_update_secret_manager_params.go +++ b/pkg/tensorleapapi/model_update_secret_manager_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_update_secret_manager_response.go b/pkg/tensorleapapi/model_update_secret_manager_response.go index 0de4d2096..7b41c8700 100644 --- a/pkg/tensorleapapi/model_update_secret_manager_response.go +++ b/pkg/tensorleapapi/model_update_secret_manager_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_update_session_name_params.go b/pkg/tensorleapapi/model_update_session_name_params.go deleted file mode 100644 index 7b4a9734e..000000000 --- a/pkg/tensorleapapi/model_update_session_name_params.go +++ /dev/null @@ -1,224 +0,0 @@ -/* -node-server - -No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - -API version: 11.0.7 -*/ - -// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. - -package tensorleapapi - -import ( - "encoding/json" - "fmt" -) - -// checks if the UpdateSessionNameParams type satisfies the MappedNullable interface at compile time -var _ MappedNullable = &UpdateSessionNameParams{} - -// UpdateSessionNameParams struct for UpdateSessionNameParams -type UpdateSessionNameParams struct { - Cid string `json:"cid"` - ProjectId string `json:"projectId"` - Name string `json:"name"` - AdditionalProperties map[string]interface{} -} - -type _UpdateSessionNameParams UpdateSessionNameParams - -// NewUpdateSessionNameParams instantiates a new UpdateSessionNameParams object -// This constructor will assign default values to properties that have it defined, -// and makes sure properties required by API are set, but the set of arguments -// will change when the set of required properties is changed -func NewUpdateSessionNameParams(cid string, projectId string, name string) *UpdateSessionNameParams { - this := UpdateSessionNameParams{} - this.Cid = cid - this.ProjectId = projectId - this.Name = name - return &this -} - -// NewUpdateSessionNameParamsWithDefaults instantiates a new UpdateSessionNameParams object -// This constructor will only assign default values to properties that have it defined, -// but it doesn't guarantee that properties required by API are set -func NewUpdateSessionNameParamsWithDefaults() *UpdateSessionNameParams { - this := UpdateSessionNameParams{} - return &this -} - -// GetCid returns the Cid field value -func (o *UpdateSessionNameParams) GetCid() string { - if o == nil { - var ret string - return ret - } - - return o.Cid -} - -// GetCidOk returns a tuple with the Cid field value -// and a boolean to check if the value has been set. -func (o *UpdateSessionNameParams) GetCidOk() (*string, bool) { - if o == nil { - return nil, false - } - return &o.Cid, true -} - -// SetCid sets field value -func (o *UpdateSessionNameParams) SetCid(v string) { - o.Cid = v -} - -// GetProjectId returns the ProjectId field value -func (o *UpdateSessionNameParams) GetProjectId() string { - if o == nil { - var ret string - return ret - } - - return o.ProjectId -} - -// GetProjectIdOk returns a tuple with the ProjectId field value -// and a boolean to check if the value has been set. -func (o *UpdateSessionNameParams) GetProjectIdOk() (*string, bool) { - if o == nil { - return nil, false - } - return &o.ProjectId, true -} - -// SetProjectId sets field value -func (o *UpdateSessionNameParams) SetProjectId(v string) { - o.ProjectId = v -} - -// GetName returns the Name field value -func (o *UpdateSessionNameParams) GetName() string { - if o == nil { - var ret string - return ret - } - - return o.Name -} - -// GetNameOk returns a tuple with the Name field value -// and a boolean to check if the value has been set. -func (o *UpdateSessionNameParams) GetNameOk() (*string, bool) { - if o == nil { - return nil, false - } - return &o.Name, true -} - -// SetName sets field value -func (o *UpdateSessionNameParams) SetName(v string) { - o.Name = v -} - -func (o UpdateSessionNameParams) MarshalJSON() ([]byte, error) { - toSerialize, err := o.ToMap() - if err != nil { - return []byte{}, err - } - return json.Marshal(toSerialize) -} - -func (o UpdateSessionNameParams) ToMap() (map[string]interface{}, error) { - toSerialize := map[string]interface{}{} - toSerialize["cid"] = o.Cid - toSerialize["projectId"] = o.ProjectId - toSerialize["name"] = o.Name - - for key, value := range o.AdditionalProperties { - toSerialize[key] = value - } - - return toSerialize, nil -} - -func (o *UpdateSessionNameParams) UnmarshalJSON(data []byte) (err error) { - // This validates that all required properties are included in the JSON object - // by unmarshalling the object into a generic map with string keys and checking - // that every required field exists as a key in the generic map. - requiredProperties := []string{ - "cid", - "projectId", - "name", - } - - allProperties := make(map[string]interface{}) - - err = json.Unmarshal(data, &allProperties) - - if err != nil { - return err - } - - for _, requiredProperty := range requiredProperties { - if _, exists := allProperties[requiredProperty]; !exists { - return fmt.Errorf("no value given for required property %v", requiredProperty) - } - } - - varUpdateSessionNameParams := _UpdateSessionNameParams{} - - err = json.Unmarshal(data, &varUpdateSessionNameParams) - - if err != nil { - return err - } - - *o = UpdateSessionNameParams(varUpdateSessionNameParams) - - additionalProperties := make(map[string]interface{}) - - if err = json.Unmarshal(data, &additionalProperties); err == nil { - delete(additionalProperties, "cid") - delete(additionalProperties, "projectId") - delete(additionalProperties, "name") - o.AdditionalProperties = additionalProperties - } - - return err -} - -type NullableUpdateSessionNameParams struct { - value *UpdateSessionNameParams - isSet bool -} - -func (v NullableUpdateSessionNameParams) Get() *UpdateSessionNameParams { - return v.value -} - -func (v *NullableUpdateSessionNameParams) Set(val *UpdateSessionNameParams) { - v.value = val - v.isSet = true -} - -func (v NullableUpdateSessionNameParams) IsSet() bool { - return v.isSet -} - -func (v *NullableUpdateSessionNameParams) Unset() { - v.value = nil - v.isSet = false -} - -func NewNullableUpdateSessionNameParams(val *UpdateSessionNameParams) *NullableUpdateSessionNameParams { - return &NullableUpdateSessionNameParams{value: val, isSet: true} -} - -func (v NullableUpdateSessionNameParams) MarshalJSON() ([]byte, error) { - return json.Marshal(v.value) -} - -func (v *NullableUpdateSessionNameParams) UnmarshalJSON(src []byte) error { - v.isSet = true - return json.Unmarshal(src, &v.value) -} diff --git a/pkg/tensorleapapi/model_update_session_run_name_params.go b/pkg/tensorleapapi/model_update_session_run_name_params.go deleted file mode 100644 index 343bd57cd..000000000 --- a/pkg/tensorleapapi/model_update_session_run_name_params.go +++ /dev/null @@ -1,253 +0,0 @@ -/* -node-server - -No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - -API version: 11.0.7 -*/ - -// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. - -package tensorleapapi - -import ( - "encoding/json" - "fmt" -) - -// checks if the UpdateSessionRunNameParams type satisfies the MappedNullable interface at compile time -var _ MappedNullable = &UpdateSessionRunNameParams{} - -// UpdateSessionRunNameParams struct for UpdateSessionRunNameParams -type UpdateSessionRunNameParams struct { - Cid string `json:"cid"` - Name string `json:"name"` - Description string `json:"description"` - ProjectId string `json:"projectId"` - AdditionalProperties map[string]interface{} -} - -type _UpdateSessionRunNameParams UpdateSessionRunNameParams - -// NewUpdateSessionRunNameParams instantiates a new UpdateSessionRunNameParams object -// This constructor will assign default values to properties that have it defined, -// and makes sure properties required by API are set, but the set of arguments -// will change when the set of required properties is changed -func NewUpdateSessionRunNameParams(cid string, name string, description string, projectId string) *UpdateSessionRunNameParams { - this := UpdateSessionRunNameParams{} - this.Cid = cid - this.Name = name - this.Description = description - this.ProjectId = projectId - return &this -} - -// NewUpdateSessionRunNameParamsWithDefaults instantiates a new UpdateSessionRunNameParams object -// This constructor will only assign default values to properties that have it defined, -// but it doesn't guarantee that properties required by API are set -func NewUpdateSessionRunNameParamsWithDefaults() *UpdateSessionRunNameParams { - this := UpdateSessionRunNameParams{} - return &this -} - -// GetCid returns the Cid field value -func (o *UpdateSessionRunNameParams) GetCid() string { - if o == nil { - var ret string - return ret - } - - return o.Cid -} - -// GetCidOk returns a tuple with the Cid field value -// and a boolean to check if the value has been set. -func (o *UpdateSessionRunNameParams) GetCidOk() (*string, bool) { - if o == nil { - return nil, false - } - return &o.Cid, true -} - -// SetCid sets field value -func (o *UpdateSessionRunNameParams) SetCid(v string) { - o.Cid = v -} - -// GetName returns the Name field value -func (o *UpdateSessionRunNameParams) GetName() string { - if o == nil { - var ret string - return ret - } - - return o.Name -} - -// GetNameOk returns a tuple with the Name field value -// and a boolean to check if the value has been set. -func (o *UpdateSessionRunNameParams) GetNameOk() (*string, bool) { - if o == nil { - return nil, false - } - return &o.Name, true -} - -// SetName sets field value -func (o *UpdateSessionRunNameParams) SetName(v string) { - o.Name = v -} - -// GetDescription returns the Description field value -func (o *UpdateSessionRunNameParams) GetDescription() string { - if o == nil { - var ret string - return ret - } - - return o.Description -} - -// GetDescriptionOk returns a tuple with the Description field value -// and a boolean to check if the value has been set. -func (o *UpdateSessionRunNameParams) GetDescriptionOk() (*string, bool) { - if o == nil { - return nil, false - } - return &o.Description, true -} - -// SetDescription sets field value -func (o *UpdateSessionRunNameParams) SetDescription(v string) { - o.Description = v -} - -// GetProjectId returns the ProjectId field value -func (o *UpdateSessionRunNameParams) GetProjectId() string { - if o == nil { - var ret string - return ret - } - - return o.ProjectId -} - -// GetProjectIdOk returns a tuple with the ProjectId field value -// and a boolean to check if the value has been set. -func (o *UpdateSessionRunNameParams) GetProjectIdOk() (*string, bool) { - if o == nil { - return nil, false - } - return &o.ProjectId, true -} - -// SetProjectId sets field value -func (o *UpdateSessionRunNameParams) SetProjectId(v string) { - o.ProjectId = v -} - -func (o UpdateSessionRunNameParams) MarshalJSON() ([]byte, error) { - toSerialize, err := o.ToMap() - if err != nil { - return []byte{}, err - } - return json.Marshal(toSerialize) -} - -func (o UpdateSessionRunNameParams) ToMap() (map[string]interface{}, error) { - toSerialize := map[string]interface{}{} - toSerialize["cid"] = o.Cid - toSerialize["name"] = o.Name - toSerialize["description"] = o.Description - toSerialize["projectId"] = o.ProjectId - - for key, value := range o.AdditionalProperties { - toSerialize[key] = value - } - - return toSerialize, nil -} - -func (o *UpdateSessionRunNameParams) UnmarshalJSON(data []byte) (err error) { - // This validates that all required properties are included in the JSON object - // by unmarshalling the object into a generic map with string keys and checking - // that every required field exists as a key in the generic map. - requiredProperties := []string{ - "cid", - "name", - "description", - "projectId", - } - - allProperties := make(map[string]interface{}) - - err = json.Unmarshal(data, &allProperties) - - if err != nil { - return err - } - - for _, requiredProperty := range requiredProperties { - if _, exists := allProperties[requiredProperty]; !exists { - return fmt.Errorf("no value given for required property %v", requiredProperty) - } - } - - varUpdateSessionRunNameParams := _UpdateSessionRunNameParams{} - - err = json.Unmarshal(data, &varUpdateSessionRunNameParams) - - if err != nil { - return err - } - - *o = UpdateSessionRunNameParams(varUpdateSessionRunNameParams) - - additionalProperties := make(map[string]interface{}) - - if err = json.Unmarshal(data, &additionalProperties); err == nil { - delete(additionalProperties, "cid") - delete(additionalProperties, "name") - delete(additionalProperties, "description") - delete(additionalProperties, "projectId") - o.AdditionalProperties = additionalProperties - } - - return err -} - -type NullableUpdateSessionRunNameParams struct { - value *UpdateSessionRunNameParams - isSet bool -} - -func (v NullableUpdateSessionRunNameParams) Get() *UpdateSessionRunNameParams { - return v.value -} - -func (v *NullableUpdateSessionRunNameParams) Set(val *UpdateSessionRunNameParams) { - v.value = val - v.isSet = true -} - -func (v NullableUpdateSessionRunNameParams) IsSet() bool { - return v.isSet -} - -func (v *NullableUpdateSessionRunNameParams) Unset() { - v.value = nil - v.isSet = false -} - -func NewNullableUpdateSessionRunNameParams(val *UpdateSessionRunNameParams) *NullableUpdateSessionRunNameParams { - return &NullableUpdateSessionRunNameParams{value: val, isSet: true} -} - -func (v NullableUpdateSessionRunNameParams) MarshalJSON() ([]byte, error) { - return json.Marshal(v.value) -} - -func (v *NullableUpdateSessionRunNameParams) UnmarshalJSON(src []byte) error { - v.isSet = true - return json.Unmarshal(src, &v.value) -} diff --git a/pkg/tensorleapapi/model_update_session_test_request.go b/pkg/tensorleapapi/model_update_session_test_request.go index 9cf18a3d3..92d7425af 100644 --- a/pkg/tensorleapapi/model_update_session_test_request.go +++ b/pkg/tensorleapapi/model_update_session_test_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_update_team_public_name_request.go b/pkg/tensorleapapi/model_update_team_public_name_request.go index 1c4c82c74..4dadd72a3 100644 --- a/pkg/tensorleapapi/model_update_team_public_name_request.go +++ b/pkg/tensorleapapi/model_update_team_public_name_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_update_user_name_request.go b/pkg/tensorleapapi/model_update_user_name_request.go index 5108474f1..06fd05e95 100644 --- a/pkg/tensorleapapi/model_update_user_name_request.go +++ b/pkg/tensorleapapi/model_update_user_name_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_update_user_role_request.go b/pkg/tensorleapapi/model_update_user_role_request.go index a22d4371e..2f91ecdf0 100644 --- a/pkg/tensorleapapi/model_update_user_role_request.go +++ b/pkg/tensorleapapi/model_update_user_role_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_update_user_status_request.go b/pkg/tensorleapapi/model_update_user_status_request.go index b63986fe7..89e3867af 100644 --- a/pkg/tensorleapapi/model_update_user_status_request.go +++ b/pkg/tensorleapapi/model_update_user_status_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_update_user_team_request.go b/pkg/tensorleapapi/model_update_user_team_request.go index 049d28acb..e52146d04 100644 --- a/pkg/tensorleapapi/model_update_user_team_request.go +++ b/pkg/tensorleapapi/model_update_user_team_request.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_update_version_name_params.go b/pkg/tensorleapapi/model_update_version_name_params.go index f20ccaa6f..da0afd020 100644 --- a/pkg/tensorleapapi/model_update_version_name_params.go +++ b/pkg/tensorleapapi/model_update_version_name_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_update_version_params.go b/pkg/tensorleapapi/model_update_version_params.go index 1fe35a772..63a14242f 100644 --- a/pkg/tensorleapapi/model_update_version_params.go +++ b/pkg/tensorleapapi/model_update_version_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_update_version_response.go b/pkg/tensorleapapi/model_update_version_response.go index 1ec2febc2..fd11c1289 100644 --- a/pkg/tensorleapapi/model_update_version_response.go +++ b/pkg/tensorleapapi/model_update_version_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_upload_model_file_type.go b/pkg/tensorleapapi/model_upload_model_file_type.go index bad10f472..7c50d40e2 100644 --- a/pkg/tensorleapapi/model_upload_model_file_type.go +++ b/pkg/tensorleapapi/model_upload_model_file_type.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_upsert_state_params.go b/pkg/tensorleapapi/model_upsert_state_params.go index 50659b065..41871f160 100644 --- a/pkg/tensorleapapi/model_upsert_state_params.go +++ b/pkg/tensorleapapi/model_upsert_state_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_upsert_state_response.go b/pkg/tensorleapapi/model_upsert_state_response.go index e3f7f2c86..ba95c747b 100644 --- a/pkg/tensorleapapi/model_upsert_state_response.go +++ b/pkg/tensorleapapi/model_upsert_state_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_user_data.go b/pkg/tensorleapapi/model_user_data.go index 928a73ae7..3eb099df7 100644 --- a/pkg/tensorleapapi/model_user_data.go +++ b/pkg/tensorleapapi/model_user_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_user_data_local.go b/pkg/tensorleapapi/model_user_data_local.go index 6fe523f2a..7a1875890 100644 --- a/pkg/tensorleapapi/model_user_data_local.go +++ b/pkg/tensorleapapi/model_user_data_local.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_user_data_metadata.go b/pkg/tensorleapapi/model_user_data_metadata.go index ba8034ea4..695f17ec2 100644 --- a/pkg/tensorleapapi/model_user_data_metadata.go +++ b/pkg/tensorleapapi/model_user_data_metadata.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_user_role.go b/pkg/tensorleapapi/model_user_role.go index 3a76af500..51ee840d0 100644 --- a/pkg/tensorleapapi/model_user_role.go +++ b/pkg/tensorleapapi/model_user_role.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_validated_loss_node.go b/pkg/tensorleapapi/model_validated_loss_node.go index 6f205dd45..3818f5de1 100644 --- a/pkg/tensorleapapi/model_validated_loss_node.go +++ b/pkg/tensorleapapi/model_validated_loss_node.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_validated_node.go b/pkg/tensorleapapi/model_validated_node.go index dffd39eed..0c93ba2f8 100644 --- a/pkg/tensorleapapi/model_validated_node.go +++ b/pkg/tensorleapapi/model_validated_node.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_value_with_key.go b/pkg/tensorleapapi/model_value_with_key.go index 881d0be1a..3ae64f1eb 100644 --- a/pkg/tensorleapapi/model_value_with_key.go +++ b/pkg/tensorleapapi/model_value_with_key.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_version.go b/pkg/tensorleapapi/model_version.go index 0ab0449ae..07e5b12ec 100644 --- a/pkg/tensorleapapi/model_version.go +++ b/pkg/tensorleapapi/model_version.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -31,11 +31,17 @@ type Version struct { CreatedAt time.Time `json:"createdAt"` UpdatedAt time.Time `json:"updatedAt"` Notes string `json:"notes"` - Status string `json:"status"` + Status VersionStatus `json:"status"` IsFavourite bool `json:"isFavourite"` CodeSnapshotId *string `json:"codeSnapshotId,omitempty"` Hash *string `json:"hash,omitempty"` GraphValidationData *GraphValidatorData `json:"graphValidationData,omitempty"` + ModelId *string `json:"modelId,omitempty"` + EpochTags *map[string]float64 `json:"epochTags,omitempty"` + VisArtifactId *string `json:"visArtifactId,omitempty"` + InferenceArtifactId *string `json:"inferenceArtifactId,omitempty"` + EsMetricIndex *string `json:"esMetricIndex,omitempty"` + EsInspectionIndex *string `json:"esInspectionIndex,omitempty"` AdditionalProperties map[string]interface{} } @@ -45,7 +51,7 @@ type _Version Version // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewVersion(cid string, createdBy string, teamId string, projectId string, branch string, tag string, createdAt time.Time, updatedAt time.Time, notes string, status string, isFavourite bool) *Version { +func NewVersion(cid string, createdBy string, teamId string, projectId string, branch string, tag string, createdAt time.Time, updatedAt time.Time, notes string, status VersionStatus, isFavourite bool) *Version { this := Version{} this.Cid = cid this.CreatedBy = createdBy @@ -318,9 +324,9 @@ func (o *Version) SetNotes(v string) { } // GetStatus returns the Status field value -func (o *Version) GetStatus() string { +func (o *Version) GetStatus() VersionStatus { if o == nil { - var ret string + var ret VersionStatus return ret } @@ -329,7 +335,7 @@ func (o *Version) GetStatus() string { // GetStatusOk returns a tuple with the Status field value // and a boolean to check if the value has been set. -func (o *Version) GetStatusOk() (*string, bool) { +func (o *Version) GetStatusOk() (*VersionStatus, bool) { if o == nil { return nil, false } @@ -337,7 +343,7 @@ func (o *Version) GetStatusOk() (*string, bool) { } // SetStatus sets field value -func (o *Version) SetStatus(v string) { +func (o *Version) SetStatus(v VersionStatus) { o.Status = v } @@ -461,6 +467,198 @@ func (o *Version) SetGraphValidationData(v GraphValidatorData) { o.GraphValidationData = &v } +// GetModelId returns the ModelId field value if set, zero value otherwise. +func (o *Version) GetModelId() string { + if o == nil || IsNil(o.ModelId) { + var ret string + return ret + } + return *o.ModelId +} + +// GetModelIdOk returns a tuple with the ModelId field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *Version) GetModelIdOk() (*string, bool) { + if o == nil || IsNil(o.ModelId) { + return nil, false + } + return o.ModelId, true +} + +// HasModelId returns a boolean if a field has been set. +func (o *Version) HasModelId() bool { + if o != nil && !IsNil(o.ModelId) { + return true + } + + return false +} + +// SetModelId gets a reference to the given string and assigns it to the ModelId field. +func (o *Version) SetModelId(v string) { + o.ModelId = &v +} + +// GetEpochTags returns the EpochTags field value if set, zero value otherwise. +func (o *Version) GetEpochTags() map[string]float64 { + if o == nil || IsNil(o.EpochTags) { + var ret map[string]float64 + return ret + } + return *o.EpochTags +} + +// GetEpochTagsOk returns a tuple with the EpochTags field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *Version) GetEpochTagsOk() (*map[string]float64, bool) { + if o == nil || IsNil(o.EpochTags) { + return nil, false + } + return o.EpochTags, true +} + +// HasEpochTags returns a boolean if a field has been set. +func (o *Version) HasEpochTags() bool { + if o != nil && !IsNil(o.EpochTags) { + return true + } + + return false +} + +// SetEpochTags gets a reference to the given map[string]float64 and assigns it to the EpochTags field. +func (o *Version) SetEpochTags(v map[string]float64) { + o.EpochTags = &v +} + +// GetVisArtifactId returns the VisArtifactId field value if set, zero value otherwise. +func (o *Version) GetVisArtifactId() string { + if o == nil || IsNil(o.VisArtifactId) { + var ret string + return ret + } + return *o.VisArtifactId +} + +// GetVisArtifactIdOk returns a tuple with the VisArtifactId field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *Version) GetVisArtifactIdOk() (*string, bool) { + if o == nil || IsNil(o.VisArtifactId) { + return nil, false + } + return o.VisArtifactId, true +} + +// HasVisArtifactId returns a boolean if a field has been set. +func (o *Version) HasVisArtifactId() bool { + if o != nil && !IsNil(o.VisArtifactId) { + return true + } + + return false +} + +// SetVisArtifactId gets a reference to the given string and assigns it to the VisArtifactId field. +func (o *Version) SetVisArtifactId(v string) { + o.VisArtifactId = &v +} + +// GetInferenceArtifactId returns the InferenceArtifactId field value if set, zero value otherwise. +func (o *Version) GetInferenceArtifactId() string { + if o == nil || IsNil(o.InferenceArtifactId) { + var ret string + return ret + } + return *o.InferenceArtifactId +} + +// GetInferenceArtifactIdOk returns a tuple with the InferenceArtifactId field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *Version) GetInferenceArtifactIdOk() (*string, bool) { + if o == nil || IsNil(o.InferenceArtifactId) { + return nil, false + } + return o.InferenceArtifactId, true +} + +// HasInferenceArtifactId returns a boolean if a field has been set. +func (o *Version) HasInferenceArtifactId() bool { + if o != nil && !IsNil(o.InferenceArtifactId) { + return true + } + + return false +} + +// SetInferenceArtifactId gets a reference to the given string and assigns it to the InferenceArtifactId field. +func (o *Version) SetInferenceArtifactId(v string) { + o.InferenceArtifactId = &v +} + +// GetEsMetricIndex returns the EsMetricIndex field value if set, zero value otherwise. +func (o *Version) GetEsMetricIndex() string { + if o == nil || IsNil(o.EsMetricIndex) { + var ret string + return ret + } + return *o.EsMetricIndex +} + +// GetEsMetricIndexOk returns a tuple with the EsMetricIndex field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *Version) GetEsMetricIndexOk() (*string, bool) { + if o == nil || IsNil(o.EsMetricIndex) { + return nil, false + } + return o.EsMetricIndex, true +} + +// HasEsMetricIndex returns a boolean if a field has been set. +func (o *Version) HasEsMetricIndex() bool { + if o != nil && !IsNil(o.EsMetricIndex) { + return true + } + + return false +} + +// SetEsMetricIndex gets a reference to the given string and assigns it to the EsMetricIndex field. +func (o *Version) SetEsMetricIndex(v string) { + o.EsMetricIndex = &v +} + +// GetEsInspectionIndex returns the EsInspectionIndex field value if set, zero value otherwise. +func (o *Version) GetEsInspectionIndex() string { + if o == nil || IsNil(o.EsInspectionIndex) { + var ret string + return ret + } + return *o.EsInspectionIndex +} + +// GetEsInspectionIndexOk returns a tuple with the EsInspectionIndex field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *Version) GetEsInspectionIndexOk() (*string, bool) { + if o == nil || IsNil(o.EsInspectionIndex) { + return nil, false + } + return o.EsInspectionIndex, true +} + +// HasEsInspectionIndex returns a boolean if a field has been set. +func (o *Version) HasEsInspectionIndex() bool { + if o != nil && !IsNil(o.EsInspectionIndex) { + return true + } + + return false +} + +// SetEsInspectionIndex gets a reference to the given string and assigns it to the EsInspectionIndex field. +func (o *Version) SetEsInspectionIndex(v string) { + o.EsInspectionIndex = &v +} + func (o Version) MarshalJSON() ([]byte, error) { toSerialize, err := o.ToMap() if err != nil { @@ -494,6 +692,24 @@ func (o Version) ToMap() (map[string]interface{}, error) { if !IsNil(o.GraphValidationData) { toSerialize["graphValidationData"] = o.GraphValidationData } + if !IsNil(o.ModelId) { + toSerialize["modelId"] = o.ModelId + } + if !IsNil(o.EpochTags) { + toSerialize["epochTags"] = o.EpochTags + } + if !IsNil(o.VisArtifactId) { + toSerialize["visArtifactId"] = o.VisArtifactId + } + if !IsNil(o.InferenceArtifactId) { + toSerialize["inferenceArtifactId"] = o.InferenceArtifactId + } + if !IsNil(o.EsMetricIndex) { + toSerialize["esMetricIndex"] = o.EsMetricIndex + } + if !IsNil(o.EsInspectionIndex) { + toSerialize["esInspectionIndex"] = o.EsInspectionIndex + } for key, value := range o.AdditionalProperties { toSerialize[key] = value @@ -562,6 +778,12 @@ func (o *Version) UnmarshalJSON(data []byte) (err error) { delete(additionalProperties, "codeSnapshotId") delete(additionalProperties, "hash") delete(additionalProperties, "graphValidationData") + delete(additionalProperties, "modelId") + delete(additionalProperties, "epochTags") + delete(additionalProperties, "visArtifactId") + delete(additionalProperties, "inferenceArtifactId") + delete(additionalProperties, "esMetricIndex") + delete(additionalProperties, "esInspectionIndex") o.AdditionalProperties = additionalProperties } diff --git a/pkg/tensorleapapi/model_session_run_evaluate_params.go b/pkg/tensorleapapi/model_version_evaluate_params.go similarity index 60% rename from pkg/tensorleapapi/model_session_run_evaluate_params.go rename to pkg/tensorleapapi/model_version_evaluate_params.go index 198bffb1b..2fee89005 100644 --- a/pkg/tensorleapapi/model_session_run_evaluate_params.go +++ b/pkg/tensorleapapi/model_version_evaluate_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -15,41 +15,41 @@ import ( "fmt" ) -// checks if the SessionRunEvaluateParams type satisfies the MappedNullable interface at compile time -var _ MappedNullable = &SessionRunEvaluateParams{} +// checks if the VersionEvaluateParams type satisfies the MappedNullable interface at compile time +var _ MappedNullable = &VersionEvaluateParams{} -// SessionRunEvaluateParams struct for SessionRunEvaluateParams -type SessionRunEvaluateParams struct { +// VersionEvaluateParams struct for VersionEvaluateParams +type VersionEvaluateParams struct { DataStates []DataStateType `json:"dataStates"` BatchSize float64 `json:"batchSize"` EvaluatedEpoch float64 `json:"evaluatedEpoch"` AdditionalProperties map[string]interface{} } -type _SessionRunEvaluateParams SessionRunEvaluateParams +type _VersionEvaluateParams VersionEvaluateParams -// NewSessionRunEvaluateParams instantiates a new SessionRunEvaluateParams object +// NewVersionEvaluateParams instantiates a new VersionEvaluateParams object // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewSessionRunEvaluateParams(dataStates []DataStateType, batchSize float64, evaluatedEpoch float64) *SessionRunEvaluateParams { - this := SessionRunEvaluateParams{} +func NewVersionEvaluateParams(dataStates []DataStateType, batchSize float64, evaluatedEpoch float64) *VersionEvaluateParams { + this := VersionEvaluateParams{} this.DataStates = dataStates this.BatchSize = batchSize this.EvaluatedEpoch = evaluatedEpoch return &this } -// NewSessionRunEvaluateParamsWithDefaults instantiates a new SessionRunEvaluateParams object +// NewVersionEvaluateParamsWithDefaults instantiates a new VersionEvaluateParams object // This constructor will only assign default values to properties that have it defined, // but it doesn't guarantee that properties required by API are set -func NewSessionRunEvaluateParamsWithDefaults() *SessionRunEvaluateParams { - this := SessionRunEvaluateParams{} +func NewVersionEvaluateParamsWithDefaults() *VersionEvaluateParams { + this := VersionEvaluateParams{} return &this } // GetDataStates returns the DataStates field value -func (o *SessionRunEvaluateParams) GetDataStates() []DataStateType { +func (o *VersionEvaluateParams) GetDataStates() []DataStateType { if o == nil { var ret []DataStateType return ret @@ -60,7 +60,7 @@ func (o *SessionRunEvaluateParams) GetDataStates() []DataStateType { // GetDataStatesOk returns a tuple with the DataStates field value // and a boolean to check if the value has been set. -func (o *SessionRunEvaluateParams) GetDataStatesOk() ([]DataStateType, bool) { +func (o *VersionEvaluateParams) GetDataStatesOk() ([]DataStateType, bool) { if o == nil { return nil, false } @@ -68,12 +68,12 @@ func (o *SessionRunEvaluateParams) GetDataStatesOk() ([]DataStateType, bool) { } // SetDataStates sets field value -func (o *SessionRunEvaluateParams) SetDataStates(v []DataStateType) { +func (o *VersionEvaluateParams) SetDataStates(v []DataStateType) { o.DataStates = v } // GetBatchSize returns the BatchSize field value -func (o *SessionRunEvaluateParams) GetBatchSize() float64 { +func (o *VersionEvaluateParams) GetBatchSize() float64 { if o == nil { var ret float64 return ret @@ -84,7 +84,7 @@ func (o *SessionRunEvaluateParams) GetBatchSize() float64 { // GetBatchSizeOk returns a tuple with the BatchSize field value // and a boolean to check if the value has been set. -func (o *SessionRunEvaluateParams) GetBatchSizeOk() (*float64, bool) { +func (o *VersionEvaluateParams) GetBatchSizeOk() (*float64, bool) { if o == nil { return nil, false } @@ -92,12 +92,12 @@ func (o *SessionRunEvaluateParams) GetBatchSizeOk() (*float64, bool) { } // SetBatchSize sets field value -func (o *SessionRunEvaluateParams) SetBatchSize(v float64) { +func (o *VersionEvaluateParams) SetBatchSize(v float64) { o.BatchSize = v } // GetEvaluatedEpoch returns the EvaluatedEpoch field value -func (o *SessionRunEvaluateParams) GetEvaluatedEpoch() float64 { +func (o *VersionEvaluateParams) GetEvaluatedEpoch() float64 { if o == nil { var ret float64 return ret @@ -108,7 +108,7 @@ func (o *SessionRunEvaluateParams) GetEvaluatedEpoch() float64 { // GetEvaluatedEpochOk returns a tuple with the EvaluatedEpoch field value // and a boolean to check if the value has been set. -func (o *SessionRunEvaluateParams) GetEvaluatedEpochOk() (*float64, bool) { +func (o *VersionEvaluateParams) GetEvaluatedEpochOk() (*float64, bool) { if o == nil { return nil, false } @@ -116,11 +116,11 @@ func (o *SessionRunEvaluateParams) GetEvaluatedEpochOk() (*float64, bool) { } // SetEvaluatedEpoch sets field value -func (o *SessionRunEvaluateParams) SetEvaluatedEpoch(v float64) { +func (o *VersionEvaluateParams) SetEvaluatedEpoch(v float64) { o.EvaluatedEpoch = v } -func (o SessionRunEvaluateParams) MarshalJSON() ([]byte, error) { +func (o VersionEvaluateParams) MarshalJSON() ([]byte, error) { toSerialize, err := o.ToMap() if err != nil { return []byte{}, err @@ -128,7 +128,7 @@ func (o SessionRunEvaluateParams) MarshalJSON() ([]byte, error) { return json.Marshal(toSerialize) } -func (o SessionRunEvaluateParams) ToMap() (map[string]interface{}, error) { +func (o VersionEvaluateParams) ToMap() (map[string]interface{}, error) { toSerialize := map[string]interface{}{} toSerialize["dataStates"] = o.DataStates toSerialize["batchSize"] = o.BatchSize @@ -141,7 +141,7 @@ func (o SessionRunEvaluateParams) ToMap() (map[string]interface{}, error) { return toSerialize, nil } -func (o *SessionRunEvaluateParams) UnmarshalJSON(data []byte) (err error) { +func (o *VersionEvaluateParams) UnmarshalJSON(data []byte) (err error) { // This validates that all required properties are included in the JSON object // by unmarshalling the object into a generic map with string keys and checking // that every required field exists as a key in the generic map. @@ -165,15 +165,15 @@ func (o *SessionRunEvaluateParams) UnmarshalJSON(data []byte) (err error) { } } - varSessionRunEvaluateParams := _SessionRunEvaluateParams{} + varVersionEvaluateParams := _VersionEvaluateParams{} - err = json.Unmarshal(data, &varSessionRunEvaluateParams) + err = json.Unmarshal(data, &varVersionEvaluateParams) if err != nil { return err } - *o = SessionRunEvaluateParams(varSessionRunEvaluateParams) + *o = VersionEvaluateParams(varVersionEvaluateParams) additionalProperties := make(map[string]interface{}) @@ -187,38 +187,38 @@ func (o *SessionRunEvaluateParams) UnmarshalJSON(data []byte) (err error) { return err } -type NullableSessionRunEvaluateParams struct { - value *SessionRunEvaluateParams +type NullableVersionEvaluateParams struct { + value *VersionEvaluateParams isSet bool } -func (v NullableSessionRunEvaluateParams) Get() *SessionRunEvaluateParams { +func (v NullableVersionEvaluateParams) Get() *VersionEvaluateParams { return v.value } -func (v *NullableSessionRunEvaluateParams) Set(val *SessionRunEvaluateParams) { +func (v *NullableVersionEvaluateParams) Set(val *VersionEvaluateParams) { v.value = val v.isSet = true } -func (v NullableSessionRunEvaluateParams) IsSet() bool { +func (v NullableVersionEvaluateParams) IsSet() bool { return v.isSet } -func (v *NullableSessionRunEvaluateParams) Unset() { +func (v *NullableVersionEvaluateParams) Unset() { v.value = nil v.isSet = false } -func NewNullableSessionRunEvaluateParams(val *SessionRunEvaluateParams) *NullableSessionRunEvaluateParams { - return &NullableSessionRunEvaluateParams{value: val, isSet: true} +func NewNullableVersionEvaluateParams(val *VersionEvaluateParams) *NullableVersionEvaluateParams { + return &NullableVersionEvaluateParams{value: val, isSet: true} } -func (v NullableSessionRunEvaluateParams) MarshalJSON() ([]byte, error) { +func (v NullableVersionEvaluateParams) MarshalJSON() ([]byte, error) { return json.Marshal(v.value) } -func (v *NullableSessionRunEvaluateParams) UnmarshalJSON(src []byte) error { +func (v *NullableVersionEvaluateParams) UnmarshalJSON(src []byte) error { v.isSet = true return json.Unmarshal(src, &v.value) } diff --git a/pkg/tensorleapapi/model_version_populated_job.go b/pkg/tensorleapapi/model_version_populated_job.go new file mode 100644 index 000000000..4514a46ba --- /dev/null +++ b/pkg/tensorleapapi/model_version_populated_job.go @@ -0,0 +1,376 @@ +/* +node-server + +No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + +API version: 11.0.23 +*/ + +// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. + +package tensorleapapi + +import ( + "encoding/json" + "fmt" + "time" +) + +// checks if the VersionPopulatedJob type satisfies the MappedNullable interface at compile time +var _ MappedNullable = &VersionPopulatedJob{} + +// VersionPopulatedJob struct for VersionPopulatedJob +type VersionPopulatedJob struct { + Cid string `json:"cid"` + ExtId *string `json:"extId,omitempty"` + ModelName string `json:"modelName"` + CreatedAt time.Time `json:"createdAt"` + CreatedBy *string `json:"createdBy,omitempty"` + TeamId string `json:"teamId"` + Hash NullableString `json:"hash,omitempty"` + AdditionalProperties map[string]interface{} +} + +type _VersionPopulatedJob VersionPopulatedJob + +// NewVersionPopulatedJob instantiates a new VersionPopulatedJob object +// This constructor will assign default values to properties that have it defined, +// and makes sure properties required by API are set, but the set of arguments +// will change when the set of required properties is changed +func NewVersionPopulatedJob(cid string, modelName string, createdAt time.Time, teamId string) *VersionPopulatedJob { + this := VersionPopulatedJob{} + this.Cid = cid + this.ModelName = modelName + this.CreatedAt = createdAt + this.TeamId = teamId + return &this +} + +// NewVersionPopulatedJobWithDefaults instantiates a new VersionPopulatedJob object +// This constructor will only assign default values to properties that have it defined, +// but it doesn't guarantee that properties required by API are set +func NewVersionPopulatedJobWithDefaults() *VersionPopulatedJob { + this := VersionPopulatedJob{} + return &this +} + +// GetCid returns the Cid field value +func (o *VersionPopulatedJob) GetCid() string { + if o == nil { + var ret string + return ret + } + + return o.Cid +} + +// GetCidOk returns a tuple with the Cid field value +// and a boolean to check if the value has been set. +func (o *VersionPopulatedJob) GetCidOk() (*string, bool) { + if o == nil { + return nil, false + } + return &o.Cid, true +} + +// SetCid sets field value +func (o *VersionPopulatedJob) SetCid(v string) { + o.Cid = v +} + +// GetExtId returns the ExtId field value if set, zero value otherwise. +func (o *VersionPopulatedJob) GetExtId() string { + if o == nil || IsNil(o.ExtId) { + var ret string + return ret + } + return *o.ExtId +} + +// GetExtIdOk returns a tuple with the ExtId field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *VersionPopulatedJob) GetExtIdOk() (*string, bool) { + if o == nil || IsNil(o.ExtId) { + return nil, false + } + return o.ExtId, true +} + +// HasExtId returns a boolean if a field has been set. +func (o *VersionPopulatedJob) HasExtId() bool { + if o != nil && !IsNil(o.ExtId) { + return true + } + + return false +} + +// SetExtId gets a reference to the given string and assigns it to the ExtId field. +func (o *VersionPopulatedJob) SetExtId(v string) { + o.ExtId = &v +} + +// GetModelName returns the ModelName field value +func (o *VersionPopulatedJob) GetModelName() string { + if o == nil { + var ret string + return ret + } + + return o.ModelName +} + +// GetModelNameOk returns a tuple with the ModelName field value +// and a boolean to check if the value has been set. +func (o *VersionPopulatedJob) GetModelNameOk() (*string, bool) { + if o == nil { + return nil, false + } + return &o.ModelName, true +} + +// SetModelName sets field value +func (o *VersionPopulatedJob) SetModelName(v string) { + o.ModelName = v +} + +// GetCreatedAt returns the CreatedAt field value +func (o *VersionPopulatedJob) GetCreatedAt() time.Time { + if o == nil { + var ret time.Time + return ret + } + + return o.CreatedAt +} + +// GetCreatedAtOk returns a tuple with the CreatedAt field value +// and a boolean to check if the value has been set. +func (o *VersionPopulatedJob) GetCreatedAtOk() (*time.Time, bool) { + if o == nil { + return nil, false + } + return &o.CreatedAt, true +} + +// SetCreatedAt sets field value +func (o *VersionPopulatedJob) SetCreatedAt(v time.Time) { + o.CreatedAt = v +} + +// GetCreatedBy returns the CreatedBy field value if set, zero value otherwise. +func (o *VersionPopulatedJob) GetCreatedBy() string { + if o == nil || IsNil(o.CreatedBy) { + var ret string + return ret + } + return *o.CreatedBy +} + +// GetCreatedByOk returns a tuple with the CreatedBy field value if set, nil otherwise +// and a boolean to check if the value has been set. +func (o *VersionPopulatedJob) GetCreatedByOk() (*string, bool) { + if o == nil || IsNil(o.CreatedBy) { + return nil, false + } + return o.CreatedBy, true +} + +// HasCreatedBy returns a boolean if a field has been set. +func (o *VersionPopulatedJob) HasCreatedBy() bool { + if o != nil && !IsNil(o.CreatedBy) { + return true + } + + return false +} + +// SetCreatedBy gets a reference to the given string and assigns it to the CreatedBy field. +func (o *VersionPopulatedJob) SetCreatedBy(v string) { + o.CreatedBy = &v +} + +// GetTeamId returns the TeamId field value +func (o *VersionPopulatedJob) GetTeamId() string { + if o == nil { + var ret string + return ret + } + + return o.TeamId +} + +// GetTeamIdOk returns a tuple with the TeamId field value +// and a boolean to check if the value has been set. +func (o *VersionPopulatedJob) GetTeamIdOk() (*string, bool) { + if o == nil { + return nil, false + } + return &o.TeamId, true +} + +// SetTeamId sets field value +func (o *VersionPopulatedJob) SetTeamId(v string) { + o.TeamId = v +} + +// GetHash returns the Hash field value if set, zero value otherwise (both if not set or set to explicit null). +func (o *VersionPopulatedJob) GetHash() string { + if o == nil || IsNil(o.Hash.Get()) { + var ret string + return ret + } + return *o.Hash.Get() +} + +// GetHashOk returns a tuple with the Hash field value if set, nil otherwise +// and a boolean to check if the value has been set. +// NOTE: If the value is an explicit nil, `nil, true` will be returned +func (o *VersionPopulatedJob) GetHashOk() (*string, bool) { + if o == nil { + return nil, false + } + return o.Hash.Get(), o.Hash.IsSet() +} + +// HasHash returns a boolean if a field has been set. +func (o *VersionPopulatedJob) HasHash() bool { + if o != nil && o.Hash.IsSet() { + return true + } + + return false +} + +// SetHash gets a reference to the given NullableString and assigns it to the Hash field. +func (o *VersionPopulatedJob) SetHash(v string) { + o.Hash.Set(&v) +} + +// SetHashNil sets the value for Hash to be an explicit nil +func (o *VersionPopulatedJob) SetHashNil() { + o.Hash.Set(nil) +} + +// UnsetHash ensures that no value is present for Hash, not even an explicit nil +func (o *VersionPopulatedJob) UnsetHash() { + o.Hash.Unset() +} + +func (o VersionPopulatedJob) MarshalJSON() ([]byte, error) { + toSerialize, err := o.ToMap() + if err != nil { + return []byte{}, err + } + return json.Marshal(toSerialize) +} + +func (o VersionPopulatedJob) ToMap() (map[string]interface{}, error) { + toSerialize := map[string]interface{}{} + toSerialize["cid"] = o.Cid + if !IsNil(o.ExtId) { + toSerialize["extId"] = o.ExtId + } + toSerialize["modelName"] = o.ModelName + toSerialize["createdAt"] = o.CreatedAt + if !IsNil(o.CreatedBy) { + toSerialize["createdBy"] = o.CreatedBy + } + toSerialize["teamId"] = o.TeamId + if o.Hash.IsSet() { + toSerialize["hash"] = o.Hash.Get() + } + + for key, value := range o.AdditionalProperties { + toSerialize[key] = value + } + + return toSerialize, nil +} + +func (o *VersionPopulatedJob) UnmarshalJSON(data []byte) (err error) { + // This validates that all required properties are included in the JSON object + // by unmarshalling the object into a generic map with string keys and checking + // that every required field exists as a key in the generic map. + requiredProperties := []string{ + "cid", + "modelName", + "createdAt", + "teamId", + } + + allProperties := make(map[string]interface{}) + + err = json.Unmarshal(data, &allProperties) + + if err != nil { + return err + } + + for _, requiredProperty := range requiredProperties { + if _, exists := allProperties[requiredProperty]; !exists { + return fmt.Errorf("no value given for required property %v", requiredProperty) + } + } + + varVersionPopulatedJob := _VersionPopulatedJob{} + + err = json.Unmarshal(data, &varVersionPopulatedJob) + + if err != nil { + return err + } + + *o = VersionPopulatedJob(varVersionPopulatedJob) + + additionalProperties := make(map[string]interface{}) + + if err = json.Unmarshal(data, &additionalProperties); err == nil { + delete(additionalProperties, "cid") + delete(additionalProperties, "extId") + delete(additionalProperties, "modelName") + delete(additionalProperties, "createdAt") + delete(additionalProperties, "createdBy") + delete(additionalProperties, "teamId") + delete(additionalProperties, "hash") + o.AdditionalProperties = additionalProperties + } + + return err +} + +type NullableVersionPopulatedJob struct { + value *VersionPopulatedJob + isSet bool +} + +func (v NullableVersionPopulatedJob) Get() *VersionPopulatedJob { + return v.value +} + +func (v *NullableVersionPopulatedJob) Set(val *VersionPopulatedJob) { + v.value = val + v.isSet = true +} + +func (v NullableVersionPopulatedJob) IsSet() bool { + return v.isSet +} + +func (v *NullableVersionPopulatedJob) Unset() { + v.value = nil + v.isSet = false +} + +func NewNullableVersionPopulatedJob(val *VersionPopulatedJob) *NullableVersionPopulatedJob { + return &NullableVersionPopulatedJob{value: val, isSet: true} +} + +func (v NullableVersionPopulatedJob) MarshalJSON() ([]byte, error) { + return json.Marshal(v.value) +} + +func (v *NullableVersionPopulatedJob) UnmarshalJSON(src []byte) error { + v.isSet = true + return json.Unmarshal(src, &v.value) +} diff --git a/pkg/tensorleapapi/model_version_status.go b/pkg/tensorleapapi/model_version_status.go new file mode 100644 index 000000000..a9999712b --- /dev/null +++ b/pkg/tensorleapapi/model_version_status.go @@ -0,0 +1,116 @@ +/* +node-server + +No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) + +API version: 11.0.23 +*/ + +// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. + +package tensorleapapi + +import ( + "encoding/json" + "fmt" +) + +// VersionStatus the model 'VersionStatus' +type VersionStatus string + +// List of VersionStatus +const ( + VERSIONSTATUS_DRAFT VersionStatus = "draft" + VERSIONSTATUS_VALID VersionStatus = "valid" + VERSIONSTATUS_INVALID VersionStatus = "invalid" + VERSIONSTATUS_TRASH VersionStatus = "trash" + VERSIONSTATUS_VISIBLE VersionStatus = "visible" +) + +// All allowed values of VersionStatus enum +var AllowedVersionStatusEnumValues = []VersionStatus{ + "draft", + "valid", + "invalid", + "trash", + "visible", +} + +func (v *VersionStatus) UnmarshalJSON(src []byte) error { + var value string + err := json.Unmarshal(src, &value) + if err != nil { + return err + } + enumTypeValue := VersionStatus(value) + for _, existing := range AllowedVersionStatusEnumValues { + if existing == enumTypeValue { + *v = enumTypeValue + return nil + } + } + + return fmt.Errorf("%+v is not a valid VersionStatus", value) +} + +// NewVersionStatusFromValue returns a pointer to a valid VersionStatus +// for the value passed as argument, or an error if the value passed is not allowed by the enum +func NewVersionStatusFromValue(v string) (*VersionStatus, error) { + ev := VersionStatus(v) + if ev.IsValid() { + return &ev, nil + } else { + return nil, fmt.Errorf("invalid value '%v' for VersionStatus: valid values are %v", v, AllowedVersionStatusEnumValues) + } +} + +// IsValid return true if the value is valid for the enum, false otherwise +func (v VersionStatus) IsValid() bool { + for _, existing := range AllowedVersionStatusEnumValues { + if existing == v { + return true + } + } + return false +} + +// Ptr returns reference to VersionStatus value +func (v VersionStatus) Ptr() *VersionStatus { + return &v +} + +type NullableVersionStatus struct { + value *VersionStatus + isSet bool +} + +func (v NullableVersionStatus) Get() *VersionStatus { + return v.value +} + +func (v *NullableVersionStatus) Set(val *VersionStatus) { + v.value = val + v.isSet = true +} + +func (v NullableVersionStatus) IsSet() bool { + return v.isSet +} + +func (v *NullableVersionStatus) Unset() { + v.value = nil + v.isSet = false +} + +func NewNullableVersionStatus(val *VersionStatus) *NullableVersionStatus { + return &NullableVersionStatus{value: val, isSet: true} +} + +func (v NullableVersionStatus) MarshalJSON() ([]byte, error) { + return json.Marshal(v.value) +} + +func (v *NullableVersionStatus) UnmarshalJSON(src []byte) error { + v.isSet = true + return json.Unmarshal(src, &v.value) +} diff --git a/pkg/tensorleapapi/model_video_data.go b/pkg/tensorleapapi/model_video_data.go index 744da0248..0aa604b29 100644 --- a/pkg/tensorleapapi/model_video_data.go +++ b/pkg/tensorleapapi/model_video_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_video_heatmap_data.go b/pkg/tensorleapapi/model_video_heatmap_data.go index ffe5931bb..58e4cddfa 100644 --- a/pkg/tensorleapapi/model_video_heatmap_data.go +++ b/pkg/tensorleapapi/model_video_heatmap_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_vis_data.go b/pkg/tensorleapapi/model_vis_data.go index 4f7bcf77d..49ffa8d80 100644 --- a/pkg/tensorleapapi/model_vis_data.go +++ b/pkg/tensorleapapi/model_vis_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_visualization.go b/pkg/tensorleapapi/model_visualization.go index 05c4a1f0c..a9ebf2746 100644 --- a/pkg/tensorleapapi/model_visualization.go +++ b/pkg/tensorleapapi/model_visualization.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -24,7 +24,7 @@ type Visualization struct { ProjectId string `json:"projectId"` Cid string `json:"cid"` JobId string `json:"jobId"` - SessionRunId string `json:"sessionRunId"` + InferenceArtifactId string `json:"inferenceArtifactId"` JobParms *JobParams `json:"jobParms,omitempty"` Type AnalyzeTypeEnum `json:"type"` CreatedAt time.Time `json:"createdAt"` @@ -44,12 +44,12 @@ type _Visualization Visualization // This constructor will assign default values to properties that have it defined, // and makes sure properties required by API are set, but the set of arguments // will change when the set of required properties is changed -func NewVisualization(projectId string, cid string, jobId string, sessionRunId string, type_ AnalyzeTypeEnum, createdAt time.Time, epoch float64, visualizationUuid string, blob string, csvBlob string, data VisualizationResponse) *Visualization { +func NewVisualization(projectId string, cid string, jobId string, inferenceArtifactId string, type_ AnalyzeTypeEnum, createdAt time.Time, epoch float64, visualizationUuid string, blob string, csvBlob string, data VisualizationResponse) *Visualization { this := Visualization{} this.ProjectId = projectId this.Cid = cid this.JobId = jobId - this.SessionRunId = sessionRunId + this.InferenceArtifactId = inferenceArtifactId this.Type = type_ this.CreatedAt = createdAt this.Epoch = epoch @@ -140,28 +140,28 @@ func (o *Visualization) SetJobId(v string) { o.JobId = v } -// GetSessionRunId returns the SessionRunId field value -func (o *Visualization) GetSessionRunId() string { +// GetInferenceArtifactId returns the InferenceArtifactId field value +func (o *Visualization) GetInferenceArtifactId() string { if o == nil { var ret string return ret } - return o.SessionRunId + return o.InferenceArtifactId } -// GetSessionRunIdOk returns a tuple with the SessionRunId field value +// GetInferenceArtifactIdOk returns a tuple with the InferenceArtifactId field value // and a boolean to check if the value has been set. -func (o *Visualization) GetSessionRunIdOk() (*string, bool) { +func (o *Visualization) GetInferenceArtifactIdOk() (*string, bool) { if o == nil { return nil, false } - return &o.SessionRunId, true + return &o.InferenceArtifactId, true } -// SetSessionRunId sets field value -func (o *Visualization) SetSessionRunId(v string) { - o.SessionRunId = v +// SetInferenceArtifactId sets field value +func (o *Visualization) SetInferenceArtifactId(v string) { + o.InferenceArtifactId = v } // GetJobParms returns the JobParms field value if set, zero value otherwise. @@ -441,7 +441,7 @@ func (o Visualization) ToMap() (map[string]interface{}, error) { toSerialize["projectId"] = o.ProjectId toSerialize["cid"] = o.Cid toSerialize["jobId"] = o.JobId - toSerialize["sessionRunId"] = o.SessionRunId + toSerialize["inferenceArtifactId"] = o.InferenceArtifactId if !IsNil(o.JobParms) { toSerialize["jobParms"] = o.JobParms } @@ -474,7 +474,7 @@ func (o *Visualization) UnmarshalJSON(data []byte) (err error) { "projectId", "cid", "jobId", - "sessionRunId", + "inferenceArtifactId", "type", "createdAt", "epoch", @@ -514,7 +514,7 @@ func (o *Visualization) UnmarshalJSON(data []byte) (err error) { delete(additionalProperties, "projectId") delete(additionalProperties, "cid") delete(additionalProperties, "jobId") - delete(additionalProperties, "sessionRunId") + delete(additionalProperties, "inferenceArtifactId") delete(additionalProperties, "jobParms") delete(additionalProperties, "type") delete(additionalProperties, "createdAt") diff --git a/pkg/tensorleapapi/model_visualization_data.go b/pkg/tensorleapapi/model_visualization_data.go index dc2a1f800..8e85c6a9c 100644 --- a/pkg/tensorleapapi/model_visualization_data.go +++ b/pkg/tensorleapapi/model_visualization_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_visualization_response.go b/pkg/tensorleapapi/model_visualization_response.go index 7efda18b3..9b9109987 100644 --- a/pkg/tensorleapapi/model_visualization_response.go +++ b/pkg/tensorleapapi/model_visualization_response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_visualized_item.go b/pkg/tensorleapapi/model_visualized_item.go index 834eb099a..1c2a6c4c0 100644 --- a/pkg/tensorleapapi/model_visualized_item.go +++ b/pkg/tensorleapapi/model_visualized_item.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_visualized_item_data.go b/pkg/tensorleapapi/model_visualized_item_data.go index 1f961b411..9e0e9f6bb 100644 --- a/pkg/tensorleapapi/model_visualized_item_data.go +++ b/pkg/tensorleapapi/model_visualized_item_data.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_visualizer_instance.go b/pkg/tensorleapapi/model_visualizer_instance.go index f6d3c72e8..cc43df3b2 100644 --- a/pkg/tensorleapapi/model_visualizer_instance.go +++ b/pkg/tensorleapapi/model_visualizer_instance.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_visualizer_message_params.go b/pkg/tensorleapapi/model_visualizer_message_params.go index d5d89fd66..e95609e48 100644 --- a/pkg/tensorleapapi/model_visualizer_message_params.go +++ b/pkg/tensorleapapi/model_visualizer_message_params.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_viz_info_type.go b/pkg/tensorleapapi/model_viz_info_type.go index 16b80a213..654cf196c 100644 --- a/pkg/tensorleapapi/model_viz_info_type.go +++ b/pkg/tensorleapapi/model_viz_info_type.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_viz_type.go b/pkg/tensorleapapi/model_viz_type.go index a1b054d96..d836f362a 100644 --- a/pkg/tensorleapapi/model_viz_type.go +++ b/pkg/tensorleapapi/model_viz_type.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/model_weight_asset_data.go b/pkg/tensorleapapi/model_weight_asset_data.go deleted file mode 100644 index 16f63ef40..000000000 --- a/pkg/tensorleapapi/model_weight_asset_data.go +++ /dev/null @@ -1,195 +0,0 @@ -/* -node-server - -No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) - -API version: 11.0.7 -*/ - -// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. - -package tensorleapapi - -import ( - "encoding/json" - "fmt" -) - -// checks if the WeightAssetData type satisfies the MappedNullable interface at compile time -var _ MappedNullable = &WeightAssetData{} - -// WeightAssetData struct for WeightAssetData -type WeightAssetData struct { - SessionWeightId string `json:"sessionWeightId"` - EsMetricIndex string `json:"esMetricIndex"` - AdditionalProperties map[string]interface{} -} - -type _WeightAssetData WeightAssetData - -// NewWeightAssetData instantiates a new WeightAssetData object -// This constructor will assign default values to properties that have it defined, -// and makes sure properties required by API are set, but the set of arguments -// will change when the set of required properties is changed -func NewWeightAssetData(sessionWeightId string, esMetricIndex string) *WeightAssetData { - this := WeightAssetData{} - this.SessionWeightId = sessionWeightId - this.EsMetricIndex = esMetricIndex - return &this -} - -// NewWeightAssetDataWithDefaults instantiates a new WeightAssetData object -// This constructor will only assign default values to properties that have it defined, -// but it doesn't guarantee that properties required by API are set -func NewWeightAssetDataWithDefaults() *WeightAssetData { - this := WeightAssetData{} - return &this -} - -// GetSessionWeightId returns the SessionWeightId field value -func (o *WeightAssetData) GetSessionWeightId() string { - if o == nil { - var ret string - return ret - } - - return o.SessionWeightId -} - -// GetSessionWeightIdOk returns a tuple with the SessionWeightId field value -// and a boolean to check if the value has been set. -func (o *WeightAssetData) GetSessionWeightIdOk() (*string, bool) { - if o == nil { - return nil, false - } - return &o.SessionWeightId, true -} - -// SetSessionWeightId sets field value -func (o *WeightAssetData) SetSessionWeightId(v string) { - o.SessionWeightId = v -} - -// GetEsMetricIndex returns the EsMetricIndex field value -func (o *WeightAssetData) GetEsMetricIndex() string { - if o == nil { - var ret string - return ret - } - - return o.EsMetricIndex -} - -// GetEsMetricIndexOk returns a tuple with the EsMetricIndex field value -// and a boolean to check if the value has been set. -func (o *WeightAssetData) GetEsMetricIndexOk() (*string, bool) { - if o == nil { - return nil, false - } - return &o.EsMetricIndex, true -} - -// SetEsMetricIndex sets field value -func (o *WeightAssetData) SetEsMetricIndex(v string) { - o.EsMetricIndex = v -} - -func (o WeightAssetData) MarshalJSON() ([]byte, error) { - toSerialize, err := o.ToMap() - if err != nil { - return []byte{}, err - } - return json.Marshal(toSerialize) -} - -func (o WeightAssetData) ToMap() (map[string]interface{}, error) { - toSerialize := map[string]interface{}{} - toSerialize["sessionWeightId"] = o.SessionWeightId - toSerialize["esMetricIndex"] = o.EsMetricIndex - - for key, value := range o.AdditionalProperties { - toSerialize[key] = value - } - - return toSerialize, nil -} - -func (o *WeightAssetData) UnmarshalJSON(data []byte) (err error) { - // This validates that all required properties are included in the JSON object - // by unmarshalling the object into a generic map with string keys and checking - // that every required field exists as a key in the generic map. - requiredProperties := []string{ - "sessionWeightId", - "esMetricIndex", - } - - allProperties := make(map[string]interface{}) - - err = json.Unmarshal(data, &allProperties) - - if err != nil { - return err - } - - for _, requiredProperty := range requiredProperties { - if _, exists := allProperties[requiredProperty]; !exists { - return fmt.Errorf("no value given for required property %v", requiredProperty) - } - } - - varWeightAssetData := _WeightAssetData{} - - err = json.Unmarshal(data, &varWeightAssetData) - - if err != nil { - return err - } - - *o = WeightAssetData(varWeightAssetData) - - additionalProperties := make(map[string]interface{}) - - if err = json.Unmarshal(data, &additionalProperties); err == nil { - delete(additionalProperties, "sessionWeightId") - delete(additionalProperties, "esMetricIndex") - o.AdditionalProperties = additionalProperties - } - - return err -} - -type NullableWeightAssetData struct { - value *WeightAssetData - isSet bool -} - -func (v NullableWeightAssetData) Get() *WeightAssetData { - return v.value -} - -func (v *NullableWeightAssetData) Set(val *WeightAssetData) { - v.value = val - v.isSet = true -} - -func (v NullableWeightAssetData) IsSet() bool { - return v.isSet -} - -func (v *NullableWeightAssetData) Unset() { - v.value = nil - v.isSet = false -} - -func NewNullableWeightAssetData(val *WeightAssetData) *NullableWeightAssetData { - return &NullableWeightAssetData{value: val, isSet: true} -} - -func (v NullableWeightAssetData) MarshalJSON() ([]byte, error) { - return json.Marshal(v.value) -} - -func (v *NullableWeightAssetData) UnmarshalJSON(src []byte) error { - v.isSet = true - return json.Unmarshal(src, &v.value) -} diff --git a/pkg/tensorleapapi/response.go b/pkg/tensorleapapi/response.go index e4d0f3411..de2fb9e58 100644 --- a/pkg/tensorleapapi/response.go +++ b/pkg/tensorleapapi/response.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/pkg/tensorleapapi/test/api_default_test.go b/pkg/tensorleapapi/test/api_default_test.go index 3a7f99f7c..43ec79fb4 100644 --- a/pkg/tensorleapapi/test/api_default_test.go +++ b/pkg/tensorleapapi/test/api_default_test.go @@ -277,28 +277,6 @@ func Test_tensorleapapi_DefaultAPIService(t *testing.T) { }) - t.Run("Test DefaultAPIService DeleteSession", func(t *testing.T) { - - t.Skip("skip test") // remove to run test - - httpRes, err := apiClient.DefaultAPI.DeleteSession(context.Background()).Execute() - - require.Nil(t, err) - assert.Equal(t, 200, httpRes.StatusCode) - - }) - - t.Run("Test DefaultAPIService DeleteSessionRun", func(t *testing.T) { - - t.Skip("skip test") // remove to run test - - httpRes, err := apiClient.DefaultAPI.DeleteSessionRun(context.Background()).Execute() - - require.Nil(t, err) - assert.Equal(t, 200, httpRes.StatusCode) - - }) - t.Run("Test DefaultAPIService DeleteSessionTest", func(t *testing.T) { t.Skip("skip test") // remove to run test @@ -577,6 +555,18 @@ func Test_tensorleapapi_DefaultAPIService(t *testing.T) { }) + t.Run("Test DefaultAPIService GetCollectionDisplayData", func(t *testing.T) { + + t.Skip("skip test") // remove to run test + + resp, httpRes, err := apiClient.DefaultAPI.GetCollectionDisplayData(context.Background()).Execute() + + require.Nil(t, err) + require.NotNil(t, resp) + assert.Equal(t, 200, httpRes.StatusCode) + + }) + t.Run("Test DefaultAPIService GetConfusionMatrixLabels", func(t *testing.T) { t.Skip("skip test") // remove to run test @@ -709,11 +699,11 @@ func Test_tensorleapapi_DefaultAPIService(t *testing.T) { }) - t.Run("Test DefaultAPIService GetExportedSessionJobs", func(t *testing.T) { + t.Run("Test DefaultAPIService GetExportedModelJobs", func(t *testing.T) { t.Skip("skip test") // remove to run test - resp, httpRes, err := apiClient.DefaultAPI.GetExportedSessionJobs(context.Background()).Execute() + resp, httpRes, err := apiClient.DefaultAPI.GetExportedModelJobs(context.Background()).Execute() require.Nil(t, err) require.NotNil(t, resp) @@ -997,18 +987,6 @@ func Test_tensorleapapi_DefaultAPIService(t *testing.T) { }) - t.Run("Test DefaultAPIService GetRecentTeamSessions", func(t *testing.T) { - - t.Skip("skip test") // remove to run test - - resp, httpRes, err := apiClient.DefaultAPI.GetRecentTeamSessions(context.Background()).Execute() - - require.Nil(t, err) - require.NotNil(t, resp) - assert.Equal(t, 200, httpRes.StatusCode) - - }) - t.Run("Test DefaultAPIService GetRoc", func(t *testing.T) { t.Skip("skip test") // remove to run test @@ -1081,30 +1059,6 @@ func Test_tensorleapapi_DefaultAPIService(t *testing.T) { }) - t.Run("Test DefaultAPIService GetSessionRunsEvaluate", func(t *testing.T) { - - t.Skip("skip test") // remove to run test - - resp, httpRes, err := apiClient.DefaultAPI.GetSessionRunsEvaluate(context.Background()).Execute() - - require.Nil(t, err) - require.NotNil(t, resp) - assert.Equal(t, 200, httpRes.StatusCode) - - }) - - t.Run("Test DefaultAPIService GetSessionRunsVisualizations", func(t *testing.T) { - - t.Skip("skip test") // remove to run test - - resp, httpRes, err := apiClient.DefaultAPI.GetSessionRunsVisualizations(context.Background()).Execute() - - require.Nil(t, err) - require.NotNil(t, resp) - assert.Equal(t, 200, httpRes.StatusCode) - - }) - t.Run("Test DefaultAPIService GetSessionTestResult", func(t *testing.T) { t.Skip("skip test") // remove to run test @@ -1117,42 +1071,6 @@ func Test_tensorleapapi_DefaultAPIService(t *testing.T) { }) - t.Run("Test DefaultAPIService GetSessionsByHash", func(t *testing.T) { - - t.Skip("skip test") // remove to run test - - resp, httpRes, err := apiClient.DefaultAPI.GetSessionsByHash(context.Background()).Execute() - - require.Nil(t, err) - require.NotNil(t, resp) - assert.Equal(t, 200, httpRes.StatusCode) - - }) - - t.Run("Test DefaultAPIService GetSessionsByVersionId", func(t *testing.T) { - - t.Skip("skip test") // remove to run test - - resp, httpRes, err := apiClient.DefaultAPI.GetSessionsByVersionId(context.Background()).Execute() - - require.Nil(t, err) - require.NotNil(t, resp) - assert.Equal(t, 200, httpRes.StatusCode) - - }) - - t.Run("Test DefaultAPIService GetSessionsEpochs", func(t *testing.T) { - - t.Skip("skip test") // remove to run test - - resp, httpRes, err := apiClient.DefaultAPI.GetSessionsEpochs(context.Background()).Execute() - - require.Nil(t, err) - require.NotNil(t, resp) - assert.Equal(t, 200, httpRes.StatusCode) - - }) - t.Run("Test DefaultAPIService GetSignedUrl", func(t *testing.T) { t.Skip("skip test") // remove to run test @@ -1321,6 +1239,30 @@ func Test_tensorleapapi_DefaultAPIService(t *testing.T) { }) + t.Run("Test DefaultAPIService GetVersionsEpochs", func(t *testing.T) { + + t.Skip("skip test") // remove to run test + + resp, httpRes, err := apiClient.DefaultAPI.GetVersionsEpochs(context.Background()).Execute() + + require.Nil(t, err) + require.NotNil(t, resp) + assert.Equal(t, 200, httpRes.StatusCode) + + }) + + t.Run("Test DefaultAPIService GetVersionsVisualizations", func(t *testing.T) { + + t.Skip("skip test") // remove to run test + + resp, httpRes, err := apiClient.DefaultAPI.GetVersionsVisualizations(context.Background()).Execute() + + require.Nil(t, err) + require.NotNil(t, resp) + assert.Equal(t, 200, httpRes.StatusCode) + + }) + t.Run("Test DefaultAPIService GetVisualization", func(t *testing.T) { t.Skip("skip test") // remove to run test @@ -1499,6 +1441,18 @@ func Test_tensorleapapi_DefaultAPIService(t *testing.T) { }) + t.Run("Test DefaultAPIService PopulateCollectionFromFilters", func(t *testing.T) { + + t.Skip("skip test") // remove to run test + + resp, httpRes, err := apiClient.DefaultAPI.PopulateCollectionFromFilters(context.Background()).Execute() + + require.Nil(t, err) + require.NotNil(t, resp) + assert.Equal(t, 200, httpRes.StatusCode) + + }) + t.Run("Test DefaultAPIService PopulationExploration", func(t *testing.T) { t.Skip("skip test") // remove to run test @@ -1798,28 +1752,6 @@ func Test_tensorleapapi_DefaultAPIService(t *testing.T) { }) - t.Run("Test DefaultAPIService UpdateSessionName", func(t *testing.T) { - - t.Skip("skip test") // remove to run test - - httpRes, err := apiClient.DefaultAPI.UpdateSessionName(context.Background()).Execute() - - require.Nil(t, err) - assert.Equal(t, 200, httpRes.StatusCode) - - }) - - t.Run("Test DefaultAPIService UpdateSessionRun", func(t *testing.T) { - - t.Skip("skip test") // remove to run test - - httpRes, err := apiClient.DefaultAPI.UpdateSessionRun(context.Background()).Execute() - - require.Nil(t, err) - assert.Equal(t, 200, httpRes.StatusCode) - - }) - t.Run("Test DefaultAPIService UpdateSessionTest", func(t *testing.T) { t.Skip("skip test") // remove to run test diff --git a/pkg/tensorleapapi/utils.go b/pkg/tensorleapapi/utils.go index 91675debf..929e369ed 100644 --- a/pkg/tensorleapapi/utils.go +++ b/pkg/tensorleapapi/utils.go @@ -3,7 +3,7 @@ node-server No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) -API version: 11.0.7 +API version: 11.0.23 */ // Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.