7 lines
224 B
Python
7 lines
224 B
Python
class TrainingData:
|
|
attributes: list[list[str]]
|
|
classes: list[str]
|
|
|
|
def __init__(self, attributes: list[list[str]], classes: list[str]) -> None:
|
|
self.attributes = attributes
|
|
self.classes = classes |