mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-06-02 14:45:15 +02:00
typo corrected
This commit is contained in:
parent
1ab26de56e
commit
d115e61b8d
1 changed files with 6 additions and 6 deletions
|
|
@ -481,17 +481,17 @@ class SVIGP(GP):
|
|||
|
||||
def plot(self, *args, **kwargs):
|
||||
"""
|
||||
See GPy.plotting.matplot_dep.svgi_plots.plot
|
||||
See GPy.plotting.matplot_dep.svig_plots.plot
|
||||
"""
|
||||
assert "matplotlib" in sys.modules, "matplotlib package has not been imported."
|
||||
from ..plotting.matplot_dep import svgi_plots
|
||||
svgi_plots.plot(self,*args,**kwargs)
|
||||
from ..plotting.matplot_dep import svig_plots
|
||||
svig_plots.plot(self,*args,**kwargs)
|
||||
|
||||
|
||||
def plot_traces(self):
|
||||
"""
|
||||
See GPy.plotting.matplot_dep.svgi_plots.plot_traces
|
||||
See GPy.plotting.matplot_dep.svig_plots.plot_traces
|
||||
"""
|
||||
assert "matplotlib" in sys.modules, "matplotlib package has not been imported."
|
||||
from ..plotting.matplot_dep import svgi_plots
|
||||
svgi_plots.plot_traces(self)
|
||||
from ..plotting.matplot_dep import svig_plots
|
||||
svig_plots.plot_traces(self)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue