datarobot-model-training
Comprehensive guidance for training models in DataRobot, including project creation, AutoML configuration, feature engineering, and model selection. Use when training models, creating AutoML projects, or selecting models in DataRobot.
Install
npx skills add https://github.com/datarobot-oss/datarobot-agent-skills/tree/main/skills/datarobot-model-training
claude plugin marketplace add https://llmmart.ai/marketplace.json && claude plugin install datarobot-oss-datarobot-agent-skills@llmmart
git clone https://github.com/datarobot-oss/datarobot-agent-skills.git
The skills CLI installs just this skill, for any of its supported agents. Claude Code installs the whole datarobot-oss/datarobot-agent-skills collection as a plugin from our marketplace. Git is the plain clone.
Skill manifest
DataRobot Model Training Skill
This skill provides guidance for the complete model training workflow in DataRobot, from project creation through model selection and validation.
Quick Start
Most common use case: Create a project and train models
- Create or reuse a Use Case: ask the user if they have an existing Use Case ID to reuse (
dr.UseCase.get(use_case_id)); otherwise create a new one (dr.UseCase.create(name)). Every project needs one linked in Workbench - Upload dataset:
upload_dataset(file_path, dataset_name, use_case_id)to upload training data, associated with the Use Case - Create project:
create_project(dataset_id, project_name, target_column, use_case_id)to create new project, associated with the same Use Case - Start training:
start_automl(project_id, mode)to begin AutoML training
Example: "Create a new project under a 'Sales Forecasting' Use Case with sales_data.csv, set 'revenue' as target, and start Quick AutoML training"
When to use this skill
Use this skill when you need to:
- Create new DataRobot projects
- Upload training datasets
- Configure AutoML experiments
- Monitor training progress
- Select and compare models
- Understand feature engineering results
- Export trained models
Key capabilities
1. Project Management
- Create new projects with appropriate settings
- Upload datasets (CSV, Parquet, database connections)
- Configure project settings (target, partitioning, time series)
- Manage multiple projects and experiments
2. AutoML Configuration
- Set training modes (Quick, Manual, Comprehensive)
- Configure feature engineering options
- Set time limits and resource constraints
- Choose algorithms and model types
3. Training Execution
- Start AutoML training runs
- Monitor training progress
- Handle training errors and warnings
- Pause/resume training if needed
4. Model Analysis
- Compare model performance metrics
- Review feature importance
- Analyze model insights and explanations
- Select best models for deployment
Workflow examples
Example 1: Create and train a new project
User request: "Create a new project using my sales_data.csv file, predict 'revenue' as the target, and start AutoML training."
Agent workflow:
- Upload the dataset to DataRobot
- Create a new project with the dataset
- Set 'revenue' as the target variable
- Configure project settings (detect partitioning, handle time series if needed)
- Start AutoML training with appropriate mode
- Monitor training progress
- Report when training completes with top model metrics
Example 2: Configure advanced training options
User request: "Train a model with time series settings: datetime column 'date', series ID 'store_id', forecast window 1-7 days."
Agent workflow:
- Create project with time series configuration
- Set datetime column and series ID columns
- Configure forecast window (1-7 days)
- Set appropriate time series validation
- Start training with time series-aware algorithms
- Monitor progress and report results
Using DataRobot SDK
This skill guides you to use the DataRobot Python SDK directly. Install the SDK if needed:
pip install datarobot
Key SDK Operations
Use these DataRobot SDK methods for model training:
Use Cases (organize related datasets/projects/deployments under one entity):
dr.UseCase.create(name, description=None)- Create a new Use Casedr.UseCase.get(use_case_id)- Retrieve an existing Use Case (reuse instead of creating a new one)use_case.add(entity=project_or_dataset)- Attach an already-created project or dataset to a Use Case
Projects:
dr.Project.create_from_dataset(dataset_id, project_name, use_case=use_case)- Create project, linked to a Use Casedr.Project.get(project_id)- Get project detailsdr.Project.list()- List all projectsproject.analyze_and_model(target, mode=dr.AUTOPILOT_MODE.QUICK)- Set the target and start AutoPilot
Training:
project.wait_for_autopilot()- Block until AutoPilot finishesproject.get_status()- Check training statusdr.Model.list(project_id)- List trained modelsdr.Model.get(model_id)- Get model detailsdr.ModelRecommendation.get(project.id).get_model()- Get DataRobot's recommended model
Model Analysis:
model.metrics- Performance metrics (dict of{metric: {partition: score}})model.get_feature_impact()- Get feature importance
See the Common Patterns section below for complete examples.
Helper Scripts
This skill includes executable helper scripts that Claude can run directly:
scripts/create_project.py- Create a new project from a dataset, optionally linked to a Use Casescripts/start_training.py- Set the target and start AutoML trainingscripts/list_models.py- List trained models with metrics
The datarobot-data-preparation skill's scripts/upload_dataset.py accepts the same optional use_case_id argument for linking an uploaded dataset to a Use Case.
Usage example:
# Create (or reuse) a Use Case first
python -c "import datarobot as dr; print(dr.UseCase.create(name='Sales Prediction').id)"
# Upload dataset, linked to the Use Case
python ../datarobot-data-preparation/scripts/upload_dataset.py sales_data.csv "Sales Data" use_case_456
# Create project, set target, and start training (one step), linked to the Use Case
python scripts/create_project.py dataset_123 "Sales Prediction" revenue use_case_456
# (Alternatively, if the project was created without a target:)
# python scripts/start_training.py project_456 revenue Quick
# List models once AutoPilot finishes
python scripts/list_models.py project_456 AUC
Claude can run these scripts directly or use them as reference when writing code.
Best practices
- Data preparation: Ensure data is clean and properly formatted before upload
- Use Cases: Every project needs a linked Use Case in Workbench. Resolve one up front — reuse an existing
use_case_idviadr.UseCase.get(use_case_id), or create a new one viadr.UseCase.create(name)— and pass it to bothDataset.create_from_file(use_cases=[...]) andProject.create_from_dataset(use_case=...) so the project lands under the intended Use Case rather than a default one - Target selection: Choose appropriate target variable (avoid leakage)
- Partitioning: Use proper partitioning for time-aware or grouped data
- Feature engineering: Let AutoML handle feature engineering, but review results
- Model selection: Compare multiple models, not just the top performer
- Validation: Review validation strategy and ensure it matches your use case
Common patterns
Pattern 1: Standard classification/regression
import datarobot as dr
import os
# Initialize client
dr.Client()
# Reuse an existing Use Case if the user gave us one, otherwise create a new one
existing_use_case_id = os.getenv("DATAROBOT_USE_CASE_ID") # or ask the user for it
use_case = (
dr.UseCase.get(existing_use_case_id)
if existing_use_case_id
else dr.UseCase.create(name="Sales Prediction")
)
# Upload dataset
dataset = dr.Dataset.create_from_file(
file_path="training_data.csv", name="Sales Data", use_cases=[use_case]
)
# Create project
project = dr.Project.create_from_dataset(
dataset_id=dataset.id, project_name="Sales Prediction", use_case=use_case
)
# Set the target and start AutoPilot (Quick mode).
# analyze_and_model() replaces the deprecated set_target() and starts AutoPilot,
# so no separate start() call is needed.
project.analyze_and_model(
target="revenue", mode=dr.AUTOPILOT_MODE.QUICK, worker_count=-1
)
# Wait for AutoPilot to finish
project.wait_for_autopilot()
# Get DataRobot's recommended model (the one flagged "Recommended for Deployment")
best_model = dr.ModelRecommendation.get(project.id).get_model()
# model.metrics maps each metric to per-partition scores; read the validation score.
metric = project.metric # the project's optimization metric, e.g. "LogLoss" or "AUC"
print(
f"Recommended model: {best_model.id} ({best_model.model_type}), "
f"{metric} (validation): {best_model.metrics[metric]['validation']}"
)
Pattern 2: Time series forecasting
import datarobot as dr
import os
# Reuse an existing Use Case if the user gave us one, otherwise create a new one
existing_use_case_id = os.getenv("DATAROBOT_USE_CASE_ID") # or ask the user for it
use_case = (
dr.UseCase.get(existing_use_case_id)
if existing_use_case_id
else dr.UseCase.create(name="Sales Forecast")
)
# Upload dataset
dataset = dr.Dataset.create_from_file(
"sales_data.csv", "Sales Forecast Data", use_cases=[use_case]
)
# Create project
project = dr.Project.create_from_dataset(
dataset_id=dataset.id, project_name="Sales Forecast", use_case=use_case
)
# Configure time series settings
project.set_target(
target="sales",
mode=dr.AUTOPILOT_MODE.COMPREHENSIVE,
partitioning_method=dr.PARTITIONING_METHOD.DATETIME,
datetime_partition_column="date",
multiseries_id_columns=["store_id"],
forecast_window_start=1,
forecast_window_end=7,
)
# Start training
project.start(autopilot_on=True, max_wait=7200)
# Wait for completion and get results
project.wait_for_completion()
models = dr.Model.list(project.id)
Model selection criteria
When selecting models, consider:
- Performance metrics: Accuracy, AUC, RMSE, MAPE (depending on problem type)
- Prediction speed: Important for real-time deployments
- Interpretability: Some models are more explainable
- Feature requirements: Some models need specific feature types
- Deployment constraints: Consider model size and resource requirements
Error handling
Common errors and solutions:
- Dataset upload failures: Check file format, size limits, encoding
- "Dataset does not contain enough rows": DataRobot requires a minimum of 20 rows to create a project from a dataset — sample/demo data must meet this
- Target errors: Ensure target column exists and has appropriate values
- Training failures: Check data quality, feature types, missing values
- Timeout errors: Adjust time limits or use Quick mode for initial exploration
SDK Setup
Install DataRobot SDK
pip install datarobot
Initialize Client
import datarobot as dr
dr.Client()
Resources
Files (datarobot-agent-skills)
-
scripts
-
create_project.py 2.7 KB
#!/usr/bin/env python3 # Copyright (c) 2026 DataRobot, Inc. All rights reserved. # SPDX-License-Identifier: Apache-2.0 """ Create a new DataRobot project from a dataset. Usage: python create_project.py <dataset_id> <project_name> [target_column] [use_case_id] Creates a project, optionally sets the target, and optionally links the project to an existing Use Case so it isn't orphaned in the DataRobot UI. """ import json import sys import datarobot as dr def create_project( dataset_id: str, project_name: str, target_column: str | None = None, use_case_id: str | None = None, ) -> dict: """ Create a new DataRobot project from a dataset. Args: dataset_id: The dataset ID project_name: Name for the project target_column: Optional target column name use_case_id: Optional existing Use Case ID to link the project to Returns: Project information """ # Initialize client dr.Client() use_case = dr.UseCase.get(use_case_id) if use_case_id else None # Create project project = dr.Project.create_from_dataset( dataset_id=dataset_id, project_name=project_name, use_case=use_case ) result = { "project_id": project.id, "project_name": project.project_name, "stage": project.stage, "dataset_id": dataset_id, "use_case_id": use_case_id, } # Set target and start AutoPilot if a target was provided. # analyze_and_model() replaces the deprecated set_target() in SDK 3.x and both # sets the target and launches AutoPilot in one call. if target_column: try: project.analyze_and_model( target=target_column, mode=dr.AUTOPILOT_MODE.QUICK, worker_count=-1 ) result["target"] = target_column result["target_set"] = True # AutoPilot has advanced the project past "aim"; refresh the reported stage. result["stage"] = project.stage except ( dr.errors.AppPlatformError, dr.errors.AsyncTimeoutError, dr.errors.AsyncProcessUnsuccessfulError, ) as e: result["target_set_error"] = str(e) return result if __name__ == "__main__": if len(sys.argv) < 3: print( "Usage: python create_project.py <dataset_id> <project_name> " "[target_column] [use_case_id]", file=sys.stderr, ) sys.exit(1) dataset_id = sys.argv[1] project_name = sys.argv[2] target_column = sys.argv[3] if len(sys.argv) > 3 else None use_case_id = sys.argv[4] if len(sys.argv) > 4 else None result = create_project(dataset_id, project_name, target_column, use_case_id) print(json.dumps(result, indent=2)) -
list_models.py 2.6 KB
#!/usr/bin/env python3 # Copyright (c) 2026 DataRobot, Inc. All rights reserved. # SPDX-License-Identifier: Apache-2.0 """ List trained models for a project. Usage: python list_models.py <project_id> [sort_by] Sort options: AUC, RMSE, accuracy (default: by validation score) """ import json import sys import datarobot as dr def list_models(project_id: str, sort_by: str = "validation") -> dict: """ List trained models for a project. Args: project_id: The project ID sort_by: Sort option - "validation", "AUC", "RMSE", etc. Returns: List of models with metrics """ # Initialize client dr.Client() models = dr.Model.list(project_id) # Get model details with metrics model_list = [] for model in models: try: metrics = model.metrics model_info = { "model_id": model.id, "model_type": model.model_type, "blueprint_id": model.blueprint_id, "metrics": metrics, } model_list.append(model_info) except dr.errors.ClientError: model_info = { "model_id": model.id, "model_type": model.model_type, "blueprint_id": model.blueprint_id, } model_list.append(model_info) # Sort models. model.metrics maps each metric to a dict of partition scores # (e.g. {"AUC": {"validation": 0.81, "crossValidation": 0.80, ...}}), so read # the validation score rather than treating the metric value as a scalar. def validation_score(model_info: dict, metric: str, default: float) -> float: scores = (model_info.get("metrics") or {}).get(metric) if not isinstance(scores, dict): return default score = scores.get("validation") # A partition key can exist with a null score; keep the sort key numeric. return default if score is None else score if sort_by == "AUC" and model_list: model_list.sort(key=lambda x: validation_score(x, "AUC", 0), reverse=True) elif sort_by == "RMSE" and model_list: model_list.sort(key=lambda x: validation_score(x, "RMSE", float("inf"))) return { "project_id": project_id, "model_count": len(model_list), "models": model_list, } if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python list_models.py <project_id> [sort_by]", file=sys.stderr) sys.exit(1) project_id = sys.argv[1] sort_by = sys.argv[2] if len(sys.argv) > 2 else "validation" result = list_models(project_id, sort_by) print(json.dumps(result, indent=2)) -
start_training.py 1.9 KB
#!/usr/bin/env python3 # Copyright (c) 2026 DataRobot, Inc. All rights reserved. # SPDX-License-Identifier: Apache-2.0 """ Start AutoML training for a project. Usage: python start_training.py <project_id> <target> [mode] Modes: Quick, Comprehensive, Manual (default: Quick) """ import json import sys import datarobot as dr MODE_MAP = { "Quick": dr.AUTOPILOT_MODE.QUICK, "Comprehensive": dr.AUTOPILOT_MODE.COMPREHENSIVE, "Manual": dr.AUTOPILOT_MODE.MANUAL, } def start_training(project_id: str, target: str, mode: str = "Quick") -> dict: """ Set the target and start AutoML training for a project. Args: project_id: The project ID target: The target column to model mode: Training mode - "Quick", "Comprehensive", or "Manual" Returns: Training job information """ # Initialize client dr.Client() project = dr.Project.get(project_id) # analyze_and_model() sets the target and launches AutoPilot in the given mode. # (It replaces the older set_target()/start() calls; Manual mode sets the # target without auto-running blueprints.) project.analyze_and_model( target=target, mode=MODE_MAP.get(mode, dr.AUTOPILOT_MODE.QUICK), worker_count=-1, ) return { "project_id": project_id, "target": target, "stage": project.stage, "mode": mode, "message": f"Training started for target '{target}' in {mode} mode", } if __name__ == "__main__": if len(sys.argv) < 3: print( "Usage: python start_training.py <project_id> <target> [mode]", file=sys.stderr, ) print("Modes: Quick, Comprehensive, Manual", file=sys.stderr) sys.exit(1) project_id = sys.argv[1] target = sys.argv[2] mode = sys.argv[3] if len(sys.argv) > 3 else "Quick" result = start_training(project_id, target, mode) print(json.dumps(result, indent=2))
-
-
SKILL.md 10.9 KB
--- name: datarobot-model-training description: Comprehensive guidance for training models in DataRobot, including project creation, AutoML configuration, feature engineering, and model selection. Use when training models, creating AutoML projects, or selecting models in DataRobot. --- # DataRobot Model Training Skill This skill provides guidance for the complete model training workflow in DataRobot, from project creation through model selection and validation. ## Quick Start **Most common use case**: Create a project and train models 1. **Create or reuse a Use Case**: ask the user if they have an existing Use Case ID to reuse (`dr.UseCase.get(use_case_id)`); otherwise create a new one (`dr.UseCase.create(name)`). Every project needs one linked in Workbench 2. **Upload dataset**: `upload_dataset(file_path, dataset_name, use_case_id)` to upload training data, associated with the Use Case 3. **Create project**: `create_project(dataset_id, project_name, target_column, use_case_id)` to create new project, associated with the same Use Case 4. **Start training**: `start_automl(project_id, mode)` to begin AutoML training **Example**: "Create a new project under a 'Sales Forecasting' Use Case with sales_data.csv, set 'revenue' as target, and start Quick AutoML training" ## When to use this skill Use this skill when you need to: - Create new DataRobot projects - Upload training datasets - Configure AutoML experiments - Monitor training progress - Select and compare models - Understand feature engineering results - Export trained models ## Key capabilities ### 1. Project Management - Create new projects with appropriate settings - Upload datasets (CSV, Parquet, database connections) - Configure project settings (target, partitioning, time series) - Manage multiple projects and experiments ### 2. AutoML Configuration - Set training modes (Quick, Manual, Comprehensive) - Configure feature engineering options - Set time limits and resource constraints - Choose algorithms and model types ### 3. Training Execution - Start AutoML training runs - Monitor training progress - Handle training errors and warnings - Pause/resume training if needed ### 4. Model Analysis - Compare model performance metrics - Review feature importance - Analyze model insights and explanations - Select best models for deployment ## Workflow examples ### Example 1: Create and train a new project **User request**: "Create a new project using my sales_data.csv file, predict 'revenue' as the target, and start AutoML training." **Agent workflow**: 1. Upload the dataset to DataRobot 2. Create a new project with the dataset 3. Set 'revenue' as the target variable 4. Configure project settings (detect partitioning, handle time series if needed) 5. Start AutoML training with appropriate mode 6. Monitor training progress 7. Report when training completes with top model metrics ### Example 2: Configure advanced training options **User request**: "Train a model with time series settings: datetime column 'date', series ID 'store_id', forecast window 1-7 days." **Agent workflow**: 1. Create project with time series configuration 2. Set datetime column and series ID columns 3. Configure forecast window (1-7 days) 4. Set appropriate time series validation 5. Start training with time series-aware algorithms 6. Monitor progress and report results ## Using DataRobot SDK This skill guides you to use the DataRobot Python SDK directly. Install the SDK if needed: ```bash pip install datarobot ``` ### Key SDK Operations Use these DataRobot SDK methods for model training: **Use Cases** (organize related datasets/projects/deployments under one entity): - `dr.UseCase.create(name, description=None)` - Create a new Use Case - `dr.UseCase.get(use_case_id)` - Retrieve an existing Use Case (reuse instead of creating a new one) - `use_case.add(entity=project_or_dataset)` - Attach an already-created project or dataset to a Use Case **Projects**: - `dr.Project.create_from_dataset(dataset_id, project_name, use_case=use_case)` - Create project, linked to a Use Case - `dr.Project.get(project_id)` - Get project details - `dr.Project.list()` - List all projects - `project.analyze_and_model(target, mode=dr.AUTOPILOT_MODE.QUICK)` - Set the target and start AutoPilot **Training**: - `project.wait_for_autopilot()` - Block until AutoPilot finishes - `project.get_status()` - Check training status - `dr.Model.list(project_id)` - List trained models - `dr.Model.get(model_id)` - Get model details - `dr.ModelRecommendation.get(project.id).get_model()` - Get DataRobot's recommended model **Model Analysis**: - `model.metrics` - Performance metrics (dict of `{metric: {partition: score}}`) - `model.get_feature_impact()` - Get feature importance See the [Common Patterns](#common-patterns) section below for complete examples. ## Helper Scripts This skill includes executable helper scripts that Claude can run directly: - `scripts/create_project.py` - Create a new project from a dataset, optionally linked to a Use Case - `scripts/start_training.py` - Set the target and start AutoML training - `scripts/list_models.py` - List trained models with metrics The `datarobot-data-preparation` skill's `scripts/upload_dataset.py` accepts the same optional `use_case_id` argument for linking an uploaded dataset to a Use Case. **Usage example**: ```bash # Create (or reuse) a Use Case first python -c "import datarobot as dr; print(dr.UseCase.create(name='Sales Prediction').id)" # Upload dataset, linked to the Use Case python ../datarobot-data-preparation/scripts/upload_dataset.py sales_data.csv "Sales Data" use_case_456 # Create project, set target, and start training (one step), linked to the Use Case python scripts/create_project.py dataset_123 "Sales Prediction" revenue use_case_456 # (Alternatively, if the project was created without a target:) # python scripts/start_training.py project_456 revenue Quick # List models once AutoPilot finishes python scripts/list_models.py project_456 AUC ``` Claude can run these scripts directly or use them as reference when writing code. ## Best practices 1. **Data preparation**: Ensure data is clean and properly formatted before upload 2. **Use Cases**: Every project needs a linked Use Case in Workbench. Resolve one up front — reuse an existing `use_case_id` via `dr.UseCase.get(use_case_id)`, or create a new one via `dr.UseCase.create(name)` — and pass it to both `Dataset.create_from_file` (`use_cases=[...]`) and `Project.create_from_dataset` (`use_case=...`) so the project lands under the intended Use Case rather than a default one 3. **Target selection**: Choose appropriate target variable (avoid leakage) 4. **Partitioning**: Use proper partitioning for time-aware or grouped data 5. **Feature engineering**: Let AutoML handle feature engineering, but review results 6. **Model selection**: Compare multiple models, not just the top performer 7. **Validation**: Review validation strategy and ensure it matches your use case ## Common patterns ### Pattern 1: Standard classification/regression ```python import datarobot as dr import os # Initialize client dr.Client() # Reuse an existing Use Case if the user gave us one, otherwise create a new one existing_use_case_id = os.getenv("DATAROBOT_USE_CASE_ID") # or ask the user for it use_case = ( dr.UseCase.get(existing_use_case_id) if existing_use_case_id else dr.UseCase.create(name="Sales Prediction") ) # Upload dataset dataset = dr.Dataset.create_from_file( file_path="training_data.csv", name="Sales Data", use_cases=[use_case] ) # Create project project = dr.Project.create_from_dataset( dataset_id=dataset.id, project_name="Sales Prediction", use_case=use_case ) # Set the target and start AutoPilot (Quick mode). # analyze_and_model() replaces the deprecated set_target() and starts AutoPilot, # so no separate start() call is needed. project.analyze_and_model( target="revenue", mode=dr.AUTOPILOT_MODE.QUICK, worker_count=-1 ) # Wait for AutoPilot to finish project.wait_for_autopilot() # Get DataRobot's recommended model (the one flagged "Recommended for Deployment") best_model = dr.ModelRecommendation.get(project.id).get_model() # model.metrics maps each metric to per-partition scores; read the validation score. metric = project.metric # the project's optimization metric, e.g. "LogLoss" or "AUC" print( f"Recommended model: {best_model.id} ({best_model.model_type}), " f"{metric} (validation): {best_model.metrics[metric]['validation']}" ) ``` ### Pattern 2: Time series forecasting ```python import datarobot as dr import os # Reuse an existing Use Case if the user gave us one, otherwise create a new one existing_use_case_id = os.getenv("DATAROBOT_USE_CASE_ID") # or ask the user for it use_case = ( dr.UseCase.get(existing_use_case_id) if existing_use_case_id else dr.UseCase.create(name="Sales Forecast") ) # Upload dataset dataset = dr.Dataset.create_from_file( "sales_data.csv", "Sales Forecast Data", use_cases=[use_case] ) # Create project project = dr.Project.create_from_dataset( dataset_id=dataset.id, project_name="Sales Forecast", use_case=use_case ) # Configure time series settings project.set_target( target="sales", mode=dr.AUTOPILOT_MODE.COMPREHENSIVE, partitioning_method=dr.PARTITIONING_METHOD.DATETIME, datetime_partition_column="date", multiseries_id_columns=["store_id"], forecast_window_start=1, forecast_window_end=7, ) # Start training project.start(autopilot_on=True, max_wait=7200) # Wait for completion and get results project.wait_for_completion() models = dr.Model.list(project.id) ``` ## Model selection criteria When selecting models, consider: - **Performance metrics**: Accuracy, AUC, RMSE, MAPE (depending on problem type) - **Prediction speed**: Important for real-time deployments - **Interpretability**: Some models are more explainable - **Feature requirements**: Some models need specific feature types - **Deployment constraints**: Consider model size and resource requirements ## Error handling Common errors and solutions: - **Dataset upload failures**: Check file format, size limits, encoding - **"Dataset does not contain enough rows"**: DataRobot requires a minimum of 20 rows to create a project from a dataset — sample/demo data must meet this - **Target errors**: Ensure target column exists and has appropriate values - **Training failures**: Check data quality, feature types, missing values - **Timeout errors**: Adjust time limits or use Quick mode for initial exploration ## SDK Setup ### Install DataRobot SDK ```bash pip install datarobot ``` ### Initialize Client ```python import datarobot as dr dr.Client() ``` ## Resources - [DataRobot Python SDK Documentation](https://datarobot-public-api-client.readthedocs-hosted.com/) - [DataRobot AutoML Documentation](https://docs.datarobot.com/en/docs/modeling/index.html) - [General Modeling Documentation – Time Series](https://docs.datarobot.com/en/docs/modeling/index.html) - [General Modeling Documentation – Feature Engineering](https://docs.datarobot.com/en/docs/modeling/index.html)
Comments (0)
Sign in to join the conversation.
Reviews (0)
No reviews yet.
No comments yet.