Your Data, Structured for AI Effortlessly manage, version, and prepare high-quality datasets for training and testing your machine learning models. Treat your datasets like code and unlock reproducible, high-performance AI.
Join waitlist
import { Dataset } from 'datasets.do';
const customerFeedbackDataset = new Dataset({
name: 'Customer Feedback Analysis',
description: 'Collection of customer feedback for sentiment analysis training',
schema: {
id: { type: 'string', required: true },
feedback: { type: 'string', required: true },
sentiment: { type: 'string', enum: ['positive', 'neutral', 'negative'] },
category: { type: 'string' },
source: { type: 'string' }
},
splits: {
train: 0.7,
validation: 0.15,
test: 0.15
}
});
await customerFeedbackDataset.commit('Initial data import');