DiegoTheExplorar
commited on
Update KTEPreprocess.py
Browse files- KTEPreprocess.py +1 -1
KTEPreprocess.py
CHANGED
@@ -9,7 +9,7 @@ import numpy as np
|
|
9 |
|
10 |
def preprocess():
|
11 |
# Load dataset
|
12 |
-
data = pd.read_csv(
|
13 |
|
14 |
# Append <BOS> and <EOS> tags to the English sentences
|
15 |
data['english'] = data['english'].apply(lambda x: '<BOS> ' + x + ' <EOS>')
|
|
|
9 |
|
10 |
def preprocess():
|
11 |
# Load dataset
|
12 |
+
data = pd.read_csv('English_To_Klingon.csv')
|
13 |
|
14 |
# Append <BOS> and <EOS> tags to the English sentences
|
15 |
data['english'] = data['english'].apply(lambda x: '<BOS> ' + x + ' <EOS>')
|