Nicholas

Results 5 comments of Nicholas

I've made a fork of Graydyn's rnn (https://github.com/Graydyn/char-rnn) which parses the input at word-level and I made modifications so as to handle UTF8 encoded input. You can find it here:...

The patch above indeed fixes an error on "el4r-sub.rb" line 537, but NOT the error on "el4r-instance" line 579 which is the issue here

I found a solution: Change line 579 else; File.open(log || "/tmp/el4r-#{`whoami`.chomp}.#{Process.pid}.log", "w") to: else; File.open(log || ENV["HOME"] + "/tmp/el4r-#{`whoami`.chomp}.#{Process.pid}.log", "w") This resolved the error at line 579 but now yields...

So if say, for example, you want to parse a directory of documents and define multiple collections because you want different embeddings, do you need to separately add the documents...

Thank you for your reply. Yes, obviously I inspected the two files and noticed that the embeddings are present only in the entities file. My question is if there's any...