Files
iot-logic/src/preprocessor/abcpreprocessor.py
marcsello 09c991baf3
All checks were successful
continuous-integration/drone/push Build is passing
Implemented AI stuff
2020-09-25 13:48:11 +02:00

25 lines
528 B
Python

#!/usr/bin/env python3
from abc import ABC, abstractmethod
"""
Abstract base class for Sender
"""
__author__ = "@tormakris"
__copyright__ = "Copyright 2020, Birbnetes Team"
__module_name__ = "abcpreprocessor"
__version__text__ = "1"
class AbcPreProcessor(ABC):
"""
Abstract base class PreProcessor. Responsible for manipulating input data from a sensor.
"""
@abstractmethod
def preprocesssignal(self, file_path) -> bool:
"""
Preprocess a signal.
:return:
"""
pass