Answered step by step
Verified Expert Solution
Question
1 Approved Answer
This is my Jupyter File : https://drive.google.com/file/d/1F8U6ztCt_JZTIbF5-i0YuVlIpNCpdqI2/view?usp=sharing Sharing my CSV File : https://docs.google.com/spreadsheets/d/1XkAKEpc8pQPwWZpuC7v9E89IjMCmY3dx/edit?usp=sharing&ouid=105105277907854048930&rtpof=true&sd=true In this file i got attributre error, so can please file to
This is my Jupyter File : https://drive.google.com/file/d/1F8U6ztCt_JZTIbF5-i0YuVlIpNCpdqI2/view?usp=sharing
Sharing my CSV File : https://docs.google.com/spreadsheets/d/1XkAKEpc8pQPwWZpuC7v9E89IjMCmY3dx/edit?usp=sharing&ouid=105105277907854048930&rtpof=true&sd=true
In [187]: # Imblearn over_sampling from imblearn.over_sampling import SMOTE sm = SMOTE (random_state=33) x_res, y res = sm.fit_resample (X_train, y_train) 517 ~\anaconda3\lib\site-packages\threadpoolctl.py in prefix, user_api, internal_api) self.internal_api = internal_api 604 605 -> 606 607 608 644 645 --> 646 init__(self, filepath, ~\anaconda3\lib\site-packages\threadpoolctl.py in get_version (self) lambda: None) get_config.restype = ctypes.c_char_p config = get_config().split() if config[0] == b"OpenBLAS": return config[1].decode("utf-8") AttributeError: 'NoneType' object has no attribute 'split' 647 648 self._dynlib = ctypes.CDLL (filepath, mode=_RTLD_NOLOAD) self.version = self.get_version () self.num_threads = self.get_num_threads () self._get_extra_info()
Step by Step Solution
★★★★★
3.47 Rating (163 Votes )
There are 3 Steps involved in it
Step: 1
It seems like you are encountering an attribute error related to the split method in your Jupyter no...Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started