| 15 | |
| 16 | @dataclass(frozen=True) |
| 17 | class ResearchDataset: |
| 18 | timestamps: list[str] |
| 19 | close: list[float] |
| 20 | model_probabilities: list[float] |
| 21 | model_sides: list[float] |
| 22 | asset_prices: list[list[float]] |
| 23 | asset_names: list[str] |
| 24 | |
| 25 | |
| 26 | def research_run_manifest( |
no outgoing calls
no test coverage detected