prashant
commited on
Commit
•
fa191c0
1
Parent(s):
b26b139
ndcs file path
Browse files- appStore/coherence.py +3 -3
appStore/coherence.py
CHANGED
@@ -6,16 +6,16 @@ import streamlit as st
|
|
6 |
import ast
|
7 |
|
8 |
# Reading data and Declaring necessary variables
|
9 |
-
with open('ndcs/countryList.txt') as dfile:
|
10 |
countryList = dfile.read()
|
11 |
countryList = ast.literal_eval(countryList)
|
12 |
countrynames = list(countryList.keys())
|
13 |
|
14 |
-
with open('ndcs/cca.txt', encoding='utf-8', errors='ignore') as dfile:
|
15 |
cca_sent = dfile.read()
|
16 |
cca_sent = ast.literal_eval(cca_sent)
|
17 |
|
18 |
-
with open('ndcs/ccm.txt', encoding='utf-8', errors='ignore') as dfile:
|
19 |
ccm_sent = dfile.read()
|
20 |
ccm_sent = ast.literal_eval(ccm_sent)
|
21 |
|
|
|
6 |
import ast
|
7 |
|
8 |
# Reading data and Declaring necessary variables
|
9 |
+
with open('docStore/ndcs/countryList.txt') as dfile:
|
10 |
countryList = dfile.read()
|
11 |
countryList = ast.literal_eval(countryList)
|
12 |
countrynames = list(countryList.keys())
|
13 |
|
14 |
+
with open('docStore/ndcs/cca.txt', encoding='utf-8', errors='ignore') as dfile:
|
15 |
cca_sent = dfile.read()
|
16 |
cca_sent = ast.literal_eval(cca_sent)
|
17 |
|
18 |
+
with open('docStore/ndcs/ccm.txt', encoding='utf-8', errors='ignore') as dfile:
|
19 |
ccm_sent = dfile.read()
|
20 |
ccm_sent = ast.literal_eval(ccm_sent)
|
21 |
|