forked from oss-compass/compass-metrics-model
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprediction_test.py
23 lines (19 loc) · 895 Bytes
/
prediction_test.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from compass_prediction.oss_prediction import prediction_activity_start
from compass_common.opensearch_utils import get_client
import yaml
import logging
logger = logging.getLogger("compass_prediction.oss_prediction")
logger.setLevel(logging.DEBUG)
logging.info('loggging info message')
if __name__ == '__main__':
cofig_url = "./prediction_conf.yaml"
CONF = yaml.safe_load(open(cofig_url))
params = CONF['params']
client = get_client(CONF['url'])
repo = params["repo"]
activity_index = params["activity_index"]
development_index = params["development_index"]
community_index = params["community_index"]
organizations_activity_index = params["organizations_activity_index"]
prediction_result = prediction_activity_start(repo, client, activity_index, development_index, community_index, organizations_activity_index)
print(prediction_result)