ValueError: Feature not in features dictionary
问题 I am attempting to write a simple deep machine learning model using TensorFlow. I'm using a toy dataset I made up in Excel just to get the model working and accepting data. My code is as follows: import pandas as pd import numpy as np import tensorflow as tf raw_data = np.genfromtxt('ai/mock-data.csv', delimiter=',', dtype=str) my_data = np.delete(raw_data, (0), axis=0) #deletes the first row, axis=0 indicates row, axis=1 indicates column my_data = np.delete(my_data, (0), axis=1) #deletes the