James Kirk
James Kirk
@nikolan that is the local address of the Docker container running the shopify node app. Inside of that docker container, it is listening on `:64999/hmr` for hmr connections, so that...
Hey @houtzager : The inputs are these four placeholders and the three iterators below: https://github.com/jfkirk/tensorrec/blob/master/tensorrec/tensorrec.py#L273 There are many different output nodes for different purposes. The most straightforward of the outputs...
Hey @mijamo -- this is great feedback, thank you for taking the time! In general, I think you're absolutely right about the documentation. I'm assigning this to myself to add...
The algorithm may be having difficulty due to the item features all being nearly parallel. You may get better results by using a multi-layer neural network item repr (you can...
Great suggestion -- I added the mixture of tastes and attention systems after reading this paper: https://arxiv.org/abs/1711.08379 I'll add better documentation for it. It probably also merits a blog post...
Hey @jaiswalvineet ! Thanks for reporting this. What is the purpose of the `tf.reset_default_graph()` inside of `get_reco()`? This is likely the culprit. Is the call to `model.predict()` the line that...
Hey @jaiswalvineet -- Calling `tf.reset_default_graph()` after loading the model will blow away the graph and create a new one. I've reproduced locally and this will then cause the error you're...
Hey @gallmerci ! Thanks for reporting. What is the shape of your user_features, item_features, and interactions?
Hey all -- any luck with reproducible examples? I'd love to get to the bottom of this, but I've been poking at it and haven't been able to reproduce.
Hey @mkhizeryounas -- there is a `save_model` method on the model object that exports the TensorFlow session. Is this what you're looking for? https://github.com/jfkirk/tensorrec/blob/master/tensorrec/tensorrec.py#L870