d6tflow
d6tflow copied to clipboard
Python library for building highly effective data science workflows
Hi all, I am a beginner, so I have a very naive question: Is d6tflow recommended, even I am not using any type of Machine-Learning tools? I am asking that...
I have a few tasks of the following nature, which are pretty standard, i.e., Import processed dataset, setup input data, split, then pass to a model. ```python # _tasks.py import...
https://d6tflow.readthedocs.io/en/latest/tasks.html This following code defines a single output task and calls it as a dependency to other tasks. Yet TaskSingleOutput1 & TaskSingleOutput2 are not defined anywhere on this page. ```python...
I would like to catch an AssertionError that is raised within my task, but it seems I can only catch generic RuntimeErrors, and I can't figure out how to see...
Guys, could you please tell me how can I create child tasks? Suppose, Task1 has a list as an output (**A**) Then, Task2 must be executed for each value of...
I started using d6tflow for a data science project but, after several weeks, I got somewhat frustrated with this limitation: I needed Tasks able to generate outputs of different types...
Would like to see an option for the data load function to automatically run if task not marked complete. I find myself writing if else statements like the below to...