bquast / rnn

Recurrent Neural Networks in R
https://qua.st/rnn
73 stars 28 forks source link

is there a retrain function in this package? #13

Closed ghost closed 8 years ago

ghost commented 8 years ago

Can we retrain the trained model using this package

library(rnn)
> x1=c(1:10)
> x2=c(11:20)
> y=x1+x2
> model=trainr(y~x1+x2)

#something similar to this
> newx1=c(111:110)
> newx2=c(31:30)
> newy=newx1+newx2
>newmodel=retrain(newy~newx1+newx2,model)

Thank you

bquast commented 8 years ago

hey, this is on the todo list. I am working on releasing to CRAN as it is right now. After that we will turn to retraining.

bquast commented 8 years ago

per #14