Skip to content

Commit 3a2f0fb

Browse files
authored
Feature/save visual (#85)
- Added saving and loading to `VisualApp` - Added pd.DataFrame support for `reco` parameter in `VisualApp` - Corrected app classes inheritance and construction Closes #65
1 parent f7aee48 commit 3a2f0fb

File tree

4 files changed

+804
-352
lines changed

4 files changed

+804
-352
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99
## Unreleased
1010

1111
### Added
12-
- VisualApp and ItemToItemVisualApp widgets for visual comparison of recommendations ([#80](https://github.com/MobileTeleSystems/RecTools/pull/80), [#82](https://github.com/MobileTeleSystems/RecTools/pull/82)) (Need examples and readme update)
12+
- `VisualApp` and `ItemToItemVisualApp` widgets for visual comparison of recommendations ([#80](https://github.com/MobileTeleSystems/RecTools/pull/80), [#82](https://github.com/MobileTeleSystems/RecTools/pull/82), [#85](https://github.com/MobileTeleSystems/RecTools/pull/85)) (Need examples and readme update)
1313
- Methods for conversion `Interactions` to raw form and for getting raw interactions from `Dataset` ([#69](https://github.com/MobileTeleSystems/RecTools/pull/69))
1414
- `AvgRecPopularity (Average Recommendation Popularity)` to `metrics` ([#81](https://github.com/MobileTeleSystems/RecTools/pull/81))
1515
- Added `normalized` parameter to `AvgRecPopularity` metric ([#89](https://github.com/MobileTeleSystems/RecTools/pull/89))

rectools/columns.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ class Columns:
2525
Datetime = "datetime"
2626
Rank = "rank"
2727
Score = "score"
28+
Model = "model"
2829
UserItem = [User, Item]
2930
Interactions = [User, Item, Weight, Datetime]
3031
Recommendations = [User, Item, Score, Rank]

0 commit comments

Comments
 (0)