op.LocalDataset is the fastest way to get local data into OuterProduct. Build one from a CSV or Parquet file (or an in-memory frame), then call .upload() to stage it through a presigned URL and get back a Dataset you can pass directly to training or inference. It is completely stateless. There is no credential to configure in the Console.
Supported formats
Build aLocalDataset from a local CSV or Parquet file (from_csv / from_parquet), or directly from an in-memory frame or array — pandas (from_pandas), polars (from_polars), or numpy (from_numpy). Whatever the source, .upload() serializes the rows to Parquet and stages them through the presigned URL.
Upload a file and train a model
Upload it
Call
.upload() to stage the rows. OuterProduct uploads them via a presigned URL and returns a Dataset.