You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/jaqpot_api_client/models/prediction_model.py
+1-1
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,7 @@ class PredictionModel(BaseModel):
36
36
dependent_features: List[Feature] =Field(description="List of dependent features for the model", alias="dependentFeatures")
37
37
independent_features: List[Feature] =Field(description="List of independent features for the model", alias="independentFeatures")
38
38
type: ModelType
39
-
raw_model: StrictStr=Field(description="Raw model data in serialized format", alias="rawModel")
39
+
raw_model: Optional[StrictStr]=Field(default=None, description="Raw model data in serialized format", alias="rawModel")
40
40
raw_preprocessor: Optional[StrictStr] =Field(default=None, description="Raw preprocessor data in serialized format", alias="rawPreprocessor")
41
41
doas: Optional[List[PredictionDoa]] =Field(default=None, description="List of Domain of Applicability (DoA) configurations")
42
42
selected_features: Optional[List[StrictStr]] =Field(default=None, description="List of feature names selected for the model", alias="selectedFeatures")
0 commit comments