Variable MJMLAlgorithmSchemaConst
MJMLAlgorithmSchema: ZodObject<
{
__mj_CreatedAt: ZodDate;
__mj_UpdatedAt: ZodDate;
DefaultHyperparameters: ZodNullable<ZodString>;
Description: ZodNullable<ZodString>;
DriverClass: ZodString;
HyperparameterSchema: ZodNullable<ZodString>;
ID: ZodString;
Name: ZodString;
ProblemTypes: ZodString;
Status: ZodUnion<[ZodLiteral<"Active">, ZodLiteral<"Deprecated">]>;
SupportsFeatureImportance: ZodBoolean;
},
"strip",
ZodTypeAny,
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
DefaultHyperparameters?: string;
Description?: string;
DriverClass?: string;
HyperparameterSchema?: string;
ID?: string;
Name?: string;
ProblemTypes?: string;
Status?: "Active"
| "Deprecated";
SupportsFeatureImportance?: boolean;
},
{
__mj_CreatedAt?: Date;
__mj_UpdatedAt?: Date;
DefaultHyperparameters?: string;
Description?: string;
DriverClass?: string;
HyperparameterSchema?: string;
ID?: string;
Name?: string;
ProblemTypes?: string;
Status?: "Active"
| "Deprecated";
SupportsFeatureImportance?: boolean;
},
> = ...
zod schema definition for the entity MJ: ML Algorithms