How to use CNN for making predictions on
какие бывают фетишиnon-image data?You can use CNN on any data, but it's recommended to use CNN only on data that have баба яга мультфильм spatial features (It might still work on data that doesn't have spatial features, фильм кунг фу панда see DuttaA's comment below).For example, in the image, the connection between pixels in some area gives you another feature (e.g. edge) instead of a feature from one pixel (e.g. color). So, as long as you can shaping your data, and your data have spatial features, you can use CNN.For Text classification, there are connections between characters апокалипсис z начало конца смотретьапокалипсис з смотреть онлайн бесплатноapocalypse z начало концаапокалипсис z смотреть онлайнапокалипсис з смотреть онлайнis apocalypse z in englishapocalypse beginning of the endapocalypse z sequel (that form words) so you can use CNN for text classification in character level.

For Speech recognition, there is also a connection between frequencies from one frame with some previous and next frames, so you can also use CNN for speech recognition.If your data have spatial features, just reshape it to a 1D array (for example in text) or 2D array (for example in Audio). Tensorflow's function conv1d and conv2d are general function that can be used on any data. It look the data as an array of floating-point, not as image/audio/text.

But if your data doesn't have spatial features, for example, your features are , , , etc. I think you don't need CNN, and using CNN won't help.