Simulacrum Data Annotation Workflow
Complete end-to-end workflow for time series dataset preparation and annotation on the Data Annotation platform (data.smlcrm.com).
What This Skill Does
This skill captures the precise workflow for processing time series datasets (Energy, Manufacturing, Climate) from discovery to CLEAN status:
- Find Dataset: Search Kaggle for Energy/Manufacturing/Climate time series data
- Download: Get CSV files via browser or Kaggle CLI
- Clean: Run Python/pandas script to handle missing values, duplicates, formatting
- Upload RAW: Upload original CSV with metadata (name, domain, source URL, description)
- Configure Headers: Set column types (Time, Target, Covariate, Group) and units
- Assign Groups: Select ALL variables (target + covariates), apply ALL group tags
- Upload Cleaned: Final upload → CLEAN status
Supported Domains
- Energy: Power consumption, utilities, renewable energy, grid data
- Manufacturing: Industrial processes, steel production, emissions, equipment data
- Climate: CO2 emissions, environmental monitoring, weather correlation data
Quick Start
For the full pipeline from Kaggle to annotated dataset:
1. Find dataset on Kaggle
2. Download (browser or kaggle CLI)
3. Clean with scripts/clean_dataset.py
4. Upload RAW dataset to data.smlcrm.com (with metadata)
5. Click "Clean" and upload cleaned file
6. Configure column metadata (types, units)
7. Assign groups to variables
8. Upload cleaned dataset → CLEAN status
Workflow Steps
Step 1: Find and Download Dataset
From Kaggle (Browser Method):
- Navigate to kaggle.com/datasets
- Search for relevant dataset (e.g., "steel industry energy consumption", "manufacturing emissions", "climate CO2")
- Review data description, file list, and preview
- Click "Download" button
- Extract CSV file from downloaded zip
Alternative: Kaggle CLI
# Install if needed: pip install kaggle
# Configure: kaggle competitions list
scripts/download_kaggle.sh <dataset-name> [output-dir]
# Example: scripts/download_kaggle.sh csafrit2/steel-industry-energy-consumption
Step 2: Clean the Dataset
Always run the cleaning script before upload:
python3 scripts/clean_dataset.py <input.csv> [-o <output.csv>]
What the script does:
- Strips whitespace from column names
- Removes duplicate rows
- Fills missing numeric values with median
- Fills missing categorical values with mode or 'Unknown'
- Converts timestamp columns to datetime format
- Outputs column summary for metadata configuration
Output:
- Cleaned CSV file ready for upload
- Column summary printed to console (save this for metadata config)
Step 3: Upload Raw Dataset to Platform
- Navigate to data.smlcrm.com/dashboard
- Click "Upload Dataset" button
- Fill in metadata for the RAW dataset:
- Name: Descriptive dataset name
- Domain: Category (Energy, Manufacturing, Climate, etc.)
- Source URL: Kaggle or original source URL
- Description: Brief summary of the dataset
- Upload the original/raw CSV file (not cleaned yet)
- Click Upload
Result: Dataset appears in list with RAW status
Step 4: Upload Cleaned File & Configure Metadata
- Find the RAW dataset in the list
- Click "Clean" button
- Upload the cleaned CSV file (from Step 2)
- Configure headers for each column:
| Setting |
Description |
| Name |
Column name (editable) |
| Units |
Measurement units (kWh, °C, %, ratio, tCO2, etc.) |
| Type |
Time / Target / Covariate / Group |
Column Type Guide:
- Time: Timestamp/datetime columns (usually required)
- Target: Variable to predict (at least one required)
- Covariate: Input features/independent variables
- Group: Categorical segment variables (WeekStatus, Day_of_week, Load_Type, etc.)
Bulk Configuration:
- Select multiple rows via checkboxes
- Use "Apply" dropdown to set type for selected columns
- Set units individually or in bulk
Common Unit Patterns:
- Energy: kWh, MWh, MW
- Power: kVarh, kW
- Emissions: tCO2, kgCO2
- Ratios: ratio, %
- Time: seconds, minutes, hours
Step 5: Assign Groups to Variables
Purpose: Group variables define how data is segmented for analysis.
Exact Workflow:
Select ALL variables by checking their checkboxes:
- Target variable(s)
- ALL covariate variables
Apply ALL group tags to selected variables:
- Click first group tag (e.g., WeekStatus) → all selected get this group
- Click second group tag (e.g., Day_of_week) → all selected get this group
- Click third group tag (e.g., Load_Type) → all selected get this group
- Continue for all available group tags
Result: All variables have all groups assigned (e.g., "WeekStatus × Day_of_week × Load_Type")
Important: Assign groups to BOTH target variables AND all covariates.
Step 6: Final Upload
- Click "Upload Cleaned Dataset" button
- Wait for processing
- Dataset status changes from RAW → CLEAN
- Verify data points count is correct
Example: Steel Industry Energy Dataset
Source: https://www.kaggle.com/datasets/csafrit2/steel-industry-energy-consumption
Metadata:
- Name: Steel Industry Energy Consumption (South Korea)
- Domain: Energy
- Data Points: 350,400
Column Configuration:
| Column |
Type |
Units |
| Timestamps |
Time |
- |
| Usage_kWh |
Target |
kWh |
| Lagging_Current_Reactive.Power_kVarh |
Covariate |
kVarh |
| Leading_Current_Reactive_Power_kVarh |
Covariate |
kVarh |
| CO2(tCO2) |
Covariate |
tCO2 |
| Lagging_Current_Power_Factor |
Covariate |
ratio |
| Leading_Current_Power_Factor |
Covariate |
ratio |
| NSM |
Covariate |
seconds |
| WeekStatus |
Group |
- |
| Day_of_week |
Group |
- |
| Load_Type |
Group |
- |
Group Assignment:
- Select: Usage_kWh, Lagging_Current_Reactive.Power_kVarh, Leading_Current_Reactive_Power_kVarh, CO2(tCO2), Lagging_Current_Power_Factor, Leading_Current_Power_Factor, NSM
- Click: WeekStatus → all selected get WeekStatus
- Click: Day_of_week → all selected get Day_of_week
- Click: Load_Type → all selected get Load_Type
- Final: All variables show "WeekStatus × Day_of_week × Load_Type"
Reference Materials
For detailed platform configuration guidance, see references/platform_guide.md.
Troubleshooting
"Next" button disabled:
- Check at least one Time column is set
- Check at least one Target column is set
- Verify all columns have types assigned
Groups not appearing:
- Columns must be marked as "Group" type first
- Proceed to next step after setting Group types
Upload fails:
- Re-run cleaning script
- Check CSV format (comma-delimited)
- Verify no empty column names
Scripts
| Script |
Purpose |
scripts/clean_dataset.py |
Clean and prepare CSV for upload |
scripts/download_kaggle.sh |
Download datasets via Kaggle CLI |
Platform URL
Data Annotation Platform: https://data.smlcrm.com
1---2name: data-cleaning-annotation-workflow3description: Complete workflow for time series datasets (Energy, Manufacturing, Climate) on Kaggle to Data Annotation platform (data.smlcrm.com). Includes downloading, cleaning with pandas, uploading RAW with metadata, configuring columns (Time/Target/Covariate/Group), setting units (kWh, kVarh, tCO2, ratio, seconds), and assigning groups by selecting all variables and applying all group tags. Use when finding Kaggle datasets, cleaning for ML, uploading with metadata, configuring types/units, assigning groups to all variables, or complete pipeline to CLEAN status.4---56# Simulacrum Data Annotation Workflow78Complete end-to-end workflow for time series dataset preparation and annotation on the Data Annotation platform (data.smlcrm.com).910## What This Skill Does1112This skill captures the precise workflow for processing time series datasets (Energy, Manufacturing, Climate) from discovery to CLEAN status:13141. **Find Dataset**: Search Kaggle for Energy/Manufacturing/Climate time series data152. **Download**: Get CSV files via browser or Kaggle CLI163. **Clean**: Run Python/pandas script to handle missing values, duplicates, formatting174. **Upload RAW**: Upload original CSV with metadata (name, domain, source URL, description)185. **Configure Headers**: Set column types (Time, Target, Covariate, Group) and units196. **Assign Groups**: Select ALL variables (target + covariates), apply ALL group tags207. **Upload Cleaned**: Final upload → **CLEAN** status2122## Supported Domains2324- **Energy**: Power consumption, utilities, renewable energy, grid data25- **Manufacturing**: Industrial processes, steel production, emissions, equipment data26- **Climate**: CO2 emissions, environmental monitoring, weather correlation data2728## Quick Start2930For the full pipeline from Kaggle to annotated dataset:3132```331. Find dataset on Kaggle342. Download (browser or kaggle CLI)353. Clean with scripts/clean_dataset.py364. Upload RAW dataset to data.smlcrm.com (with metadata)375. Click "Clean" and upload cleaned file386. Configure column metadata (types, units)397. Assign groups to variables408. Upload cleaned dataset → CLEAN status41```4243## Workflow Steps4445### Step 1: Find and Download Dataset4647**From Kaggle (Browser Method):**481. Navigate to kaggle.com/datasets492. Search for relevant dataset (e.g., "steel industry energy consumption", "manufacturing emissions", "climate CO2")503. Review data description, file list, and preview514. Click "Download" button525. Extract CSV file from downloaded zip5354**Alternative: Kaggle CLI**55```bash56# Install if needed: pip install kaggle57# Configure: kaggle competitions list5859scripts/download_kaggle.sh <dataset-name> [output-dir]60# Example: scripts/download_kaggle.sh csafrit2/steel-industry-energy-consumption61```6263### Step 2: Clean the Dataset6465**Always run the cleaning script before upload:**6667```bash68python3 scripts/clean_dataset.py <input.csv> [-o <output.csv>]69```7071**What the script does:**72- Strips whitespace from column names73- Removes duplicate rows74- Fills missing numeric values with median75- Fills missing categorical values with mode or 'Unknown'76- Converts timestamp columns to datetime format77- Outputs column summary for metadata configuration7879**Output:**80- Cleaned CSV file ready for upload81- Column summary printed to console (save this for metadata config)8283### Step 3: Upload Raw Dataset to Platform84851. Navigate to data.smlcrm.com/dashboard862. Click **"Upload Dataset"** button873. Fill in metadata for the RAW dataset:88 - **Name**: Descriptive dataset name89 - **Domain**: Category (Energy, Manufacturing, Climate, etc.)90 - **Source URL**: Kaggle or original source URL91 - **Description**: Brief summary of the dataset924. Upload the **original/raw** CSV file (not cleaned yet)935. Click **Upload**9495**Result:** Dataset appears in list with **RAW** status9697### Step 4: Upload Cleaned File & Configure Metadata98991. Find the RAW dataset in the list1002. Click **"Clean"** button1013. Upload the **cleaned** CSV file (from Step 2)1024. Configure headers for each column:103104| Setting | Description |105|---------|-------------|106| **Name** | Column name (editable) |107| **Units** | Measurement units (kWh, °C, %, ratio, tCO2, etc.) |108| **Type** | Time / Target / Covariate / Group |109110**Column Type Guide:**111- **Time**: Timestamp/datetime columns (usually required)112- **Target**: Variable to predict (at least one required)113- **Covariate**: Input features/independent variables114- **Group**: Categorical segment variables (WeekStatus, Day_of_week, Load_Type, etc.)115116**Bulk Configuration:**117- Select multiple rows via checkboxes118- Use "Apply" dropdown to set type for selected columns119- Set units individually or in bulk120121**Common Unit Patterns:**122- Energy: kWh, MWh, MW123- Power: kVarh, kW124- Emissions: tCO2, kgCO2125- Ratios: ratio, %126- Time: seconds, minutes, hours127128### Step 5: Assign Groups to Variables129130**Purpose:** Group variables define how data is segmented for analysis.131132**Exact Workflow:**1331. **Select ALL variables** by checking their checkboxes:134 - Target variable(s)135 - ALL covariate variables136 1372. **Apply ALL group tags** to selected variables:138 - Click first group tag (e.g., WeekStatus) → all selected get this group139 - Click second group tag (e.g., Day_of_week) → all selected get this group140 - Click third group tag (e.g., Load_Type) → all selected get this group141 - Continue for all available group tags1421433. **Result:** All variables have all groups assigned (e.g., "WeekStatus × Day_of_week × Load_Type")144145**Important:** Assign groups to BOTH target variables AND all covariates.146147### Step 6: Final Upload1481491. Click **"Upload Cleaned Dataset"** button1502. Wait for processing1513. Dataset status changes from **RAW** → **CLEAN**1524. Verify data points count is correct153154## Example: Steel Industry Energy Dataset155156**Source:** https://www.kaggle.com/datasets/csafrit2/steel-industry-energy-consumption157158**Metadata:**159- **Name:** Steel Industry Energy Consumption (South Korea)160- **Domain:** Energy161- **Data Points:** 350,400162163**Column Configuration:**164| Column | Type | Units |165|--------|------|-------|166| Timestamps | Time | - |167| Usage_kWh | Target | kWh |168| Lagging_Current_Reactive.Power_kVarh | Covariate | kVarh |169| Leading_Current_Reactive_Power_kVarh | Covariate | kVarh |170| CO2(tCO2) | Covariate | tCO2 |171| Lagging_Current_Power_Factor | Covariate | ratio |172| Leading_Current_Power_Factor | Covariate | ratio |173| NSM | Covariate | seconds |174| WeekStatus | Group | - |175| Day_of_week | Group | - |176| Load_Type | Group | - |177178**Group Assignment:**1791. Select: Usage_kWh, Lagging_Current_Reactive.Power_kVarh, Leading_Current_Reactive_Power_kVarh, CO2(tCO2), Lagging_Current_Power_Factor, Leading_Current_Power_Factor, NSM1802. Click: WeekStatus → all selected get WeekStatus1813. Click: Day_of_week → all selected get Day_of_week1824. Click: Load_Type → all selected get Load_Type1835. Final: All variables show "WeekStatus × Day_of_week × Load_Type"184185## Reference Materials186187For detailed platform configuration guidance, see [references/platform_guide.md](references/platform_guide.md).188189## Troubleshooting190191**"Next" button disabled:**192- Check at least one Time column is set193- Check at least one Target column is set194- Verify all columns have types assigned195196**Groups not appearing:**197- Columns must be marked as "Group" type first198- Proceed to next step after setting Group types199200**Upload fails:**201- Re-run cleaning script202- Check CSV format (comma-delimited)203- Verify no empty column names204205## Scripts206207| Script | Purpose |208|--------|---------|209| `scripts/clean_dataset.py` | Clean and prepare CSV for upload |210| `scripts/download_kaggle.sh` | Download datasets via Kaggle CLI |211212## Platform URL213214Data Annotation Platform: https://data.smlcrm.com