Files
gogo2/NN/models/__init__.py
2025-06-18 13:51:08 +03:00

20 lines
683 B
Python

"""
Neural Network Models
====================
This package contains the neural network models used in the trading system:
- CNN Model: Deep convolutional neural network for feature extraction
- Transformer Model: Processes high-level features for improved pattern recognition
- MoE: Mixture of Experts model that combines multiple neural networks
PyTorch implementation only.
"""
from NN.models.cnn_model_pytorch import EnhancedCNNModel as CNNModel
from NN.models.transformer_model_pytorch import (
TransformerModelPyTorch as TransformerModel,
MixtureOfExpertsModelPyTorch as MixtureOfExpertsModel
)
__all__ = ['CNNModel', 'TransformerModel', 'MixtureOfExpertsModel']