Spaces:
Build error
Build error
LuisV commited on
Commit ·
f17c211
1
Parent(s): 3b02084
trying to fix path typo
Browse files
prompting/promptingutils.py
CHANGED
|
@@ -4,7 +4,11 @@ import pandas as pd
|
|
| 4 |
print("current directory:")
|
| 5 |
print(os.curdir)
|
| 6 |
print(os.getcwd())
|
| 7 |
-
TOP_COMMENTARIES_DIR = os.path.join(
|
|
|
|
|
|
|
|
|
|
|
|
|
| 8 |
|
| 9 |
|
| 10 |
ARTEMIS_EMOTIONS = [
|
|
|
|
| 4 |
print("current directory:")
|
| 5 |
print(os.curdir)
|
| 6 |
print(os.getcwd())
|
| 7 |
+
TOP_COMMENTARIES_DIR = os.path.join(
|
| 8 |
+
os.getcwd(),
|
| 9 |
+
"prompting",
|
| 10 |
+
"top_commentaries"
|
| 11 |
+
)
|
| 12 |
|
| 13 |
|
| 14 |
ARTEMIS_EMOTIONS = [
|