6 lines
182 B
Python
6 lines
182 B
Python
|
|
|
||
|
|
|
||
|
|
class ClassifierInterface:
|
||
|
|
def tagLayers(self, layers):
|
||
|
|
"""takes layers, returns list (len(), same as input) of lists with tags for corresponfing layers"""
|
||
|
|
pass
|