Using IntegratedML

Create, train, validate, and predict machine learning models within SQL.

Updated Feb 2, 2026
One-click install
npx skills add https://github.com/sorodriguezz/skills-objectscript --skill using-integratedml
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: Using IntegratedML
Source: https://github.com/sorodriguezz/skills-objectscript/tree/main/skills/using-integrated-ml
Command: npx skills add https://github.com/sorodriguezz/skills-objectscript --skill using-integratedml

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill simplifies the process of integrating machine learning into applications by allowing users to create, train, and deploy predictive models directly within a SQL environment, eliminating the need for specialized ML expertise or complex data pipelines.

Core Features & Use Cases

  • SQL-based Model Creation: Define model structures using CREATE MODEL statements.
  • Automated Model Training: Train models using various providers (AutoML, H2O, DataRobot) with TRAIN MODEL.
  • Model Validation & Prediction: Evaluate model performance with VALIDATE MODEL and make predictions using PREDICT and PROBABILITY functions.
  • Use Case: A business analyst can predict customer churn by training a classification model on historical customer data using SQL, without writing Python code.

Quick Start

Use the Using IntegratedML skill to create a model named 'CustomerChurn' predicting the 'Churn' column from the 'CustomerData' table.

Frequently Asked Questions about Using IntegratedML

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I build machine learning models directly in SQL?

Build machine learning models in SQL by executing CREATE MODEL statements to define structures and TRAIN MODEL to automate training. This enables predictive modeling directly within your database environment without external pipelines.

Can I train predictive models without writing Python code?

Train predictive models without Python by using SQL-based automated machine learning workflows. This allows business analysts to perform tasks like customer churn prediction directly on historical data using standard SQL functions.

Does IntegratedML work with AutoML providers like H2O and DataRobot?

IntegratedML works with AutoML providers like H2O and DataRobot by integrating with these platforms to facilitate automated model training and validation directly through SQL commands, streamlining the machine learning workflow.

How do I validate and make predictions using SQL machine learning?

Validate and make predictions using SQL machine learning by executing VALIDATE MODEL to evaluate performance, then applying PREDICT and PROBABILITY functions for estimation. This process supports regression, classification, and time series models.

What is the best way to integrate machine learning into applications without specialized ML expertise?

Integrate machine learning without specialized ML expertise by using SQL-based automated workflows. This eliminates complex data pipelines by allowing you to create, train, and deploy predictive models directly in a SQL environment.