tensorrec icon indicating copy to clipboard operation
tensorrec copied to clipboard

A TensorFlow recommendation algorithm and framework in Python.

Results 42 tensorrec issues
Sort by recently updated
recently updated
newest added

- `pip install tensorrec ` takes forever to complete install - do I need to install each time, on say, a kaggle notebook Please respond at the earliest as I...

Bumps [pillow](https://github.com/python-pillow/Pillow) from 5.0.0 to 9.0.1. Release notes Sourced from pillow's releases. 9.0.1 https://pillow.readthedocs.io/en/stable/releasenotes/9.0.1.html Changes In show_file, use os.remove to remove temporary images. CVE-2022-24303 #6010 [@​radarhere, @​hugovk] Restrict builtins within...

dependencies

Hi there, just installed the tensorrec package, tried to run the script, i got the error: if tf.get_default_session() is not None: AttributeError: module 'tensorflow' has no attribute 'get_default_session' , in...

I installed tensorrec in brand new Virtualenv and stuck here. **\lib\site-packages\tensorrec\session_management.py in get_session()** 10 if _session is None: ---> 11 if tf.get_default_session() is not None: 12 _session = tf.get_default_session() 13...

Hello,[this issue](https://github.com/jfkirk/tensorrec/issues/167) shows the reason that I commit this PR. I sincerely wish my PR will help you.And if you think my PR has a little work,Hoping you could merge...

Hello,I found a performance issue in the definition of `create_tensorrec_dataset_from_tfrecord` , jfkirk/tensorrec/blob/master/tensorrec/input_utils.py, [tf.data.TFRecordDataset(tfrecord_path).map](https://github.com/jfkirk/tensorrec/blob/80690737ac039a5b41fc99e67372c4f67d8cfc51/tensorrec/input_utils.py#L126) was called without **num_parallel_calls**. I think it will increase the efficiency of your program if you add...

Hello, I am currently using TensorRec for my master's thesis project, and have been following the MovieLens guide on getting started with the library. I am trying to test different...

Hello , Great work on Tensorrec . For my use case i have both items as well as users features so can i initialize these Features to the hybrid model...

All of the examples are coming from the data generated. Could you post an example which use own dataset to train it?

question

Hi, I am facing a problem with dimensionality when I build the model using `DeepRepresentationGraph` as per your example Specifically ```python class DeepRepresentationGraph(AbstractKerasRepresentationGraph): # This method returns an ordered list...