-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is have example on a real corpus? #3
Comments
Hi, I would not waste to much time with the C++ dataset loader and would instead write my own C++ tensor loading routine. |
OK, |
I use it with spectrograms data but yes that's the same principle. If you want to use it with pictures, you would have to load your png/jpeg images into c++ memory arrays (using functions not provided with libtorch) and then upload those arrays to pytorch tensors using torch::from_blob. Pseudo-code for one image would be something like that: |
Thanks! |
I generate spectrograms in real time directly in C++. I've created this library for my software SpectraLayers. |
Library looks amazing. Does it only work as a plug-in? |
And you use U-net for process spectograms? |
If you're referring to SpectraLayers, it's both a plugin and a stand-alone application. |
Yes, |
You can download SpectraLayers directly from here: |
Thanks! |
Dear team,
thanks you for great project!
I try write data loader in C++ for training, but not much success. Did you try this code on an open source DB?
The text was updated successfully, but these errors were encountered: