|
6 | 6 | [](https://www.python.org) |
7 | 7 | [](LICENSE) |
8 | 8 |
|
| 9 | +## Table of Contents |
| 10 | + |
| 11 | +- [Overview](#overview) |
| 12 | +- [Key Features](#key-features) |
| 13 | +- [Demo Applications](#demo-applications) |
| 14 | +- [Quick Start](#quick-start) |
| 15 | +- [Documentation](#documentation) |
| 16 | + - [Core Documentation](#-core-documentation-docs) |
| 17 | + - [Demo Applications](#-demo-applications-demos) |
| 18 | + - [Feature Specifications](#-feature-specifications-specs) |
| 19 | +- [Architecture](#architecture) |
| 20 | +- [Testing](#testing) |
| 21 | +- [Development](#development) |
| 22 | +- [Contributing](#contributing) |
| 23 | +- [License](#license) |
| 24 | +- [Support](#support) |
| 25 | + |
9 | 26 | ## Overview |
10 | 27 |
|
11 | 28 | IntegratedML Custom Models allows you to deploy custom Python models directly within SQL queries. This feature enables in-database machine learning without data movement, making it easier to integrate ML models into existing database workflows. |
@@ -108,7 +125,28 @@ make demo-dna |
108 | 125 |
|
109 | 126 | ## Documentation |
110 | 127 |
|
111 | | -- [Quick Start Guide](docs/QUICK_GUIDE_CUSTOM_MODELS.md) |
| 128 | +This project's documentation is organized into three main areas: |
| 129 | + |
| 130 | +### 📚 Core Documentation ([`docs/`](docs/)) |
| 131 | +Cross-cutting technical documentation for the entire project: |
| 132 | +- **[Quick Start Guide](docs/QUICK_GUIDE_CUSTOM_MODELS.md)** - Get started in under 5 minutes |
| 133 | +- **[Architecture](docs/architecture.md)** - System design, base class hierarchy, integration patterns |
| 134 | +- **[API Reference](docs/api_reference.md)** - Complete API documentation for all model classes |
| 135 | +- **[Deployment](docs/deployment.md)** - Production deployment strategies and configuration |
| 136 | +- **[User Guide](docs/user_guide.md)** - Step-by-step usage instructions |
| 137 | + |
| 138 | +### 🎯 Demo Applications ([`demos/`](demos/)) |
| 139 | +Working examples with demo-specific setup instructions: |
| 140 | +- **[Credit Risk](demos/credit_risk/)** - Financial risk modeling with custom feature engineering |
| 141 | +- **[Fraud Detection](demos/fraud_detection/)** - Transaction fraud detection using ensemble methods |
| 142 | +- **[Sales Forecasting](demos/sales_forecasting/)** - Time-series forecasting with Prophet + LightGBM |
| 143 | +- **[DNA Similarity](demos/dna_similarity/)** - Sequence analysis with custom distance metrics |
| 144 | + |
| 145 | +### 📋 Feature Specifications ([`specs/`](specs/)) |
| 146 | +Design documents and implementation plans for new features: |
| 147 | +- Feature specifications with user stories and acceptance criteria |
| 148 | +- Implementation plans with architecture decisions |
| 149 | +- Task breakdowns and validation results |
112 | 150 |
|
113 | 151 | ## Architecture |
114 | 152 |
|
|
0 commit comments