HN user

arekp

200 karma

http://arek-paterek.com

Posts8
Comments30
View on HN
[dead] 13 years ago

I submitted all other links before to HN (5000 best movies, books, websites, etc.)

Yea, that Excel-table-like design probably breaks all design rules. It surprises me most when I occasionally see design professionals complementing it. I am rather a backend programmer and I have no illusions.

But even the Hacker News audience does not have enough geekiness to understand my previous attempt at a movie recommender system: http://5000best.com/movie-galaxy/

The website should withstand several times larger traffic than the HN frontpage effect. I am not sure about the reddit effect.

Score is different in each of the 55 rankings. I do not know if this is clear in the interface, but "Law" is one of the rankings, not a filter.

Thanks. We'll see. Each feature costs developer's time.

Edit: the stack is G-WAN and everything is written in plain ANSI C. I wrote my own HTTP servers in C/C++ for my previous websites, but this time I tried G-WAN. I think it saved me one week of work or two.

The website is running on the cheapest virtual dedicated server from 1&1 with 25% of one processor time. The total cost is less than $10 monthly.

The Netflix Prize winners had a few RBM models that used the dates.

Regarding the DBM - I also tried to use more than one layer, and without success. I tried out 3-layer and 4-layer autoencoders (can be called 1.5-layer and 2-layer DBM), with initialization by stacked RBMs or without it. It did not work well probably because: a) the model was inaccurate, and b) the learning method proposed for DBM was not completely correct. Intuitively, the right DBM-like model with the right learning method should have a chance to improve something on the Netflix task.

I found some improvement though (rather learning time than accuracy) in the standard RBMs. Instead of using CD, I split the weights into two sets, creating a directed RBM version. The "up" weights from the visible nodes to hidden are learned with CD with T=1. The "down" weights are learned to best fit the visible nodes, using the hidden nodes as predictors. The hidden nodes generated by CD T=1 are good enough, and we do not need additional iterations with increased T.

I had to choose one name per movie. If a movie is based on a novel, I believe the author of the novel should be credited in the first place. Usually the script degrades the quality of the novel.

It is doable, but because these companies compete with each other, would they all be happy seeing their streaming links next to each other? They can cut off access to their APIs at any time.

So which taste the best? I started in the Netflix Prize, and for me a movie taste is a point in a 32-dimensional space or 64-dimensional space. Which point is better than the others?

The Avengers has the highest average rating on Rotten Tomatoes, and I can understand it. This movie has a very good script in my opinion, but de gustibus...

Yes, mainly on IMDb. The Shawshank Redemption tops the IMDb, and The Avengers have a very high score 4.6/5 on Rotten Tomatoes.

Thanks.

The ranking criteria - basically, I combined ratings from IMDb and Rotten Tomatoes, with additional heuristic tweaks. The ranking method I use for is different than the popular IMDb method aka "True Bayesian estimate", which is not really a Bayesian estimate. I wrote more about how I approach ranking in my e-book http://arek-paterek.com/book/ , for people who are really interested in such technical details.