| 10 | |
| 11 | @DATASET.register_module(force=True) |
| 12 | class BaseDataset(): |
| 13 | def __init__(self): |
| 14 | pass |
| 15 | |
| 16 | def _init_stocks(self): |
| 17 | pass |
| 18 | |
| 19 | def _load_prices(self): |
| 20 | pass |
| 21 | |
| 22 | def _load_news(self): |
| 23 | pass |
nothing calls this directly
no outgoing calls
no test coverage detected