XFlow Documentation¶
XFlow is a lightweight modular machine-learning framework with a clear high-level structure.
Core Modules¶
XFlow is organized into four main modules:
- Data Module
Data loading, processing, and pipeline management
- Models Module
Machine learning model implementations
- Trainers Module
Training utilities and callbacks
- Utils Module
Helper functions and utilities
Quick Example¶
from xflow.data import BasePipeline
from xflow.models import BaseModel
# Create a data pipeline
pipeline = BasePipeline()
# Create and configure model
model = BaseModel()