Closed adamjanovsky closed 2 years ago
Currently, when one wants to import e.g. DependencyFinder estimator, they must write:
DependencyFinder
from sec_certs.model.dependency_finder import DependencyFinder
It would be wise to aggregate the classes into a module at one level higher, so that one can import more estimators from model module. E.g.,
model
from sec_certs.model import DependencyFinder, CPEClassifier, ...
This holds also for Dataset and Sample modules.
Dataset
Sample
Currently, when one wants to import e.g.
DependencyFinder
estimator, they must write:It would be wise to aggregate the classes into a module at one level higher, so that one can import more estimators from
model
module. E.g.,This holds also for
Dataset
andSample
modules.