-
Notifications
You must be signed in to change notification settings - Fork 4
/
config.json
25 lines (25 loc) · 1.18 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
{
"database": {
"db_type": "Mongo",
"connection_url": "mongodb://localhost:27017/",
"community_db_name": "chess_community",
"community_info_collection": "community_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",
"content_market_db_name": "chess_content_market",
"clean_original_tweets_collection": "clean_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": "clean_retweets_of_in_community",
"clean_retweets_of_out_community_collection": "clean_retweets_of_out_community",
"tweet_embeddings_collection": "tweet_embeddings"
},
"num_bins": 20,
"partitioning_strategy": "users",
"embedding_type": "tweet2vec"
}