You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Windows 11
Python version: 3.10
NumPy version: 1.22
Describe the current behavior
AttributeError: module 'numpy_ml' has no attribute 'load_dataset' Describe the expected behavior
Code to reproduce the issue
import numpy_ml as npml
load dataset
data = npml.load_dataset("data.csv")
Other info / logs
AttributeError Traceback (most recent call last)
Cell In [8], line 4
1 import numpy_ml as npml
3 # load dataset
----> 4 data = npml.load_dataset("data.csv")
AttributeError: module 'numpy_ml' has no attribute 'load_dataset'
so, maybe from some verison of the Numpy-ML, the attibute 'load_dataset' discontinued? but how should I replace this fuction to load data, and what the requirement for the dataset?
many thanks.
The text was updated successfully, but these errors were encountered:
System information
Describe the current behavior
AttributeError: module 'numpy_ml' has no attribute 'load_dataset'
Describe the expected behavior
Code to reproduce the issue
import numpy_ml as npml
load dataset
data = npml.load_dataset("data.csv")
Other info / logs
AttributeError Traceback (most recent call last)
Cell In [8], line 4
1 import numpy_ml as npml
3 # load dataset
----> 4 data = npml.load_dataset("data.csv")
AttributeError: module 'numpy_ml' has no attribute 'load_dataset'
so, maybe from some verison of the Numpy-ML, the attibute 'load_dataset' discontinued? but how should I replace this fuction to load data, and what the requirement for the dataset?
many thanks.
The text was updated successfully, but these errors were encountered: