forked from talicopanda/social-media-influence-analysis
-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.json
44 lines (40 loc) · 2.13 KB
/
config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"database": {
"db_type": "Mongo",
"connection_url": "mongodb://localhost:27017/",
"community_db_name": "070823_ml_community_4",
"community_info_collection": "user_info",
"user_info_collection": "user_info",
"original_tweets_collection": "original_tweets",
"quotes_of_in_community_collection": "quotes_of_in_community",
"quotes_of_out_community_collection": "quotes_of_out_community",
"retweets_of_in_community_collection": "retweets_of_in_community",
"retweets_of_out_community_collection": "retweets_of_out_community",
"retweets_of_out_community_by_in_community_collection": "retweets_of_out_community_by_in_community",
"content_market_db_name": "070823_rachel_ml_content_market_4",
"clean_original_tweets_collection": "original_tweets",
"clean_replies_collection": "clean_replies",
"clean_quotes_of_in_community_collection": "clean_quotes_of_in_community",
"clean_quotes_of_out_community_collection": "clean_quotes_of_out_community",
"clean_retweets_of_in_community_collection": "retweets_of_in_community",
"clean_retweets_of_out_community_collection": "retweets_of_out_community",
"clean_retweets_of_out_community_by_in_community_collection": "retweets_of_out_community_by_in_community",
"tweet_embeddings_collection": "tweet_embeddings",
"market_user_info_collection": "user_info",
"content_space_db_name": "chess_content_space",
"content_space_original_tweets_collection": "original_tweets",
"content_space_retweets_of_in_community_collection": "retweets_of_in_community",
"content_space_retweets_of_out_community_collection": "retweets_of_out_community",
"content_space_retweets_of_out_community_by_in_community_collection": "retweets_of_out_community_by_in_community",
"content_space_user_info": "user_info",
"content_space_collection": "content_space",
"content_demand_supply_db_name": "chess_content_supply_demand",
"content_ds_content_space": "content_space",
"content_ds_curves": "curves"
},
"num_clusters": 20,
"num_bins": 20,
"partitioning_strategy": "users",
"embedding_type": "tweet2vec",
"content_type_method": "binning"
}