You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A demonstration framework for integrating custom machine learning models with InterSystems IRIS IntegratedML. This project provides four practical examples showing how to deploy scikit-learn compatible models directly into database workflows, enabling in-database predictions without data movement.
9
+
**The complete showcase for IntegratedML's Custom Models feature** - demonstrating how Python ML models integrate seamlessly into InterSystems IRIS SQL workflows. This project provides four real-world examples showing how to deploy custom machine learning models directly into database operations using familiar SQL syntax.
10
+
11
+
🎯 **Key Innovation**: Execute `CREATE MODEL ... USING "your.custom.model"` and `SELECT PREDICT(YourModel)` to bring any Python ML model into SQL - no data movement required!
10
12
11
13
## Features
12
14
@@ -24,7 +26,17 @@ A demonstration framework for integrating custom machine learning models with In
24
26
-**VS Code** (recommended for notebooks)
25
27
- At least 4GB RAM for IRIS container
26
28
27
-
### 🚀 Simplified Setup
29
+
### 🚀 One-Command Demo
30
+
31
+
```bash
32
+
# Experience all four demos with one command!
33
+
python run_all_demos.py --quick
34
+
35
+
# Or run integration tests only
36
+
python run_all_demos.py --test-only
37
+
```
38
+
39
+
### 🛠️ Full Setup
28
40
29
41
```bash
30
42
# Clone the repository
@@ -78,7 +90,14 @@ make demos # Run all demo scripts
0 commit comments