Skip to main content
Everything you need to know before uploading your first dataset to Wood Wide AI. Wood Wide AI works with tabular data; rows and columns, like a spreadsheet or database export. This guide walks you through getting your data ready so training and inference go smoothly on the first try.

Supported Formats

CSV

Comma-separated values.
The most common format that works with Excel, Google Sheets, and every database export tool.

Parquet

Columnar storage format.
Preferred for large datasets with smaller file size and faster uploads.\
Direct uploads are limited to 30 MB. For larger files, Wood Wide AI provides a signed-URL upload flow that handles files of any size. See Large File Uploads for details.

Data Structure Checklist

Before uploading, walk through this checklist. If you can check every box, your data is ready.
Each row should represent one observation, transaction, customer, event, or time period. Don’t nest multiple records into a single row or use merged cells.
Each column should contain one type of information. Don’t combine multiple values into a single column.
The first row must contain column names. Keep them short, descriptive, and consistent.Tips:
  • Use snake_case or plain words: monthly_revenue, signup_date, customer_segment
  • Avoid special characters, leading/trailing spaces, or duplicate column names
  • Don’t leave any column name blank
If you’re exporting from a spreadsheet, strip everything back to raw values before saving as CSV.Remove:
  • Currency symbols ($, EUR) — keep the number only
  • Percentage signs (%) — use 0.15 instead of 15%
  • Commas in numbers — 1234567 not 1,234,567
  • Excel formulas — copy-paste as values first
  • Merged cells — unmerge and fill each cell
  • Summary/total rows at the bottom
Every value in a column should follow the same format. Mixed formats confuse schema inference.

Column Types

Wood Wide AI automatically infers the data type of each column when you upload a dataset. You don’t need to declare types manually. Here’s what gets detected:
When in doubt, keep it simple. If a column has numbers, make sure every value is actually a number (no text mixed in). If it’s a category, make sure the same category is always spelled the same way.

Handling Common Issues

Missing Values

Missing data is normal. Leave cells empty or use blank values. Don’t fill them with placeholders like N/A, null, none, 0, or -1, which will be treated as real values.
If a column has mostly missing values (more than 80-90% blank), consider removing it entirely. A column with very little data won’t contribute much to model quality.

Duplicate Rows

Check for and remove exact duplicate rows before uploading. Duplicates can skew model training; the model will over-weight those patterns.

ID Columns

Columns like row_id, customer_id, or transaction_id are unique per row and don’t carry predictive signal. You can leave them in (they won’t hurt) but for cleaner results, consider removing pure ID columns before upload.

High-Cardinality Text

Columns where almost every value is unique (like free-text notes, email addresses, or URLs) don’t work well as features. They look categorical but have no repeating patterns for the model to learn from. Remove or replace them with something structured.

Preparing Data by Task

Different model types work best with different data shapes. Here’s what to keep in mind for each.

Prediction

You need a target column → the thing you want to predict. This is specified as label_column when training.
  • Classification (categorical target): The target column should contain discrete categories like churned/retained, high/medium/low, or approved/denied.
  • Regression (numeric target): The target column should contain continuous numbers like revenue, score, or duration.
Wood Wide AI auto-detects whether it’s classification or regression based on the target column values.
Make sure your target column is clean and well-defined. If you’re predicting churn, every row should have a clear churned or not_churned value — not a mix of blanks, maybes, and partial labels.

Clustering

No target column needed. Include the columns that describe the attributes you want to group by. If you want behavioral clusters, include behavioral columns (usage frequency, spend patterns, engagement metrics). If you want firmographic clusters, include firmographic columns (industry, size, region).

Anomaly Detection

No target column needed. Include columns that represent “normal” behavior. The model learns what normal looks like and flags rows that deviate. More columns describing typical patterns = better anomaly detection.

Factor Analysis

No target column needed. Include all columns you suspect might share underlying patterns. Factor analysis discovers the hidden structure that explains why your columns move together.

Pre-Upload Quick Check

Run through this before every upload:
1

Format

File is .csv or .parquet, under 30 MB (or use signed-URL upload for larger files).
2

Header row

First row contains column names. No blanks, no duplicates.
3

No formatting

No currency symbols, percentage signs, commas in numbers, formulas, or merged cells.
4

Consistent types

Each column uses one data type throughout. Numbers are numbers. Categories are spelled consistently.
5

Missing values

Blanks are truly blank; not filled with N/A, null, or 0 as placeholders.
6

No junk rows

No summary rows, total rows, or blank separator rows. Just data.
7

Target column (prediction only)

If training a prediction model: your target column exists, is clean, and has clear values.

What Happens After Upload

Once your data is uploaded, Wood Wide AI:
  1. Infers the schema: detects column names and types (numeric, categorical, datetime, binary) automatically.
  2. Versions your dataset: every upload creates a new version, so you can always go back.
  3. Handles inference alignment: when you run inference later, the system automatically aligns your new data to the training schema. Extra columns are dropped, missing columns are filled with nulls, and type mismatches are coerced where possible.
You don’t need to manually match your inference data to your training data. The platform handles it for you.

AI-Assisted Cleanup Prompts

If you’re not sure how to fix a data issue, paste your CSV into any LLM (like ChatGPT or Claude) along with one of these prompts. Each one targets a specific cleanup task.

Exporting from Common Tools

File > Download > Comma-separated values (.csv)Before exporting: remove any filter views, unhide all rows/columns, and check that no cells contain formulas that haven’t been evaluated.
File > Save As > CSV UTF-8 (Comma delimited)Before exporting: select “Paste as Values” on any formula cells, unmerge all cells, and remove any summary rows or pivot tables from the data sheet.
Reports > Export > CSVCheck for Salesforce-specific formatting: currency fields may include $ or locale-specific symbols, and picklist fields may contain semicolon-delimited multi-values. Clean these before upload.
Export query results as CSV. Most database clients (DBeaver, pgAdmin, DataGrip) have a direct “Export to CSV” option. Make sure NULL values export as empty strings, not the literal text NULL.
Use index=False to avoid adding an extra index column.

Dataset FAQs

There’s no strict minimum, but more data generally means better models. A few hundred rows can work for simple patterns. For complex prediction tasks, a few thousand rows or more will produce stronger results.
There’s no hard limit. Include the columns that are relevant to what you’re trying to learn or predict. Irrelevant columns add noise but won’t break anything.
Yes. Datetime columns are detected automatically. Use a standard format like YYYY-MM-DD or YYYY-MM-DDTHH:MM:SSZ for best results.
The platform handles this automatically. Extra columns in your inference data are dropped. Missing columns are filled with nulls. Type mismatches are coerced where possible. You don’t need to manually align the two files.
Yes. Uploading a new file to an existing dataset creates a new version. Previous versions are preserved.
Use the signed-URL upload flow for files larger than 30 MB.