File tree Expand file tree Collapse file tree 2 files changed +11
-4
lines changed
Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 3636 # silently fail for now
3737 pass
3838
39+ is_plotly_available = False
40+ try :
41+ from cebra .integrations .plotly import *
42+
43+ is_plotly_available = True
44+ except ImportError as e :
45+ # silently fail for now
46+ pass
47+
3948from cebra .data .load import load as load_data
4049
4150is_load_deeplabcut_available = False
Original file line number Diff line number Diff line change 99# Please see LICENSE.md for the full license document:
1010# https://github.com/AdaptiveMotorControlLab/CEBRA/LICENSE.md
1111#
12- """Integration of CEBRA into common machine learning libraries.
12+ """Integration of CEBRA with common machine learning and visualization libraries.
1313
1414This package contains a growing collection of interfaces to other Python packages.
1515There is no clear limit (yet) of what can go into it. The current examples include
1616interfaces (implemented or planned) to `scikit-learn <https://scikit-learn.org/stable/>`_,
1717`streamlit <https://streamlit.io/>`_, `deeplabcut <http://www.mackenziemathislab.org/deeplabcut>`_,
18- `matplotlib <https://matplotlib.org/>`_ and `threejs <https://threejs.org/>`_.
18+ `matplotlib <https://matplotlib.org/>`_ and `threejs <https://threejs.org/>`_ and `plotly <https://plotly.com/>`_ .
1919
2020Integrations can be used for data visualization, for providing easier interfaces to using CEBRA
2121for a particular userbase, or any other helpful function that requires a dependency to a larger
2222third-party package.
23-
24- See our CEBRA `live demo <https://stes.io/c>`_.
2523"""
You can’t perform that action at this time.
0 commit comments