We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
when i try fit on any model in colab gpu instance i get the following error. my dataset has 2 columns and 1 million rows:
AttributeError Traceback (most recent call last) in () 4 clf_name = 'KNN' 5 clf = LOF() ----> 6 clf.fit(X)
3 frames /usr/local/lib/python3.7/dist-packages/pandas/core/generic.py in getattr(self, name) 5485 ): 5486 return self[name] -> 5487 return object.getattribute(self, name) 5488 5489 def setattr(self, name: str, value) -> None:
AttributeError: 'DataFrame' object has no attribute 'to'
The text was updated successfully, but these errors were encountered:
Maybe you need to update the dependencies. The author said he will update it frequently.
Sorry, something went wrong.
No branches or pull requests
when i try fit on any model in colab gpu instance i get the following error.
my dataset has 2 columns and 1 million rows:
AttributeError Traceback (most recent call last)
in ()
4 clf_name = 'KNN'
5 clf = LOF()
----> 6 clf.fit(X)
3 frames
/usr/local/lib/python3.7/dist-packages/pandas/core/generic.py in getattr(self, name)
5485 ):
5486 return self[name]
-> 5487 return object.getattribute(self, name)
5488
5489 def setattr(self, name: str, value) -> None:
AttributeError: 'DataFrame' object has no attribute 'to'
The text was updated successfully, but these errors were encountered: