Machine Translation với Keras
Thushan Ganegedara
Data Scientist and Author
Dữ liệu
en_text: Danh sách câu tiếng Anh; mỗi câu là chuỗi từ cách nhau bằng dấu cách.fr_text: Danh sách câu tiếng Pháp; mỗi câu là chuỗi từ cách nhau bằng dấu cách.In một số mẫu trong tập dữ liệu
for en_sent, fr_sent in zip(en_text[:3], fr_text[:3]):
print("English: ", en_sent)
print("\tFrench: ", fr_sent)
English: new jersey is sometimes quiet during autumn , and it is snowy in april .
French: new jersey est parfois calme pendant l' automne , et il est neigeux en avril .
English: the united states is usually chilly during july , and it is usually freezing in november .
French: les états-unis est généralement froid en juillet , et il gèle habituellement en novembre .
...
Tách từ (Tokenization)
"I watched a movie last night, it was okay." thành[I, watched, a, movie, last, night, it, was, okay]Tách từ với Keras
from tensorflow.keras.preprocessing.text import Tokenizer
en_tok = Tokenizer()
en_tok = Tokenizer()
en_tok.fit_on_texts(en_text)
word_index của Tokenizer.id = en_tok.word_index["january"] # => returns 51
w = en_tok.index_word[51] # => returns 'january'
seq = en_tok.texts_to_sequences(['she likes grapefruit , peaches , and lemons .'])
[[26, 70, 27, 73, 7, 74]]
Tokenizer.tok = Tokenizer(num_words=50)
Từ ngoài từ vựng (OOV)
Ví dụ
tok.fit_on_texts(["I drank milk"])tok.texts_to_sequences(["I drank water"])water là OOV và sẽ bị bỏ qua.tok = Tokenizer(num_words=50, oov_token='UNK')
tok.fit_on_texts(["I drank milk"])tok.texts_to_sequences(["I drank water"])water là OOV và sẽ được thay bằng UNK.Machine Translation với Keras