Skip to content

Commit f03918b

Browse files
authored
Merge pull request #5 from intersystems-community/002-top-to-bottom
feat: complete documentation and code hygiene review
2 parents 9bf71fe + 6dbf9fc commit f03918b

File tree

15 files changed

+2919
-17
lines changed

15 files changed

+2919
-17
lines changed

README.md

Lines changed: 39 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,23 @@
66
[![Python 3.8+](https://img.shields.io/badge/python-3.8+-blue.svg)](https://www.python.org)
77
[![License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE)
88

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+
926
## Overview
1027

1128
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
108125

109126
## Documentation
110127

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
112150

113151
## Architecture
114152

0 commit comments

Comments
 (0)