skadio commited on
Commit
f0086f6
·
verified ·
1 Parent(s): ddbd344

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +21 -8
README.md CHANGED
@@ -1,10 +1,10 @@
1
  # Optimized Item Selection Datasets
2
 
3
- We provide the datasets that are used to test the multi-level optimization framework ([CPAIOR'21](https://link.springer.com/chapter/10.1007/978-3-030-78230-6_27), [DSO@IJCAI'22](https://arxiv.org/abs/2112.03105)), for solving Item Selection Problem (ISP) to boost exploration in Recommender Systems.
4
 
5
- The the multi-objective optimization framework is implemented in [Selective](https://github.com/fidelity/selective) as part of `TextBased Selection`. By solving the ISP with Text-based Selection in Selective, we select a smaller subset of items with maximum diversity in the latent embedding space of items and maximum coverage of labels.
6
 
7
- The datasets are extracted and processed from their original public sources for research purposes as detailed below.
8
 
9
  ## Overview of Datasets
10
  The datasets include:
@@ -15,13 +15,13 @@ The datasets include:
15
 
16
  Each dataset in GoodReads and MovieLens contains:
17
  * `*_data.csv` that contains the text content (i.e., title + description) of the items, and
18
- * `*_label.csv` that contains the labels (e.g., genre or language) and a binary 0/1 value denoting whether an item exbihits a label.
19
 
20
- Each column in the csv file is for an item, indexed by book/movie ID. The order of columns in data and label files are the same.
21
 
22
 
23
  ## Quick Start
24
- To run the example, install required packages by `pip install selective datasets`
25
  ```python
26
  # Import Selective (for text-based selection) and TextWiser (for embedding space)
27
  import pandas as pd
@@ -54,7 +54,7 @@ print("Reduction:", list(subset.columns))
54
  ## Advanced Usages
55
  Text-based Selection provides access to multiple selection methods.
56
 
57
- At a high-level, the configurations can be divided into exact, randomized, greedy or cluster-based optimization.
58
 
59
  ### Exact
60
 
@@ -81,7 +81,7 @@ selector = Selective(SelectionMethod.TextBased(num_features=None,
81
  optimization_method='exact',
82
  cost_metric='diverse'))
83
  ```
84
- - Selecting a subset of items that only maximizes coverage within an upper bound on subset size.
85
  ```python
86
  selector = Selective(SelectionMethod.TextBased(num_features=30,
87
  optimization_method='exact',
@@ -136,6 +136,19 @@ selector = Selective(SelectionMethod.TextBased(num_features=30,
136
 
137
  ## Citation
138
  If you use ISP in our research/applications, please cite as follows:
 
 
 
 
 
 
 
 
 
 
 
 
 
139
  ```bibtex
140
  @inproceedings{cpaior2021,
141
  title={Optimized Item Selection to Boost Exploration for Recommender Systems},
 
1
  # Optimized Item Selection Datasets
2
 
3
+ We provide the datasets that are used to test the multi-level optimization framework ([AMAI'24](https://link.springer.com/epdf/10.1007/s10472-024-09941-x?sharing_token=9XBJ6cdglsdji19gFwuqQve4RwlQNchNByi7wbcMAY4VwIBKydj3Ja9OBjALNpg8nuO300abjlrHmZQFBVUqar-uYhBML28cmbovFgiHRRvd7TM2QAA_Hwd5J3U2MmKx0ugXwF6yz2hW75_88JpLmXSDJSuyCEwqZqtOcB7BhJU=),[CPAIOR'21](https://link.springer.com/chapter/10.1007/978-3-030-78230-6_27), [DSO@IJCAI'22](https://arxiv.org/abs/2112.03105)), for solving Item Selection Problem (ISP) to boost exploration in Recommender Systems.
4
 
5
+ The multi-objective optimization framework is implemented in [Selective](https://github.com/fidelity/selective) as part of `TextBased Selection`. By solving the ISP with Text-based Selection in Selective, we select a smaller subset of items with maximum diversity in the latent embedding space of items and maximum coverage of labels.
6
 
7
+ The datasets are extracted and processed from their original public sources for research purposes, as detailed below.
8
 
9
  ## Overview of Datasets
10
  The datasets include:
 
15
 
16
  Each dataset in GoodReads and MovieLens contains:
17
  * `*_data.csv` that contains the text content (i.e., title + description) of the items, and
18
+ * `*_label.csv` that contains the labels (e.g., genre or language) and a binary 0/1 value denoting whether an item exhibits a label.
19
 
20
+ Each column in the csv file is for an item indexed by book/movie ID. The order of columns in data and label files are the same.
21
 
22
 
23
  ## Quick Start
24
+ To run the example, install the required packages by `pip install selective datasets`.
25
  ```python
26
  # Import Selective (for text-based selection) and TextWiser (for embedding space)
27
  import pandas as pd
 
54
  ## Advanced Usages
55
  Text-based Selection provides access to multiple selection methods.
56
 
57
+ At a high level, the configurations can be divided into exact, randomized, greedy, or cluster-based optimization.
58
 
59
  ### Exact
60
 
 
81
  optimization_method='exact',
82
  cost_metric='diverse'))
83
  ```
84
+ - Selecting a subset of items that only maximize coverage within an upper bound on subset size.
85
  ```python
86
  selector = Selective(SelectionMethod.TextBased(num_features=30,
87
  optimization_method='exact',
 
136
 
137
  ## Citation
138
  If you use ISP in our research/applications, please cite as follows:
139
+
140
+ @article{amai2024,
141
+ title = {Integrating optimized item selection with active learning for continuous exploration in recommender systems},
142
+ author = {Serdar Kadioglu and Bernard Kleynhans and Xin Wang},
143
+ journal = {Ann. Math. Artif. Intell.},
144
+ volume = {92},
145
+ number = {6},
146
+ pages = {1585--1607},
147
+ year = {2024},
148
+ url = {https://doi.org/10.1007/s10472-024-09941-x},
149
+ doi = {10.1007/S10472-024-09941-X}
150
+ }
151
+
152
  ```bibtex
153
  @inproceedings{cpaior2021,
154
  title={Optimized Item Selection to Boost Exploration for Recommender Systems},