Reputation: 109
Not able to set DataSet Type in Data Labeling project MLStudio.
Default dataset file type is displaying always. I want to work with panda_dataframe. How can I set dataset to tabuler dataset while creating the dataset.
Also how can I change the Filedataset to Tabular datasetI want to apply pandas_dataframe. but it is not available with file dataset.
AttributeError Traceback (most recent call last)
<ipython-input-10-2d5c0c116404> in <module>
10
11
---> 12 pd_fill = dsfill.to_pandas_dataframe(file_handling_option=FileHandlingOption.DOWNLOAD, target_path='./download/', overwrite_download=True)
13 pd_fill
AttributeError: 'FileDataset' object has no attribute 'to_pandas_dataframe'
Upvotes: 1
Views: 1110
Reputation: 501
You can create dataset from dataset UI instead of labeling UI. There you can choose dataset type to be tabular.
Upvotes: 1