Spaces:
Sleeping
Sleeping
Commit ·
58eea56
1
Parent(s): 5670a7f
adding interaction matrix
Browse files- table_config.json +10 -0
table_config.json
CHANGED
|
@@ -19,5 +19,15 @@
|
|
| 19 |
"source": "Snowflake",
|
| 20 |
"cols": ["USER_ID", "BRAND", "DIFFICULTY", "SELF_REPORT_DIFFICULTY", "USER_PROFILE", "PERMISSION","EXPIRATION_DATE"],
|
| 21 |
"query": "select * from ONLINE_RECSYS.PREPROCESSED.USERS where brand = '{brand}'"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 22 |
}
|
| 23 |
}
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
"source": "Snowflake",
|
| 20 |
"cols": ["USER_ID", "BRAND", "DIFFICULTY", "SELF_REPORT_DIFFICULTY", "USER_PROFILE", "PERMISSION","EXPIRATION_DATE"],
|
| 21 |
"query": "select * from ONLINE_RECSYS.PREPROCESSED.USERS where brand = '{brand}'"
|
| 22 |
+
},
|
| 23 |
+
"interaction_matrix":
|
| 24 |
+
{
|
| 25 |
+
"description": "This table contains interaction metrics that shows every user-content pair with a relationship score from 0 to 1",
|
| 26 |
+
"source": "Snowflake",
|
| 27 |
+
"cols": ["USER_ID", "CONTENT_ID","BRAND", "CONTENT_TYPE","DIFFICULTY", "INTERACTION_COUNT", "LAST_INTERACTION"],
|
| 28 |
+
"query": "select * from ONLINE_RECSYS.PREPROCESSED.INTERACTION_MATRIX where brand = '{brand}'"
|
| 29 |
}
|
| 30 |
}
|
| 31 |
+
|
| 32 |
+
|
| 33 |
+
|