Replies: 1 comment
-
I don't think it's related to our repository if you failed to import matplotlib. You may seek help from https://github.com/matplotlib/matplotlib. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I deep trained the example se_e2_a water data and tried to visualize the lcurve.out file. However, I received an error message about the matplotlib module:
/share/apps/python-3.7.7/lib/python3.7/site-packages/mpl_toolkits/mplot3d/art3d.py:20: MatplotlibDeprecationWarning:
The deprecated function was deprecated in Matplotlib 3.4 and will be removed two minor releases later.
from . import proj3d
/share/apps/python-3.7.7/lib/python3.7/site-packages/mpl_toolkits/mplot3d/axes3d.py:31: MatplotlibDeprecationWarning:
The deprecated function was deprecated in Matplotlib 3.4 and will be removed two minor releases later.
from . import art3d
/share/apps/python-3.7.7/lib/python3.7/site-packages/mpl_toolkits/mplot3d/axes3d.py:33: MatplotlibDeprecationWarning:
The deprecated function was deprecated in Matplotlib 3.4 and will be removed two minor releases later.
from . import axis3d
/share/apps/python-3.7.7/lib/python3.7/site-packages/mpl_toolkits/mplot3d/init.py:1: MatplotlibDeprecationWarning:
The deprecated function was deprecated in Matplotlib 3.4 and will be removed two minor releases later.
from .axes3d import Axes3D
Traceback (most recent call last):
File "plot.py", line 2, in
import matplotlib.pyplot as plt
File "/share/apps/deepmd-kit-2.0.2-python-3.7.7/lib/python3.7/site-packages/matplotlib/pyplot.py", line 44, in
from matplotlib.figure import Figure, figaspect
File "/share/apps/deepmd-kit-2.0.2-python-3.7.7/lib/python3.7/site-packages/matplotlib/figure.py", line 24, in
from matplotlib import docstring, projections
File "/share/apps/deepmd-kit-2.0.2-python-3.7.7/lib/python3.7/site-packages/matplotlib/projections/init.py", line 4, in
from mpl_toolkits.mplot3d import Axes3D
File "/share/apps/python-3.7.7/lib/python3.7/site-packages/mpl_toolkits/mplot3d/init.py", line 1, in
from .axes3d import Axes3D
File "/share/apps/python-3.7.7/lib/python3.7/site-packages/mpl_toolkits/mplot3d/axes3d.py", line 42, in
class Axes3D(Axes):
File "/share/apps/python-3.7.7/lib/python3.7/site-packages/mpl_toolkits/mplot3d/axes3d.py", line 842, in Axes3D
@cbook._make_keyword_only("3.2", "minor")
AttributeError: module 'matplotlib.cbook' has no attribute '_make_keyword_only'
How should I update the visualization python script so that I can view the lcurve.out file and proceed to the next step: data freeze and compression? Thank you.
Version:
deepmd-kit 2.0.2
matplotlib 3.4.3
Python 2.7.5
Beta Was this translation helpful? Give feedback.
All reactions