Code Monkey home page Code Monkey logo

cml_pipelines's People

Contributors

ariel215 avatar mivade avatar zduey avatar

Watchers

 avatar  avatar  avatar  avatar

cml_pipelines's Issues

Add a generic `sink` method

A lot of times when building pipelines, we might want to do something like this:

results = [func(x) for x in iterable]
return results

To make this work easier with delayed tasks, the Pipeline class should gain a sink method that collects the results like this for us so that we can use that to return a single dask.Delayed instance in the build method like so:

def build(self):
    results = [self.delayed_func(x) for x in self.values]
    return self.sink(results)

Clearing the cache automatically

We should do one of two things upon successful completion of a pipeline:

  1. Automatically clear the cache
  2. Add a decorator to do this which wraps a function that runs a pipeline.

Remove caching

The joblib caching mechanism leaves much to be desired. We should just get rid of it and use the dask.distributed decorator directly.

Synchronous by default

Futures are great, but in most cases when we're building pipelines, we need to wait on the results so blocking should be the default.

Improve caching interface

Right now if you want to clear the cache manually, you have to do from cml_pipelines.wrapper import memory and then memory.clear() which is kind of awkward. We should come up with a friendlier way to do this (and set cache directory, etc.).

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.