0
我曾嘗試使用下面的命令加載的數據集MNIST:負載MNIST數據集在Sklearn友好的格式
from dataget import data
dataset = data("mnist").get()
如何將其轉換爲Sklearn友好的格式,即features_train,labels_train,features_test,labels_test?
我已經試過 「np.loadtxt」,但得到這個錯誤:
ValueError: could not convert string to float: data
我也曾嘗試下面的代碼行:
df = next(dataset.training_set.random_batch_dataframe_generator(10))
df
,它已返回此錯誤:
AttributeError: training_set
請,有人可以幫助我,我一直在使用Google的替代方法,但我仍然收到錯誤。謝謝!
P.S.下面是我用來獲取MNIST數據集的另一種方式:
dataset = fetch_mldata('MNIST original')
你好。你從哪裏下載數據? –
我用這行代碼,得到它: 數據集=數據(「MNIST」)得到() 我已經從數據庫MNIST –
在表達式'數據(「MNIST」)中獲得它。 get()',你沒有顯示如何定義或導入名稱'data'。 –