oywtece / dstn

Deep Spatio-Temporal Neural Network (DSTN)
MIT License
169 stars 55 forks source link

What is the meaning of search_loc_level and search_cate_level in one-hot fts? Which attribute is in the Avito data file? #5

Open edge0001 opened 3 years ago

edge0001 commented 3 years ago

Hi, Firstly,nice job of you!

What we want to know is what are the corresponding attributes of search_loc_level, search_cate_level, search_sub_cate_id and ad_sub_cate_id in the Avito data file?

oywtece commented 3 years ago

Please refer to https://www.kaggle.com/c/avito-context-ad-clicks/data for details.

These features are obtained by joining two tsv files.

search_loc_level is the "Level" feature in "Location.tsv" corresponding to a given "SearchLocationID" in "SearchInfo.tsv".

search_cate_level is the "Level" feature in "Category.tsv" corresponding to a given "SearchCategoryID" in "SearchInfo.tsv".

search_sub_cate_id is the "SubCategoryID" feature in "Category.tsv" corresponding to a given "SearchCategoryID" in "SearchInfo.tsv".

ad_sub_cate_id is the "SubCategoryID" feature in "Category.tsv" corresponding to a given "CategoryID" in "AdsInfo.tsv".

edge0001 commented 3 years ago

Please refer to https://www.kaggle.com/c/avito-context-ad-clicks/data for details.

These features are obtained by joining two tsv files.

search_loc_level is the "Level" feature in "Location.tsv" corresponding to a given "SearchLocationID" in "SearchInfo.tsv".

search_cate_level is the "Level" feature in "Category.tsv" corresponding to a given "SearchCategoryID" in "SearchInfo.tsv".

search_sub_cate_id is the "SubCategoryID" feature in "Category.tsv" corresponding to a given "SearchCategoryID" in "SearchInfo.tsv".

ad_sub_cate_id is the "SubCategoryID" feature in "Category.tsv" corresponding to a given "CategoryID" in "AdsInfo.tsv".

thank you