You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While the current interface provided by xcessiv is, well excessively nice, I am hoping that it will be possible to integrate TensorFlow models / estimators with it. Has this been done, or would it be possible to add any documentation with a basic example?
The text was updated successfully, but these errors were encountered:
Hey @edgimar, the requirement for an xcessiv estimator is that it has fit, get_params, and set_params. Not sure about tensorflow, but Keras has classes KerasClassifier and KerasRegressor that work properly with this. I've been planning to add documentation showing how to do this.
Only drawback is that training sets have to be in memory because of the (X, y) scikit learn paradigm. I'm not sure how to get around that without breaking everything else.
Yeah, that was my next question: how to work with multiple training-set batches. sklearn also has the partial_fit API method which is made to handle this, but it sound like xcessiv isn't set up to make use of this?
While the current interface provided by xcessiv is, well excessively nice, I am hoping that it will be possible to integrate TensorFlow models / estimators with it. Has this been done, or would it be possible to add any documentation with a basic example?
The text was updated successfully, but these errors were encountered: