Skip to main content
Version: v3.0.0

Save and load schemas

Save schema as string

A schema can be serialized to string format:

str_schema = schema.to_string()

Load schema from a feature set

You can also load a schema from an existing feature set:

schema = feature_set.schema.get()

Feedback