You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello! Nice work there. I am beginner, and I would like to learn machine learning, and probably use your library for this purpose as well. However, right now it's kind of hard to see how things work; from my understanding, examples only show how to train neural networks, not how to use them.
The documentation(or "README", if you will) shows how to install dependencies(this is also kind of lacking, but that's for different conversation), and following the instructions you train and use your nn to generate text. Not so easy with examples in here - I only see how to train the network, but not how to actually use it. I would be very glad if you made some additional documentation.
Also, congratulations on amazing work.
The text was updated successfully, but these errors were encountered:
MatthewRock
changed the title
Add more examples
Add more examples/documentation
Jan 19, 2016
Hello,
I agree this is an amazing project and also think it would be very helpful to have a simple example of using a model once it has been trained.
Congratulations,
As an example of creating a predict function in digit-fnn.lisp I did the following:
Stored the trained fnn model in net global variable.
Then redifined set-input thus:
(defmethod set-input (digits (fnn digit-fnn))
(let ((input (nodes (find-clump 'input fnn))))
(fill! 0 input)
(loop for i upfrom 0
for digit in digits
do (setf (mref input i digit) 1))))
Hello! Nice work there. I am beginner, and I would like to learn machine learning, and probably use your library for this purpose as well. However, right now it's kind of hard to see how things work; from my understanding, examples only show how to train neural networks, not how to use them.
For example, I would like to present other implementation of Recurrent Neural Network:
https://github.com/karpathy/char-rnn
The documentation(or "README", if you will) shows how to install dependencies(this is also kind of lacking, but that's for different conversation), and following the instructions you train and use your nn to generate text. Not so easy with examples in here - I only see how to train the network, but not how to actually use it. I would be very glad if you made some additional documentation.
Also, congratulations on amazing work.
The text was updated successfully, but these errors were encountered: