python - How can I specify target_column for more than one column while reading csv file in tensorflow -


i have csv file following line format without header

10,10,10,225,123, ..., 0,0,1,0,0,0 

number of features = 768 , size of label 6x1

i know possible read csv file single target column using following code

datasets=tf.contrib.learn.datasets.base.load_csv_without_header(      filename="datafile.csv",       target_dtype=np.int,       features_dtype=np.float32) 

my question how can specify number of target columns when calling method?


Comments

Popular posts from this blog

networking - Vagrant-provisioned VirtualBox VM is not reachable from Ubuntu host -

c# - ASP.NET Core - There is already an object named 'AspNetRoles' in the database -

ruby on rails - ArgumentError: Missing host to link to! Please provide the :host parameter, set default_url_options[:host], or set :only_path to true -