RecBole v0.2.1
RecBole v0.2.1 Release Notes
- Highlights
- New Features
- Bug Fixes
- Code Refactor
Highlights
The RecBole v0.2.1 release includes a number of wonderful new features, some bug fixes and code refactor. In this version, we pay more attention to improving user experience. A few of the highlights include:
- We add 7 new models into RecBole.
- We add colors to logger and now RecBole is "colorful".
Dataset
andDataloader
can be saved now, which makes RecBole much more flexible.- Now you can get training loss line graph of models by set
draw_loss_pic
.
New Features
- Add 7 new models:
- We add color to logger info, which makes logger much more clear (#761)
- We add
plot_train_loss()
in trainer, and now user can get training loss line graph of model(#724) - We add
dataset.save()
andsave_split_dataloader()
, and now users can save pre_processed dataset or pre_processed dataloaders and reload them for other models training. (#760) - We add other parameters (including model parameters) output in logger (#725)
- We add example code of case study and save/load in
run_example/
(#774) - We add
docs/
into RecBole (#735)
Bug Fixes
-
Fix a datatype bug in Windows, which may cause runtime error when run sequential models in Windows platform(#710)
-
Fix a bug in
general_dataloader
, which may cause runtime error whenContextFullDataLoader
is empty (#723)