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
Hi! Thank you for your code. I run this.
python utils/ucf101_json.py annotation_dir_path
then caught this error.
'DataFrame' object has no attribute 'ix'
At pandas >= 0.2.0, DataFrame.ix() function have already got deprecated. https://pandas.pydata.org/pandas-docs/version/0.20/whatsnew.html#deprecate-ix
So I suggest DataFrame.ix() -> DataFrame.loc()
Efficient-3DCNNs/utils/ucf101_json.py
Line 12 in f8debe0
Line 13 in f8debe0
Line 34 in f8debe0
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi! Thank you for your code.
I run this.
then caught this error.
At pandas >= 0.2.0, DataFrame.ix() function have already got deprecated.
https://pandas.pydata.org/pandas-docs/version/0.20/whatsnew.html#deprecate-ix
So I suggest DataFrame.ix() -> DataFrame.loc()
Corresponding Parts
Efficient-3DCNNs/utils/ucf101_json.py
Line 12 in f8debe0
Efficient-3DCNNs/utils/ucf101_json.py
Line 13 in f8debe0
Efficient-3DCNNs/utils/ucf101_json.py
Line 34 in f8debe0
The text was updated successfully, but these errors were encountered: