igormq / ctc_tensorflow_example

CTC + Tensorflow Example for ASR
MIT License
312 stars 183 forks source link

I want to handle more file,how to prepare the inputs and targets? #1

Closed guduxingzou closed 8 years ago

guduxingzou commented 8 years ago

I want to handle more file,how to prepare the inputs and targets?

thanks!

igormq commented 8 years ago

Hi @guduxingzou, thank you for your question. If the files aren't bigger than the CPU/GPU memory you can put all them in a memory and separate them in batches. Otherwise, you will need to load them from the disk dynamically, like the tutorial in tensorflow's website.

Best regards.