Skip to content

Commit

Permalink
remove parameter base
Browse files Browse the repository at this point in the history
  • Loading branch information
R-Palazzo committed Jul 10, 2023
1 parent 9eb709f commit b97ffcf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions sdv/multi_table/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,11 @@ def _print(self, text='', **kwargs):
if self.verbose:
print(text, **kwargs) # noqa: T001

def __init__(self, metadata, locales=None, synthesizer_kwargs=None, verbose=False):
def __init__(self, metadata, locales=None, synthesizer_kwargs=None):
self.metadata = metadata
self.metadata.validate()
self.locales = locales
self.verbose = verbose
self.verbose = False
self._table_synthesizers = {}
self._table_parameters = defaultdict(dict)
if synthesizer_kwargs is not None:
Expand Down
4 changes: 2 additions & 2 deletions sdv/multi_table/hma.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ class HMASynthesizer(BaseHierarchicalSampler, BaseMultiTableSynthesizer):
}

def __init__(self, metadata, locales=None, verbose=True):
BaseMultiTableSynthesizer.__init__(self, metadata, locales=locales, verbose=verbose)
BaseMultiTableSynthesizer.__init__(self, metadata, locales=locales)
self._table_sizes = {}
self._max_child_rows = {}
self._augmented_tables = []
self._learned_relationships = 0

self.verbose = verbose
BaseHierarchicalSampler.__init__(
self,
self.metadata,
Expand Down

0 comments on commit b97ffcf

Please sign in to comment.