Implementation of DataLoader and DataModule (#383)
Refactoring for 0.2 * Data module, data loader and dataset * Refactor LabelTensor * Refactor solvers Co-authored-by: dario-coscia <dariocos99@gmail.com>
This commit is contained in:
committed by
Nicola Demo
parent
dd43c8304c
commit
a27bd35443
@@ -18,12 +18,11 @@ class DataConditionInterface(ConditionInterface):
|
||||
|
||||
def __init__(self, input_points, conditional_variables=None):
|
||||
"""
|
||||
TODO
|
||||
TODO : add docstring
|
||||
"""
|
||||
super().__init__()
|
||||
self.input_points = input_points
|
||||
self.conditional_variables = conditional_variables
|
||||
self._condition_type = 'unsupervised'
|
||||
|
||||
def __setattr__(self, key, value):
|
||||
if (key == 'input_points') or (key == 'conditional_variables'):
|
||||
|
||||
Reference in New Issue
Block a user