Hi,
Why all the compile examples (i.e. from_keras, from_pytroch) use image as input
for CNN models ?
Is there any example which uses normal data like (population, house price)
NN/LSTM?
Thanks in advance.
---
[Visit
Topic](https://discuss.tvm.apache.org/t/compile-examples-in-frontend/81
Hi,
I have written very simple Keras Neural Network
from numpy import loadtxt
from keras.models import Sequential
from keras.layers import Dense
# load the dataset
dataset = loadtxt('pima-indians-diabetes.csv', delimiter=',')
# split into input (X) and output (y) v