Tłumaczenie maszynowe z Keras
Thushan Ganegedara
Data Scientist and Author
Dane
en_text: lista zdań w Pythonie; każde zdanie to ciąg słów oddzielonych spacjami.fr_text: lista zdań w Pythonie; każde zdanie to ciąg słów oddzielonych spacjami.Wyświetlanie przykładowych danych
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 .
...
Tokenizacja
"I watched a movie last night, it was okay." staje się:[I, watched, a, movie, last, night, it, was, okay]Tokenizacja z Keras
from tensorflow.keras.preprocessing.text import Tokenizer
en_tok = Tokenizer()
en_tok = Tokenizer()
en_tok.fit_on_texts(en_text)
word_index obiektu 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 można ograniczyć.tok = Tokenizer(num_words=50)
Słowa spoza słownika (OOV)
Przykład:
tok.fit_on_texts(["I drank milk"])tok.texts_to_sequences(["I drank water"])water jest słowem OOV i zostanie zignorowane.tok = Tokenizer(num_words=50, oov_token='UNK')
tok.fit_on_texts(["I drank milk"])tok.texts_to_sequences(["I drank water"])water jest słowem OOV i zostanie zastąpione przez UNK.Tłumaczenie maszynowe z Keras