Elisha Yadgaran

Results 8 comments of Elisha Yadgaran

> @eyadgaran > > Did you got a chance to create PR for adding SimpleML to [TFX-Addons](https://github.com/tensorflow/tfx-addons). Thank you. Thanks for following up! I've decided to hold off for the...

Library list: - SimpleML-SQLAlchemy-ORM - SimpleML-MLFlow - SimpleML-Scikit-Learn - SimpleML-Tensorflow - SimpleML-Dask - SimpleML-Pandas For now keep core interfaces and persistence package internal.

[Thought] use common naming and registries to enable third-party extension. Flask has some good examples of ecosystem libraries using standard naming conventions. Open question - create a virtual namespace package:...

Trainer module Training is composed of a few interchangeable components. 1. configuration - can be yaml or json for simple references or traitlets for more granular control 2. Job definition....

could be coupled with #110 to guarantee inspectable types for function inputs

pseudocode idea ``` def diskcache(save_pattern: str) -> Callable: def register(fn: Callable) -> Callable: register_cache_pattern( fn=fn.__name__, save_pattern=save_pattern ) return partial(cache_wrapped_method, fn=fn) return register def cache_wrapped_method(fn, *args, **kwargs): try: retrieve cache except:...

Limit to state mutation events

Hi @Wauplin thanks for the reply. I get the concern and don't have a full grasp of all the information contained in the various API calls vs what could be...