Leow Chee Siang
Leow Chee Siang
Hello, Thanks for this gstreamer plugins! I trying to use this gstreamer plugins in my gstreamer python apps with "appsrc" method. However i face the same problems for this. Does...
hello, do you figure out how to handle the decoder? I have a same problem that client already silent by the vad, the decoder still waiting for streaming from client,...
@lonelyspoon thank you for reply!!, I use the webrtc to detect speech, and for the decoder, if receive like 2secs of silent then send an to end the decoder to...
I'm trying to resize a very long sentence , i resized the image to fixed apsect ratio of height 32 and padded the image to 224,224 for example the image...
Thank you for reply! Cutting the image and arrange by rows seems like a very good way to do so, I would like to take a try. Hmm...however currently it...
@songmeixu Hi,I'm trying to build kaldi with my new M1 macbook. Just want to ask can you build kaldi successfully with M1 macbook ? What you used for the matrix...
Any progress on this issue?
having the same issue, does anyone know how to fix this?
I have try added the following settings. ``` celery.conf.task_queues=( Queue('task1_queue'), Queue('task2_queue') ) # with of without routing_key just the same celery.conf.task_routes={ 'task1': {'queue': 'task1_queue'},#,'routing_key':'task1'}, 'task2': {'queue': 'task2_queue'}#,'routing_key':'task2'} } ``` and...
I have same issues with this my placeholder define like this: ` global_step = tf.get_variable('global_step', [], initializer = tf.constant_initializer(0),dtype=tf.int32) # global_step = tf.Variable(0,name='global_step') #global_step=tf.get_variable('global_step', shape=[], initializer=tf.zeros_initializer(), dtype=tf.int32, trainable=False) x =...