gogo2/NN/models/__init__.py
2025-03-29 01:56:45 +02:00

20 lines
682 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 CNNModelPyTorch as CNNModel
from NN.models.transformer_model_pytorch import (
TransformerModelPyTorch as TransformerModel,
MixtureOfExpertsModelPyTorch as MixtureOfExpertsModel
)
__all__ = ['CNNModel', 'TransformerModel', 'MixtureOfExpertsModel']