Michael J Tanana

Results 28 comments of Michael J Tanana

Just wrote a mod of this that works at the word level: https://github.com/mtanana/char-rnn/ Let me know if you have any trouble with it. I'll be improving this over the coming...

I think you have some great ideas there- but the mod I wrote was probably a bit simpler. It just builds a vocabulary and detects words as discrete features. It's...

Thanks for noticing that! I fixed it... Drop me a line if you notice any bugs. I've been committing in a haphazard fashion....

@jroakes I think I've had this error before. In the version I have up on github, I don't think I checked for out of vocabulary words....there are a couple of...

@jroakes Yes- it is coming back to me now. The primetext did not work in that implementation. I just did a commit (watch out- I moved a ton of things...

I had the same issue. Happened when I moved my code from a single 980ti to a pascal titan X (but also different machine, different OS)

From another issue with someone building on pascal, this solved it for me: Edit cmakelists.txt: ```set(CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS} -gencode arch=compute_53,code=sm_53") set(CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS} -gencode arch=compute_60,code=sm_60") set(CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS} -gencode arch=compute_61,code=sm_61") set(CUDA_NVCC_FLAGS "${CUDA_NVCC_FLAGS} -gencode...