forked from MobileTeleSystems/RecTools
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
2,294 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,3 +13,4 @@ API | |
rectools.model_selection | ||
rectools.models | ||
rectools.tools | ||
rectools.visuals |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -74,3 +74,6 @@ Oops, yeah, can't forget about them. | |
|
||
|
||
.. include:: tools.rst | ||
|
||
|
||
.. include:: visuals.rst |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
Visuals | ||
=============== | ||
|
||
.. _visuals: | ||
|
||
.. currentmodule:: rectools | ||
|
||
Details of RecTools Visuals | ||
----------------------------------- | ||
|
||
See the API documentation for further details on Visuals: | ||
|
||
.. currentmodule:: rectools | ||
|
||
.. moduleautosummary:: | ||
:toctree: api/ | ||
:template: custom-module-template.rst | ||
:recursive: | ||
|
||
rectools.visuals |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Copyright 2024 MTS (Mobile Telesystems) | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
""" | ||
Visualization tools (:mod:`rectools.visuals`) | ||
======================================================= | ||
Instruments to visualize recommender models performance | ||
Recommendations visualization | ||
--------- | ||
`visuals.VisualApp` - Jupyter app for visual comparison of recommendations | ||
`visuals.ItemToItemVisualApp` - Jupyter app for visual comparison of item-to-item recommendations | ||
""" | ||
|
||
try: | ||
from .visual_app import ItemToItemVisualApp, VisualApp | ||
except ImportError: # pragma: no cover | ||
from ..compat import ItemToItemVisualApp, VisualApp # type: ignore | ||
|
||
__all__ = ("VisualApp", "ItemToItemVisualApp") |
Oops, something went wrong.