numpy-ml icon indicating copy to clipboard operation
numpy-ml copied to clipboard

no 'load_dataset' in numpy_mL

Open clccer opened this issue 2 years ago • 0 comments

System information

  • 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.

clccer avatar Nov 11 '23 01:11 clccer