20 lines
682 B
Python
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']
|