Skip to content
Snippets Groups Projects
Commit a6784f1c authored by Alán Muñoz's avatar Alán Muñoz
Browse files

fix(chainer): default run successfully

parent 5f5e198f
No related branches found
No related tags found
No related merge requests found
...@@ -33,10 +33,10 @@ class Chainer(Signal): ...@@ -33,10 +33,10 @@ class Chainer(Signal):
): ):
data = self.get_raw(dataset, in_minutes=in_minutes) data = self.get_raw(dataset, in_minutes=in_minutes)
if chain: if chain:
data = self.apply_chain(data, **kwargs) data = self.apply_chain(data, chain, **kwargs)
return data return data
def chain( def apply_chain(
self, input_data: pd.DataFrame, chain: t.Tuple[str, ...], **kwargs self, input_data: pd.DataFrame, chain: t.Tuple[str, ...], **kwargs
): ):
"""Apply a series of processes to a dataset. """Apply a series of processes to a dataset.
...@@ -61,29 +61,23 @@ class Chainer(Signal): ...@@ -61,29 +61,23 @@ class Chainer(Signal):
""" """
results = copy(input_data) result = copy(input_data)
self._intermediate_steps = [] self._intermediate_steps = []
for process in chain: for process in chain:
params = kwargs.get(process, {}) if process == "standard":
process_cls = get_process(process) result = standard(result, self.lineage())
result = process_cls.as_function(results, **params) else:
process_type = process_cls.__module__.split(".")[-2] params = kwargs.get(process, {})
if process_type == "reshapers": process_cls = get_process(process)
self.prepare_step(process_type) result = process_cls.as_function(result, **params)
if process == "merger": process_type = process_cls.__module__.split(".")[-2]
merges = process.as_function(results, **params) if process_type == "reshapers":
results = self.apply_merges(result, merges) if process == "merger":
self._intermediate_steps.append(result) merges = process.as_function(result, **params)
return results result = self.apply_merges(result, merges)
def prepare_step(
self, data: pd.DataFrame, step: str
) -> t.Tuple[t.Callable, pd.DataFrame]:
pass
def standard_processing(self, url: str): self._intermediate_steps.append(result)
raw = self.get_raw(url) return result
st = standard(raw, self.lineage())
def standard( def standard(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment