10 lines
294 B
Python
10 lines
294 B
Python
|
|
|
|
class AbstractModel:
|
|
|
|
# TODO what information about the model does the ModelParser need to be able to simulate the right kind of data
|
|
# for further analysis in cell_data/fi_curve etc.
|
|
|
|
def min_stimulus_strength_to_spike(self):
|
|
raise NotImplementedError("NOT IMPLEMENTED")
|