How to upload a reference dataset
You can upload a reference dataset to your inference pipeline on Openlayer with the Python SDK.See full Python example
1
Load your dataset as a pandas DataFrame
Let’s say that your reference dataset looks like the one below. For simplicity, we
show a single row.
Python
2
Prepare the dataset configuration
The dataset config is a dictionary containing
information that helps Openlayer understand your data.For example, the dataset above is from a tabular classification task, so our dataset config
will have information such as the feature names, class names,
and others:
Python
3
Upload to Openlayer
Now, you can upload your reference dataset alongside its config to Openlayer:
Python