Gideon Mendels

Results 12 comments of Gideon Mendels

There's many ways to maintain some memory of the sequence of inputs but the easiest is just to keep the LSTM/GRU state between calls to model.step(), and not reset it.

Thanks for the feedback! We will be moving a lot of the actions (move, delete, show etc)to an "Action" dropdown menu. Once we built that we can add stop as...

You can now `Archive` an experiment from the REST/Python API using this method: ``` import comet_ml comet_api = comet_ml.API() comet_api.archive_experiment("some key")` comet_api.archive_experiments(["key1","key2"])` ``` Still working on the reproduce data

Thats a great idea @weiji14! Essentially all the data is available via the REST API but we'll need to build a service to support those with nice markdown notation. Putting...

Hi @sebamenabar - that's a great comment and we'll look into it.

Thanks for the feedback! We're looking into this. In the meantime you can always report it as a string.

@Lothiraldan - can we support this?

It might be easier to add support for using `feed_dict` as an alternative for `InputPipeline`? Many TF models use that paradigm rather than reading the input data directly from the...

@skyw that's correct but since the models in this repo use Readers you first have to declare a new input tensor to the model (Placeholder).