Skip to content

Commit 321aa05

Browse files
Merge pull request #1294 from microsoft/staging
Prepare for release 2020.2
2 parents cbc863f + eafd3b1 commit 321aa05

File tree

4 files changed

+19
-11
lines changed

4 files changed

+19
-11
lines changed

NEWS.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# What's New
22

3+
## Update February 4, 2021
4+
5+
We have a new relase [Recommenders 2021.2](https://github.com/microsoft/recommenders/releases/tag/2021.2)!
6+
7+
It comes with lots of bug fixes, optimizations and 3 new algorithms, GeoIMC, Standard VAE and Multinomial VAE. We also added tools to facilitate the use of Microsoft News dataset (MIND). In addition, we publised our KDD2020 tutorial where we built a recommender of COVID papers using Microsoft Academic Graph.
8+
9+
We also changed the default branch from master to main. Now when you download the repo, you will get main branch.
10+
311
## Update October 19, 2020
412

513
Leaderboard Reopen!

README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,13 @@
22

33
[![Documentation Status](https://readthedocs.org/projects/microsoft-recommenders/badge/?version=latest)](https://microsoft-recommenders.readthedocs.io/en/latest/?badge=latest)
44

5-
## What's New (October 19, 2020)
5+
## What's New (February 4, 2021)
66

7-
[Microsoft News Recommendation Competition Winners Announced, Leaderboard Reopen!](https://msnews.github.io/competition.html)
7+
We have a new relase [Recommenders 2021.2](https://github.com/microsoft/recommenders/releases/tag/2021.2)!
88

9-
Congratulations to all participants and [winners](https://msnews.github.io/competition.html#winner) of the Microsoft News Recommendation Competition! In the last two months, over 200 participants from more than 90 institutions in 19 countries and regions joined the competition and collectively advanced the state of the art of news recommendation.
9+
It comes with lots of bug fixes, optimizations and 3 new algorithms, GeoIMC, Standard VAE and Multinomial VAE. We also added tools to facilitate the use of Microsoft News dataset (MIND). In addition, we publised our KDD2020 tutorial where we built a recommender of COVID papers using Microsoft Academic Graph.
1010

11-
The competition is based on the recently released [MIND dataset](https://msnews.github.io/), an open, large-scale English news dataset with impression logs. Details of the dataset are available in this [ACL paper](https://msnews.github.io/assets/doc/ACL2020_MIND.pdf).
12-
13-
With the competition successfully closed, the [leaderboard](https://msnews.github.io/competition.html#leaderboard) is now reopen. Want to see if you can grab the top spot? Get familiar with the [news recommendation scenario](https://github.com/microsoft/recommenders/tree/main/scenarios/news). Then dive into some baselines such as [DKN](examples/00_quick_start/dkn_MIND.ipynb), [LSTUR](examples/00_quick_start/lstur_MIND.ipynb), [NAML](examples/00_quick_start/naml_MIND.ipynb), [NPA](examples/00_quick_start/npa_MIND.ipynb) and [NRMS](examples/00_quick_start/nrms_MIND.ipynb) and start hacking!
11+
We also changed the default branch from master to main. Now when you download the repo, you will get main branch.
1412

1513
See past announcements in [NEWS.md](NEWS.md).
1614

@@ -118,11 +116,13 @@ We provide a [benchmark notebook](examples/06_benchmarks/movielens.ipynb) to ill
118116
| Algo | MAP | nDCG@k | Precision@k | Recall@k | RMSE | MAE | R<sup>2</sup> | Explained Variance |
119117
| --- | --- | --- | --- | --- | --- | --- | --- | --- |
120118
| [ALS](examples/00_quick_start/als_movielens.ipynb) | 0.004732 | 0.044239 | 0.048462 | 0.017796 | 0.965038 | 0.753001 | 0.255647 | 0.251648 |
121-
| [SVD](examples/02_model_collaborative_filtering/surprise_svd_deep_dive.ipynb) | 0.012873 | 0.095930 | 0.091198 | 0.032783 | 0.938681 | 0.742690 | 0.291967 | 0.291971 |
122-
| [SAR](examples/00_quick_start/sar_movielens.ipynb) | 0.110591 | 0.382461 | 0.330753 | 0.176385 | 1.253805 | 1.048484 | -0.569363 | 0.030474 |
123-
| [NCF](examples/02_model_hybrid/ncf_deep_dive.ipynb) | 0.107720 | 0.396118 | 0.347296 | 0.180775 | N/A | N/A | N/A | N/A |
124119
| [BPR](examples/02_model_collaborative_filtering/cornac_bpr_deep_dive.ipynb) | 0.105365 | 0.389948 | 0.349841 | 0.181807 | N/A | N/A | N/A | N/A |
125120
| [FastAI](examples/00_quick_start/fastai_movielens.ipynb) | 0.025503 | 0.147866 | 0.130329 | 0.053824 | 0.943084 | 0.744337 | 0.285308 | 0.287671 |
121+
| [LightGCN](examples/02_model_collaborative_filtering/lightgcn_deep_dive.ipynb) | 0.088526 | 0.419846 | 0.379626 | 0.144336 | N/A | N/A | N/A | N/A |
122+
| [NCF](examples/02_model_hybrid/ncf_deep_dive.ipynb) | 0.107720 | 0.396118 | 0.347296 | 0.180775 | N/A | N/A | N/A | N/A |
123+
| [SAR](examples/00_quick_start/sar_movielens.ipynb) | 0.110591 | 0.382461 | 0.330753 | 0.176385 | 1.253805 | 1.048484 | -0.569363 | 0.030474 |
124+
| [SVD](examples/02_model_collaborative_filtering/surprise_svd_deep_dive.ipynb) | 0.012873 | 0.095930 | 0.091198 | 0.032783 | 0.938681 | 0.742690 | 0.291967 | 0.291971 |
125+
126126

127127
## Contributing
128128

reco_utils/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Licensed under the MIT License.
33

44
__title__ = "Microsoft Recommenders"
5-
__version__ = "2020.8"
5+
__version__ = "2021.2"
66
__author__ = "RecoDev Team at Microsoft"
77
__license__ = "MIT"
88
__copyright__ = "Copyright 2018-present Microsoft Corporation"

tests/integration/test_notebooks_gpu.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ def test_wide_deep_integration(notebooks, size, steps, expected_values, seed, tm
242242
10,
243243
400,
244244
{"res_syn": {"auc": 0.7183, "logloss": 0.6045}},
245-
2019,
245+
42,
246246
)
247247
],
248248
)

0 commit comments

Comments
 (0)