D6tflow: Python library for building data science workflows
1–10 of 50 posts
Re: D6tflow: Python library for building data science workflows
#2- The workflow in the readme is missing the part when you actually use the model. This will often need to be connected to your original preprocessing in some way - for example, if the dataset that you're predicting on has a categorical variable with a unique value which wasn't present in the training dataset, this effectively introduces a new feature in your dataset, which makes it impossible to do model.predict(). The need to manage things like this changes that workflow chart quite a bit.
Re: D6tflow: Python library for building data science workflows
#3Re: D6tflow: Python library for building data science workflows
#4But they didn't really explain/sell what those optimisations are in the readme.
Re: D6tflow: Python library for building data science workflows
#5This looks pretty interesting. I am currently implementing DS workflows that are essentially python classes to orchestrate R scripts. I'll have a closer look on Monday but if I can use it to handle rpy2 R format data I'll be happy
Re: D6tflow: Python library for building data science workflows
#6This looks pretty interesting. I am currently implementing DS workflows that are essentially python classes to orchestrate R scripts. I'll have a closer look on Monday but if I can use it to handle rpy2 R format data I'll be happy
I've been wondering about this - why would you pass data from one language to the other? If you already have existing R code, you can easily manage it through R itself.
Re: D6tflow: Python library for building data science workflows
#7Re: D6tflow: Python library for building data science workflows
#8- I really don't think that Python needs an additional layer of abstraction, especially when using scikit-learn which is high level enough as it is. - The workflow in the readme is missing the part when you actually use the model. This will often need to be connected to your original preprocessing in some way - for example, if the dataset that you're predicting on has a categorical variable with a unique value which…
Re: D6tflow: Python library for building data science workflows
#9- I really don't think that Python needs an additional layer of abstraction, especially when using scikit-learn which is high level enough as it is. - The workflow in the readme is missing the part when you actually use the model. This will often need to be connected to your original preprocessing in some way - for example, if the dataset that you're predicting on has a categorical variable with a unique value which…
The full machine learning pipeline goes far beyond sklearn scope. Think about scheduled data reading or scheduled model updates. I think there is a need for such frameworks to help using ml.
I'd rather assemble together a set of tightly scoped "UNIX philosophy" libraries and tools rather than try and use an all encompassing framework and be straitjacketed by its imposed structure.
At work I have what are essentially cron jobs running scripts which invoke sklearn pipelines. I've never even thought to make the scheduler aware of what they were running and I'm not sure why I would.
Re: D6tflow: Python library for building data science workflows
#10For another way to do data science workflows, there's the Common Workflow Language ( http://commonwl.org )