SparrowRecSys icon indicating copy to clipboard operation
SparrowRecSys copied to clipboard

A Deep Learning Recommender System

Results 27 SparrowRecSys issues
Sort by recently updated
recently updated
newest added

Bumps [jetty-server](https://github.com/eclipse/jetty.project) from 9.4.17.v20190418 to 10.0.10. Release notes Sourced from jetty-server's releases. 10.0.10 Special Thanks to the following Eclipse Jetty community members @​jianglai (Lai Jiang) @​markslater (markslater) @​prenagha (Padraic Renaghan)...

dependencies

Replace the following code from ```python import tensorflow as tf # Training samples path, change to your local path training_samples_file_path = tf.keras.utils.get_file("trainingSamples.csv", "file:///Users/zhewang/Workspace/SparrowRecSys/src/main" "/resources/webroot/sampledata/trainingSamples.csv") # Test samples path, change to...

源代码: ```python def generateTransitionMatrix(samples): pairSamples = samples.flatMap(lambda x: generate_pair(x)) pairCountMap = pairSamples.countByValue() pairTotalCount = 0 transitionCountMatrix = defaultdict(dict) itemCountMap = defaultdict(int) for key, cnt in pairCountMap.items(): key1, key2 = key...

将user.html中第136行左右的model设置为model = "nerualcf";后,在对用户进行推荐的时候,有的用户使用的模型仍然是“emb”,比如user170。这是因为什么?

Bumps hadoop-common from 2.7.7 to 3.2.3. [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=org.apache.hadoop:hadoop-common&package-manager=maven&previous-version=2.7.7&new-version=3.2.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...

dependencies

`$ java -jar SparrowRecSys-1.0-SNAPSHOT-jar-with-dependencies.jar ` log4j:WARN No appenders could be found for logger (org.eclipse.jetty.util.log). log4j:WARN Please initialize the log4j system properly. log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info. webRootLocation.toURI().toASCIIString(): jar:file:/mnt/e/work/SparrowRecSys/target/SparrowRecSys-1.0-SNAPSHOT-jar-with-dependencies.jar!/webroot/index.html Web...

在实现MLP的实例的时候,出现这个问题,这个是要怎么解决呢。 因为是个小白,请多多包涵。 谢谢。

你好,我在将系统运行起来之后,发现User136的推荐列表中出现了他曾看过的电影,这是否合理? ![image](https://user-images.githubusercontent.com/30072589/114983499-477b3400-9ec3-11eb-94c0-e47642c92af4.png)