Closed SunYanCN closed 5 years ago
In code matrix/signal_matrix.py:
def construct_matrix(self): raise NotImplementedError
Is this correct? Is there any problem with this part of the code?
This is expected. The signal matrix class is abstract, and the actual implementations (LSA_matrix, GloVe_matrix, etc.) will be subclasses which actually implement this member function.
In code matrix/signal_matrix.py:
def construct_matrix(self): raise NotImplementedError
Is this correct? Is there any problem with this part of the code?