ddbourgin / numpy-ml

Machine learning, in numpy
https://numpy-ml.readthedocs.io/
GNU General Public License v3.0
15.35k stars 3.72k forks source link

no 'load_dataset' in numpy_mL #92

Open clccer opened 11 months ago

clccer commented 11 months ago

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.