Coverage for source/agent/strategies/classification_testable.py: 83%

6 statements  

« prev     ^ index     » next       coverage.py v7.8.0, created at 2025-06-06 12:00 +0000

1# agent/strategies/classification_testable.py 

2 

3# global imports 

4import pandas as pd 

5from abc import ABC, abstractmethod 

6 

7# local imports 

8 

9class ClassificationTestable(ABC): 

10 """""" 

11 

12 @abstractmethod 

13 def classify(self, data: pd.DataFrame) -> list[list[float]]: 

14 """""" 

15 

16 pass