Skip to main content

Modules

Functions

delete_all_samples

Delete all samples in a given category. If category is set to None, all samples in the project are deleted.

delete_sample_by_id

Delete a particular sample from a project given the sample ID.

delete_samples_by_filename

Delete any samples from an Edge Impulse project that match the given filename. Note: the filename argument must not include the original extension. For example, if you uploaded a file named my-image.01.png, you must provide the filename as my-image.01.

download_samples_by_ids

Download samples by their associated IDs from an Edge Impulse project. Downloaded sample data is returned as a DownloadSample object, which contains the raw data in a BytesIO object along with associated metadata. Important! All time series data is returned as a JSON file (in BytesIO format) with a timestamp column. This includes files originally uploaded as CSV, JSON, and CBOR. Edge Impulse Studio removes the timestamp column from any uploaded CSV files and computes an estimated sample rate. The timestamps are computed based on the sample rate, will always start at 0, and will be in milliseconds. These timestamps may not be the same as the original timestamps in the uploaded file.

get_filename_by_id

Given an ID for a sample in a project, return the filename associated with that sample. Note that while multiple samples can have the same filename, each sample has a unique sample ID that is provided by Studio when the sample is uploaded.

get_sample_ids

Get the sample IDs and filenames for all samples in a project, filtered by category, labels, or filename. Note that filenames are given by the root of the filename when uploaded. For example, if you upload my-image.01.png, it will be stored in your project with a hash such as my-image.01.png.4f262n1b.json. To find the ID(s) that match this sample, you must provide the argument filename=my-image.01. Notice the lack of extension and hash. Because of the potential for multiple samples (i.e., different sample IDs) with the same filename, we recommend providing unique filenames for your samples when uploading.

infer_from_filename

Extract label and category information from the filename and assigns them to the sample object. Files should look like this my-dataset/training/wave.1.cbor where wave is the label and training is the category. It checks if there is training, testing or anomaly in the filename to determine the sample category.

numpy_timeseries_to_sample

Convert numpy values to a sample that can be uploaded to Edge Impulse.

pandas_dataframe_to_sample

Convert a dataframe to a single sample. Can handle both timeseries and non-timeseries data. In order to be inferred as timeseries it must have:
  • More than one row
  • A sample rate or an index from which the sample rate can be inferred
    • Therefore must be monotonically increasing
    • And int or a date

upload_directory

Upload a directory of files to Edge Impulse. Tries to autodetect whether it’s an Edge Impulse exported dataset, or a standard directory. The files can be in CBOR, JSON, image, or WAV file formats. You can read more about the different file formats accepted by the Edge Impulse ingestion service here: https://docs.edgeimpulse.com/reference/ingestion-api

upload_exported_dataset

Upload samples from a downloaded Edge Impulse dataset and preserve the info.labels information. Use this when you’ve exported your data in the studio, via the export functionality.

upload_numpy

Upload numpy arrays as timeseries using the Edge Impulse data acquisition format.

upload_pandas_dataframe

Upload non-timeseries data to Edge Impulse where each dataframe row becomes a sample.

upload_pandas_dataframe_wide

Upload a dataframe to Edge Impulse where each column represents a value in the timeseries data and the rows become the individual samples.

upload_pandas_dataframe_with_group

Upload a dataframe where the rows contain multiple samples and timeseries data for those samples. It uses a group_by in order to detect what timeseries value belongs to which sample.

upload_pandas_sample

Upload a single dataframe sample. Upload a single dataframe sample to Edge Impulse.

upload_plain_directory

Upload a directory of files to Edge Impulse. The samples can be in CBOR, JSON, image, or WAV file formats.

upload_samples

Upload one or more samples to an Edge Impulse project using the ingestion service. Each sample must be wrapped in a Sample object, which contains metadata about that sample. Give this function a single Sample or a List of Sample objects to upload to your project. The data field of the Sample must be a raw binary stream, such as a BufferedIOBase object (which you can create with the open(..., "rb") function).

Classes

Sample

Wrapper class for sample data, labels, and associated metadata. Sample data should be contained in a file or file-like object, for example, as the return from open(..., "rb"). The upload_samples() function expects Sample objects as input.