jonrein

Results 10 comments of jonrein

I get a similar error (see below). I'm running CentOS 7, CUDA 7.5. Any solution that doesn't involve installing Torch? I'm attempting to use with TensorFlow, so I'd rather not...

nvcc command line is below. Note that it's a non-standard CUDA_BIN_PATH, if that's relevant. gcc version 6.1.0 glibc version 2.17 /cm/shared/apps/cuda75/toolkit/7.5.18/bin/nvcc /home/jrein/warp-ctc/src/ctc_entrypoint.cu -c -o /home/jrein/warp-ctc/build/CMakeFiles/warpctc.dir/src/./warpctc_generated_ctc_entrypoint.cu.o -ccbin /usr/bin/cc -m64 -Dwarpctc_EXPORTS -Xcompiler...

I get the same error building with gcc 4.8.5, which is what my HPC's cuda was built with. I suppose 4.8.5 > 4.8.2, but the cuda test scripts and TensorFlow...

Update: I ended up installing Torch in the hopes that the original poster's fix would work, but no luck; same error.

The inputs in the example code are processed features from speech waveforms, not images. If you're trying to use this type of model structure with image data, you'll likely need...

The main purpose of the code is to give an example implementation of LSTM and CTC in TensorFlow. I'd expect any individualized application to require some parameter tuning and almost...

Sorry, but I'm confused by this part: "I don't want to recognition my character one by one". Are you saying that you want some output format other than a sequence...

I'm still not following. What exactly are you trying to do that isn't working with the current code?

If you're just looking for the model's predictions for new inputs, you'd have a line like `pred = session.run([predictions], feed_dict={inputX: new_inputs)` If you're trying to evaluate the accuracy of the...

Regarding the line `nFeatures = 26 #12 MFCC coefficients + energy, and derivatives`, nFeatures is the number of features/dimensions of your input data. The example code uses 26 Mel-frequency cepstral...