Method
__init__
(self, model_params: BrainFlowModelParams)
Source from the content-addressed store, hash-verified
| 169 | """ |
| 170 | |
| 171 | def __init__(self, model_params: BrainFlowModelParams) -> None: |
| 172 | self.model_params = model_params |
| 173 | try: |
| 174 | self.serialized_params = model_params.to_json().encode() |
| 175 | except BaseException: |
| 176 | self.serialized_params = model_params.to_json() |
| 177 | |
| 178 | @classmethod |
| 179 | def set_log_level(cls, log_level: int) -> None: |
Callers
nothing calls this directly
Tested by
no test coverage detected