Documentation Index
Fetch the complete documentation index at: https://internal.nolano.ai/llms.txt
Use this file to discover all available pages before exploring further.
Quick Start Guide
Get your first foundation model training in under an hour with these simple steps.Two Ways to Work with Nolano AI: This guide shows both the Python SDK (
pynolano) for creating configuration files and the CLI (nolano) for executing operations. Both work together seamlessly - you write configs with the SDK and run them with the CLI.Prepare Your Data
Nolano.AI handles all data preprocessing with a single command. Here’s a minimal config example for text data:Run data preparation:
Data Formats: Make sure your data follows the supported data formats for your specific modality.
data_config.py
Train Your Model
Create a simple training configuration:Start training:That’s it! Your model is now training with automatic:
train_config.py
Distributed Training
Data parallelism across available GPUs→ More details coming soon
Mixed Precision
Optimal performance with mixed precision training→ See precision parameter
Checkpointing
Checkpoint saving every epoch→ See MetaConfig parameters
Metrics Logging
Real-time metrics logging→ See WandbConfig parameters

