Chandrachud Basavaraj

Results 13 comments of Chandrachud Basavaraj

@slavaGanzin Thanks, useful for me just the day after you posted! Small typo though I think: g++-6 instead of c++-6. So: `cmake -D CMAKE_C_COMPILER:string=gcc-6 -D CMAKE_CXX_COMPILER=g++-6 ../`

Addendum: I was getting errors during the make step `CMake Error at test_gpu_generated_test_gpu.cu.o.cmake:279` Tried with gcc-5, luckily this worked! Whew, the amount of work to get this working!

Hi, I have the same problem now. Were you able to solve this? Thanks p.s.: for gcc, I did: `cmake -D CMAKE_C_COMPILER:string=gcc-6 -D CMAKE_CXX_COMPILER=g++-6 ../`

Hi, solved this, please see my comments on [Issue #58 ](https://github.com/SeanNaren/warp-ctc/issues/58#issuecomment-414966132)

Hi, I have the same error as @UpcominTerminator. I am on macOS High Sierra: ``` clang -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -I/usr/local/lib/python3.7/site-packages/torch/utils/ffi/../../lib/include -I/usr/local/lib/python3.7/site-packages/torch/utils/ffi/../../lib/include/TH -I/Users/Chandrachud/StillMind/warp-ctc/include -I/usr/local/include...

I do have gcc on my system, but how do I change the default C compiler to gcc? Thanks!

Ok, got it! I set the environment variables CC, in addition to CXX before. So, in sum: First, find out your brew installed gcc version and path by doing: `brew...

I am trying to do this myself, but I get a tf error: self.aster_input_images = tf.placeholder( dtype='uint8', shape=[None, None, None, 3]) resized_image_tensors = tf.image.resize_images( tf.to_float(self.aster_input_images), [64, 256]) aster_model_config, _, _...

Hi, sorry for the late response, was traveling. I haven't looked at this code in over eight months, but looks like I finally ran it one image at a time....

For anyone else interested in this, it helps to have a bigger projection layer. I changed the default of 10x20 to 10x50, immediately got a jump. Plus using ResNet50 instead...