CoolFace
Apppublic

ptaninja/TRM-ACE-Forex-Model

sourceHugging Faceupdated 11mo agoView on Hugging Face
0likes
model_initial.py13 linesDownload Raw Back to root
1# model_initial.py2# Shim to satisfy pickle references created in the original Kaggle notebook.3# This imports/exports the classes and names that the pickle expects.4 5# If your real definitions live in models.py, re-export them here:6from models import *   # noqa: F401,F4037 8# If there are specific names referenced in the pickle you can alias them explicitly.9# Example:10# from models import TRMForexAgent, DataPreparer11# TRMForexAgent = TRMForexAgent12# DataPreparer = DataPreparer13