Hi.
I've set up an ANN with back-propagation as a book recommendation system.
I only have one hidden layer in the network, and both the input and the output layers are books, since you should be able to enter a book and receive more book recommendations.
I already have a lot of data about users and their ratings (1 to 5) for books. I'd like to get it into the neural network (set up all the weights) for this data without having to go through the back-propagation process. Do it somehow more mechanically.
Say each user has about 100 rated books in their library, how do I set the weights for them? How do the books in the user's library relate to the other books in the user's library?
Thanks.