DiegoTheExplorar commited on
Commit
9766a44
·
verified ·
1 Parent(s): 76520c8

Update KTEPreprocess.py

Browse files
Files changed (1) hide show
  1. 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(r'./backend/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>')
 
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>')