shaped 2.0.1__py3-none-any.whl → 2.0.4__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- shaped/__init__.py +59 -4
- shaped/autogen/__init__.py +527 -66
- shaped/autogen/api/__init__.py +4 -3
- shaped/autogen/api/engine_api.py +1467 -0
- shaped/autogen/api/{dataset_api.py → query_api.py} +159 -194
- shaped/autogen/api/table_api.py +1494 -0
- shaped/autogen/api/{model_management_api.py → view_api.py} +179 -181
- shaped/autogen/api_client.py +18 -11
- shaped/autogen/configuration.py +22 -9
- shaped/autogen/exceptions.py +25 -5
- shaped/autogen/models/__init__.py +247 -52
- shaped/autogen/models/ai_enrichment_view_config.py +123 -0
- shaped/autogen/models/{path.py → algorithm.py} +19 -19
- shaped/autogen/models/amplitude_table_config.py +106 -0
- shaped/autogen/models/ascending.py +148 -0
- shaped/autogen/models/attn_dropout_prob.py +136 -0
- shaped/autogen/models/attribute_journey.py +124 -0
- shaped/autogen/models/attribute_value.py +178 -0
- shaped/autogen/models/autoscaling_config.py +95 -0
- shaped/autogen/models/aws_pinpoint_table_config.py +108 -0
- shaped/autogen/models/batch_size.py +136 -0
- shaped/autogen/models/batch_size1.py +136 -0
- shaped/autogen/models/batch_size2.py +136 -0
- shaped/autogen/models/big_query_table_config.py +147 -0
- shaped/autogen/models/bm25.py +136 -0
- shaped/autogen/models/boosted_reorder_step.py +125 -0
- shaped/autogen/models/canary_rollout.py +99 -0
- shaped/autogen/models/candidate_attributes_retrieve_step.py +113 -0
- shaped/autogen/models/candidate_ids_retrieve_step.py +113 -0
- shaped/autogen/models/candidate_retrieval_strategy.py +41 -0
- shaped/autogen/models/clickhouse_table_config.py +146 -0
- shaped/autogen/models/column_order_retrieve_step.py +123 -0
- shaped/autogen/models/column_ordering.py +91 -0
- shaped/autogen/models/create_table_response.py +87 -0
- shaped/autogen/models/create_view_response.py +87 -0
- shaped/autogen/models/custom_table_config.py +135 -0
- shaped/autogen/models/data_compute_config.py +89 -0
- shaped/autogen/models/data_config.py +145 -0
- shaped/autogen/models/data_config_interaction_table.py +146 -0
- shaped/autogen/models/data_split_config.py +88 -0
- shaped/autogen/models/data_split_strategy.py +37 -0
- shaped/autogen/models/data_tier.py +37 -0
- shaped/autogen/models/default.py +246 -0
- shaped/autogen/models/delete_engine_response.py +87 -0
- shaped/autogen/models/delete_table_response.py +87 -0
- shaped/autogen/models/delete_view_response.py +87 -0
- shaped/autogen/models/deployment_config.py +117 -0
- shaped/autogen/models/distance_function.py +38 -0
- shaped/autogen/models/diversity_reorder_step.py +137 -0
- shaped/autogen/models/dropout_rate.py +136 -0
- shaped/autogen/models/dynamo_db_table_config.py +160 -0
- shaped/autogen/models/dynamo_db_table_config_scan_kwargs_value.py +138 -0
- shaped/autogen/models/embedder_batch_size.py +136 -0
- shaped/autogen/models/embedding_config.py +93 -0
- shaped/autogen/models/embedding_dim.py +136 -0
- shaped/autogen/models/embedding_dims.py +136 -0
- shaped/autogen/models/embedding_size.py +136 -0
- shaped/autogen/models/encoder.py +140 -0
- shaped/autogen/models/encoding_pooling_strategy.py +38 -0
- shaped/autogen/models/engine.py +109 -0
- shaped/autogen/models/engine_config_v2.py +152 -0
- shaped/autogen/models/engine_details_response.py +120 -0
- shaped/autogen/models/engine_schema.py +113 -0
- shaped/autogen/models/engine_schema_user_inner.py +146 -0
- shaped/autogen/models/entity_config.py +109 -0
- shaped/autogen/models/entity_journey.py +161 -0
- shaped/autogen/models/entity_type.py +38 -0
- shaped/autogen/models/evaluation_config.py +92 -0
- shaped/autogen/models/exploration_reorder_step.py +125 -0
- shaped/autogen/models/expression_filter_step.py +106 -0
- shaped/autogen/models/factors.py +136 -0
- shaped/autogen/models/factors1.py +136 -0
- shaped/autogen/models/feature.py +90 -0
- shaped/autogen/models/feature_type.py +60 -0
- shaped/autogen/models/file_table_config.py +112 -0
- shaped/autogen/models/filter_config.py +99 -0
- shaped/autogen/models/filter_dataset.py +164 -0
- shaped/autogen/models/filter_index_type.py +36 -0
- shaped/autogen/models/filter_retrieve_step.py +113 -0
- shaped/autogen/models/filter_step_explanation.py +165 -0
- shaped/autogen/models/filter_table.py +140 -0
- shaped/autogen/models/filter_type.py +134 -0
- shaped/autogen/models/global_filter.py +102 -0
- shaped/autogen/models/hidden_dropout_prob.py +136 -0
- shaped/autogen/models/hidden_size.py +136 -0
- shaped/autogen/models/hidden_size1.py +136 -0
- shaped/autogen/models/http_problem_response.py +115 -0
- shaped/autogen/models/http_validation_error.py +2 -2
- shaped/autogen/models/hugging_face_encoder.py +115 -0
- shaped/autogen/models/iceberg_table_config.py +154 -0
- shaped/autogen/models/index_config.py +101 -0
- shaped/autogen/models/inner_entity_id.py +144 -0
- shaped/autogen/models/inner_size.py +136 -0
- shaped/autogen/models/inner_size1.py +136 -0
- shaped/autogen/models/inner_uid.py +144 -0
- shaped/autogen/models/interaction_config.py +122 -0
- shaped/autogen/models/interaction_pooling_encoder.py +104 -0
- shaped/autogen/models/interaction_round_robin_encoder.py +104 -0
- shaped/autogen/models/item_attribute_pooling_encoder.py +111 -0
- shaped/autogen/models/journey.py +140 -0
- shaped/autogen/models/kafka_table_config.py +129 -0
- shaped/autogen/models/kinesis_table_config.py +140 -0
- shaped/autogen/models/kinesis_table_config_column_schema_value.py +136 -0
- shaped/autogen/models/label.py +90 -0
- shaped/autogen/models/label_type.py +36 -0
- shaped/autogen/models/laplace_smoothing.py +136 -0
- shaped/autogen/models/latency_scaling_policy.py +112 -0
- shaped/autogen/models/learning_rate.py +136 -0
- shaped/autogen/models/learning_rate1.py +136 -0
- shaped/autogen/models/learning_rate2.py +136 -0
- shaped/autogen/models/learning_rate3.py +136 -0
- shaped/autogen/models/lexical_search_mode.py +99 -0
- shaped/autogen/models/list_engines_response.py +95 -0
- shaped/autogen/models/list_tables_response.py +95 -0
- shaped/autogen/models/list_views_response.py +95 -0
- shaped/autogen/models/location_inner.py +138 -0
- shaped/autogen/models/loss_types.py +37 -0
- shaped/autogen/models/lr.py +136 -0
- shaped/autogen/models/lr1.py +136 -0
- shaped/autogen/models/lr2.py +136 -0
- shaped/autogen/models/max_depth.py +136 -0
- shaped/autogen/models/max_leaves.py +136 -0
- shaped/autogen/models/max_seq_length.py +136 -0
- shaped/autogen/models/max_seq_length1.py +136 -0
- shaped/autogen/models/max_seq_length2.py +136 -0
- shaped/autogen/models/mode.py +134 -0
- shaped/autogen/models/mode1.py +136 -0
- shaped/autogen/models/mode2.py +150 -0
- shaped/autogen/models/models_inner.py +308 -0
- shaped/autogen/models/mongo_db_table_config.py +147 -0
- shaped/autogen/models/mssql_table_config.py +155 -0
- shaped/autogen/models/{my_sql_dataset_config.py → my_sql_table_config.py} +45 -28
- shaped/autogen/models/n_epochs.py +136 -0
- shaped/autogen/models/n_epochs1.py +136 -0
- shaped/autogen/models/n_epochs2.py +136 -0
- shaped/autogen/models/n_estimators.py +136 -0
- shaped/autogen/models/n_heads.py +136 -0
- shaped/autogen/models/n_layers.py +136 -0
- shaped/autogen/models/neg_per_positive.py +136 -0
- shaped/autogen/models/negative_samples_count.py +136 -0
- shaped/autogen/models/ngram_tokenizer.py +103 -0
- shaped/autogen/models/no_op_config.py +117 -0
- shaped/autogen/models/num_blocks.py +136 -0
- shaped/autogen/models/num_heads.py +136 -0
- shaped/autogen/models/num_leaves.py +136 -0
- shaped/autogen/models/objective.py +40 -0
- shaped/autogen/models/objective1.py +134 -0
- shaped/autogen/models/online_store_config.py +89 -0
- shaped/autogen/models/pagination_config.py +87 -0
- shaped/autogen/models/parameter_definition.py +96 -0
- shaped/autogen/models/parameters_value.py +240 -0
- shaped/autogen/models/passthrough_score.py +104 -0
- shaped/autogen/models/personal_filter.py +104 -0
- shaped/autogen/models/pipeline_stage_explanation.py +118 -0
- shaped/autogen/models/policy.py +134 -0
- shaped/autogen/models/pool_fn.py +152 -0
- shaped/autogen/models/pooling_function.py +37 -0
- shaped/autogen/models/{postgres_dataset_config.py → postgres_table_config.py} +66 -28
- shaped/autogen/models/posthog_table_config.py +133 -0
- shaped/autogen/models/prebuilt_filter_step.py +113 -0
- shaped/autogen/models/precomputed_item_embedding.py +99 -0
- shaped/autogen/models/precomputed_user_embedding.py +99 -0
- shaped/autogen/models/query.py +136 -0
- shaped/autogen/models/query1.py +136 -0
- shaped/autogen/models/query_any_of.py +172 -0
- shaped/autogen/models/query_config.py +140 -0
- shaped/autogen/models/query_definition.py +106 -0
- shaped/autogen/models/query_encoder.py +194 -0
- shaped/autogen/models/query_explanation.py +201 -0
- shaped/autogen/models/query_request.py +121 -0
- shaped/autogen/models/query_result.py +113 -0
- shaped/autogen/models/query_table_config.py +99 -0
- shaped/autogen/models/rank_item_attribute_values_query_config.py +122 -0
- shaped/autogen/models/rank_query_config.py +167 -0
- shaped/autogen/models/rank_query_config_filter_inner.py +149 -0
- shaped/autogen/models/rank_query_config_reorder_inner.py +186 -0
- shaped/autogen/models/rank_query_config_retrieve_inner.py +265 -0
- shaped/autogen/models/recreate_rollout.py +97 -0
- shaped/autogen/models/{redshift_dataset_config.py → redshift_table_config.py} +48 -25
- shaped/autogen/models/reference_table_config.py +113 -0
- shaped/autogen/models/regularization.py +136 -0
- shaped/autogen/models/reorder_inner.py +149 -0
- shaped/autogen/models/reorder_step_explanation.py +207 -0
- shaped/autogen/models/request.py +378 -0
- shaped/autogen/models/request1.py +140 -0
- shaped/autogen/models/requests_per_second_scaling_policy.py +112 -0
- shaped/autogen/models/resource_config.py +100 -0
- shaped/autogen/models/response_get_view_details_views_view_name_get.py +134 -0
- shaped/autogen/models/result.py +132 -0
- shaped/autogen/models/result_embeddings_value.py +127 -0
- shaped/autogen/models/retrieval_scores_value.py +127 -0
- shaped/autogen/models/retrieve_inner.py +196 -0
- shaped/autogen/models/retrieve_step_explanation.py +172 -0
- shaped/autogen/models/retriever.py +196 -0
- shaped/autogen/models/retriever1.py +196 -0
- shaped/autogen/models/rollout_config.py +91 -0
- shaped/autogen/models/rudderstack_table_config.py +106 -0
- shaped/autogen/models/sampling_strategy.py +36 -0
- shaped/autogen/models/saved_query_info_response.py +103 -0
- shaped/autogen/models/saved_query_list_response.py +87 -0
- shaped/autogen/models/saved_query_request.py +115 -0
- shaped/autogen/models/schema_config.py +117 -0
- shaped/autogen/models/score.py +134 -0
- shaped/autogen/models/score_ensemble.py +127 -0
- shaped/autogen/models/score_ensemble_policy_config.py +165 -0
- shaped/autogen/models/score_ensemble_policy_config_policies_inner.py +755 -0
- shaped/autogen/models/score_step_explanation.py +224 -0
- shaped/autogen/models/search_config.py +105 -0
- shaped/autogen/models/segment_table_config.py +106 -0
- shaped/autogen/models/sequence_length.py +136 -0
- shaped/autogen/models/server_config.py +100 -0
- shaped/autogen/models/setup_engine_response.py +87 -0
- shaped/autogen/models/shaped_internal_recsys_policies_als_model_policy_als_model_policy_config.py +154 -0
- shaped/autogen/models/shaped_internal_recsys_policies_beeformer_model_policy_beeformer_model_policy_beeformer_model_policy_config.py +160 -0
- shaped/autogen/models/shaped_internal_recsys_policies_bert_model_policy_bert_model_policy_bert_model_policy_config.py +215 -0
- shaped/autogen/models/shaped_internal_recsys_policies_chronological_model_policy_chronological_model_policy_config.py +156 -0
- shaped/autogen/models/shaped_internal_recsys_policies_elsa_model_policy_elsa_model_policy_elsa_model_policy_config.py +141 -0
- shaped/autogen/models/shaped_internal_recsys_policies_gsasrec_model_policy_gsasrec_model_policy_gsas_rec_model_policy_config.py +211 -0
- shaped/autogen/models/shaped_internal_recsys_policies_item2vec_model_policy_item2_vec_model_policy_config.py +140 -0
- shaped/autogen/models/shaped_internal_recsys_policies_item_content_similarity_model_policy_item_content_similarity_model_policy_config.py +195 -0
- shaped/autogen/models/shaped_internal_recsys_policies_lightgbm_model_policy_lightgbm_model_policy_light_gbm_model_policy_config.py +245 -0
- shaped/autogen/models/shaped_internal_recsys_policies_ngram_model_policy_ngram_model_policy_config.py +119 -0
- shaped/autogen/models/shaped_internal_recsys_policies_popular_model_policy_popular_model_policy_config.py +161 -0
- shaped/autogen/models/shaped_internal_recsys_policies_random_model_policy_random_model_policy_config.py +108 -0
- shaped/autogen/models/shaped_internal_recsys_policies_recently_popular_policy_recently_popular_policy_config.py +143 -0
- shaped/autogen/models/shaped_internal_recsys_policies_rising_popular_policy_rising_popular_policy_config.py +123 -0
- shaped/autogen/models/shaped_internal_recsys_policies_sasrec_model_policy_sasrec_model_policy_sas_rec_model_policy_config.py +230 -0
- shaped/autogen/models/shaped_internal_recsys_policies_svd_model_policy_svd_model_policy_config.py +119 -0
- shaped/autogen/models/shaped_internal_recsys_policies_two_tower_model_policy_two_tower_model_policy_two_tower_model_policy_config.py +165 -0
- shaped/autogen/models/shaped_internal_recsys_policies_user_item_content_similarity_model_policy_user_item_content_similarity_model_policy_config.py +153 -0
- shaped/autogen/models/shaped_internal_recsys_policies_widedeep_model_policy_wide_deep_model_policy_config.py +137 -0
- shaped/autogen/models/shaped_internal_recsys_policies_xgboost_model_policy_xg_boost_model_policy_config.py +155 -0
- shaped/autogen/models/shopify_table_config.py +156 -0
- shaped/autogen/models/similarity_retrieve_step.py +123 -0
- shaped/autogen/models/{snowflake_dataset_config.py → snowflake_table_config.py} +47 -18
- shaped/autogen/models/sql_transform_type.py +37 -0
- shaped/autogen/models/sql_view_config.py +111 -0
- shaped/autogen/models/stemmer_tokenizer.py +105 -0
- shaped/autogen/models/step_explanation.py +137 -0
- shaped/autogen/models/steps_inner.py +179 -0
- shaped/autogen/models/strategy.py +134 -0
- shaped/autogen/models/table.py +102 -0
- shaped/autogen/models/table_deployment_type.py +38 -0
- shaped/autogen/models/table_insert_arguments.py +87 -0
- shaped/autogen/models/table_insert_response.py +87 -0
- shaped/autogen/models/text_encoding.py +148 -0
- shaped/autogen/models/text_search_retrieve_step.py +121 -0
- shaped/autogen/models/time_frequency.py +136 -0
- shaped/autogen/models/time_window.py +136 -0
- shaped/autogen/models/time_window_in_days.py +154 -0
- shaped/autogen/models/tokenizer.py +149 -0
- shaped/autogen/models/trained_model_encoder.py +99 -0
- shaped/autogen/models/training_compute_config.py +99 -0
- shaped/autogen/models/training_config.py +121 -0
- shaped/autogen/models/training_config_models_inner.py +540 -0
- shaped/autogen/models/training_strategy.py +37 -0
- shaped/autogen/models/transform_status.py +41 -0
- shaped/autogen/models/trending_mode.py +37 -0
- shaped/autogen/models/truncate_filter_step.py +106 -0
- shaped/autogen/models/tunable_bool.py +97 -0
- shaped/autogen/models/tunable_float.py +118 -0
- shaped/autogen/models/tunable_int.py +118 -0
- shaped/autogen/models/tunable_int_categorical.py +99 -0
- shaped/autogen/models/tunable_string.py +99 -0
- shaped/autogen/models/tuning_config.py +89 -0
- shaped/autogen/models/type.py +150 -0
- shaped/autogen/models/update_table_response.py +87 -0
- shaped/autogen/models/update_view_response.py +87 -0
- shaped/autogen/models/user_attribute_pooling_encoder.py +124 -0
- shaped/autogen/models/user_inner.py +134 -0
- shaped/autogen/models/val_split.py +136 -0
- shaped/autogen/models/validation_error.py +13 -3
- shaped/autogen/models/validation_error_loc_inner.py +150 -0
- shaped/autogen/models/value_type.py +7 -5
- shaped/autogen/models/vector_search_mode.py +101 -0
- shaped/autogen/models/view.py +104 -0
- shaped/autogen/models/view_details_ai.py +140 -0
- shaped/autogen/models/view_details_ai_schema_value.py +153 -0
- shaped/autogen/models/view_details_sql.py +140 -0
- shaped/autogen/models/view_status.py +41 -0
- shaped/autogen/models/weight_decay.py +136 -0
- shaped/autogen/models/whitespace_tokenizer.py +97 -0
- shaped/autogen/models/window_size.py +136 -0
- shaped/autogen/rest.py +10 -4
- shaped/cli/shaped_cli.py +163 -35
- shaped/client.py +591 -171
- shaped/config_builders.py +705 -0
- shaped/query_builder.py +781 -0
- {shaped-2.0.1.dist-info → shaped-2.0.4.dist-info}/METADATA +141 -6
- shaped-2.0.4.dist-info/RECORD +296 -0
- {shaped-2.0.1.dist-info → shaped-2.0.4.dist-info}/WHEEL +1 -1
- shaped-2.0.4.dist-info/entry_points.txt +2 -0
- shaped/autogen/api/model_inference_api.py +0 -2825
- shaped/autogen/models/amplitude_dataset_config.py +0 -96
- shaped/autogen/models/aws_pinpoint_dataset_config.py +0 -96
- shaped/autogen/models/big_query_dataset_config.py +0 -114
- shaped/autogen/models/complement_items_request.py +0 -99
- shaped/autogen/models/complement_items_response.py +0 -89
- shaped/autogen/models/connectors_inner.py +0 -134
- shaped/autogen/models/create_dataset_arguments.py +0 -263
- shaped/autogen/models/create_embedding_response.py +0 -87
- shaped/autogen/models/create_item_embedding_request.py +0 -89
- shaped/autogen/models/create_model_arguments.py +0 -107
- shaped/autogen/models/create_model_response.py +0 -87
- shaped/autogen/models/create_user_embedding_request.py +0 -89
- shaped/autogen/models/custom_dataset_config.py +0 -115
- shaped/autogen/models/dataset_config.py +0 -101
- shaped/autogen/models/dataset_schema_type.py +0 -47
- shaped/autogen/models/datasets_inner.py +0 -91
- shaped/autogen/models/delete_model_response.py +0 -87
- shaped/autogen/models/fetch_config.py +0 -95
- shaped/autogen/models/file_config.py +0 -105
- shaped/autogen/models/file_source_config.py +0 -89
- shaped/autogen/models/inference_config.py +0 -101
- shaped/autogen/models/insert_model_response.py +0 -87
- shaped/autogen/models/interaction.py +0 -87
- shaped/autogen/models/list_datasets_response.py +0 -95
- shaped/autogen/models/list_models_response.py +0 -95
- shaped/autogen/models/model_config.py +0 -99
- shaped/autogen/models/model_response.py +0 -95
- shaped/autogen/models/mongo_db_dataset_config.py +0 -119
- shaped/autogen/models/post_rank_request.py +0 -117
- shaped/autogen/models/rank_attribute_response.py +0 -89
- shaped/autogen/models/rank_grid_attribute_request.py +0 -91
- shaped/autogen/models/rank_grid_attribute_request1.py +0 -93
- shaped/autogen/models/rank_grid_attribute_response.py +0 -91
- shaped/autogen/models/rank_response.py +0 -91
- shaped/autogen/models/retrieve_request.py +0 -101
- shaped/autogen/models/retrieve_response.py +0 -91
- shaped/autogen/models/retriever_top_k_override.py +0 -97
- shaped/autogen/models/rudder_stack_dataset_config.py +0 -96
- shaped/autogen/models/segment_dataset_config.py +0 -96
- shaped/autogen/models/similar_item_request.py +0 -101
- shaped/autogen/models/similar_response.py +0 -89
- shaped/autogen/models/similar_users_request.py +0 -99
- shaped/autogen/models/successful_response.py +0 -87
- shaped/autogen/models/view_model_response.py +0 -99
- shaped-2.0.1.dist-info/RECORD +0 -73
- shaped-2.0.1.dist-info/entry_points.txt +0 -2
- {shaped-2.0.1.dist-info → shaped-2.0.4.dist-info}/top_level.txt +0 -0
- {shaped-2.0.1.dist-info → shaped-2.0.4.dist-info}/zip-safe +0 -0
|
@@ -0,0 +1,755 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
Shaped API
|
|
5
|
+
|
|
6
|
+
Welcome to Shaped's API reference docs. These provide a detailed view of the endpoints and CLI commands that Shaped provides and brief explanations of how they should be used. The Shaped API has four main endpoints: **Tables** - Provision and manage batch and real-time data connectors. **Views** - Configure SQL transformations and AI enrichment on your input data. Use SQL to combine multiple data sources or use an LLM to add new categories, extract specific attributes from descriptions, etc. **Engines** - Deploy and manage your relevance engines. The Engine API exposes configuration for indexing logic, input datasets, externam embeddings, and more. **Query** - Execute queries against your engines, to return data based on an input query or rerank an existing list. The Query API exposes the retrieve, filter, score, and ranking steps of the 4-stage ranking architecture. The base URL for each endpoint is: `https://api.shaped.ai/v2`
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 2.0.0
|
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
|
+
|
|
11
|
+
Do not edit the class manually.
|
|
12
|
+
""" # noqa: E501
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
from __future__ import annotations
|
|
16
|
+
|
|
17
|
+
import json
|
|
18
|
+
import pprint
|
|
19
|
+
from typing import Any, Dict, Optional, Set, Union
|
|
20
|
+
|
|
21
|
+
from pydantic import BaseModel, ConfigDict, ValidationError, field_validator
|
|
22
|
+
from shaped.autogen.models.no_op_config import NoOpConfig
|
|
23
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_als_model_policy_als_model_policy_config import (
|
|
24
|
+
ShapedInternalRecsysPoliciesAlsModelPolicyALSModelPolicyConfig,
|
|
25
|
+
)
|
|
26
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_beeformer_model_policy_beeformer_model_policy_beeformer_model_policy_config import (
|
|
27
|
+
ShapedInternalRecsysPoliciesBeeformerModelPolicyBeeformerModelPolicyBeeformerModelPolicyConfig,
|
|
28
|
+
)
|
|
29
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_bert_model_policy_bert_model_policy_bert_model_policy_config import (
|
|
30
|
+
ShapedInternalRecsysPoliciesBertModelPolicyBertModelPolicyBERTModelPolicyConfig,
|
|
31
|
+
)
|
|
32
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_chronological_model_policy_chronological_model_policy_config import (
|
|
33
|
+
ShapedInternalRecsysPoliciesChronologicalModelPolicyChronologicalModelPolicyConfig,
|
|
34
|
+
)
|
|
35
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_elsa_model_policy_elsa_model_policy_elsa_model_policy_config import (
|
|
36
|
+
ShapedInternalRecsysPoliciesElsaModelPolicyElsaModelPolicyELSAModelPolicyConfig,
|
|
37
|
+
)
|
|
38
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_gsasrec_model_policy_gsasrec_model_policy_gsas_rec_model_policy_config import (
|
|
39
|
+
ShapedInternalRecsysPoliciesGsasrecModelPolicyGsasrecModelPolicyGSASRecModelPolicyConfig,
|
|
40
|
+
)
|
|
41
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_item2vec_model_policy_item2_vec_model_policy_config import (
|
|
42
|
+
ShapedInternalRecsysPoliciesItem2vecModelPolicyItem2VecModelPolicyConfig,
|
|
43
|
+
)
|
|
44
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_item_content_similarity_model_policy_item_content_similarity_model_policy_config import (
|
|
45
|
+
ShapedInternalRecsysPoliciesItemContentSimilarityModelPolicyItemContentSimilarityModelPolicyConfig,
|
|
46
|
+
)
|
|
47
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_lightgbm_model_policy_lightgbm_model_policy_light_gbm_model_policy_config import (
|
|
48
|
+
ShapedInternalRecsysPoliciesLightgbmModelPolicyLightgbmModelPolicyLightGBMModelPolicyConfig,
|
|
49
|
+
)
|
|
50
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_ngram_model_policy_ngram_model_policy_config import (
|
|
51
|
+
ShapedInternalRecsysPoliciesNgramModelPolicyNgramModelPolicyConfig,
|
|
52
|
+
)
|
|
53
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_popular_model_policy_popular_model_policy_config import (
|
|
54
|
+
ShapedInternalRecsysPoliciesPopularModelPolicyPopularModelPolicyConfig,
|
|
55
|
+
)
|
|
56
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_random_model_policy_random_model_policy_config import (
|
|
57
|
+
ShapedInternalRecsysPoliciesRandomModelPolicyRandomModelPolicyConfig,
|
|
58
|
+
)
|
|
59
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_recently_popular_policy_recently_popular_policy_config import (
|
|
60
|
+
ShapedInternalRecsysPoliciesRecentlyPopularPolicyRecentlyPopularPolicyConfig,
|
|
61
|
+
)
|
|
62
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_rising_popular_policy_rising_popular_policy_config import (
|
|
63
|
+
ShapedInternalRecsysPoliciesRisingPopularPolicyRisingPopularPolicyConfig,
|
|
64
|
+
)
|
|
65
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_sasrec_model_policy_sasrec_model_policy_sas_rec_model_policy_config import (
|
|
66
|
+
ShapedInternalRecsysPoliciesSasrecModelPolicySasrecModelPolicySASRecModelPolicyConfig,
|
|
67
|
+
)
|
|
68
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_svd_model_policy_svd_model_policy_config import (
|
|
69
|
+
ShapedInternalRecsysPoliciesSvdModelPolicySVDModelPolicyConfig,
|
|
70
|
+
)
|
|
71
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_two_tower_model_policy_two_tower_model_policy_two_tower_model_policy_config import (
|
|
72
|
+
ShapedInternalRecsysPoliciesTwoTowerModelPolicyTwoTowerModelPolicyTwoTowerModelPolicyConfig,
|
|
73
|
+
)
|
|
74
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_user_item_content_similarity_model_policy_user_item_content_similarity_model_policy_config import (
|
|
75
|
+
ShapedInternalRecsysPoliciesUserItemContentSimilarityModelPolicyUserItemContentSimilarityModelPolicyConfig,
|
|
76
|
+
)
|
|
77
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_widedeep_model_policy_wide_deep_model_policy_config import (
|
|
78
|
+
ShapedInternalRecsysPoliciesWidedeepModelPolicyWideDeepModelPolicyConfig,
|
|
79
|
+
)
|
|
80
|
+
from shaped.autogen.models.shaped_internal_recsys_policies_xgboost_model_policy_xg_boost_model_policy_config import (
|
|
81
|
+
ShapedInternalRecsysPoliciesXgboostModelPolicyXGBoostModelPolicyConfig,
|
|
82
|
+
)
|
|
83
|
+
from typing_extensions import Self
|
|
84
|
+
|
|
85
|
+
SCOREENSEMBLEPOLICYCONFIGPOLICIESINNER_ONE_OF_SCHEMAS = [
|
|
86
|
+
"NoOpConfig",
|
|
87
|
+
"ScoreEnsemblePolicyConfig",
|
|
88
|
+
"ShapedInternalRecsysPoliciesAlsModelPolicyALSModelPolicyConfig",
|
|
89
|
+
"ShapedInternalRecsysPoliciesBeeformerModelPolicyBeeformerModelPolicyBeeformerModelPolicyConfig",
|
|
90
|
+
"ShapedInternalRecsysPoliciesBertModelPolicyBertModelPolicyBERTModelPolicyConfig",
|
|
91
|
+
"ShapedInternalRecsysPoliciesChronologicalModelPolicyChronologicalModelPolicyConfig",
|
|
92
|
+
"ShapedInternalRecsysPoliciesElsaModelPolicyElsaModelPolicyELSAModelPolicyConfig",
|
|
93
|
+
"ShapedInternalRecsysPoliciesGsasrecModelPolicyGsasrecModelPolicyGSASRecModelPolicyConfig",
|
|
94
|
+
"ShapedInternalRecsysPoliciesItem2vecModelPolicyItem2VecModelPolicyConfig",
|
|
95
|
+
"ShapedInternalRecsysPoliciesItemContentSimilarityModelPolicyItemContentSimilarityModelPolicyConfig",
|
|
96
|
+
"ShapedInternalRecsysPoliciesLightgbmModelPolicyLightgbmModelPolicyLightGBMModelPolicyConfig",
|
|
97
|
+
"ShapedInternalRecsysPoliciesNgramModelPolicyNgramModelPolicyConfig",
|
|
98
|
+
"ShapedInternalRecsysPoliciesPopularModelPolicyPopularModelPolicyConfig",
|
|
99
|
+
"ShapedInternalRecsysPoliciesRandomModelPolicyRandomModelPolicyConfig",
|
|
100
|
+
"ShapedInternalRecsysPoliciesRecentlyPopularPolicyRecentlyPopularPolicyConfig",
|
|
101
|
+
"ShapedInternalRecsysPoliciesRisingPopularPolicyRisingPopularPolicyConfig",
|
|
102
|
+
"ShapedInternalRecsysPoliciesSasrecModelPolicySasrecModelPolicySASRecModelPolicyConfig",
|
|
103
|
+
"ShapedInternalRecsysPoliciesSvdModelPolicySVDModelPolicyConfig",
|
|
104
|
+
"ShapedInternalRecsysPoliciesTwoTowerModelPolicyTwoTowerModelPolicyTwoTowerModelPolicyConfig",
|
|
105
|
+
"ShapedInternalRecsysPoliciesUserItemContentSimilarityModelPolicyUserItemContentSimilarityModelPolicyConfig",
|
|
106
|
+
"ShapedInternalRecsysPoliciesWidedeepModelPolicyWideDeepModelPolicyConfig",
|
|
107
|
+
"ShapedInternalRecsysPoliciesXgboostModelPolicyXGBoostModelPolicyConfig",
|
|
108
|
+
]
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
class ScoreEnsemblePolicyConfigPoliciesInner(BaseModel):
|
|
112
|
+
"""
|
|
113
|
+
ScoreEnsemblePolicyConfigPoliciesInner
|
|
114
|
+
"""
|
|
115
|
+
|
|
116
|
+
# data type: ShapedInternalRecsysPoliciesElsaModelPolicyElsaModelPolicyELSAModelPolicyConfig
|
|
117
|
+
oneof_schema_1_validator: Optional[
|
|
118
|
+
ShapedInternalRecsysPoliciesElsaModelPolicyElsaModelPolicyELSAModelPolicyConfig
|
|
119
|
+
] = None
|
|
120
|
+
# data type: ShapedInternalRecsysPoliciesLightgbmModelPolicyLightgbmModelPolicyLightGBMModelPolicyConfig
|
|
121
|
+
oneof_schema_2_validator: Optional[
|
|
122
|
+
ShapedInternalRecsysPoliciesLightgbmModelPolicyLightgbmModelPolicyLightGBMModelPolicyConfig
|
|
123
|
+
] = None
|
|
124
|
+
# data type: ShapedInternalRecsysPoliciesAlsModelPolicyALSModelPolicyConfig
|
|
125
|
+
oneof_schema_3_validator: Optional[
|
|
126
|
+
ShapedInternalRecsysPoliciesAlsModelPolicyALSModelPolicyConfig
|
|
127
|
+
] = None
|
|
128
|
+
# data type: ShapedInternalRecsysPoliciesSvdModelPolicySVDModelPolicyConfig
|
|
129
|
+
oneof_schema_4_validator: Optional[
|
|
130
|
+
ShapedInternalRecsysPoliciesSvdModelPolicySVDModelPolicyConfig
|
|
131
|
+
] = None
|
|
132
|
+
# data type: ShapedInternalRecsysPoliciesSasrecModelPolicySasrecModelPolicySASRecModelPolicyConfig
|
|
133
|
+
oneof_schema_5_validator: Optional[
|
|
134
|
+
ShapedInternalRecsysPoliciesSasrecModelPolicySasrecModelPolicySASRecModelPolicyConfig
|
|
135
|
+
] = None
|
|
136
|
+
# data type: ShapedInternalRecsysPoliciesGsasrecModelPolicyGsasrecModelPolicyGSASRecModelPolicyConfig
|
|
137
|
+
oneof_schema_6_validator: Optional[
|
|
138
|
+
ShapedInternalRecsysPoliciesGsasrecModelPolicyGsasrecModelPolicyGSASRecModelPolicyConfig
|
|
139
|
+
] = None
|
|
140
|
+
# data type: ShapedInternalRecsysPoliciesBertModelPolicyBertModelPolicyBERTModelPolicyConfig
|
|
141
|
+
oneof_schema_7_validator: Optional[
|
|
142
|
+
ShapedInternalRecsysPoliciesBertModelPolicyBertModelPolicyBERTModelPolicyConfig
|
|
143
|
+
] = None
|
|
144
|
+
# data type: ShapedInternalRecsysPoliciesTwoTowerModelPolicyTwoTowerModelPolicyTwoTowerModelPolicyConfig
|
|
145
|
+
oneof_schema_8_validator: Optional[
|
|
146
|
+
ShapedInternalRecsysPoliciesTwoTowerModelPolicyTwoTowerModelPolicyTwoTowerModelPolicyConfig
|
|
147
|
+
] = None
|
|
148
|
+
# data type: ShapedInternalRecsysPoliciesChronologicalModelPolicyChronologicalModelPolicyConfig
|
|
149
|
+
oneof_schema_9_validator: Optional[
|
|
150
|
+
ShapedInternalRecsysPoliciesChronologicalModelPolicyChronologicalModelPolicyConfig
|
|
151
|
+
] = None
|
|
152
|
+
# data type: ShapedInternalRecsysPoliciesItemContentSimilarityModelPolicyItemContentSimilarityModelPolicyConfig
|
|
153
|
+
oneof_schema_10_validator: Optional[
|
|
154
|
+
ShapedInternalRecsysPoliciesItemContentSimilarityModelPolicyItemContentSimilarityModelPolicyConfig
|
|
155
|
+
] = None
|
|
156
|
+
# data type: ShapedInternalRecsysPoliciesUserItemContentSimilarityModelPolicyUserItemContentSimilarityModelPolicyConfig
|
|
157
|
+
oneof_schema_11_validator: Optional[
|
|
158
|
+
ShapedInternalRecsysPoliciesUserItemContentSimilarityModelPolicyUserItemContentSimilarityModelPolicyConfig
|
|
159
|
+
] = None
|
|
160
|
+
# data type: ShapedInternalRecsysPoliciesRecentlyPopularPolicyRecentlyPopularPolicyConfig
|
|
161
|
+
oneof_schema_12_validator: Optional[
|
|
162
|
+
ShapedInternalRecsysPoliciesRecentlyPopularPolicyRecentlyPopularPolicyConfig
|
|
163
|
+
] = None
|
|
164
|
+
# data type: ShapedInternalRecsysPoliciesRisingPopularPolicyRisingPopularPolicyConfig
|
|
165
|
+
oneof_schema_13_validator: Optional[
|
|
166
|
+
ShapedInternalRecsysPoliciesRisingPopularPolicyRisingPopularPolicyConfig
|
|
167
|
+
] = None
|
|
168
|
+
# data type: ShapedInternalRecsysPoliciesPopularModelPolicyPopularModelPolicyConfig
|
|
169
|
+
oneof_schema_14_validator: Optional[
|
|
170
|
+
ShapedInternalRecsysPoliciesPopularModelPolicyPopularModelPolicyConfig
|
|
171
|
+
] = None
|
|
172
|
+
# data type: ShapedInternalRecsysPoliciesNgramModelPolicyNgramModelPolicyConfig
|
|
173
|
+
oneof_schema_15_validator: Optional[
|
|
174
|
+
ShapedInternalRecsysPoliciesNgramModelPolicyNgramModelPolicyConfig
|
|
175
|
+
] = None
|
|
176
|
+
# data type: ShapedInternalRecsysPoliciesRandomModelPolicyRandomModelPolicyConfig
|
|
177
|
+
oneof_schema_16_validator: Optional[
|
|
178
|
+
ShapedInternalRecsysPoliciesRandomModelPolicyRandomModelPolicyConfig
|
|
179
|
+
] = None
|
|
180
|
+
# data type: ScoreEnsemblePolicyConfig
|
|
181
|
+
oneof_schema_17_validator: Optional[ScoreEnsemblePolicyConfig] = None
|
|
182
|
+
# data type: ShapedInternalRecsysPoliciesWidedeepModelPolicyWideDeepModelPolicyConfig
|
|
183
|
+
oneof_schema_18_validator: Optional[
|
|
184
|
+
ShapedInternalRecsysPoliciesWidedeepModelPolicyWideDeepModelPolicyConfig
|
|
185
|
+
] = None
|
|
186
|
+
# data type: ShapedInternalRecsysPoliciesItem2vecModelPolicyItem2VecModelPolicyConfig
|
|
187
|
+
oneof_schema_19_validator: Optional[
|
|
188
|
+
ShapedInternalRecsysPoliciesItem2vecModelPolicyItem2VecModelPolicyConfig
|
|
189
|
+
] = None
|
|
190
|
+
# data type: ShapedInternalRecsysPoliciesXgboostModelPolicyXGBoostModelPolicyConfig
|
|
191
|
+
oneof_schema_20_validator: Optional[
|
|
192
|
+
ShapedInternalRecsysPoliciesXgboostModelPolicyXGBoostModelPolicyConfig
|
|
193
|
+
] = None
|
|
194
|
+
# data type: NoOpConfig
|
|
195
|
+
oneof_schema_21_validator: Optional[NoOpConfig] = None
|
|
196
|
+
# data type: ShapedInternalRecsysPoliciesBeeformerModelPolicyBeeformerModelPolicyBeeformerModelPolicyConfig
|
|
197
|
+
oneof_schema_22_validator: Optional[
|
|
198
|
+
ShapedInternalRecsysPoliciesBeeformerModelPolicyBeeformerModelPolicyBeeformerModelPolicyConfig
|
|
199
|
+
] = None
|
|
200
|
+
actual_instance: Optional[
|
|
201
|
+
Union[
|
|
202
|
+
NoOpConfig,
|
|
203
|
+
ScoreEnsemblePolicyConfig,
|
|
204
|
+
ShapedInternalRecsysPoliciesAlsModelPolicyALSModelPolicyConfig,
|
|
205
|
+
ShapedInternalRecsysPoliciesBeeformerModelPolicyBeeformerModelPolicyBeeformerModelPolicyConfig,
|
|
206
|
+
ShapedInternalRecsysPoliciesBertModelPolicyBertModelPolicyBERTModelPolicyConfig,
|
|
207
|
+
ShapedInternalRecsysPoliciesChronologicalModelPolicyChronologicalModelPolicyConfig,
|
|
208
|
+
ShapedInternalRecsysPoliciesElsaModelPolicyElsaModelPolicyELSAModelPolicyConfig,
|
|
209
|
+
ShapedInternalRecsysPoliciesGsasrecModelPolicyGsasrecModelPolicyGSASRecModelPolicyConfig,
|
|
210
|
+
ShapedInternalRecsysPoliciesItem2vecModelPolicyItem2VecModelPolicyConfig,
|
|
211
|
+
ShapedInternalRecsysPoliciesItemContentSimilarityModelPolicyItemContentSimilarityModelPolicyConfig,
|
|
212
|
+
ShapedInternalRecsysPoliciesLightgbmModelPolicyLightgbmModelPolicyLightGBMModelPolicyConfig,
|
|
213
|
+
ShapedInternalRecsysPoliciesNgramModelPolicyNgramModelPolicyConfig,
|
|
214
|
+
ShapedInternalRecsysPoliciesPopularModelPolicyPopularModelPolicyConfig,
|
|
215
|
+
ShapedInternalRecsysPoliciesRandomModelPolicyRandomModelPolicyConfig,
|
|
216
|
+
ShapedInternalRecsysPoliciesRecentlyPopularPolicyRecentlyPopularPolicyConfig,
|
|
217
|
+
ShapedInternalRecsysPoliciesRisingPopularPolicyRisingPopularPolicyConfig,
|
|
218
|
+
ShapedInternalRecsysPoliciesSasrecModelPolicySasrecModelPolicySASRecModelPolicyConfig,
|
|
219
|
+
ShapedInternalRecsysPoliciesSvdModelPolicySVDModelPolicyConfig,
|
|
220
|
+
ShapedInternalRecsysPoliciesTwoTowerModelPolicyTwoTowerModelPolicyTwoTowerModelPolicyConfig,
|
|
221
|
+
ShapedInternalRecsysPoliciesUserItemContentSimilarityModelPolicyUserItemContentSimilarityModelPolicyConfig,
|
|
222
|
+
ShapedInternalRecsysPoliciesWidedeepModelPolicyWideDeepModelPolicyConfig,
|
|
223
|
+
ShapedInternalRecsysPoliciesXgboostModelPolicyXGBoostModelPolicyConfig,
|
|
224
|
+
]
|
|
225
|
+
] = None
|
|
226
|
+
one_of_schemas: Set[str] = {
|
|
227
|
+
"NoOpConfig",
|
|
228
|
+
"ScoreEnsemblePolicyConfig",
|
|
229
|
+
"ShapedInternalRecsysPoliciesAlsModelPolicyALSModelPolicyConfig",
|
|
230
|
+
"ShapedInternalRecsysPoliciesBeeformerModelPolicyBeeformerModelPolicyBeeformerModelPolicyConfig",
|
|
231
|
+
"ShapedInternalRecsysPoliciesBertModelPolicyBertModelPolicyBERTModelPolicyConfig",
|
|
232
|
+
"ShapedInternalRecsysPoliciesChronologicalModelPolicyChronologicalModelPolicyConfig",
|
|
233
|
+
"ShapedInternalRecsysPoliciesElsaModelPolicyElsaModelPolicyELSAModelPolicyConfig",
|
|
234
|
+
"ShapedInternalRecsysPoliciesGsasrecModelPolicyGsasrecModelPolicyGSASRecModelPolicyConfig",
|
|
235
|
+
"ShapedInternalRecsysPoliciesItem2vecModelPolicyItem2VecModelPolicyConfig",
|
|
236
|
+
"ShapedInternalRecsysPoliciesItemContentSimilarityModelPolicyItemContentSimilarityModelPolicyConfig",
|
|
237
|
+
"ShapedInternalRecsysPoliciesLightgbmModelPolicyLightgbmModelPolicyLightGBMModelPolicyConfig",
|
|
238
|
+
"ShapedInternalRecsysPoliciesNgramModelPolicyNgramModelPolicyConfig",
|
|
239
|
+
"ShapedInternalRecsysPoliciesPopularModelPolicyPopularModelPolicyConfig",
|
|
240
|
+
"ShapedInternalRecsysPoliciesRandomModelPolicyRandomModelPolicyConfig",
|
|
241
|
+
"ShapedInternalRecsysPoliciesRecentlyPopularPolicyRecentlyPopularPolicyConfig",
|
|
242
|
+
"ShapedInternalRecsysPoliciesRisingPopularPolicyRisingPopularPolicyConfig",
|
|
243
|
+
"ShapedInternalRecsysPoliciesSasrecModelPolicySasrecModelPolicySASRecModelPolicyConfig",
|
|
244
|
+
"ShapedInternalRecsysPoliciesSvdModelPolicySVDModelPolicyConfig",
|
|
245
|
+
"ShapedInternalRecsysPoliciesTwoTowerModelPolicyTwoTowerModelPolicyTwoTowerModelPolicyConfig",
|
|
246
|
+
"ShapedInternalRecsysPoliciesUserItemContentSimilarityModelPolicyUserItemContentSimilarityModelPolicyConfig",
|
|
247
|
+
"ShapedInternalRecsysPoliciesWidedeepModelPolicyWideDeepModelPolicyConfig",
|
|
248
|
+
"ShapedInternalRecsysPoliciesXgboostModelPolicyXGBoostModelPolicyConfig",
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
model_config = ConfigDict(
|
|
252
|
+
validate_assignment=True,
|
|
253
|
+
protected_namespaces=(),
|
|
254
|
+
)
|
|
255
|
+
|
|
256
|
+
discriminator_value_class_map: Dict[str, str] = {}
|
|
257
|
+
|
|
258
|
+
def __init__(self, *args, **kwargs) -> None:
|
|
259
|
+
if args:
|
|
260
|
+
if len(args) > 1:
|
|
261
|
+
raise ValueError(
|
|
262
|
+
"If a position argument is used, only 1 is allowed to set `actual_instance`"
|
|
263
|
+
)
|
|
264
|
+
if kwargs:
|
|
265
|
+
raise ValueError(
|
|
266
|
+
"If a position argument is used, keyword arguments cannot be used."
|
|
267
|
+
)
|
|
268
|
+
super().__init__(actual_instance=args[0])
|
|
269
|
+
else:
|
|
270
|
+
super().__init__(**kwargs)
|
|
271
|
+
|
|
272
|
+
@field_validator("actual_instance")
|
|
273
|
+
def actual_instance_must_validate_oneof(cls, v):
|
|
274
|
+
instance = ScoreEnsemblePolicyConfigPoliciesInner.model_construct()
|
|
275
|
+
error_messages = []
|
|
276
|
+
match = 0
|
|
277
|
+
# validate data type: ShapedInternalRecsysPoliciesElsaModelPolicyElsaModelPolicyELSAModelPolicyConfig
|
|
278
|
+
if not isinstance(
|
|
279
|
+
v,
|
|
280
|
+
ShapedInternalRecsysPoliciesElsaModelPolicyElsaModelPolicyELSAModelPolicyConfig,
|
|
281
|
+
):
|
|
282
|
+
error_messages.append(
|
|
283
|
+
f"Error! Input type `{type(v)}` is not `ShapedInternalRecsysPoliciesElsaModelPolicyElsaModelPolicyELSAModelPolicyConfig`"
|
|
284
|
+
)
|
|
285
|
+
else:
|
|
286
|
+
match += 1
|
|
287
|
+
# validate data type: ShapedInternalRecsysPoliciesLightgbmModelPolicyLightgbmModelPolicyLightGBMModelPolicyConfig
|
|
288
|
+
if not isinstance(
|
|
289
|
+
v,
|
|
290
|
+
ShapedInternalRecsysPoliciesLightgbmModelPolicyLightgbmModelPolicyLightGBMModelPolicyConfig,
|
|
291
|
+
):
|
|
292
|
+
error_messages.append(
|
|
293
|
+
f"Error! Input type `{type(v)}` is not `ShapedInternalRecsysPoliciesLightgbmModelPolicyLightgbmModelPolicyLightGBMModelPolicyConfig`"
|
|
294
|
+
)
|
|
295
|
+
else:
|
|
296
|
+
match += 1
|
|
297
|
+
# validate data type: ShapedInternalRecsysPoliciesAlsModelPolicyALSModelPolicyConfig
|
|
298
|
+
if not isinstance(
|
|
299
|
+
v, ShapedInternalRecsysPoliciesAlsModelPolicyALSModelPolicyConfig
|
|
300
|
+
):
|
|
301
|
+
error_messages.append(
|
|
302
|
+
f"Error! Input type `{type(v)}` is not `ShapedInternalRecsysPoliciesAlsModelPolicyALSModelPolicyConfig`"
|
|
303
|
+
)
|
|
304
|
+
else:
|
|
305
|
+
match += 1
|
|
306
|
+
# validate data type: ShapedInternalRecsysPoliciesSvdModelPolicySVDModelPolicyConfig
|
|
307
|
+
if not isinstance(
|
|
308
|
+
v, ShapedInternalRecsysPoliciesSvdModelPolicySVDModelPolicyConfig
|
|
309
|
+
):
|
|
310
|
+
error_messages.append(
|
|
311
|
+
f"Error! Input type `{type(v)}` is not `ShapedInternalRecsysPoliciesSvdModelPolicySVDModelPolicyConfig`"
|
|
312
|
+
)
|
|
313
|
+
else:
|
|
314
|
+
match += 1
|
|
315
|
+
# validate data type: ShapedInternalRecsysPoliciesSasrecModelPolicySasrecModelPolicySASRecModelPolicyConfig
|
|
316
|
+
if not isinstance(
|
|
317
|
+
v,
|
|
318
|
+
ShapedInternalRecsysPoliciesSasrecModelPolicySasrecModelPolicySASRecModelPolicyConfig,
|
|
319
|
+
):
|
|
320
|
+
error_messages.append(
|
|
321
|
+
f"Error! Input type `{type(v)}` is not `ShapedInternalRecsysPoliciesSasrecModelPolicySasrecModelPolicySASRecModelPolicyConfig`"
|
|
322
|
+
)
|
|
323
|
+
else:
|
|
324
|
+
match += 1
|
|
325
|
+
# validate data type: ShapedInternalRecsysPoliciesGsasrecModelPolicyGsasrecModelPolicyGSASRecModelPolicyConfig
|
|
326
|
+
if not isinstance(
|
|
327
|
+
v,
|
|
328
|
+
ShapedInternalRecsysPoliciesGsasrecModelPolicyGsasrecModelPolicyGSASRecModelPolicyConfig,
|
|
329
|
+
):
|
|
330
|
+
error_messages.append(
|
|
331
|
+
f"Error! Input type `{type(v)}` is not `ShapedInternalRecsysPoliciesGsasrecModelPolicyGsasrecModelPolicyGSASRecModelPolicyConfig`"
|
|
332
|
+
)
|
|
333
|
+
else:
|
|
334
|
+
match += 1
|
|
335
|
+
# validate data type: ShapedInternalRecsysPoliciesBertModelPolicyBertModelPolicyBERTModelPolicyConfig
|
|
336
|
+
if not isinstance(
|
|
337
|
+
v,
|
|
338
|
+
ShapedInternalRecsysPoliciesBertModelPolicyBertModelPolicyBERTModelPolicyConfig,
|
|
339
|
+
):
|
|
340
|
+
error_messages.append(
|
|
341
|
+
f"Error! Input type `{type(v)}` is not `ShapedInternalRecsysPoliciesBertModelPolicyBertModelPolicyBERTModelPolicyConfig`"
|
|
342
|
+
)
|
|
343
|
+
else:
|
|
344
|
+
match += 1
|
|
345
|
+
# validate data type: ShapedInternalRecsysPoliciesTwoTowerModelPolicyTwoTowerModelPolicyTwoTowerModelPolicyConfig
|
|
346
|
+
if not isinstance(
|
|
347
|
+
v,
|
|
348
|
+
ShapedInternalRecsysPoliciesTwoTowerModelPolicyTwoTowerModelPolicyTwoTowerModelPolicyConfig,
|
|
349
|
+
):
|
|
350
|
+
error_messages.append(
|
|
351
|
+
f"Error! Input type `{type(v)}` is not `ShapedInternalRecsysPoliciesTwoTowerModelPolicyTwoTowerModelPolicyTwoTowerModelPolicyConfig`"
|
|
352
|
+
)
|
|
353
|
+
else:
|
|
354
|
+
match += 1
|
|
355
|
+
# validate data type: ShapedInternalRecsysPoliciesChronologicalModelPolicyChronologicalModelPolicyConfig
|
|
356
|
+
if not isinstance(
|
|
357
|
+
v,
|
|
358
|
+
ShapedInternalRecsysPoliciesChronologicalModelPolicyChronologicalModelPolicyConfig,
|
|
359
|
+
):
|
|
360
|
+
error_messages.append(
|
|
361
|
+
f"Error! Input type `{type(v)}` is not `ShapedInternalRecsysPoliciesChronologicalModelPolicyChronologicalModelPolicyConfig`"
|
|
362
|
+
)
|
|
363
|
+
else:
|
|
364
|
+
match += 1
|
|
365
|
+
# validate data type: ShapedInternalRecsysPoliciesItemContentSimilarityModelPolicyItemContentSimilarityModelPolicyConfig
|
|
366
|
+
if not isinstance(
|
|
367
|
+
v,
|
|
368
|
+
ShapedInternalRecsysPoliciesItemContentSimilarityModelPolicyItemContentSimilarityModelPolicyConfig,
|
|
369
|
+
):
|
|
370
|
+
error_messages.append(
|
|
371
|
+
f"Error! Input type `{type(v)}` is not `ShapedInternalRecsysPoliciesItemContentSimilarityModelPolicyItemContentSimilarityModelPolicyConfig`"
|
|
372
|
+
)
|
|
373
|
+
else:
|
|
374
|
+
match += 1
|
|
375
|
+
# validate data type: ShapedInternalRecsysPoliciesUserItemContentSimilarityModelPolicyUserItemContentSimilarityModelPolicyConfig
|
|
376
|
+
if not isinstance(
|
|
377
|
+
v,
|
|
378
|
+
ShapedInternalRecsysPoliciesUserItemContentSimilarityModelPolicyUserItemContentSimilarityModelPolicyConfig,
|
|
379
|
+
):
|
|
380
|
+
error_messages.append(
|
|
381
|
+
f"Error! Input type `{type(v)}` is not `ShapedInternalRecsysPoliciesUserItemContentSimilarityModelPolicyUserItemContentSimilarityModelPolicyConfig`"
|
|
382
|
+
)
|
|
383
|
+
else:
|
|
384
|
+
match += 1
|
|
385
|
+
# validate data type: ShapedInternalRecsysPoliciesRecentlyPopularPolicyRecentlyPopularPolicyConfig
|
|
386
|
+
if not isinstance(
|
|
387
|
+
v,
|
|
388
|
+
ShapedInternalRecsysPoliciesRecentlyPopularPolicyRecentlyPopularPolicyConfig,
|
|
389
|
+
):
|
|
390
|
+
error_messages.append(
|
|
391
|
+
f"Error! Input type `{type(v)}` is not `ShapedInternalRecsysPoliciesRecentlyPopularPolicyRecentlyPopularPolicyConfig`"
|
|
392
|
+
)
|
|
393
|
+
else:
|
|
394
|
+
match += 1
|
|
395
|
+
# validate data type: ShapedInternalRecsysPoliciesRisingPopularPolicyRisingPopularPolicyConfig
|
|
396
|
+
if not isinstance(
|
|
397
|
+
v, ShapedInternalRecsysPoliciesRisingPopularPolicyRisingPopularPolicyConfig
|
|
398
|
+
):
|
|
399
|
+
error_messages.append(
|
|
400
|
+
f"Error! Input type `{type(v)}` is not `ShapedInternalRecsysPoliciesRisingPopularPolicyRisingPopularPolicyConfig`"
|
|
401
|
+
)
|
|
402
|
+
else:
|
|
403
|
+
match += 1
|
|
404
|
+
# validate data type: ShapedInternalRecsysPoliciesPopularModelPolicyPopularModelPolicyConfig
|
|
405
|
+
if not isinstance(
|
|
406
|
+
v, ShapedInternalRecsysPoliciesPopularModelPolicyPopularModelPolicyConfig
|
|
407
|
+
):
|
|
408
|
+
error_messages.append(
|
|
409
|
+
f"Error! Input type `{type(v)}` is not `ShapedInternalRecsysPoliciesPopularModelPolicyPopularModelPolicyConfig`"
|
|
410
|
+
)
|
|
411
|
+
else:
|
|
412
|
+
match += 1
|
|
413
|
+
# validate data type: ShapedInternalRecsysPoliciesNgramModelPolicyNgramModelPolicyConfig
|
|
414
|
+
if not isinstance(
|
|
415
|
+
v, ShapedInternalRecsysPoliciesNgramModelPolicyNgramModelPolicyConfig
|
|
416
|
+
):
|
|
417
|
+
error_messages.append(
|
|
418
|
+
f"Error! Input type `{type(v)}` is not `ShapedInternalRecsysPoliciesNgramModelPolicyNgramModelPolicyConfig`"
|
|
419
|
+
)
|
|
420
|
+
else:
|
|
421
|
+
match += 1
|
|
422
|
+
# validate data type: ShapedInternalRecsysPoliciesRandomModelPolicyRandomModelPolicyConfig
|
|
423
|
+
if not isinstance(
|
|
424
|
+
v, ShapedInternalRecsysPoliciesRandomModelPolicyRandomModelPolicyConfig
|
|
425
|
+
):
|
|
426
|
+
error_messages.append(
|
|
427
|
+
f"Error! Input type `{type(v)}` is not `ShapedInternalRecsysPoliciesRandomModelPolicyRandomModelPolicyConfig`"
|
|
428
|
+
)
|
|
429
|
+
else:
|
|
430
|
+
match += 1
|
|
431
|
+
# validate data type: ScoreEnsemblePolicyConfig
|
|
432
|
+
if not isinstance(v, ScoreEnsemblePolicyConfig):
|
|
433
|
+
error_messages.append(
|
|
434
|
+
f"Error! Input type `{type(v)}` is not `ScoreEnsemblePolicyConfig`"
|
|
435
|
+
)
|
|
436
|
+
else:
|
|
437
|
+
match += 1
|
|
438
|
+
# validate data type: ShapedInternalRecsysPoliciesWidedeepModelPolicyWideDeepModelPolicyConfig
|
|
439
|
+
if not isinstance(
|
|
440
|
+
v, ShapedInternalRecsysPoliciesWidedeepModelPolicyWideDeepModelPolicyConfig
|
|
441
|
+
):
|
|
442
|
+
error_messages.append(
|
|
443
|
+
f"Error! Input type `{type(v)}` is not `ShapedInternalRecsysPoliciesWidedeepModelPolicyWideDeepModelPolicyConfig`"
|
|
444
|
+
)
|
|
445
|
+
else:
|
|
446
|
+
match += 1
|
|
447
|
+
# validate data type: ShapedInternalRecsysPoliciesItem2vecModelPolicyItem2VecModelPolicyConfig
|
|
448
|
+
if not isinstance(
|
|
449
|
+
v, ShapedInternalRecsysPoliciesItem2vecModelPolicyItem2VecModelPolicyConfig
|
|
450
|
+
):
|
|
451
|
+
error_messages.append(
|
|
452
|
+
f"Error! Input type `{type(v)}` is not `ShapedInternalRecsysPoliciesItem2vecModelPolicyItem2VecModelPolicyConfig`"
|
|
453
|
+
)
|
|
454
|
+
else:
|
|
455
|
+
match += 1
|
|
456
|
+
# validate data type: ShapedInternalRecsysPoliciesXgboostModelPolicyXGBoostModelPolicyConfig
|
|
457
|
+
if not isinstance(
|
|
458
|
+
v, ShapedInternalRecsysPoliciesXgboostModelPolicyXGBoostModelPolicyConfig
|
|
459
|
+
):
|
|
460
|
+
error_messages.append(
|
|
461
|
+
f"Error! Input type `{type(v)}` is not `ShapedInternalRecsysPoliciesXgboostModelPolicyXGBoostModelPolicyConfig`"
|
|
462
|
+
)
|
|
463
|
+
else:
|
|
464
|
+
match += 1
|
|
465
|
+
# validate data type: NoOpConfig
|
|
466
|
+
if not isinstance(v, NoOpConfig):
|
|
467
|
+
error_messages.append(f"Error! Input type `{type(v)}` is not `NoOpConfig`")
|
|
468
|
+
else:
|
|
469
|
+
match += 1
|
|
470
|
+
# validate data type: ShapedInternalRecsysPoliciesBeeformerModelPolicyBeeformerModelPolicyBeeformerModelPolicyConfig
|
|
471
|
+
if not isinstance(
|
|
472
|
+
v,
|
|
473
|
+
ShapedInternalRecsysPoliciesBeeformerModelPolicyBeeformerModelPolicyBeeformerModelPolicyConfig,
|
|
474
|
+
):
|
|
475
|
+
error_messages.append(
|
|
476
|
+
f"Error! Input type `{type(v)}` is not `ShapedInternalRecsysPoliciesBeeformerModelPolicyBeeformerModelPolicyBeeformerModelPolicyConfig`"
|
|
477
|
+
)
|
|
478
|
+
else:
|
|
479
|
+
match += 1
|
|
480
|
+
if match > 1:
|
|
481
|
+
# more than 1 match
|
|
482
|
+
raise ValueError(
|
|
483
|
+
"Multiple matches found when setting `actual_instance` in ScoreEnsemblePolicyConfigPoliciesInner with oneOf schemas: NoOpConfig, ScoreEnsemblePolicyConfig, ShapedInternalRecsysPoliciesAlsModelPolicyALSModelPolicyConfig, ShapedInternalRecsysPoliciesBeeformerModelPolicyBeeformerModelPolicyBeeformerModelPolicyConfig, ShapedInternalRecsysPoliciesBertModelPolicyBertModelPolicyBERTModelPolicyConfig, ShapedInternalRecsysPoliciesChronologicalModelPolicyChronologicalModelPolicyConfig, ShapedInternalRecsysPoliciesElsaModelPolicyElsaModelPolicyELSAModelPolicyConfig, ShapedInternalRecsysPoliciesGsasrecModelPolicyGsasrecModelPolicyGSASRecModelPolicyConfig, ShapedInternalRecsysPoliciesItem2vecModelPolicyItem2VecModelPolicyConfig, ShapedInternalRecsysPoliciesItemContentSimilarityModelPolicyItemContentSimilarityModelPolicyConfig, ShapedInternalRecsysPoliciesLightgbmModelPolicyLightgbmModelPolicyLightGBMModelPolicyConfig, ShapedInternalRecsysPoliciesNgramModelPolicyNgramModelPolicyConfig, ShapedInternalRecsysPoliciesPopularModelPolicyPopularModelPolicyConfig, ShapedInternalRecsysPoliciesRandomModelPolicyRandomModelPolicyConfig, ShapedInternalRecsysPoliciesRecentlyPopularPolicyRecentlyPopularPolicyConfig, ShapedInternalRecsysPoliciesRisingPopularPolicyRisingPopularPolicyConfig, ShapedInternalRecsysPoliciesSasrecModelPolicySasrecModelPolicySASRecModelPolicyConfig, ShapedInternalRecsysPoliciesSvdModelPolicySVDModelPolicyConfig, ShapedInternalRecsysPoliciesTwoTowerModelPolicyTwoTowerModelPolicyTwoTowerModelPolicyConfig, ShapedInternalRecsysPoliciesUserItemContentSimilarityModelPolicyUserItemContentSimilarityModelPolicyConfig, ShapedInternalRecsysPoliciesWidedeepModelPolicyWideDeepModelPolicyConfig, ShapedInternalRecsysPoliciesXgboostModelPolicyXGBoostModelPolicyConfig. Details: "
|
|
484
|
+
+ ", ".join(error_messages)
|
|
485
|
+
)
|
|
486
|
+
elif match == 0:
|
|
487
|
+
# no match
|
|
488
|
+
raise ValueError(
|
|
489
|
+
"No match found when setting `actual_instance` in ScoreEnsemblePolicyConfigPoliciesInner with oneOf schemas: NoOpConfig, ScoreEnsemblePolicyConfig, ShapedInternalRecsysPoliciesAlsModelPolicyALSModelPolicyConfig, ShapedInternalRecsysPoliciesBeeformerModelPolicyBeeformerModelPolicyBeeformerModelPolicyConfig, ShapedInternalRecsysPoliciesBertModelPolicyBertModelPolicyBERTModelPolicyConfig, ShapedInternalRecsysPoliciesChronologicalModelPolicyChronologicalModelPolicyConfig, ShapedInternalRecsysPoliciesElsaModelPolicyElsaModelPolicyELSAModelPolicyConfig, ShapedInternalRecsysPoliciesGsasrecModelPolicyGsasrecModelPolicyGSASRecModelPolicyConfig, ShapedInternalRecsysPoliciesItem2vecModelPolicyItem2VecModelPolicyConfig, ShapedInternalRecsysPoliciesItemContentSimilarityModelPolicyItemContentSimilarityModelPolicyConfig, ShapedInternalRecsysPoliciesLightgbmModelPolicyLightgbmModelPolicyLightGBMModelPolicyConfig, ShapedInternalRecsysPoliciesNgramModelPolicyNgramModelPolicyConfig, ShapedInternalRecsysPoliciesPopularModelPolicyPopularModelPolicyConfig, ShapedInternalRecsysPoliciesRandomModelPolicyRandomModelPolicyConfig, ShapedInternalRecsysPoliciesRecentlyPopularPolicyRecentlyPopularPolicyConfig, ShapedInternalRecsysPoliciesRisingPopularPolicyRisingPopularPolicyConfig, ShapedInternalRecsysPoliciesSasrecModelPolicySasrecModelPolicySASRecModelPolicyConfig, ShapedInternalRecsysPoliciesSvdModelPolicySVDModelPolicyConfig, ShapedInternalRecsysPoliciesTwoTowerModelPolicyTwoTowerModelPolicyTwoTowerModelPolicyConfig, ShapedInternalRecsysPoliciesUserItemContentSimilarityModelPolicyUserItemContentSimilarityModelPolicyConfig, ShapedInternalRecsysPoliciesWidedeepModelPolicyWideDeepModelPolicyConfig, ShapedInternalRecsysPoliciesXgboostModelPolicyXGBoostModelPolicyConfig. Details: "
|
|
490
|
+
+ ", ".join(error_messages)
|
|
491
|
+
)
|
|
492
|
+
else:
|
|
493
|
+
return v
|
|
494
|
+
|
|
495
|
+
@classmethod
|
|
496
|
+
def from_dict(cls, obj: Union[str, Dict[str, Any]]) -> Self:
|
|
497
|
+
return cls.from_json(json.dumps(obj))
|
|
498
|
+
|
|
499
|
+
@classmethod
|
|
500
|
+
def from_json(cls, json_str: str) -> Self:
|
|
501
|
+
"""Returns the object represented by the json string"""
|
|
502
|
+
instance = cls.model_construct()
|
|
503
|
+
error_messages = []
|
|
504
|
+
match = 0
|
|
505
|
+
|
|
506
|
+
# deserialize data into ShapedInternalRecsysPoliciesElsaModelPolicyElsaModelPolicyELSAModelPolicyConfig
|
|
507
|
+
try:
|
|
508
|
+
instance.actual_instance = ShapedInternalRecsysPoliciesElsaModelPolicyElsaModelPolicyELSAModelPolicyConfig.from_json(
|
|
509
|
+
json_str
|
|
510
|
+
)
|
|
511
|
+
match += 1
|
|
512
|
+
except (ValidationError, ValueError) as e:
|
|
513
|
+
error_messages.append(str(e))
|
|
514
|
+
# deserialize data into ShapedInternalRecsysPoliciesLightgbmModelPolicyLightgbmModelPolicyLightGBMModelPolicyConfig
|
|
515
|
+
try:
|
|
516
|
+
instance.actual_instance = ShapedInternalRecsysPoliciesLightgbmModelPolicyLightgbmModelPolicyLightGBMModelPolicyConfig.from_json(
|
|
517
|
+
json_str
|
|
518
|
+
)
|
|
519
|
+
match += 1
|
|
520
|
+
except (ValidationError, ValueError) as e:
|
|
521
|
+
error_messages.append(str(e))
|
|
522
|
+
# deserialize data into ShapedInternalRecsysPoliciesAlsModelPolicyALSModelPolicyConfig
|
|
523
|
+
try:
|
|
524
|
+
instance.actual_instance = ShapedInternalRecsysPoliciesAlsModelPolicyALSModelPolicyConfig.from_json(
|
|
525
|
+
json_str
|
|
526
|
+
)
|
|
527
|
+
match += 1
|
|
528
|
+
except (ValidationError, ValueError) as e:
|
|
529
|
+
error_messages.append(str(e))
|
|
530
|
+
# deserialize data into ShapedInternalRecsysPoliciesSvdModelPolicySVDModelPolicyConfig
|
|
531
|
+
try:
|
|
532
|
+
instance.actual_instance = ShapedInternalRecsysPoliciesSvdModelPolicySVDModelPolicyConfig.from_json(
|
|
533
|
+
json_str
|
|
534
|
+
)
|
|
535
|
+
match += 1
|
|
536
|
+
except (ValidationError, ValueError) as e:
|
|
537
|
+
error_messages.append(str(e))
|
|
538
|
+
# deserialize data into ShapedInternalRecsysPoliciesSasrecModelPolicySasrecModelPolicySASRecModelPolicyConfig
|
|
539
|
+
try:
|
|
540
|
+
instance.actual_instance = ShapedInternalRecsysPoliciesSasrecModelPolicySasrecModelPolicySASRecModelPolicyConfig.from_json(
|
|
541
|
+
json_str
|
|
542
|
+
)
|
|
543
|
+
match += 1
|
|
544
|
+
except (ValidationError, ValueError) as e:
|
|
545
|
+
error_messages.append(str(e))
|
|
546
|
+
# deserialize data into ShapedInternalRecsysPoliciesGsasrecModelPolicyGsasrecModelPolicyGSASRecModelPolicyConfig
|
|
547
|
+
try:
|
|
548
|
+
instance.actual_instance = ShapedInternalRecsysPoliciesGsasrecModelPolicyGsasrecModelPolicyGSASRecModelPolicyConfig.from_json(
|
|
549
|
+
json_str
|
|
550
|
+
)
|
|
551
|
+
match += 1
|
|
552
|
+
except (ValidationError, ValueError) as e:
|
|
553
|
+
error_messages.append(str(e))
|
|
554
|
+
# deserialize data into ShapedInternalRecsysPoliciesBertModelPolicyBertModelPolicyBERTModelPolicyConfig
|
|
555
|
+
try:
|
|
556
|
+
instance.actual_instance = ShapedInternalRecsysPoliciesBertModelPolicyBertModelPolicyBERTModelPolicyConfig.from_json(
|
|
557
|
+
json_str
|
|
558
|
+
)
|
|
559
|
+
match += 1
|
|
560
|
+
except (ValidationError, ValueError) as e:
|
|
561
|
+
error_messages.append(str(e))
|
|
562
|
+
# deserialize data into ShapedInternalRecsysPoliciesTwoTowerModelPolicyTwoTowerModelPolicyTwoTowerModelPolicyConfig
|
|
563
|
+
try:
|
|
564
|
+
instance.actual_instance = ShapedInternalRecsysPoliciesTwoTowerModelPolicyTwoTowerModelPolicyTwoTowerModelPolicyConfig.from_json(
|
|
565
|
+
json_str
|
|
566
|
+
)
|
|
567
|
+
match += 1
|
|
568
|
+
except (ValidationError, ValueError) as e:
|
|
569
|
+
error_messages.append(str(e))
|
|
570
|
+
# deserialize data into ShapedInternalRecsysPoliciesChronologicalModelPolicyChronologicalModelPolicyConfig
|
|
571
|
+
try:
|
|
572
|
+
instance.actual_instance = ShapedInternalRecsysPoliciesChronologicalModelPolicyChronologicalModelPolicyConfig.from_json(
|
|
573
|
+
json_str
|
|
574
|
+
)
|
|
575
|
+
match += 1
|
|
576
|
+
except (ValidationError, ValueError) as e:
|
|
577
|
+
error_messages.append(str(e))
|
|
578
|
+
# deserialize data into ShapedInternalRecsysPoliciesItemContentSimilarityModelPolicyItemContentSimilarityModelPolicyConfig
|
|
579
|
+
try:
|
|
580
|
+
instance.actual_instance = ShapedInternalRecsysPoliciesItemContentSimilarityModelPolicyItemContentSimilarityModelPolicyConfig.from_json(
|
|
581
|
+
json_str
|
|
582
|
+
)
|
|
583
|
+
match += 1
|
|
584
|
+
except (ValidationError, ValueError) as e:
|
|
585
|
+
error_messages.append(str(e))
|
|
586
|
+
# deserialize data into ShapedInternalRecsysPoliciesUserItemContentSimilarityModelPolicyUserItemContentSimilarityModelPolicyConfig
|
|
587
|
+
try:
|
|
588
|
+
instance.actual_instance = ShapedInternalRecsysPoliciesUserItemContentSimilarityModelPolicyUserItemContentSimilarityModelPolicyConfig.from_json(
|
|
589
|
+
json_str
|
|
590
|
+
)
|
|
591
|
+
match += 1
|
|
592
|
+
except (ValidationError, ValueError) as e:
|
|
593
|
+
error_messages.append(str(e))
|
|
594
|
+
# deserialize data into ShapedInternalRecsysPoliciesRecentlyPopularPolicyRecentlyPopularPolicyConfig
|
|
595
|
+
try:
|
|
596
|
+
instance.actual_instance = ShapedInternalRecsysPoliciesRecentlyPopularPolicyRecentlyPopularPolicyConfig.from_json(
|
|
597
|
+
json_str
|
|
598
|
+
)
|
|
599
|
+
match += 1
|
|
600
|
+
except (ValidationError, ValueError) as e:
|
|
601
|
+
error_messages.append(str(e))
|
|
602
|
+
# deserialize data into ShapedInternalRecsysPoliciesRisingPopularPolicyRisingPopularPolicyConfig
|
|
603
|
+
try:
|
|
604
|
+
instance.actual_instance = ShapedInternalRecsysPoliciesRisingPopularPolicyRisingPopularPolicyConfig.from_json(
|
|
605
|
+
json_str
|
|
606
|
+
)
|
|
607
|
+
match += 1
|
|
608
|
+
except (ValidationError, ValueError) as e:
|
|
609
|
+
error_messages.append(str(e))
|
|
610
|
+
# deserialize data into ShapedInternalRecsysPoliciesPopularModelPolicyPopularModelPolicyConfig
|
|
611
|
+
try:
|
|
612
|
+
instance.actual_instance = ShapedInternalRecsysPoliciesPopularModelPolicyPopularModelPolicyConfig.from_json(
|
|
613
|
+
json_str
|
|
614
|
+
)
|
|
615
|
+
match += 1
|
|
616
|
+
except (ValidationError, ValueError) as e:
|
|
617
|
+
error_messages.append(str(e))
|
|
618
|
+
# deserialize data into ShapedInternalRecsysPoliciesNgramModelPolicyNgramModelPolicyConfig
|
|
619
|
+
try:
|
|
620
|
+
instance.actual_instance = ShapedInternalRecsysPoliciesNgramModelPolicyNgramModelPolicyConfig.from_json(
|
|
621
|
+
json_str
|
|
622
|
+
)
|
|
623
|
+
match += 1
|
|
624
|
+
except (ValidationError, ValueError) as e:
|
|
625
|
+
error_messages.append(str(e))
|
|
626
|
+
# deserialize data into ShapedInternalRecsysPoliciesRandomModelPolicyRandomModelPolicyConfig
|
|
627
|
+
try:
|
|
628
|
+
instance.actual_instance = ShapedInternalRecsysPoliciesRandomModelPolicyRandomModelPolicyConfig.from_json(
|
|
629
|
+
json_str
|
|
630
|
+
)
|
|
631
|
+
match += 1
|
|
632
|
+
except (ValidationError, ValueError) as e:
|
|
633
|
+
error_messages.append(str(e))
|
|
634
|
+
# deserialize data into ScoreEnsemblePolicyConfig
|
|
635
|
+
try:
|
|
636
|
+
instance.actual_instance = ScoreEnsemblePolicyConfig.from_json(json_str)
|
|
637
|
+
match += 1
|
|
638
|
+
except (ValidationError, ValueError) as e:
|
|
639
|
+
error_messages.append(str(e))
|
|
640
|
+
# deserialize data into ShapedInternalRecsysPoliciesWidedeepModelPolicyWideDeepModelPolicyConfig
|
|
641
|
+
try:
|
|
642
|
+
instance.actual_instance = ShapedInternalRecsysPoliciesWidedeepModelPolicyWideDeepModelPolicyConfig.from_json(
|
|
643
|
+
json_str
|
|
644
|
+
)
|
|
645
|
+
match += 1
|
|
646
|
+
except (ValidationError, ValueError) as e:
|
|
647
|
+
error_messages.append(str(e))
|
|
648
|
+
# deserialize data into ShapedInternalRecsysPoliciesItem2vecModelPolicyItem2VecModelPolicyConfig
|
|
649
|
+
try:
|
|
650
|
+
instance.actual_instance = ShapedInternalRecsysPoliciesItem2vecModelPolicyItem2VecModelPolicyConfig.from_json(
|
|
651
|
+
json_str
|
|
652
|
+
)
|
|
653
|
+
match += 1
|
|
654
|
+
except (ValidationError, ValueError) as e:
|
|
655
|
+
error_messages.append(str(e))
|
|
656
|
+
# deserialize data into ShapedInternalRecsysPoliciesXgboostModelPolicyXGBoostModelPolicyConfig
|
|
657
|
+
try:
|
|
658
|
+
instance.actual_instance = ShapedInternalRecsysPoliciesXgboostModelPolicyXGBoostModelPolicyConfig.from_json(
|
|
659
|
+
json_str
|
|
660
|
+
)
|
|
661
|
+
match += 1
|
|
662
|
+
except (ValidationError, ValueError) as e:
|
|
663
|
+
error_messages.append(str(e))
|
|
664
|
+
# deserialize data into NoOpConfig
|
|
665
|
+
try:
|
|
666
|
+
instance.actual_instance = NoOpConfig.from_json(json_str)
|
|
667
|
+
match += 1
|
|
668
|
+
except (ValidationError, ValueError) as e:
|
|
669
|
+
error_messages.append(str(e))
|
|
670
|
+
# deserialize data into ShapedInternalRecsysPoliciesBeeformerModelPolicyBeeformerModelPolicyBeeformerModelPolicyConfig
|
|
671
|
+
try:
|
|
672
|
+
instance.actual_instance = ShapedInternalRecsysPoliciesBeeformerModelPolicyBeeformerModelPolicyBeeformerModelPolicyConfig.from_json(
|
|
673
|
+
json_str
|
|
674
|
+
)
|
|
675
|
+
match += 1
|
|
676
|
+
except (ValidationError, ValueError) as e:
|
|
677
|
+
error_messages.append(str(e))
|
|
678
|
+
|
|
679
|
+
if match > 1:
|
|
680
|
+
# more than 1 match
|
|
681
|
+
raise ValueError(
|
|
682
|
+
"Multiple matches found when deserializing the JSON string into ScoreEnsemblePolicyConfigPoliciesInner with oneOf schemas: NoOpConfig, ScoreEnsemblePolicyConfig, ShapedInternalRecsysPoliciesAlsModelPolicyALSModelPolicyConfig, ShapedInternalRecsysPoliciesBeeformerModelPolicyBeeformerModelPolicyBeeformerModelPolicyConfig, ShapedInternalRecsysPoliciesBertModelPolicyBertModelPolicyBERTModelPolicyConfig, ShapedInternalRecsysPoliciesChronologicalModelPolicyChronologicalModelPolicyConfig, ShapedInternalRecsysPoliciesElsaModelPolicyElsaModelPolicyELSAModelPolicyConfig, ShapedInternalRecsysPoliciesGsasrecModelPolicyGsasrecModelPolicyGSASRecModelPolicyConfig, ShapedInternalRecsysPoliciesItem2vecModelPolicyItem2VecModelPolicyConfig, ShapedInternalRecsysPoliciesItemContentSimilarityModelPolicyItemContentSimilarityModelPolicyConfig, ShapedInternalRecsysPoliciesLightgbmModelPolicyLightgbmModelPolicyLightGBMModelPolicyConfig, ShapedInternalRecsysPoliciesNgramModelPolicyNgramModelPolicyConfig, ShapedInternalRecsysPoliciesPopularModelPolicyPopularModelPolicyConfig, ShapedInternalRecsysPoliciesRandomModelPolicyRandomModelPolicyConfig, ShapedInternalRecsysPoliciesRecentlyPopularPolicyRecentlyPopularPolicyConfig, ShapedInternalRecsysPoliciesRisingPopularPolicyRisingPopularPolicyConfig, ShapedInternalRecsysPoliciesSasrecModelPolicySasrecModelPolicySASRecModelPolicyConfig, ShapedInternalRecsysPoliciesSvdModelPolicySVDModelPolicyConfig, ShapedInternalRecsysPoliciesTwoTowerModelPolicyTwoTowerModelPolicyTwoTowerModelPolicyConfig, ShapedInternalRecsysPoliciesUserItemContentSimilarityModelPolicyUserItemContentSimilarityModelPolicyConfig, ShapedInternalRecsysPoliciesWidedeepModelPolicyWideDeepModelPolicyConfig, ShapedInternalRecsysPoliciesXgboostModelPolicyXGBoostModelPolicyConfig. Details: "
|
|
683
|
+
+ ", ".join(error_messages)
|
|
684
|
+
)
|
|
685
|
+
elif match == 0:
|
|
686
|
+
# no match
|
|
687
|
+
raise ValueError(
|
|
688
|
+
"No match found when deserializing the JSON string into ScoreEnsemblePolicyConfigPoliciesInner with oneOf schemas: NoOpConfig, ScoreEnsemblePolicyConfig, ShapedInternalRecsysPoliciesAlsModelPolicyALSModelPolicyConfig, ShapedInternalRecsysPoliciesBeeformerModelPolicyBeeformerModelPolicyBeeformerModelPolicyConfig, ShapedInternalRecsysPoliciesBertModelPolicyBertModelPolicyBERTModelPolicyConfig, ShapedInternalRecsysPoliciesChronologicalModelPolicyChronologicalModelPolicyConfig, ShapedInternalRecsysPoliciesElsaModelPolicyElsaModelPolicyELSAModelPolicyConfig, ShapedInternalRecsysPoliciesGsasrecModelPolicyGsasrecModelPolicyGSASRecModelPolicyConfig, ShapedInternalRecsysPoliciesItem2vecModelPolicyItem2VecModelPolicyConfig, ShapedInternalRecsysPoliciesItemContentSimilarityModelPolicyItemContentSimilarityModelPolicyConfig, ShapedInternalRecsysPoliciesLightgbmModelPolicyLightgbmModelPolicyLightGBMModelPolicyConfig, ShapedInternalRecsysPoliciesNgramModelPolicyNgramModelPolicyConfig, ShapedInternalRecsysPoliciesPopularModelPolicyPopularModelPolicyConfig, ShapedInternalRecsysPoliciesRandomModelPolicyRandomModelPolicyConfig, ShapedInternalRecsysPoliciesRecentlyPopularPolicyRecentlyPopularPolicyConfig, ShapedInternalRecsysPoliciesRisingPopularPolicyRisingPopularPolicyConfig, ShapedInternalRecsysPoliciesSasrecModelPolicySasrecModelPolicySASRecModelPolicyConfig, ShapedInternalRecsysPoliciesSvdModelPolicySVDModelPolicyConfig, ShapedInternalRecsysPoliciesTwoTowerModelPolicyTwoTowerModelPolicyTwoTowerModelPolicyConfig, ShapedInternalRecsysPoliciesUserItemContentSimilarityModelPolicyUserItemContentSimilarityModelPolicyConfig, ShapedInternalRecsysPoliciesWidedeepModelPolicyWideDeepModelPolicyConfig, ShapedInternalRecsysPoliciesXgboostModelPolicyXGBoostModelPolicyConfig. Details: "
|
|
689
|
+
+ ", ".join(error_messages)
|
|
690
|
+
)
|
|
691
|
+
else:
|
|
692
|
+
return instance
|
|
693
|
+
|
|
694
|
+
def to_json(self) -> str:
|
|
695
|
+
"""Returns the JSON representation of the actual instance"""
|
|
696
|
+
if self.actual_instance is None:
|
|
697
|
+
return "null"
|
|
698
|
+
|
|
699
|
+
if hasattr(self.actual_instance, "to_json") and callable(
|
|
700
|
+
self.actual_instance.to_json
|
|
701
|
+
):
|
|
702
|
+
return self.actual_instance.to_json()
|
|
703
|
+
else:
|
|
704
|
+
return json.dumps(self.actual_instance)
|
|
705
|
+
|
|
706
|
+
def to_dict(
|
|
707
|
+
self,
|
|
708
|
+
) -> Optional[
|
|
709
|
+
Union[
|
|
710
|
+
Dict[str, Any],
|
|
711
|
+
NoOpConfig,
|
|
712
|
+
ScoreEnsemblePolicyConfig,
|
|
713
|
+
ShapedInternalRecsysPoliciesAlsModelPolicyALSModelPolicyConfig,
|
|
714
|
+
ShapedInternalRecsysPoliciesBeeformerModelPolicyBeeformerModelPolicyBeeformerModelPolicyConfig,
|
|
715
|
+
ShapedInternalRecsysPoliciesBertModelPolicyBertModelPolicyBERTModelPolicyConfig,
|
|
716
|
+
ShapedInternalRecsysPoliciesChronologicalModelPolicyChronologicalModelPolicyConfig,
|
|
717
|
+
ShapedInternalRecsysPoliciesElsaModelPolicyElsaModelPolicyELSAModelPolicyConfig,
|
|
718
|
+
ShapedInternalRecsysPoliciesGsasrecModelPolicyGsasrecModelPolicyGSASRecModelPolicyConfig,
|
|
719
|
+
ShapedInternalRecsysPoliciesItem2vecModelPolicyItem2VecModelPolicyConfig,
|
|
720
|
+
ShapedInternalRecsysPoliciesItemContentSimilarityModelPolicyItemContentSimilarityModelPolicyConfig,
|
|
721
|
+
ShapedInternalRecsysPoliciesLightgbmModelPolicyLightgbmModelPolicyLightGBMModelPolicyConfig,
|
|
722
|
+
ShapedInternalRecsysPoliciesNgramModelPolicyNgramModelPolicyConfig,
|
|
723
|
+
ShapedInternalRecsysPoliciesPopularModelPolicyPopularModelPolicyConfig,
|
|
724
|
+
ShapedInternalRecsysPoliciesRandomModelPolicyRandomModelPolicyConfig,
|
|
725
|
+
ShapedInternalRecsysPoliciesRecentlyPopularPolicyRecentlyPopularPolicyConfig,
|
|
726
|
+
ShapedInternalRecsysPoliciesRisingPopularPolicyRisingPopularPolicyConfig,
|
|
727
|
+
ShapedInternalRecsysPoliciesSasrecModelPolicySasrecModelPolicySASRecModelPolicyConfig,
|
|
728
|
+
ShapedInternalRecsysPoliciesSvdModelPolicySVDModelPolicyConfig,
|
|
729
|
+
ShapedInternalRecsysPoliciesTwoTowerModelPolicyTwoTowerModelPolicyTwoTowerModelPolicyConfig,
|
|
730
|
+
ShapedInternalRecsysPoliciesUserItemContentSimilarityModelPolicyUserItemContentSimilarityModelPolicyConfig,
|
|
731
|
+
ShapedInternalRecsysPoliciesWidedeepModelPolicyWideDeepModelPolicyConfig,
|
|
732
|
+
ShapedInternalRecsysPoliciesXgboostModelPolicyXGBoostModelPolicyConfig,
|
|
733
|
+
]
|
|
734
|
+
]:
|
|
735
|
+
"""Returns the dict representation of the actual instance"""
|
|
736
|
+
if self.actual_instance is None:
|
|
737
|
+
return None
|
|
738
|
+
|
|
739
|
+
if hasattr(self.actual_instance, "to_dict") and callable(
|
|
740
|
+
self.actual_instance.to_dict
|
|
741
|
+
):
|
|
742
|
+
return self.actual_instance.to_dict()
|
|
743
|
+
else:
|
|
744
|
+
# primitive type
|
|
745
|
+
return self.actual_instance
|
|
746
|
+
|
|
747
|
+
def to_str(self) -> str:
|
|
748
|
+
"""Returns the string representation of the actual instance"""
|
|
749
|
+
return pprint.pformat(self.model_dump())
|
|
750
|
+
|
|
751
|
+
|
|
752
|
+
from shaped.autogen.models.score_ensemble_policy_config import ScoreEnsemblePolicyConfig
|
|
753
|
+
|
|
754
|
+
# TODO: Rewrite to not use raise_errors
|
|
755
|
+
ScoreEnsemblePolicyConfigPoliciesInner.model_rebuild(raise_errors=False)
|