cxhzy

 

 

 

 

 

 

 

 

 

 

 

import tensorflow as tf

boston_house = tf.keras.datasets.boston_housing
(train_x,train_y),(test_x,test_y) = boston_house.load_data(test_split  = 0)             #test_split = 0 表示测试数据为0,全是训练数据
#打印数据
print(\'train_x:\')
print(train_x,train_x.shape)
print()
print(\'train_y:\')
print(train_y,train_y.shape)

 

分类:

技术点:

相关文章:

  • 2020-12-17
  • 2021-10-15
  • 2021-10-15
  • 2021-10-15
  • 2021-07-30
  • 2021-12-20
猜你喜欢
  • 2021-10-15
  • 2021-05-30
  • 2021-10-30
  • 2021-10-15
  • 2021-10-15
相关资源
相似解决方案