Last active
December 16, 2020 17:18
-
-
Save thomasjpfan/da54f874f3d434eb4ae360b5e6fa4c12 to your computer and use it in GitHub Desktop.
scikit-learn PCA with cupy and nep 37
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Fristly, thank you for your solution. But I got errors below:
110 del self.args, self.kwds, self.func
111 try:
--> 112 return next(self.gen)
113 except StopIteration:
114 raise RuntimeError("generator didn't yield") from None
/opt/conda/lib/python3.7/site-packages/sklearn/_config.py in config_context(**new_config)
143 """
144 old_config = get_config().copy()
--> 145 set_config(**new_config)
146
147 try:
TypeError: set_config() got an unexpected keyword argument 'enable_duck_array'
]