Compare commits

...

2 Commits

Author SHA1 Message Date
Ali Al-Dhamen
4b86bd2a12
Merge cf411d6025 into fb54d8b549 2023-05-22 17:39:30 -05:00
Ali Al-Dhamen
cf411d6025
Update example_weights.py
better
2023-04-01 13:25:13 +03:00

View File

@ -5,13 +5,14 @@ from .constants import INDEX_BY_LABEL, LABEL_NAMES
# TODO: Read these from command line arguments, since they specify the existing example weights in the input data.
DEFAULT_WEIGHT_BY_LABEL = {
"is_clicked": 0.3,
"is_favorited": 1.0,
"is_open_linked": 0.1,
"is_photo_expanded": 0.03,
"is_favorited": 1.1,
"is_open_linked": 0.2,
"is_photo_expanded": 0.1,
"is_profile_clicked": 1.0,
"is_replied": 9.0,
"is_retweeted": 1.0,
"is_video_playback_50": 0.01
"is_replied": 10.0,
"is_retweeted": 1.5,
"is_video_playback_50": 0.05,
"is_tweet_bookmarked": 1
}
def add_weight_arguments(parser):