stefanoviel
commited on
Commit
·
1c0cf1d
1
Parent(s):
ca806f9
very last
Browse files- src/streamlit_app.py +8 -0
src/streamlit_app.py
CHANGED
@@ -17,6 +17,14 @@ DATA_FILE = script_dir / 'papers_data.pkl'
|
|
17 |
EMBEDDINGS_FILE = script_dir / 'paper_embeddings.pt'
|
18 |
CSV_FILE = script_dir / 'papers_with_abstracts_parallel.csv'
|
19 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
# --- Data Loading and Preparation ---
|
21 |
CSV_FILE = 'papers_with_abstracts_parallel.csv'
|
22 |
|
|
|
17 |
EMBEDDINGS_FILE = script_dir / 'paper_embeddings.pt'
|
18 |
CSV_FILE = script_dir / 'papers_with_abstracts_parallel.csv'
|
19 |
|
20 |
+
print("script_dir:", script_dir)
|
21 |
+
print("Files in script_dir:")
|
22 |
+
for f in script_dir.iterdir():
|
23 |
+
print(" -", f)
|
24 |
+
print("Files in current directory:")
|
25 |
+
for f in os.listdir('.'):
|
26 |
+
print(" -", f)
|
27 |
+
|
28 |
# --- Data Loading and Preparation ---
|
29 |
CSV_FILE = 'papers_with_abstracts_parallel.csv'
|
30 |
|