Commit
·
f978ccd
1
Parent(s):
853f79d
1st commit - Add file
Browse filesThis view is limited to 50 files because it contains too many changes.
See raw diff
- .gitattributes +5 -1
- README.md +4 -6
- app.py +80 -0
- assets/BOW.jpg +0 -0
- assets/coeur.png +0 -0
- assets/demosthene_logo.png +0 -0
- assets/faviconV2.png +0 -0
- assets/fig_schapley0.png +0 -0
- assets/fig_schapley1.png +0 -0
- assets/fig_schapley2.png +0 -0
- assets/fig_schapley3.png +0 -0
- assets/fig_schapley4.png +0 -0
- assets/fig_schapley5.png +0 -0
- assets/fig_schapley6.png +0 -0
- assets/fig_schapley7.png +0 -0
- assets/fig_schapley8.png +0 -0
- assets/fig_schapley_recap0.png +0 -0
- assets/fig_schapley_recap1.png +0 -0
- assets/fig_schapley_recap2.png +0 -0
- assets/fig_schapley_recap3.png +0 -0
- assets/fig_schapley_recap4.png +0 -0
- assets/fig_schapley_recap5.png +0 -0
- assets/fig_schapley_recap6.png +0 -0
- assets/fig_schapley_recap7.png +0 -0
- assets/fig_schapley_recap8.png +0 -0
- assets/formule_proba_naive_bayes.png +0 -0
- assets/github-logo.png +0 -0
- assets/linkedin-logo-black.png +0 -0
- assets/linkedin-logo.png +0 -0
- assets/logo-datascientest.png +0 -0
- assets/sample-image.jpg +0 -0
- assets/tough-communication.gif +0 -0
- config.py +32 -0
- data/data_lang_id_acp.npz +3 -0
- data/dict_kmeans_en_fr +200 -0
- data/dict_kmeans_fr_en +331 -0
- data/dict_knn_chebyshev_en_fr +200 -0
- data/dict_knn_chebyshev_fr_en +331 -0
- data/dict_knn_cosine_en_fr +200 -0
- data/dict_knn_cosine_fr_en +331 -0
- data/dict_knn_euclidean_en_fr +200 -0
- data/dict_knn_euclidean_fr_en +331 -0
- data/dict_knn_manhattan_en_fr +200 -0
- data/dict_knn_manhattan_fr_en +331 -0
- data/dict_knn_minkowski_en_fr +200 -0
- data/dict_knn_minkowski_fr_en +331 -0
- data/dict_manuel_en_fr +202 -0
- data/dict_manuel_fr_en +331 -0
- data/dict_ref_en_fr.csv +202 -0
- data/dict_ref_fr_en.-save.csv +332 -0
.gitattributes
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
*.7z filter=lfs diff=lfs merge=lfs -text
|
| 2 |
*.arrow filter=lfs diff=lfs merge=lfs -text
|
| 3 |
*.bin filter=lfs diff=lfs merge=lfs -text
|
| 4 |
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
|
@@ -33,3 +33,7 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
preprocess_txt_split*.7z filter=lfs diff=lfs merge=lfs -text
|
| 2 |
*.arrow filter=lfs diff=lfs merge=lfs -text
|
| 3 |
*.bin filter=lfs diff=lfs merge=lfs -text
|
| 4 |
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
sentences.csv filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
preprocess_df_count_word* filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
preprocess_txt_split* filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
|
README.md
CHANGED
|
@@ -1,12 +1,10 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
-
emoji:
|
| 4 |
-
colorFrom:
|
| 5 |
colorTo: purple
|
| 6 |
sdk: streamlit
|
| 7 |
-
sdk_version: 1.
|
| 8 |
app_file: app.py
|
| 9 |
pinned: false
|
| 10 |
---
|
| 11 |
-
|
| 12 |
-
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
| 1 |
---
|
| 2 |
+
title: avr23-cds-translation
|
| 3 |
+
emoji: 😻
|
| 4 |
+
colorFrom: indigo
|
| 5 |
colorTo: purple
|
| 6 |
sdk: streamlit
|
| 7 |
+
sdk_version: 1.26.0
|
| 8 |
app_file: app.py
|
| 9 |
pinned: false
|
| 10 |
---
|
|
|
|
|
|
app.py
ADDED
|
@@ -0,0 +1,80 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import streamlit as st
|
| 2 |
+
import os.path
|
| 3 |
+
from collections import OrderedDict
|
| 4 |
+
from streamlit_option_menu import option_menu
|
| 5 |
+
# Define TITLE, TEAM_MEMBERS and PROMOTION values, in config.py.
|
| 6 |
+
import config
|
| 7 |
+
from tabs.custom_vectorizer import custom_tokenizer, custom_preprocessor
|
| 8 |
+
|
| 9 |
+
# Initialize a session state variable that tracks the sidebar state (either 'expanded' or 'collapsed').
|
| 10 |
+
if 'sidebar_state' not in st.session_state:
|
| 11 |
+
st.session_state.sidebar_state = 'expanded'
|
| 12 |
+
else:
|
| 13 |
+
st.session_state.sidebar_state = 'auto'
|
| 14 |
+
|
| 15 |
+
st.set_page_config (
|
| 16 |
+
page_title=config.TITLE,
|
| 17 |
+
page_icon= "assets/faviconV2.png",
|
| 18 |
+
initial_sidebar_state=st.session_state.sidebar_state
|
| 19 |
+
)
|
| 20 |
+
|
| 21 |
+
# Define the root folders depending on local/cloud run
|
| 22 |
+
thisfile = os.path.abspath(__file__)
|
| 23 |
+
if ('/' in thisfile):
|
| 24 |
+
os.chdir(os.path.dirname(thisfile))
|
| 25 |
+
|
| 26 |
+
# Tabs in the ./tabs folder, imported here.
|
| 27 |
+
from tabs import intro, exploration_tab, data_viz_tab, id_lang_tab, modelisation_dict_tab, modelisation_seq2seq_tab, game_tab
|
| 28 |
+
|
| 29 |
+
|
| 30 |
+
with open("style.css", "r") as f:
|
| 31 |
+
style = f.read()
|
| 32 |
+
|
| 33 |
+
st.markdown(f"<style>{style}</style>", unsafe_allow_html=True)
|
| 34 |
+
|
| 35 |
+
|
| 36 |
+
# Add tab in this ordered dict by
|
| 37 |
+
# passing the name in the sidebar as key and the imported tab
|
| 38 |
+
# as value as follow :
|
| 39 |
+
TABS = OrderedDict(
|
| 40 |
+
[
|
| 41 |
+
(intro.sidebar_name, intro),
|
| 42 |
+
(exploration_tab.sidebar_name, exploration_tab),
|
| 43 |
+
(data_viz_tab.sidebar_name, data_viz_tab),
|
| 44 |
+
(id_lang_tab.sidebar_name, id_lang_tab),
|
| 45 |
+
(modelisation_dict_tab.sidebar_name, modelisation_dict_tab),
|
| 46 |
+
(modelisation_seq2seq_tab.sidebar_name, modelisation_seq2seq_tab),
|
| 47 |
+
(game_tab.sidebar_name, game_tab ),
|
| 48 |
+
]
|
| 49 |
+
)
|
| 50 |
+
|
| 51 |
+
|
| 52 |
+
def run():
|
| 53 |
+
|
| 54 |
+
st.sidebar.image(
|
| 55 |
+
"assets/demosthene_logo.png",
|
| 56 |
+
width=270,
|
| 57 |
+
)
|
| 58 |
+
with st.sidebar:
|
| 59 |
+
tab_name = option_menu(None, list(TABS.keys()),
|
| 60 |
+
# icons=['house', 'bi-binoculars', 'bi bi-graph-up', 'bi-chat-right-text','bi-book', 'bi-body-text'], menu_icon="cast", default_index=0,
|
| 61 |
+
icons=['house', 'binoculars', 'graph-up', 'search','book', 'chat-right-text', 'controller'], menu_icon="cast", default_index=0,
|
| 62 |
+
styles={"container": {"padding": "0!important","background-color": "#10b8dd", "border-radius": "0!important"},
|
| 63 |
+
"nav-link": {"font-size": "1rem", "text-align": "left", "margin":"0em", "padding": "0em",
|
| 64 |
+
"padding-left": "0.2em", "--hover-color": "#eee", "font-weight": "400",
|
| 65 |
+
"font-family": "Source Sans Pro, sans-serif"}
|
| 66 |
+
})
|
| 67 |
+
# tab_name = st.sidebar.radio("", list(TABS.keys()), 0)
|
| 68 |
+
st.sidebar.markdown("---")
|
| 69 |
+
st.sidebar.markdown(f"## {config.PROMOTION}")
|
| 70 |
+
|
| 71 |
+
st.sidebar.markdown("### Team members:")
|
| 72 |
+
for member in config.TEAM_MEMBERS:
|
| 73 |
+
st.sidebar.markdown(member.sidebar_markdown(), unsafe_allow_html=True)
|
| 74 |
+
|
| 75 |
+
tab = TABS[tab_name]
|
| 76 |
+
tab.run()
|
| 77 |
+
|
| 78 |
+
|
| 79 |
+
if __name__ == "__main__":
|
| 80 |
+
run()
|
assets/BOW.jpg
ADDED
|
assets/coeur.png
ADDED
|
assets/demosthene_logo.png
ADDED
|
assets/faviconV2.png
ADDED
|
|
assets/fig_schapley0.png
ADDED
|
assets/fig_schapley1.png
ADDED
|
assets/fig_schapley2.png
ADDED
|
assets/fig_schapley3.png
ADDED
|
assets/fig_schapley4.png
ADDED
|
assets/fig_schapley5.png
ADDED
|
assets/fig_schapley6.png
ADDED
|
assets/fig_schapley7.png
ADDED
|
assets/fig_schapley8.png
ADDED
|
assets/fig_schapley_recap0.png
ADDED
|
assets/fig_schapley_recap1.png
ADDED
|
assets/fig_schapley_recap2.png
ADDED
|
assets/fig_schapley_recap3.png
ADDED
|
assets/fig_schapley_recap4.png
ADDED
|
assets/fig_schapley_recap5.png
ADDED
|
assets/fig_schapley_recap6.png
ADDED
|
assets/fig_schapley_recap7.png
ADDED
|
assets/fig_schapley_recap8.png
ADDED
|
assets/formule_proba_naive_bayes.png
ADDED
|
assets/github-logo.png
ADDED
|
assets/linkedin-logo-black.png
ADDED
|
assets/linkedin-logo.png
ADDED
|
assets/logo-datascientest.png
ADDED
|
assets/sample-image.jpg
ADDED
|
assets/tough-communication.gif
ADDED
|
config.py
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""
|
| 2 |
+
|
| 3 |
+
Config file for Streamlit App
|
| 4 |
+
|
| 5 |
+
"""
|
| 6 |
+
|
| 7 |
+
from member import Member
|
| 8 |
+
|
| 9 |
+
|
| 10 |
+
TITLE = "Système de traduction adapté aux lunettes connectées"
|
| 11 |
+
|
| 12 |
+
TEAM_MEMBERS = [
|
| 13 |
+
Member(
|
| 14 |
+
name="Keyne Dupont ",
|
| 15 |
+
linkedin_url="https://www.linkedin.com/in/keyne-dupont/",
|
| 16 |
+
github_url="https://github.com/charlessutton",
|
| 17 |
+
),
|
| 18 |
+
Member(
|
| 19 |
+
name="Tia Ratsimbason",
|
| 20 |
+
linkedin_url="https://www.linkedin.com/in/tia-ratsimbason-42110887/",
|
| 21 |
+
github_url="https://github.com/charlessutton",
|
| 22 |
+
),
|
| 23 |
+
Member(
|
| 24 |
+
name="Olivier Renouard",
|
| 25 |
+
linkedin_url="https://www.linkedin.com/in/olivier-renouard/",
|
| 26 |
+
github_url="https://github.com/Demosthene-OR",
|
| 27 |
+
)
|
| 28 |
+
|
| 29 |
+
|
| 30 |
+
]
|
| 31 |
+
|
| 32 |
+
PROMOTION = "Promotion Continuous - Data Scientist - April 2023"
|
data/data_lang_id_acp.npz
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7481fded48fe377669fdcba4437399c0a8139352cdd3e03be58a8a873922862c
|
| 3 |
+
size 22700538
|
data/dict_kmeans_en_fr
ADDED
|
@@ -0,0 +1,200 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Anglais,Francais
|
| 2 |
+
a,une
|
| 3 |
+
am,vais
|
| 4 |
+
and,et
|
| 5 |
+
animal,animal
|
| 6 |
+
animals,animaux
|
| 7 |
+
apple,pomme
|
| 8 |
+
apples,pommes
|
| 9 |
+
april,avril
|
| 10 |
+
are,sont
|
| 11 |
+
aren,allions
|
| 12 |
+
august,août
|
| 13 |
+
automobile,automobile
|
| 14 |
+
autumn,favoris
|
| 15 |
+
banana,banane
|
| 16 |
+
bananas,bananes
|
| 17 |
+
bear,ours
|
| 18 |
+
bears,redoutée
|
| 19 |
+
beautiful,beau
|
| 20 |
+
been,tu
|
| 21 |
+
between,entre
|
| 22 |
+
big,grande
|
| 23 |
+
bird,oiseau
|
| 24 |
+
birds,oiseaux
|
| 25 |
+
black,noire
|
| 26 |
+
blue,bleue
|
| 27 |
+
busy,occupé
|
| 28 |
+
but,mais
|
| 29 |
+
california,californie
|
| 30 |
+
car,voiture
|
| 31 |
+
cat,chat
|
| 32 |
+
cats,chats
|
| 33 |
+
chilly,frisquet
|
| 34 |
+
china,chine
|
| 35 |
+
chinese,chinois
|
| 36 |
+
cold,fait
|
| 37 |
+
december,décembre
|
| 38 |
+
did,terrain
|
| 39 |
+
didn,allions
|
| 40 |
+
difficult,difficile
|
| 41 |
+
dislike,détestons
|
| 42 |
+
disliked,détestait
|
| 43 |
+
dislikes,déteste
|
| 44 |
+
do,pensez
|
| 45 |
+
does,t
|
| 46 |
+
dog,chien
|
| 47 |
+
dogs,chiens
|
| 48 |
+
drives,pousse
|
| 49 |
+
driving,conduisait
|
| 50 |
+
drove,allions
|
| 51 |
+
dry,sec
|
| 52 |
+
during,en
|
| 53 |
+
easy,facile
|
| 54 |
+
eiffel,eiffel
|
| 55 |
+
elephant,éléphant
|
| 56 |
+
elephants,éléphants
|
| 57 |
+
english,anglais
|
| 58 |
+
fall,à
|
| 59 |
+
favorite,préféré
|
| 60 |
+
feared,redouté
|
| 61 |
+
february,février
|
| 62 |
+
field,football
|
| 63 |
+
football,football
|
| 64 |
+
france,france
|
| 65 |
+
freezing,gel
|
| 66 |
+
french,français
|
| 67 |
+
fruit,fruit
|
| 68 |
+
fun,amusant
|
| 69 |
+
go,aller
|
| 70 |
+
going,va
|
| 71 |
+
grape,raisin
|
| 72 |
+
grapefruit,pamplemousse
|
| 73 |
+
grapes,raisins
|
| 74 |
+
green,verte
|
| 75 |
+
grocery,épicerie
|
| 76 |
+
has,allions
|
| 77 |
+
have,tu
|
| 78 |
+
he,favoris
|
| 79 |
+
her,son
|
| 80 |
+
his,son
|
| 81 |
+
horse,cheval
|
| 82 |
+
horses,chevaux
|
| 83 |
+
hot,chaude
|
| 84 |
+
how,comment
|
| 85 |
+
i,je
|
| 86 |
+
in,en
|
| 87 |
+
india,inde
|
| 88 |
+
is,est
|
| 89 |
+
it,en
|
| 90 |
+
january,janvier
|
| 91 |
+
jersey,jersey
|
| 92 |
+
july,juillet
|
| 93 |
+
june,juin
|
| 94 |
+
lake,lac
|
| 95 |
+
last,dernier
|
| 96 |
+
least,moins
|
| 97 |
+
lemon,citron
|
| 98 |
+
lemons,citrons
|
| 99 |
+
like,aimons
|
| 100 |
+
liked,fruits
|
| 101 |
+
likes,aime
|
| 102 |
+
lime,chaux
|
| 103 |
+
limes,verts
|
| 104 |
+
lion,lion
|
| 105 |
+
lions,lions
|
| 106 |
+
little,petite
|
| 107 |
+
loved,plus
|
| 108 |
+
mango,mangue
|
| 109 |
+
mangoes,mangues
|
| 110 |
+
march,mars
|
| 111 |
+
may,mai
|
| 112 |
+
mice,préférées
|
| 113 |
+
might,pourrait
|
| 114 |
+
mild,doux
|
| 115 |
+
monkey,singe
|
| 116 |
+
monkeys,singes
|
| 117 |
+
most,plus
|
| 118 |
+
mouse,souris
|
| 119 |
+
my,mon
|
| 120 |
+
never,jamais
|
| 121 |
+
new,new
|
| 122 |
+
next,prochain
|
| 123 |
+
nice,favoris
|
| 124 |
+
not,allions
|
| 125 |
+
november,novembre
|
| 126 |
+
october,octobre
|
| 127 |
+
old,vieille
|
| 128 |
+
orange,orange
|
| 129 |
+
oranges,oranges
|
| 130 |
+
our,notre
|
| 131 |
+
paris,paris
|
| 132 |
+
peach,pêche
|
| 133 |
+
peaches,pêches
|
| 134 |
+
pear,poire
|
| 135 |
+
pears,poires
|
| 136 |
+
plan,visiter
|
| 137 |
+
plans,envisage
|
| 138 |
+
pleasant,agréable
|
| 139 |
+
portuguese,portugais
|
| 140 |
+
quiet,calme
|
| 141 |
+
rabbit,lapin
|
| 142 |
+
rabbits,lapins
|
| 143 |
+
rainy,pluvieux
|
| 144 |
+
red,rouge
|
| 145 |
+
relaxing,relaxant
|
| 146 |
+
rusty,rouillée
|
| 147 |
+
saw,vu
|
| 148 |
+
school,école
|
| 149 |
+
september,septembre
|
| 150 |
+
shark,requin
|
| 151 |
+
sharks,requins
|
| 152 |
+
she,elle
|
| 153 |
+
shiny,brillant
|
| 154 |
+
snake,serpent
|
| 155 |
+
snakes,serpents
|
| 156 |
+
snowy,enneigée
|
| 157 |
+
sometimes,parfois
|
| 158 |
+
spanish,espagnol
|
| 159 |
+
spring,printemps
|
| 160 |
+
states,unis
|
| 161 |
+
store,épicerie
|
| 162 |
+
strawberries,fraises
|
| 163 |
+
strawberry,fraise
|
| 164 |
+
summer,été
|
| 165 |
+
t,allions
|
| 166 |
+
that,cette
|
| 167 |
+
the,fruit
|
| 168 |
+
their,leur
|
| 169 |
+
they,ils
|
| 170 |
+
think,pensez
|
| 171 |
+
thinks,pense
|
| 172 |
+
this,cet
|
| 173 |
+
to,prochain
|
| 174 |
+
tower,eiffel
|
| 175 |
+
translate,traduire
|
| 176 |
+
translating,traduction
|
| 177 |
+
truck,camion
|
| 178 |
+
united,unis
|
| 179 |
+
usually,généralement
|
| 180 |
+
visit,visiter
|
| 181 |
+
want,veulent
|
| 182 |
+
wanted,voulait
|
| 183 |
+
wants,veut
|
| 184 |
+
warm,chaud
|
| 185 |
+
was,était
|
| 186 |
+
we,nous
|
| 187 |
+
weather,temps
|
| 188 |
+
went,allée
|
| 189 |
+
were,étaient
|
| 190 |
+
wet,humide
|
| 191 |
+
when,quand
|
| 192 |
+
where,où
|
| 193 |
+
white,blanche
|
| 194 |
+
why,pourquoi
|
| 195 |
+
winter,hiver
|
| 196 |
+
wonderful,merveilleux
|
| 197 |
+
would,voudrait
|
| 198 |
+
yellow,jaune
|
| 199 |
+
you,vous
|
| 200 |
+
your,votre
|
data/dict_kmeans_fr_en
ADDED
|
@@ -0,0 +1,331 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Francais,Anglais
|
| 2 |
+
a,drove
|
| 3 |
+
agréable,pleasant
|
| 4 |
+
aimait,disliked
|
| 5 |
+
aime,likes
|
| 6 |
+
aiment,they
|
| 7 |
+
aimeraient,have
|
| 8 |
+
aimez,you
|
| 9 |
+
aimons,have
|
| 10 |
+
aimé,loved
|
| 11 |
+
aimée,have
|
| 12 |
+
aimés,have
|
| 13 |
+
aller,store
|
| 14 |
+
allez,have
|
| 15 |
+
allions,have
|
| 16 |
+
allons,have
|
| 17 |
+
allé,have
|
| 18 |
+
allée,have
|
| 19 |
+
allés,have
|
| 20 |
+
amusant,united
|
| 21 |
+
anglais,english
|
| 22 |
+
animal,animal
|
| 23 |
+
animaux,animals
|
| 24 |
+
août,august
|
| 25 |
+
apprécié,have
|
| 26 |
+
as,have
|
| 27 |
+
at,have
|
| 28 |
+
au,spring
|
| 29 |
+
automne,fall
|
| 30 |
+
automobile,have
|
| 31 |
+
aux,have
|
| 32 |
+
avez,have
|
| 33 |
+
avons,have
|
| 34 |
+
avril,april
|
| 35 |
+
banane,banana
|
| 36 |
+
bananes,bananas
|
| 37 |
+
beau,beautiful
|
| 38 |
+
belle,have
|
| 39 |
+
bien,have
|
| 40 |
+
blanc,have
|
| 41 |
+
blanche,white
|
| 42 |
+
bleu,have
|
| 43 |
+
bleue,blue
|
| 44 |
+
brillant,shiny
|
| 45 |
+
brillante,have
|
| 46 |
+
bénigne,have
|
| 47 |
+
c,have
|
| 48 |
+
california,have
|
| 49 |
+
californie,california
|
| 50 |
+
calme,quiet
|
| 51 |
+
camion,truck
|
| 52 |
+
ce,this
|
| 53 |
+
cet,bird
|
| 54 |
+
cette,have
|
| 55 |
+
chat,cat
|
| 56 |
+
chats,cats
|
| 57 |
+
chaud,warm
|
| 58 |
+
chaude,have
|
| 59 |
+
chaux,lime
|
| 60 |
+
cher,have
|
| 61 |
+
cheval,horse
|
| 62 |
+
chevaux,horses
|
| 63 |
+
chien,dog
|
| 64 |
+
chiens,dogs
|
| 65 |
+
chine,china
|
| 66 |
+
chinois,chinese
|
| 67 |
+
citron,lemon
|
| 68 |
+
citrons,lemons
|
| 69 |
+
clémentes,have
|
| 70 |
+
comme,does
|
| 71 |
+
comment,how
|
| 72 |
+
conduisait,driving
|
| 73 |
+
conduit,drove
|
| 74 |
+
conduite,have
|
| 75 |
+
congélation,have
|
| 76 |
+
cours,have
|
| 77 |
+
cépage,have
|
| 78 |
+
d,august
|
| 79 |
+
dans,have
|
| 80 |
+
de,french
|
| 81 |
+
dernier,last
|
| 82 |
+
dernière,have
|
| 83 |
+
des,monkeys
|
| 84 |
+
difficile,difficult
|
| 85 |
+
douce,have
|
| 86 |
+
doux,mild
|
| 87 |
+
du,have
|
| 88 |
+
durant,have
|
| 89 |
+
décembre,december
|
| 90 |
+
détend,have
|
| 91 |
+
détendre,have
|
| 92 |
+
détestait,have
|
| 93 |
+
déteste,dislikes
|
| 94 |
+
détestez,have
|
| 95 |
+
détestons,have
|
| 96 |
+
eiffel,eiffel
|
| 97 |
+
elle,she
|
| 98 |
+
en,in
|
| 99 |
+
enneigé,have
|
| 100 |
+
enneigée,french
|
| 101 |
+
entre,between
|
| 102 |
+
envisage,plans
|
| 103 |
+
envisagent,have
|
| 104 |
+
es,have
|
| 105 |
+
espagnol,spanish
|
| 106 |
+
est,is
|
| 107 |
+
et,and
|
| 108 |
+
etats,have
|
| 109 |
+
facile,easy
|
| 110 |
+
faire,have
|
| 111 |
+
fait,have
|
| 112 |
+
favori,have
|
| 113 |
+
favoris,have
|
| 114 |
+
football,field
|
| 115 |
+
frais,have
|
| 116 |
+
fraise,strawberry
|
| 117 |
+
fraises,strawberries
|
| 118 |
+
france,france
|
| 119 |
+
français,tower
|
| 120 |
+
frisquet,have
|
| 121 |
+
froid,cold
|
| 122 |
+
fruit,fruit
|
| 123 |
+
fruits,have
|
| 124 |
+
février,february
|
| 125 |
+
gel,freezing
|
| 126 |
+
gelé,have
|
| 127 |
+
gelés,have
|
| 128 |
+
glaciales,have
|
| 129 |
+
grand,have
|
| 130 |
+
grande,have
|
| 131 |
+
grandes,have
|
| 132 |
+
grands,have
|
| 133 |
+
gros,have
|
| 134 |
+
grosse,have
|
| 135 |
+
grosses,have
|
| 136 |
+
gèle,french
|
| 137 |
+
généralement,usually
|
| 138 |
+
habituellement,french
|
| 139 |
+
hiver,winter
|
| 140 |
+
humide,wet
|
| 141 |
+
i,have
|
| 142 |
+
il,it
|
| 143 |
+
ils,they
|
| 144 |
+
inde,india
|
| 145 |
+
intention,have
|
| 146 |
+
j,have
|
| 147 |
+
jamais,never
|
| 148 |
+
janvier,january
|
| 149 |
+
jaune,yellow
|
| 150 |
+
je,i
|
| 151 |
+
jersey,jersey
|
| 152 |
+
juillet,july
|
| 153 |
+
juin,june
|
| 154 |
+
l,india
|
| 155 |
+
la,fruit
|
| 156 |
+
lac,lake
|
| 157 |
+
lapin,rabbit
|
| 158 |
+
lapins,rabbits
|
| 159 |
+
le,grapefruit
|
| 160 |
+
les,states
|
| 161 |
+
leur,their
|
| 162 |
+
leurs,have
|
| 163 |
+
limes,have
|
| 164 |
+
lion,lion
|
| 165 |
+
lions,lions
|
| 166 |
+
lui,have
|
| 167 |
+
légère,have
|
| 168 |
+
magnifique,have
|
| 169 |
+
mai,may
|
| 170 |
+
maillot,have
|
| 171 |
+
mais,but
|
| 172 |
+
mangue,mango
|
| 173 |
+
mangues,mangoes
|
| 174 |
+
manguiers,have
|
| 175 |
+
mars,march
|
| 176 |
+
merveilleux,wonderful
|
| 177 |
+
mes,have
|
| 178 |
+
moindres,have
|
| 179 |
+
moins,least
|
| 180 |
+
mois,august
|
| 181 |
+
mon,my
|
| 182 |
+
monde,have
|
| 183 |
+
moteur,have
|
| 184 |
+
mouillé,have
|
| 185 |
+
mouillée,have
|
| 186 |
+
n,dislike
|
| 187 |
+
ne,t
|
| 188 |
+
neige,french
|
| 189 |
+
neigeux,have
|
| 190 |
+
new,new
|
| 191 |
+
noir,have
|
| 192 |
+
noire,black
|
| 193 |
+
nos,have
|
| 194 |
+
notre,our
|
| 195 |
+
nous,we
|
| 196 |
+
nouveau,have
|
| 197 |
+
nouvelle,have
|
| 198 |
+
novembre,november
|
| 199 |
+
occupé,busy
|
| 200 |
+
occupée,have
|
| 201 |
+
octobre,october
|
| 202 |
+
oiseau,bird
|
| 203 |
+
oiseaux,birds
|
| 204 |
+
ont,have
|
| 205 |
+
orange,orange
|
| 206 |
+
oranges,oranges
|
| 207 |
+
ours,bear
|
| 208 |
+
où,where
|
| 209 |
+
pamplemousse,grapefruit
|
| 210 |
+
pamplemousses,have
|
| 211 |
+
parfois,sometimes
|
| 212 |
+
paris,paris
|
| 213 |
+
pas,disliked
|
| 214 |
+
pendant,french
|
| 215 |
+
pense,thinks
|
| 216 |
+
pensez,do
|
| 217 |
+
petit,have
|
| 218 |
+
petite,little
|
| 219 |
+
petites,have
|
| 220 |
+
petits,have
|
| 221 |
+
peu,have
|
| 222 |
+
plaît,have
|
| 223 |
+
pleut,have
|
| 224 |
+
pluie,have
|
| 225 |
+
pluies,have
|
| 226 |
+
plus,most
|
| 227 |
+
pluvieux,rainy
|
| 228 |
+
poire,pear
|
| 229 |
+
poires,pears
|
| 230 |
+
pomme,apple
|
| 231 |
+
pommes,apples
|
| 232 |
+
porcelaine,have
|
| 233 |
+
portugais,portuguese
|
| 234 |
+
pourquoi,why
|
| 235 |
+
pourraient,have
|
| 236 |
+
pourrait,might
|
| 237 |
+
pousse,have
|
| 238 |
+
printemps,spring
|
| 239 |
+
prochain,next
|
| 240 |
+
proches,have
|
| 241 |
+
préféré,favorite
|
| 242 |
+
préférée,have
|
| 243 |
+
préférées,have
|
| 244 |
+
préférés,bears
|
| 245 |
+
prévoient,have
|
| 246 |
+
prévois,have
|
| 247 |
+
prévoit,have
|
| 248 |
+
prévoyons,have
|
| 249 |
+
pêche,peach
|
| 250 |
+
pêches,peaches
|
| 251 |
+
qu,translate
|
| 252 |
+
quand,when
|
| 253 |
+
que,translating
|
| 254 |
+
qui,have
|
| 255 |
+
raisin,grape
|
| 256 |
+
raisins,grapes
|
| 257 |
+
redouté,feared
|
| 258 |
+
redoutée,have
|
| 259 |
+
redoutés,have
|
| 260 |
+
relaxant,relaxing
|
| 261 |
+
rendre,plans
|
| 262 |
+
requin,shark
|
| 263 |
+
requins,sharks
|
| 264 |
+
ressort,have
|
| 265 |
+
rouge,red
|
| 266 |
+
rouille,have
|
| 267 |
+
rouillé,have
|
| 268 |
+
rouillée,rusty
|
| 269 |
+
se,plans
|
| 270 |
+
sec,dry
|
| 271 |
+
septembre,september
|
| 272 |
+
serpent,snake
|
| 273 |
+
serpents,snakes
|
| 274 |
+
ses,were
|
| 275 |
+
singe,monkey
|
| 276 |
+
singes,monkeys
|
| 277 |
+
son,his
|
| 278 |
+
sont,are
|
| 279 |
+
souris,mouse
|
| 280 |
+
souvent,have
|
| 281 |
+
sur,field
|
| 282 |
+
sèche,have
|
| 283 |
+
t,does
|
| 284 |
+
temps,weather
|
| 285 |
+
terrain,field
|
| 286 |
+
tour,eiffel
|
| 287 |
+
tout,have
|
| 288 |
+
traduction,translating
|
| 289 |
+
traduire,translate
|
| 290 |
+
traduis,have
|
| 291 |
+
tranquille,have
|
| 292 |
+
trop,have
|
| 293 |
+
trouvé,have
|
| 294 |
+
tu,have
|
| 295 |
+
un,have
|
| 296 |
+
une,a
|
| 297 |
+
unis,states
|
| 298 |
+
va,going
|
| 299 |
+
vais,am
|
| 300 |
+
vers,have
|
| 301 |
+
vert,have
|
| 302 |
+
verte,green
|
| 303 |
+
verts,limes
|
| 304 |
+
veulent,want
|
| 305 |
+
veut,wants
|
| 306 |
+
vieille,old
|
| 307 |
+
vieux,have
|
| 308 |
+
visite,how
|
| 309 |
+
visiter,plan
|
| 310 |
+
vit,have
|
| 311 |
+
voiture,car
|
| 312 |
+
volant,have
|
| 313 |
+
vont,have
|
| 314 |
+
vos,have
|
| 315 |
+
votre,football
|
| 316 |
+
voudrait,would
|
| 317 |
+
voulaient,have
|
| 318 |
+
voulait,wanted
|
| 319 |
+
voulez,have
|
| 320 |
+
vous,you
|
| 321 |
+
vu,saw
|
| 322 |
+
à,fall
|
| 323 |
+
école,school
|
| 324 |
+
éléphant,elephant
|
| 325 |
+
éléphants,elephants
|
| 326 |
+
épicerie,grocery
|
| 327 |
+
étaient,were
|
| 328 |
+
était,was
|
| 329 |
+
états,states
|
| 330 |
+
été,summer
|
| 331 |
+
êtes,have
|
data/dict_knn_chebyshev_en_fr
ADDED
|
@@ -0,0 +1,200 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Anglais,Francais
|
| 2 |
+
a,a
|
| 3 |
+
am,vais
|
| 4 |
+
and,a
|
| 5 |
+
animal,animal
|
| 6 |
+
animals,animaux
|
| 7 |
+
apple,pomme
|
| 8 |
+
apples,pommes
|
| 9 |
+
april,avril
|
| 10 |
+
are,a
|
| 11 |
+
aren,a
|
| 12 |
+
august,août
|
| 13 |
+
automobile,a
|
| 14 |
+
autumn,a
|
| 15 |
+
banana,banane
|
| 16 |
+
bananas,bananes
|
| 17 |
+
bear,a
|
| 18 |
+
bears,a
|
| 19 |
+
beautiful,a
|
| 20 |
+
been,a
|
| 21 |
+
between,entre
|
| 22 |
+
big,a
|
| 23 |
+
bird,oiseau
|
| 24 |
+
birds,oiseaux
|
| 25 |
+
black,a
|
| 26 |
+
blue,a
|
| 27 |
+
busy,a
|
| 28 |
+
but,mais
|
| 29 |
+
california,a
|
| 30 |
+
car,a
|
| 31 |
+
cat,chat
|
| 32 |
+
cats,chats
|
| 33 |
+
chilly,a
|
| 34 |
+
china,a
|
| 35 |
+
chinese,chinois
|
| 36 |
+
cold,a
|
| 37 |
+
december,décembre
|
| 38 |
+
did,a
|
| 39 |
+
didn,a
|
| 40 |
+
difficult,difficile
|
| 41 |
+
dislike,a
|
| 42 |
+
disliked,a
|
| 43 |
+
dislikes,a
|
| 44 |
+
do,a
|
| 45 |
+
does,a
|
| 46 |
+
dog,chien
|
| 47 |
+
dogs,chiens
|
| 48 |
+
drives,a
|
| 49 |
+
driving,a
|
| 50 |
+
drove,a
|
| 51 |
+
dry,a
|
| 52 |
+
during,a
|
| 53 |
+
easy,facile
|
| 54 |
+
eiffel,eiffel
|
| 55 |
+
elephant,éléphant
|
| 56 |
+
elephants,éléphants
|
| 57 |
+
english,anglais
|
| 58 |
+
fall,a
|
| 59 |
+
favorite,a
|
| 60 |
+
feared,a
|
| 61 |
+
february,février
|
| 62 |
+
field,football
|
| 63 |
+
football,football
|
| 64 |
+
france,france
|
| 65 |
+
freezing,a
|
| 66 |
+
french,français
|
| 67 |
+
fruit,a
|
| 68 |
+
fun,amusant
|
| 69 |
+
go,a
|
| 70 |
+
going,a
|
| 71 |
+
grape,a
|
| 72 |
+
grapefruit,a
|
| 73 |
+
grapes,a
|
| 74 |
+
green,a
|
| 75 |
+
grocery,épicerie
|
| 76 |
+
has,a
|
| 77 |
+
have,a
|
| 78 |
+
he,a
|
| 79 |
+
her,a
|
| 80 |
+
his,a
|
| 81 |
+
horse,cheval
|
| 82 |
+
horses,chevaux
|
| 83 |
+
hot,a
|
| 84 |
+
how,comment
|
| 85 |
+
i,a
|
| 86 |
+
in,a
|
| 87 |
+
india,inde
|
| 88 |
+
is,a
|
| 89 |
+
it,a
|
| 90 |
+
january,janvier
|
| 91 |
+
jersey,a
|
| 92 |
+
july,juillet
|
| 93 |
+
june,juin
|
| 94 |
+
lake,lac
|
| 95 |
+
last,a
|
| 96 |
+
least,a
|
| 97 |
+
lemon,citron
|
| 98 |
+
lemons,a
|
| 99 |
+
like,a
|
| 100 |
+
liked,a
|
| 101 |
+
likes,a
|
| 102 |
+
lime,chaux
|
| 103 |
+
limes,a
|
| 104 |
+
lion,lion
|
| 105 |
+
lions,lions
|
| 106 |
+
little,a
|
| 107 |
+
loved,a
|
| 108 |
+
mango,a
|
| 109 |
+
mangoes,a
|
| 110 |
+
march,mars
|
| 111 |
+
may,mai
|
| 112 |
+
mice,a
|
| 113 |
+
might,a
|
| 114 |
+
mild,a
|
| 115 |
+
monkey,singe
|
| 116 |
+
monkeys,singes
|
| 117 |
+
most,plus
|
| 118 |
+
mouse,a
|
| 119 |
+
my,a
|
| 120 |
+
never,a
|
| 121 |
+
new,a
|
| 122 |
+
next,prochain
|
| 123 |
+
nice,a
|
| 124 |
+
not,a
|
| 125 |
+
november,novembre
|
| 126 |
+
october,octobre
|
| 127 |
+
old,a
|
| 128 |
+
orange,orange
|
| 129 |
+
oranges,oranges
|
| 130 |
+
our,a
|
| 131 |
+
paris,paris
|
| 132 |
+
peach,pêche
|
| 133 |
+
peaches,pêches
|
| 134 |
+
pear,poire
|
| 135 |
+
pears,poires
|
| 136 |
+
plan,a
|
| 137 |
+
plans,a
|
| 138 |
+
pleasant,a
|
| 139 |
+
portuguese,portugais
|
| 140 |
+
quiet,a
|
| 141 |
+
rabbit,lapin
|
| 142 |
+
rabbits,lapins
|
| 143 |
+
rainy,a
|
| 144 |
+
red,rouge
|
| 145 |
+
relaxing,a
|
| 146 |
+
rusty,a
|
| 147 |
+
saw,a
|
| 148 |
+
school,école
|
| 149 |
+
september,septembre
|
| 150 |
+
shark,requin
|
| 151 |
+
sharks,requins
|
| 152 |
+
she,a
|
| 153 |
+
shiny,a
|
| 154 |
+
snake,serpent
|
| 155 |
+
snakes,serpents
|
| 156 |
+
snowy,a
|
| 157 |
+
sometimes,parfois
|
| 158 |
+
spanish,espagnol
|
| 159 |
+
spring,a
|
| 160 |
+
states,unis
|
| 161 |
+
store,épicerie
|
| 162 |
+
strawberries,fraises
|
| 163 |
+
strawberry,fraise
|
| 164 |
+
summer,a
|
| 165 |
+
t,a
|
| 166 |
+
that,a
|
| 167 |
+
the,a
|
| 168 |
+
their,a
|
| 169 |
+
they,a
|
| 170 |
+
think,a
|
| 171 |
+
thinks,a
|
| 172 |
+
this,a
|
| 173 |
+
to,a
|
| 174 |
+
tower,eiffel
|
| 175 |
+
translate,a
|
| 176 |
+
translating,a
|
| 177 |
+
truck,camion
|
| 178 |
+
united,unis
|
| 179 |
+
usually,a
|
| 180 |
+
visit,a
|
| 181 |
+
want,veulent
|
| 182 |
+
wanted,a
|
| 183 |
+
wants,veut
|
| 184 |
+
warm,a
|
| 185 |
+
was,a
|
| 186 |
+
we,a
|
| 187 |
+
weather,temps
|
| 188 |
+
went,a
|
| 189 |
+
were,a
|
| 190 |
+
wet,a
|
| 191 |
+
when,quand
|
| 192 |
+
where,où
|
| 193 |
+
white,a
|
| 194 |
+
why,pourquoi
|
| 195 |
+
winter,hiver
|
| 196 |
+
wonderful,a
|
| 197 |
+
would,a
|
| 198 |
+
yellow,jaune
|
| 199 |
+
you,a
|
| 200 |
+
your,a
|
data/dict_knn_chebyshev_fr_en
ADDED
|
@@ -0,0 +1,331 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Francais,Anglais
|
| 2 |
+
a,a
|
| 3 |
+
agréable,a
|
| 4 |
+
aimait,a
|
| 5 |
+
aime,a
|
| 6 |
+
aiment,a
|
| 7 |
+
aimeraient,a
|
| 8 |
+
aimez,a
|
| 9 |
+
aimons,a
|
| 10 |
+
aimé,a
|
| 11 |
+
aimée,a
|
| 12 |
+
aimés,a
|
| 13 |
+
aller,a
|
| 14 |
+
allez,a
|
| 15 |
+
allions,a
|
| 16 |
+
allons,a
|
| 17 |
+
allé,a
|
| 18 |
+
allée,a
|
| 19 |
+
allés,a
|
| 20 |
+
amusant,fun
|
| 21 |
+
anglais,english
|
| 22 |
+
animal,animal
|
| 23 |
+
animaux,animals
|
| 24 |
+
août,august
|
| 25 |
+
apprécié,a
|
| 26 |
+
as,a
|
| 27 |
+
at,a
|
| 28 |
+
au,a
|
| 29 |
+
automne,a
|
| 30 |
+
automobile,a
|
| 31 |
+
aux,a
|
| 32 |
+
avez,a
|
| 33 |
+
avons,a
|
| 34 |
+
avril,april
|
| 35 |
+
banane,banana
|
| 36 |
+
bananes,bananas
|
| 37 |
+
beau,a
|
| 38 |
+
belle,a
|
| 39 |
+
bien,a
|
| 40 |
+
blanc,a
|
| 41 |
+
blanche,a
|
| 42 |
+
bleu,a
|
| 43 |
+
bleue,a
|
| 44 |
+
brillant,a
|
| 45 |
+
brillante,a
|
| 46 |
+
bénigne,a
|
| 47 |
+
c,a
|
| 48 |
+
california,a
|
| 49 |
+
californie,a
|
| 50 |
+
calme,a
|
| 51 |
+
camion,truck
|
| 52 |
+
ce,a
|
| 53 |
+
cet,a
|
| 54 |
+
cette,a
|
| 55 |
+
chat,cat
|
| 56 |
+
chats,cats
|
| 57 |
+
chaud,a
|
| 58 |
+
chaude,a
|
| 59 |
+
chaux,lime
|
| 60 |
+
cher,a
|
| 61 |
+
cheval,horse
|
| 62 |
+
chevaux,horses
|
| 63 |
+
chien,dog
|
| 64 |
+
chiens,dogs
|
| 65 |
+
chine,a
|
| 66 |
+
chinois,chinese
|
| 67 |
+
citron,lemon
|
| 68 |
+
citrons,a
|
| 69 |
+
clémentes,a
|
| 70 |
+
comme,a
|
| 71 |
+
comment,how
|
| 72 |
+
conduisait,a
|
| 73 |
+
conduit,a
|
| 74 |
+
conduite,a
|
| 75 |
+
congélation,a
|
| 76 |
+
cours,a
|
| 77 |
+
cépage,a
|
| 78 |
+
d,a
|
| 79 |
+
dans,a
|
| 80 |
+
de,a
|
| 81 |
+
dernier,a
|
| 82 |
+
dernière,a
|
| 83 |
+
des,a
|
| 84 |
+
difficile,difficult
|
| 85 |
+
douce,a
|
| 86 |
+
doux,a
|
| 87 |
+
du,a
|
| 88 |
+
durant,a
|
| 89 |
+
décembre,december
|
| 90 |
+
détend,a
|
| 91 |
+
détendre,a
|
| 92 |
+
détestait,a
|
| 93 |
+
déteste,a
|
| 94 |
+
détestez,a
|
| 95 |
+
détestons,a
|
| 96 |
+
eiffel,eiffel
|
| 97 |
+
elle,a
|
| 98 |
+
en,a
|
| 99 |
+
enneigé,a
|
| 100 |
+
enneigée,a
|
| 101 |
+
entre,between
|
| 102 |
+
envisage,a
|
| 103 |
+
envisagent,a
|
| 104 |
+
es,a
|
| 105 |
+
espagnol,spanish
|
| 106 |
+
est,a
|
| 107 |
+
et,a
|
| 108 |
+
etats,a
|
| 109 |
+
facile,easy
|
| 110 |
+
faire,a
|
| 111 |
+
fait,a
|
| 112 |
+
favori,a
|
| 113 |
+
favoris,a
|
| 114 |
+
football,field
|
| 115 |
+
frais,a
|
| 116 |
+
fraise,strawberry
|
| 117 |
+
fraises,strawberries
|
| 118 |
+
france,france
|
| 119 |
+
français,french
|
| 120 |
+
frisquet,a
|
| 121 |
+
froid,a
|
| 122 |
+
fruit,a
|
| 123 |
+
fruits,a
|
| 124 |
+
février,february
|
| 125 |
+
gel,a
|
| 126 |
+
gelé,a
|
| 127 |
+
gelés,a
|
| 128 |
+
glaciales,a
|
| 129 |
+
grand,a
|
| 130 |
+
grande,a
|
| 131 |
+
grandes,a
|
| 132 |
+
grands,a
|
| 133 |
+
gros,a
|
| 134 |
+
grosse,a
|
| 135 |
+
grosses,a
|
| 136 |
+
gèle,a
|
| 137 |
+
généralement,a
|
| 138 |
+
habituellement,a
|
| 139 |
+
hiver,winter
|
| 140 |
+
humide,a
|
| 141 |
+
i,a
|
| 142 |
+
il,a
|
| 143 |
+
ils,a
|
| 144 |
+
inde,india
|
| 145 |
+
intention,a
|
| 146 |
+
j,a
|
| 147 |
+
jamais,a
|
| 148 |
+
janvier,january
|
| 149 |
+
jaune,yellow
|
| 150 |
+
je,a
|
| 151 |
+
jersey,a
|
| 152 |
+
juillet,july
|
| 153 |
+
juin,june
|
| 154 |
+
l,a
|
| 155 |
+
la,a
|
| 156 |
+
lac,lake
|
| 157 |
+
lapin,rabbit
|
| 158 |
+
lapins,rabbits
|
| 159 |
+
le,a
|
| 160 |
+
les,a
|
| 161 |
+
leur,a
|
| 162 |
+
leurs,a
|
| 163 |
+
limes,a
|
| 164 |
+
lion,lion
|
| 165 |
+
lions,lions
|
| 166 |
+
lui,a
|
| 167 |
+
légère,a
|
| 168 |
+
magnifique,a
|
| 169 |
+
mai,may
|
| 170 |
+
maillot,a
|
| 171 |
+
mais,but
|
| 172 |
+
mangue,a
|
| 173 |
+
mangues,a
|
| 174 |
+
manguiers,a
|
| 175 |
+
mars,march
|
| 176 |
+
merveilleux,a
|
| 177 |
+
mes,a
|
| 178 |
+
moindres,a
|
| 179 |
+
moins,a
|
| 180 |
+
mois,a
|
| 181 |
+
mon,a
|
| 182 |
+
monde,a
|
| 183 |
+
moteur,a
|
| 184 |
+
mouillé,a
|
| 185 |
+
mouillée,a
|
| 186 |
+
n,a
|
| 187 |
+
ne,a
|
| 188 |
+
neige,a
|
| 189 |
+
neigeux,a
|
| 190 |
+
new,jersey
|
| 191 |
+
noir,a
|
| 192 |
+
noire,a
|
| 193 |
+
nos,a
|
| 194 |
+
notre,a
|
| 195 |
+
nous,a
|
| 196 |
+
nouveau,a
|
| 197 |
+
nouvelle,a
|
| 198 |
+
novembre,november
|
| 199 |
+
occupé,a
|
| 200 |
+
occupée,a
|
| 201 |
+
octobre,october
|
| 202 |
+
oiseau,bird
|
| 203 |
+
oiseaux,birds
|
| 204 |
+
ont,a
|
| 205 |
+
orange,orange
|
| 206 |
+
oranges,oranges
|
| 207 |
+
ours,a
|
| 208 |
+
où,where
|
| 209 |
+
pamplemousse,a
|
| 210 |
+
pamplemousses,a
|
| 211 |
+
parfois,sometimes
|
| 212 |
+
paris,paris
|
| 213 |
+
pas,a
|
| 214 |
+
pendant,a
|
| 215 |
+
pense,a
|
| 216 |
+
pensez,a
|
| 217 |
+
petit,a
|
| 218 |
+
petite,a
|
| 219 |
+
petites,a
|
| 220 |
+
petits,a
|
| 221 |
+
peu,a
|
| 222 |
+
plaît,a
|
| 223 |
+
pleut,a
|
| 224 |
+
pluie,a
|
| 225 |
+
pluies,a
|
| 226 |
+
plus,most
|
| 227 |
+
pluvieux,a
|
| 228 |
+
poire,pear
|
| 229 |
+
poires,pears
|
| 230 |
+
pomme,apple
|
| 231 |
+
pommes,apples
|
| 232 |
+
porcelaine,a
|
| 233 |
+
portugais,portuguese
|
| 234 |
+
pourquoi,why
|
| 235 |
+
pourraient,a
|
| 236 |
+
pourrait,a
|
| 237 |
+
pousse,a
|
| 238 |
+
printemps,a
|
| 239 |
+
prochain,next
|
| 240 |
+
proches,a
|
| 241 |
+
préféré,a
|
| 242 |
+
préférée,a
|
| 243 |
+
préférées,a
|
| 244 |
+
préférés,a
|
| 245 |
+
prévoient,a
|
| 246 |
+
prévois,a
|
| 247 |
+
prévoit,a
|
| 248 |
+
prévoyons,a
|
| 249 |
+
pêche,peach
|
| 250 |
+
pêches,peaches
|
| 251 |
+
qu,a
|
| 252 |
+
quand,when
|
| 253 |
+
que,a
|
| 254 |
+
qui,a
|
| 255 |
+
raisin,a
|
| 256 |
+
raisins,a
|
| 257 |
+
redouté,a
|
| 258 |
+
redoutée,a
|
| 259 |
+
redoutés,a
|
| 260 |
+
relaxant,a
|
| 261 |
+
rendre,a
|
| 262 |
+
requin,shark
|
| 263 |
+
requins,sharks
|
| 264 |
+
ressort,a
|
| 265 |
+
rouge,red
|
| 266 |
+
rouille,a
|
| 267 |
+
rouillé,a
|
| 268 |
+
rouillée,a
|
| 269 |
+
se,a
|
| 270 |
+
sec,a
|
| 271 |
+
septembre,september
|
| 272 |
+
serpent,snake
|
| 273 |
+
serpents,snakes
|
| 274 |
+
ses,a
|
| 275 |
+
singe,monkey
|
| 276 |
+
singes,monkeys
|
| 277 |
+
son,a
|
| 278 |
+
sont,a
|
| 279 |
+
souris,a
|
| 280 |
+
souvent,a
|
| 281 |
+
sur,a
|
| 282 |
+
sèche,a
|
| 283 |
+
t,a
|
| 284 |
+
temps,weather
|
| 285 |
+
terrain,field
|
| 286 |
+
tour,eiffel
|
| 287 |
+
tout,a
|
| 288 |
+
traduction,a
|
| 289 |
+
traduire,a
|
| 290 |
+
traduis,a
|
| 291 |
+
tranquille,a
|
| 292 |
+
trop,a
|
| 293 |
+
trouvé,a
|
| 294 |
+
tu,a
|
| 295 |
+
un,a
|
| 296 |
+
une,a
|
| 297 |
+
unis,states
|
| 298 |
+
va,a
|
| 299 |
+
vais,am
|
| 300 |
+
vers,a
|
| 301 |
+
vert,a
|
| 302 |
+
verte,a
|
| 303 |
+
verts,a
|
| 304 |
+
veulent,want
|
| 305 |
+
veut,wants
|
| 306 |
+
vieille,a
|
| 307 |
+
vieux,a
|
| 308 |
+
visite,a
|
| 309 |
+
visiter,a
|
| 310 |
+
vit,a
|
| 311 |
+
voiture,a
|
| 312 |
+
volant,a
|
| 313 |
+
vont,a
|
| 314 |
+
vos,a
|
| 315 |
+
votre,a
|
| 316 |
+
voudrait,a
|
| 317 |
+
voulaient,a
|
| 318 |
+
voulait,a
|
| 319 |
+
voulez,a
|
| 320 |
+
vous,a
|
| 321 |
+
vu,a
|
| 322 |
+
à,a
|
| 323 |
+
école,school
|
| 324 |
+
éléphant,elephant
|
| 325 |
+
éléphants,elephants
|
| 326 |
+
épicerie,grocery
|
| 327 |
+
étaient,a
|
| 328 |
+
était,a
|
| 329 |
+
états,a
|
| 330 |
+
été,a
|
| 331 |
+
êtes,a
|
data/dict_knn_cosine_en_fr
ADDED
|
@@ -0,0 +1,200 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Anglais,Francais
|
| 2 |
+
a,une
|
| 3 |
+
am,vais
|
| 4 |
+
and,et
|
| 5 |
+
animal,animal
|
| 6 |
+
animals,animaux
|
| 7 |
+
apple,pomme
|
| 8 |
+
apples,pommes
|
| 9 |
+
april,avril
|
| 10 |
+
are,sont
|
| 11 |
+
aren,pourquoi
|
| 12 |
+
august,août
|
| 13 |
+
automobile,voiture
|
| 14 |
+
autumn,automne
|
| 15 |
+
banana,banane
|
| 16 |
+
bananas,bananes
|
| 17 |
+
bear,ours
|
| 18 |
+
bears,ours
|
| 19 |
+
beautiful,beau
|
| 20 |
+
been,tu
|
| 21 |
+
between,entre
|
| 22 |
+
big,grande
|
| 23 |
+
bird,oiseau
|
| 24 |
+
birds,oiseaux
|
| 25 |
+
black,noire
|
| 26 |
+
blue,bleue
|
| 27 |
+
busy,occupé
|
| 28 |
+
but,mais
|
| 29 |
+
california,californie
|
| 30 |
+
car,voiture
|
| 31 |
+
cat,chat
|
| 32 |
+
cats,chats
|
| 33 |
+
chilly,froid
|
| 34 |
+
china,chine
|
| 35 |
+
chinese,chinois
|
| 36 |
+
cold,froid
|
| 37 |
+
december,décembre
|
| 38 |
+
did,êtes
|
| 39 |
+
didn,pourquoi
|
| 40 |
+
difficult,difficile
|
| 41 |
+
dislike,n
|
| 42 |
+
disliked,aimait
|
| 43 |
+
dislikes,déteste
|
| 44 |
+
do,pensez
|
| 45 |
+
does,t
|
| 46 |
+
dog,chien
|
| 47 |
+
dogs,chiens
|
| 48 |
+
drives,conduit
|
| 49 |
+
driving,conduisait
|
| 50 |
+
drove,a
|
| 51 |
+
dry,sec
|
| 52 |
+
during,en
|
| 53 |
+
easy,facile
|
| 54 |
+
eiffel,eiffel
|
| 55 |
+
elephant,éléphant
|
| 56 |
+
elephants,éléphants
|
| 57 |
+
english,anglais
|
| 58 |
+
fall,automne
|
| 59 |
+
favorite,préféré
|
| 60 |
+
feared,redouté
|
| 61 |
+
february,février
|
| 62 |
+
field,football
|
| 63 |
+
football,football
|
| 64 |
+
france,france
|
| 65 |
+
freezing,gel
|
| 66 |
+
french,français
|
| 67 |
+
fruit,fruit
|
| 68 |
+
fun,amusant
|
| 69 |
+
go,aller
|
| 70 |
+
going,va
|
| 71 |
+
grape,raisin
|
| 72 |
+
grapefruit,pamplemousse
|
| 73 |
+
grapes,raisins
|
| 74 |
+
green,verte
|
| 75 |
+
grocery,épicerie
|
| 76 |
+
has,at
|
| 77 |
+
have,tu
|
| 78 |
+
he,aime
|
| 79 |
+
her,son
|
| 80 |
+
his,son
|
| 81 |
+
horse,cheval
|
| 82 |
+
horses,chevaux
|
| 83 |
+
hot,chaud
|
| 84 |
+
how,comment
|
| 85 |
+
i,je
|
| 86 |
+
in,en
|
| 87 |
+
india,inde
|
| 88 |
+
is,est
|
| 89 |
+
it,en
|
| 90 |
+
january,janvier
|
| 91 |
+
jersey,jersey
|
| 92 |
+
july,juillet
|
| 93 |
+
june,juin
|
| 94 |
+
lake,lac
|
| 95 |
+
last,dernier
|
| 96 |
+
least,moins
|
| 97 |
+
lemon,citron
|
| 98 |
+
lemons,citrons
|
| 99 |
+
like,aimons
|
| 100 |
+
liked,aimé
|
| 101 |
+
likes,aime
|
| 102 |
+
lime,chaux
|
| 103 |
+
limes,verts
|
| 104 |
+
lion,lion
|
| 105 |
+
lions,lions
|
| 106 |
+
little,petite
|
| 107 |
+
loved,plus
|
| 108 |
+
mango,mangue
|
| 109 |
+
mangoes,mangues
|
| 110 |
+
march,mars
|
| 111 |
+
may,mai
|
| 112 |
+
mice,préférées
|
| 113 |
+
might,pourrait
|
| 114 |
+
mild,doux
|
| 115 |
+
monkey,singe
|
| 116 |
+
monkeys,singes
|
| 117 |
+
most,plus
|
| 118 |
+
mouse,souris
|
| 119 |
+
my,mon
|
| 120 |
+
never,jamais
|
| 121 |
+
new,jersey
|
| 122 |
+
next,prochain
|
| 123 |
+
nice,agréable
|
| 124 |
+
not,pourquoi
|
| 125 |
+
november,novembre
|
| 126 |
+
october,octobre
|
| 127 |
+
old,vieille
|
| 128 |
+
orange,orange
|
| 129 |
+
oranges,oranges
|
| 130 |
+
our,notre
|
| 131 |
+
paris,paris
|
| 132 |
+
peach,pêche
|
| 133 |
+
peaches,pêches
|
| 134 |
+
pear,poire
|
| 135 |
+
pears,poires
|
| 136 |
+
plan,visiter
|
| 137 |
+
plans,envisage
|
| 138 |
+
pleasant,agréable
|
| 139 |
+
portuguese,portugais
|
| 140 |
+
quiet,calme
|
| 141 |
+
rabbit,lapin
|
| 142 |
+
rabbits,lapins
|
| 143 |
+
rainy,pluvieux
|
| 144 |
+
red,rouge
|
| 145 |
+
relaxing,relaxant
|
| 146 |
+
rusty,rouillée
|
| 147 |
+
saw,vu
|
| 148 |
+
school,école
|
| 149 |
+
september,septembre
|
| 150 |
+
shark,requin
|
| 151 |
+
sharks,requins
|
| 152 |
+
she,elle
|
| 153 |
+
shiny,brillant
|
| 154 |
+
snake,serpent
|
| 155 |
+
snakes,serpents
|
| 156 |
+
snowy,enneigée
|
| 157 |
+
sometimes,parfois
|
| 158 |
+
spanish,espagnol
|
| 159 |
+
spring,printemps
|
| 160 |
+
states,unis
|
| 161 |
+
store,épicerie
|
| 162 |
+
strawberries,fraises
|
| 163 |
+
strawberry,fraise
|
| 164 |
+
summer,été
|
| 165 |
+
t,pourquoi
|
| 166 |
+
that,cette
|
| 167 |
+
the,fruit
|
| 168 |
+
their,leur
|
| 169 |
+
they,ils
|
| 170 |
+
think,entre
|
| 171 |
+
thinks,pense
|
| 172 |
+
this,animal
|
| 173 |
+
to,prochain
|
| 174 |
+
tower,eiffel
|
| 175 |
+
translate,traduire
|
| 176 |
+
translating,traduction
|
| 177 |
+
truck,camion
|
| 178 |
+
united,unis
|
| 179 |
+
usually,généralement
|
| 180 |
+
visit,visiter
|
| 181 |
+
want,veulent
|
| 182 |
+
wanted,voulait
|
| 183 |
+
wants,veut
|
| 184 |
+
warm,chaud
|
| 185 |
+
was,était
|
| 186 |
+
we,nous
|
| 187 |
+
weather,temps
|
| 188 |
+
went,dernier
|
| 189 |
+
were,étaient
|
| 190 |
+
wet,humide
|
| 191 |
+
when,quand
|
| 192 |
+
where,où
|
| 193 |
+
white,blanche
|
| 194 |
+
why,pourquoi
|
| 195 |
+
winter,hiver
|
| 196 |
+
wonderful,merveilleux
|
| 197 |
+
would,voudrait
|
| 198 |
+
yellow,jaune
|
| 199 |
+
you,vous
|
| 200 |
+
your,votre
|
data/dict_knn_cosine_fr_en
ADDED
|
@@ -0,0 +1,331 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Francais,Anglais
|
| 2 |
+
a,drove
|
| 3 |
+
agréable,pleasant
|
| 4 |
+
aimait,disliked
|
| 5 |
+
aime,likes
|
| 6 |
+
aiment,they
|
| 7 |
+
aimeraient,would
|
| 8 |
+
aimez,you
|
| 9 |
+
aimons,we
|
| 10 |
+
aimé,loved
|
| 11 |
+
aimée,loved
|
| 12 |
+
aimés,animals
|
| 13 |
+
aller,go
|
| 14 |
+
allez,going
|
| 15 |
+
allions,lake
|
| 16 |
+
allons,aren
|
| 17 |
+
allé,went
|
| 18 |
+
allée,went
|
| 19 |
+
allés,went
|
| 20 |
+
amusant,fun
|
| 21 |
+
anglais,english
|
| 22 |
+
animal,animal
|
| 23 |
+
animaux,animals
|
| 24 |
+
août,august
|
| 25 |
+
apprécié,apple
|
| 26 |
+
as,have
|
| 27 |
+
at,did
|
| 28 |
+
au,spring
|
| 29 |
+
automne,fall
|
| 30 |
+
automobile,automobile
|
| 31 |
+
aux,to
|
| 32 |
+
avez,have
|
| 33 |
+
avons,did
|
| 34 |
+
avril,april
|
| 35 |
+
banane,banana
|
| 36 |
+
bananes,bananas
|
| 37 |
+
beau,beautiful
|
| 38 |
+
belle,beautiful
|
| 39 |
+
bien,nice
|
| 40 |
+
blanc,white
|
| 41 |
+
blanche,white
|
| 42 |
+
bleu,blue
|
| 43 |
+
bleue,blue
|
| 44 |
+
brillant,shiny
|
| 45 |
+
brillante,shiny
|
| 46 |
+
bénigne,mild
|
| 47 |
+
c,fun
|
| 48 |
+
california,california
|
| 49 |
+
californie,california
|
| 50 |
+
calme,quiet
|
| 51 |
+
camion,truck
|
| 52 |
+
ce,this
|
| 53 |
+
cet,bird
|
| 54 |
+
cette,that
|
| 55 |
+
chat,cat
|
| 56 |
+
chats,cats
|
| 57 |
+
chaud,warm
|
| 58 |
+
chaude,hot
|
| 59 |
+
chaux,lime
|
| 60 |
+
cher,loved
|
| 61 |
+
cheval,horse
|
| 62 |
+
chevaux,horses
|
| 63 |
+
chien,dog
|
| 64 |
+
chiens,dogs
|
| 65 |
+
chine,china
|
| 66 |
+
chinois,chinese
|
| 67 |
+
citron,lemon
|
| 68 |
+
citrons,lemons
|
| 69 |
+
clémentes,mild
|
| 70 |
+
comme,does
|
| 71 |
+
comment,how
|
| 72 |
+
conduisait,driving
|
| 73 |
+
conduit,drove
|
| 74 |
+
conduite,driving
|
| 75 |
+
congélation,freezing
|
| 76 |
+
cours,autumn
|
| 77 |
+
cépage,grape
|
| 78 |
+
d,august
|
| 79 |
+
dans,weather
|
| 80 |
+
de,in
|
| 81 |
+
dernier,last
|
| 82 |
+
dernière,wanted
|
| 83 |
+
des,liked
|
| 84 |
+
difficile,difficult
|
| 85 |
+
douce,mild
|
| 86 |
+
doux,mild
|
| 87 |
+
du,spring
|
| 88 |
+
durant,dry
|
| 89 |
+
décembre,december
|
| 90 |
+
détend,relaxing
|
| 91 |
+
détendre,relaxing
|
| 92 |
+
détestait,disliked
|
| 93 |
+
déteste,dislikes
|
| 94 |
+
détestez,you
|
| 95 |
+
détestons,we
|
| 96 |
+
eiffel,eiffel
|
| 97 |
+
elle,she
|
| 98 |
+
en,in
|
| 99 |
+
enneigé,snowy
|
| 100 |
+
enneigée,snowy
|
| 101 |
+
entre,between
|
| 102 |
+
envisage,plans
|
| 103 |
+
envisagent,plan
|
| 104 |
+
es,have
|
| 105 |
+
espagnol,spanish
|
| 106 |
+
est,is
|
| 107 |
+
et,and
|
| 108 |
+
etats,going
|
| 109 |
+
facile,easy
|
| 110 |
+
faire,would
|
| 111 |
+
fait,cold
|
| 112 |
+
favori,favorite
|
| 113 |
+
favoris,lions
|
| 114 |
+
football,field
|
| 115 |
+
frais,chilly
|
| 116 |
+
fraise,strawberry
|
| 117 |
+
fraises,strawberries
|
| 118 |
+
france,france
|
| 119 |
+
français,french
|
| 120 |
+
frisquet,chilly
|
| 121 |
+
froid,cold
|
| 122 |
+
fruit,fruit
|
| 123 |
+
fruits,liked
|
| 124 |
+
février,february
|
| 125 |
+
gel,freezing
|
| 126 |
+
gelé,freezing
|
| 127 |
+
gelés,freezing
|
| 128 |
+
glaciales,freezing
|
| 129 |
+
grand,big
|
| 130 |
+
grande,big
|
| 131 |
+
grandes,big
|
| 132 |
+
grands,big
|
| 133 |
+
gros,big
|
| 134 |
+
grosse,big
|
| 135 |
+
grosses,big
|
| 136 |
+
gèle,freezing
|
| 137 |
+
généralement,usually
|
| 138 |
+
habituellement,usually
|
| 139 |
+
hiver,winter
|
| 140 |
+
humide,wet
|
| 141 |
+
i,i
|
| 142 |
+
il,it
|
| 143 |
+
ils,they
|
| 144 |
+
inde,india
|
| 145 |
+
intention,plan
|
| 146 |
+
j,i
|
| 147 |
+
jamais,never
|
| 148 |
+
janvier,january
|
| 149 |
+
jaune,yellow
|
| 150 |
+
je,i
|
| 151 |
+
jersey,jersey
|
| 152 |
+
juillet,july
|
| 153 |
+
juin,june
|
| 154 |
+
l,it
|
| 155 |
+
la,fruit
|
| 156 |
+
lac,lake
|
| 157 |
+
lapin,rabbit
|
| 158 |
+
lapins,rabbits
|
| 159 |
+
le,fruit
|
| 160 |
+
les,and
|
| 161 |
+
leur,their
|
| 162 |
+
leurs,their
|
| 163 |
+
limes,lemons
|
| 164 |
+
lion,lion
|
| 165 |
+
lions,lions
|
| 166 |
+
lui,her
|
| 167 |
+
légère,mild
|
| 168 |
+
magnifique,wonderful
|
| 169 |
+
mai,may
|
| 170 |
+
maillot,visit
|
| 171 |
+
mais,but
|
| 172 |
+
mangue,mango
|
| 173 |
+
mangues,mangoes
|
| 174 |
+
manguiers,mangoes
|
| 175 |
+
mars,march
|
| 176 |
+
merveilleux,wonderful
|
| 177 |
+
mes,animals
|
| 178 |
+
moindres,animals
|
| 179 |
+
moins,least
|
| 180 |
+
mois,august
|
| 181 |
+
mon,my
|
| 182 |
+
monde,busy
|
| 183 |
+
moteur,red
|
| 184 |
+
mouillé,wet
|
| 185 |
+
mouillée,wet
|
| 186 |
+
n,dislike
|
| 187 |
+
ne,cold
|
| 188 |
+
neige,snowy
|
| 189 |
+
neigeux,snowy
|
| 190 |
+
new,jersey
|
| 191 |
+
noir,black
|
| 192 |
+
noire,black
|
| 193 |
+
nos,loved
|
| 194 |
+
notre,our
|
| 195 |
+
nous,we
|
| 196 |
+
nouveau,truck
|
| 197 |
+
nouvelle,automobile
|
| 198 |
+
novembre,november
|
| 199 |
+
occupé,busy
|
| 200 |
+
occupée,busy
|
| 201 |
+
octobre,october
|
| 202 |
+
oiseau,bird
|
| 203 |
+
oiseaux,birds
|
| 204 |
+
ont,plan
|
| 205 |
+
orange,orange
|
| 206 |
+
oranges,oranges
|
| 207 |
+
ours,bear
|
| 208 |
+
où,where
|
| 209 |
+
pamplemousse,grapefruit
|
| 210 |
+
pamplemousses,grapefruit
|
| 211 |
+
parfois,sometimes
|
| 212 |
+
paris,paris
|
| 213 |
+
pas,dislike
|
| 214 |
+
pendant,winter
|
| 215 |
+
pense,thinks
|
| 216 |
+
pensez,do
|
| 217 |
+
petit,little
|
| 218 |
+
petite,little
|
| 219 |
+
petites,little
|
| 220 |
+
petits,little
|
| 221 |
+
peu,little
|
| 222 |
+
plaît,we
|
| 223 |
+
pleut,rainy
|
| 224 |
+
pluie,rainy
|
| 225 |
+
pluies,rainy
|
| 226 |
+
plus,most
|
| 227 |
+
pluvieux,rainy
|
| 228 |
+
poire,pear
|
| 229 |
+
poires,pears
|
| 230 |
+
pomme,apple
|
| 231 |
+
pommes,apples
|
| 232 |
+
porcelaine,would
|
| 233 |
+
portugais,portuguese
|
| 234 |
+
pourquoi,why
|
| 235 |
+
pourraient,might
|
| 236 |
+
pourrait,might
|
| 237 |
+
pousse,drives
|
| 238 |
+
printemps,spring
|
| 239 |
+
prochain,next
|
| 240 |
+
proches,mice
|
| 241 |
+
préféré,favorite
|
| 242 |
+
préférée,least
|
| 243 |
+
préférées,mice
|
| 244 |
+
préférés,animals
|
| 245 |
+
prévoient,plan
|
| 246 |
+
prévois,plan
|
| 247 |
+
prévoit,plans
|
| 248 |
+
prévoyons,plan
|
| 249 |
+
pêche,peach
|
| 250 |
+
pêches,peaches
|
| 251 |
+
qu,translate
|
| 252 |
+
quand,when
|
| 253 |
+
que,translating
|
| 254 |
+
qui,rusty
|
| 255 |
+
raisin,grape
|
| 256 |
+
raisins,grapes
|
| 257 |
+
redouté,feared
|
| 258 |
+
redoutée,bears
|
| 259 |
+
redoutés,animals
|
| 260 |
+
relaxant,relaxing
|
| 261 |
+
rendre,plans
|
| 262 |
+
requin,shark
|
| 263 |
+
requins,sharks
|
| 264 |
+
ressort,wet
|
| 265 |
+
rouge,red
|
| 266 |
+
rouille,rusty
|
| 267 |
+
rouillé,rusty
|
| 268 |
+
rouillée,rusty
|
| 269 |
+
se,plans
|
| 270 |
+
sec,dry
|
| 271 |
+
septembre,september
|
| 272 |
+
serpent,snake
|
| 273 |
+
serpents,snakes
|
| 274 |
+
ses,animals
|
| 275 |
+
singe,monkey
|
| 276 |
+
singes,monkeys
|
| 277 |
+
son,his
|
| 278 |
+
sont,are
|
| 279 |
+
souris,mouse
|
| 280 |
+
souvent,busy
|
| 281 |
+
sur,field
|
| 282 |
+
sèche,dry
|
| 283 |
+
t,does
|
| 284 |
+
temps,weather
|
| 285 |
+
terrain,field
|
| 286 |
+
tour,eiffel
|
| 287 |
+
tout,does
|
| 288 |
+
traduction,translating
|
| 289 |
+
traduire,translate
|
| 290 |
+
traduis,think
|
| 291 |
+
tranquille,quiet
|
| 292 |
+
trop,busy
|
| 293 |
+
trouvé,did
|
| 294 |
+
tu,have
|
| 295 |
+
un,a
|
| 296 |
+
une,a
|
| 297 |
+
unis,states
|
| 298 |
+
va,going
|
| 299 |
+
vais,am
|
| 300 |
+
vers,translate
|
| 301 |
+
vert,green
|
| 302 |
+
verte,green
|
| 303 |
+
verts,limes
|
| 304 |
+
veulent,want
|
| 305 |
+
veut,wants
|
| 306 |
+
vieille,old
|
| 307 |
+
vieux,old
|
| 308 |
+
visite,how
|
| 309 |
+
visiter,visit
|
| 310 |
+
vit,saw
|
| 311 |
+
voiture,car
|
| 312 |
+
volant,driving
|
| 313 |
+
vont,going
|
| 314 |
+
vos,animals
|
| 315 |
+
votre,your
|
| 316 |
+
voudrait,would
|
| 317 |
+
voulaient,wanted
|
| 318 |
+
voulait,wanted
|
| 319 |
+
voulez,would
|
| 320 |
+
vous,you
|
| 321 |
+
vu,saw
|
| 322 |
+
à,fall
|
| 323 |
+
école,school
|
| 324 |
+
éléphant,elephant
|
| 325 |
+
éléphants,elephants
|
| 326 |
+
épicerie,grocery
|
| 327 |
+
étaient,were
|
| 328 |
+
était,was
|
| 329 |
+
états,states
|
| 330 |
+
été,summer
|
| 331 |
+
êtes,did
|
data/dict_knn_euclidean_en_fr
ADDED
|
@@ -0,0 +1,200 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Anglais,Francais
|
| 2 |
+
a,une
|
| 3 |
+
am,vais
|
| 4 |
+
and,et
|
| 5 |
+
animal,animal
|
| 6 |
+
animals,animaux
|
| 7 |
+
apple,pomme
|
| 8 |
+
apples,pommes
|
| 9 |
+
april,avril
|
| 10 |
+
are,sont
|
| 11 |
+
aren,allions
|
| 12 |
+
august,août
|
| 13 |
+
automobile,automobile
|
| 14 |
+
autumn,automne
|
| 15 |
+
banana,banane
|
| 16 |
+
bananas,bananes
|
| 17 |
+
bear,ours
|
| 18 |
+
bears,redoutée
|
| 19 |
+
beautiful,beau
|
| 20 |
+
been,tu
|
| 21 |
+
between,entre
|
| 22 |
+
big,grande
|
| 23 |
+
bird,oiseau
|
| 24 |
+
birds,oiseaux
|
| 25 |
+
black,noire
|
| 26 |
+
blue,bleue
|
| 27 |
+
busy,occupé
|
| 28 |
+
but,mais
|
| 29 |
+
california,californie
|
| 30 |
+
car,voiture
|
| 31 |
+
cat,chat
|
| 32 |
+
cats,chats
|
| 33 |
+
chilly,frisquet
|
| 34 |
+
china,chine
|
| 35 |
+
chinese,chinois
|
| 36 |
+
cold,fait
|
| 37 |
+
december,décembre
|
| 38 |
+
did,êtes
|
| 39 |
+
didn,allions
|
| 40 |
+
difficult,difficile
|
| 41 |
+
dislike,détestons
|
| 42 |
+
disliked,détestait
|
| 43 |
+
dislikes,déteste
|
| 44 |
+
do,pensez
|
| 45 |
+
does,t
|
| 46 |
+
dog,chien
|
| 47 |
+
dogs,chiens
|
| 48 |
+
drives,pousse
|
| 49 |
+
driving,conduisait
|
| 50 |
+
drove,allions
|
| 51 |
+
dry,sec
|
| 52 |
+
during,en
|
| 53 |
+
easy,facile
|
| 54 |
+
eiffel,eiffel
|
| 55 |
+
elephant,éléphant
|
| 56 |
+
elephants,éléphants
|
| 57 |
+
english,anglais
|
| 58 |
+
fall,à
|
| 59 |
+
favorite,préféré
|
| 60 |
+
feared,redouté
|
| 61 |
+
february,février
|
| 62 |
+
field,football
|
| 63 |
+
football,football
|
| 64 |
+
france,france
|
| 65 |
+
freezing,gel
|
| 66 |
+
french,français
|
| 67 |
+
fruit,fruit
|
| 68 |
+
fun,amusant
|
| 69 |
+
go,aller
|
| 70 |
+
going,va
|
| 71 |
+
grape,raisin
|
| 72 |
+
grapefruit,pamplemousse
|
| 73 |
+
grapes,raisins
|
| 74 |
+
green,verte
|
| 75 |
+
grocery,épicerie
|
| 76 |
+
has,allions
|
| 77 |
+
have,tu
|
| 78 |
+
he,allé
|
| 79 |
+
her,son
|
| 80 |
+
his,son
|
| 81 |
+
horse,cheval
|
| 82 |
+
horses,chevaux
|
| 83 |
+
hot,chaude
|
| 84 |
+
how,comment
|
| 85 |
+
i,je
|
| 86 |
+
in,en
|
| 87 |
+
india,inde
|
| 88 |
+
is,est
|
| 89 |
+
it,en
|
| 90 |
+
january,janvier
|
| 91 |
+
jersey,jersey
|
| 92 |
+
july,juillet
|
| 93 |
+
june,juin
|
| 94 |
+
lake,lac
|
| 95 |
+
last,dernier
|
| 96 |
+
least,moins
|
| 97 |
+
lemon,citron
|
| 98 |
+
lemons,citrons
|
| 99 |
+
like,aimons
|
| 100 |
+
liked,fruits
|
| 101 |
+
likes,aime
|
| 102 |
+
lime,chaux
|
| 103 |
+
limes,verts
|
| 104 |
+
lion,lion
|
| 105 |
+
lions,lions
|
| 106 |
+
little,petite
|
| 107 |
+
loved,plus
|
| 108 |
+
mango,mangue
|
| 109 |
+
mangoes,mangues
|
| 110 |
+
march,mars
|
| 111 |
+
may,mai
|
| 112 |
+
mice,préférées
|
| 113 |
+
might,pourrait
|
| 114 |
+
mild,doux
|
| 115 |
+
monkey,singe
|
| 116 |
+
monkeys,singes
|
| 117 |
+
most,plus
|
| 118 |
+
mouse,souris
|
| 119 |
+
my,mon
|
| 120 |
+
never,jamais
|
| 121 |
+
new,new
|
| 122 |
+
next,prochain
|
| 123 |
+
nice,agréable
|
| 124 |
+
not,allions
|
| 125 |
+
november,novembre
|
| 126 |
+
october,octobre
|
| 127 |
+
old,vieille
|
| 128 |
+
orange,orange
|
| 129 |
+
oranges,oranges
|
| 130 |
+
our,notre
|
| 131 |
+
paris,paris
|
| 132 |
+
peach,pêche
|
| 133 |
+
peaches,pêches
|
| 134 |
+
pear,poire
|
| 135 |
+
pears,poires
|
| 136 |
+
plan,visiter
|
| 137 |
+
plans,envisage
|
| 138 |
+
pleasant,agréable
|
| 139 |
+
portuguese,portugais
|
| 140 |
+
quiet,calme
|
| 141 |
+
rabbit,lapin
|
| 142 |
+
rabbits,lapins
|
| 143 |
+
rainy,pluvieux
|
| 144 |
+
red,rouge
|
| 145 |
+
relaxing,relaxant
|
| 146 |
+
rusty,rouillée
|
| 147 |
+
saw,vu
|
| 148 |
+
school,école
|
| 149 |
+
september,septembre
|
| 150 |
+
shark,requin
|
| 151 |
+
sharks,requins
|
| 152 |
+
she,elle
|
| 153 |
+
shiny,brillant
|
| 154 |
+
snake,serpent
|
| 155 |
+
snakes,serpents
|
| 156 |
+
snowy,enneigée
|
| 157 |
+
sometimes,parfois
|
| 158 |
+
spanish,espagnol
|
| 159 |
+
spring,printemps
|
| 160 |
+
states,unis
|
| 161 |
+
store,épicerie
|
| 162 |
+
strawberries,fraises
|
| 163 |
+
strawberry,fraise
|
| 164 |
+
summer,été
|
| 165 |
+
t,allions
|
| 166 |
+
that,cette
|
| 167 |
+
the,fruit
|
| 168 |
+
their,leur
|
| 169 |
+
they,ils
|
| 170 |
+
think,pensez
|
| 171 |
+
thinks,pense
|
| 172 |
+
this,cet
|
| 173 |
+
to,prochain
|
| 174 |
+
tower,eiffel
|
| 175 |
+
translate,traduire
|
| 176 |
+
translating,traduction
|
| 177 |
+
truck,camion
|
| 178 |
+
united,unis
|
| 179 |
+
usually,généralement
|
| 180 |
+
visit,visiter
|
| 181 |
+
want,veulent
|
| 182 |
+
wanted,voulait
|
| 183 |
+
wants,veut
|
| 184 |
+
warm,chaud
|
| 185 |
+
was,était
|
| 186 |
+
we,nous
|
| 187 |
+
weather,temps
|
| 188 |
+
went,allée
|
| 189 |
+
were,étaient
|
| 190 |
+
wet,humide
|
| 191 |
+
when,quand
|
| 192 |
+
where,où
|
| 193 |
+
white,blanche
|
| 194 |
+
why,pourquoi
|
| 195 |
+
winter,hiver
|
| 196 |
+
wonderful,merveilleux
|
| 197 |
+
would,voudrait
|
| 198 |
+
yellow,jaune
|
| 199 |
+
you,vous
|
| 200 |
+
your,votre
|
data/dict_knn_euclidean_fr_en
ADDED
|
@@ -0,0 +1,331 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Francais,Anglais
|
| 2 |
+
a,saw
|
| 3 |
+
agréable,nice
|
| 4 |
+
aimait,disliked
|
| 5 |
+
aime,likes
|
| 6 |
+
aiment,they
|
| 7 |
+
aimeraient,where
|
| 8 |
+
aimez,you
|
| 9 |
+
aimons,we
|
| 10 |
+
aimé,loved
|
| 11 |
+
aimée,where
|
| 12 |
+
aimés,bears
|
| 13 |
+
aller,go
|
| 14 |
+
allez,where
|
| 15 |
+
allions,where
|
| 16 |
+
allons,aren
|
| 17 |
+
allé,went
|
| 18 |
+
allée,went
|
| 19 |
+
allés,went
|
| 20 |
+
amusant,fun
|
| 21 |
+
anglais,english
|
| 22 |
+
animal,animal
|
| 23 |
+
animaux,animals
|
| 24 |
+
août,august
|
| 25 |
+
apprécié,where
|
| 26 |
+
as,where
|
| 27 |
+
at,does
|
| 28 |
+
au,spring
|
| 29 |
+
automne,fall
|
| 30 |
+
automobile,where
|
| 31 |
+
aux,have
|
| 32 |
+
avez,have
|
| 33 |
+
avons,where
|
| 34 |
+
avril,april
|
| 35 |
+
banane,banana
|
| 36 |
+
bananes,bananas
|
| 37 |
+
beau,beautiful
|
| 38 |
+
belle,beautiful
|
| 39 |
+
bien,where
|
| 40 |
+
blanc,white
|
| 41 |
+
blanche,white
|
| 42 |
+
bleu,blue
|
| 43 |
+
bleue,blue
|
| 44 |
+
brillant,shiny
|
| 45 |
+
brillante,shiny
|
| 46 |
+
bénigne,where
|
| 47 |
+
c,where
|
| 48 |
+
california,have
|
| 49 |
+
californie,california
|
| 50 |
+
calme,quiet
|
| 51 |
+
camion,truck
|
| 52 |
+
ce,this
|
| 53 |
+
cet,bird
|
| 54 |
+
cette,car
|
| 55 |
+
chat,cat
|
| 56 |
+
chats,cats
|
| 57 |
+
chaud,warm
|
| 58 |
+
chaude,where
|
| 59 |
+
chaux,lime
|
| 60 |
+
cher,where
|
| 61 |
+
cheval,horse
|
| 62 |
+
chevaux,horses
|
| 63 |
+
chien,dog
|
| 64 |
+
chiens,dogs
|
| 65 |
+
chine,china
|
| 66 |
+
chinois,chinese
|
| 67 |
+
citron,lemon
|
| 68 |
+
citrons,limes
|
| 69 |
+
clémentes,where
|
| 70 |
+
comme,does
|
| 71 |
+
comment,how
|
| 72 |
+
conduisait,driving
|
| 73 |
+
conduit,drives
|
| 74 |
+
conduite,where
|
| 75 |
+
congélation,where
|
| 76 |
+
cours,where
|
| 77 |
+
cépage,where
|
| 78 |
+
d,august
|
| 79 |
+
dans,weather
|
| 80 |
+
de,visit
|
| 81 |
+
dernier,last
|
| 82 |
+
dernière,where
|
| 83 |
+
des,horses
|
| 84 |
+
difficile,difficult
|
| 85 |
+
douce,where
|
| 86 |
+
doux,mild
|
| 87 |
+
du,where
|
| 88 |
+
durant,where
|
| 89 |
+
décembre,december
|
| 90 |
+
détend,where
|
| 91 |
+
détendre,where
|
| 92 |
+
détestait,where
|
| 93 |
+
déteste,dislikes
|
| 94 |
+
détestez,where
|
| 95 |
+
détestons,we
|
| 96 |
+
eiffel,eiffel
|
| 97 |
+
elle,she
|
| 98 |
+
en,in
|
| 99 |
+
enneigé,where
|
| 100 |
+
enneigée,snowy
|
| 101 |
+
entre,between
|
| 102 |
+
envisage,plans
|
| 103 |
+
envisagent,where
|
| 104 |
+
es,where
|
| 105 |
+
espagnol,spanish
|
| 106 |
+
est,is
|
| 107 |
+
et,and
|
| 108 |
+
etats,where
|
| 109 |
+
facile,easy
|
| 110 |
+
faire,where
|
| 111 |
+
fait,cold
|
| 112 |
+
favori,where
|
| 113 |
+
favoris,where
|
| 114 |
+
football,football
|
| 115 |
+
frais,where
|
| 116 |
+
fraise,strawberry
|
| 117 |
+
fraises,strawberries
|
| 118 |
+
france,france
|
| 119 |
+
français,french
|
| 120 |
+
frisquet,where
|
| 121 |
+
froid,chilly
|
| 122 |
+
fruit,fruit
|
| 123 |
+
fruits,liked
|
| 124 |
+
février,february
|
| 125 |
+
gel,freezing
|
| 126 |
+
gelé,where
|
| 127 |
+
gelés,where
|
| 128 |
+
glaciales,where
|
| 129 |
+
grand,where
|
| 130 |
+
grande,big
|
| 131 |
+
grandes,where
|
| 132 |
+
grands,where
|
| 133 |
+
gros,big
|
| 134 |
+
grosse,where
|
| 135 |
+
grosses,where
|
| 136 |
+
gèle,freezing
|
| 137 |
+
généralement,usually
|
| 138 |
+
habituellement,where
|
| 139 |
+
hiver,winter
|
| 140 |
+
humide,wet
|
| 141 |
+
i,where
|
| 142 |
+
il,it
|
| 143 |
+
ils,they
|
| 144 |
+
inde,india
|
| 145 |
+
intention,where
|
| 146 |
+
j,where
|
| 147 |
+
jamais,never
|
| 148 |
+
janvier,january
|
| 149 |
+
jaune,yellow
|
| 150 |
+
je,i
|
| 151 |
+
jersey,jersey
|
| 152 |
+
juillet,july
|
| 153 |
+
juin,june
|
| 154 |
+
l,fall
|
| 155 |
+
la,fruit
|
| 156 |
+
lac,lake
|
| 157 |
+
lapin,rabbit
|
| 158 |
+
lapins,rabbits
|
| 159 |
+
le,most
|
| 160 |
+
les,and
|
| 161 |
+
leur,their
|
| 162 |
+
leurs,where
|
| 163 |
+
limes,where
|
| 164 |
+
lion,lion
|
| 165 |
+
lions,lions
|
| 166 |
+
lui,where
|
| 167 |
+
légère,where
|
| 168 |
+
magnifique,where
|
| 169 |
+
mai,may
|
| 170 |
+
maillot,have
|
| 171 |
+
mais,but
|
| 172 |
+
mangue,mango
|
| 173 |
+
mangues,mangoes
|
| 174 |
+
manguiers,where
|
| 175 |
+
mars,march
|
| 176 |
+
merveilleux,wonderful
|
| 177 |
+
mes,bears
|
| 178 |
+
moindres,where
|
| 179 |
+
moins,least
|
| 180 |
+
mois,august
|
| 181 |
+
mon,my
|
| 182 |
+
monde,where
|
| 183 |
+
moteur,where
|
| 184 |
+
mouillé,where
|
| 185 |
+
mouillée,where
|
| 186 |
+
n,dislike
|
| 187 |
+
ne,t
|
| 188 |
+
neige,snowy
|
| 189 |
+
neigeux,have
|
| 190 |
+
new,new
|
| 191 |
+
noir,black
|
| 192 |
+
noire,black
|
| 193 |
+
nos,where
|
| 194 |
+
notre,our
|
| 195 |
+
nous,we
|
| 196 |
+
nouveau,have
|
| 197 |
+
nouvelle,where
|
| 198 |
+
novembre,november
|
| 199 |
+
occupé,busy
|
| 200 |
+
occupée,where
|
| 201 |
+
octobre,october
|
| 202 |
+
oiseau,bird
|
| 203 |
+
oiseaux,birds
|
| 204 |
+
ont,plan
|
| 205 |
+
orange,orange
|
| 206 |
+
oranges,oranges
|
| 207 |
+
ours,bear
|
| 208 |
+
où,where
|
| 209 |
+
pamplemousse,grapefruit
|
| 210 |
+
pamplemousses,where
|
| 211 |
+
parfois,sometimes
|
| 212 |
+
paris,paris
|
| 213 |
+
pas,disliked
|
| 214 |
+
pendant,winter
|
| 215 |
+
pense,thinks
|
| 216 |
+
pensez,do
|
| 217 |
+
petit,little
|
| 218 |
+
petite,little
|
| 219 |
+
petites,where
|
| 220 |
+
petits,where
|
| 221 |
+
peu,where
|
| 222 |
+
plaît,where
|
| 223 |
+
pleut,where
|
| 224 |
+
pluie,where
|
| 225 |
+
pluies,where
|
| 226 |
+
plus,most
|
| 227 |
+
pluvieux,rainy
|
| 228 |
+
poire,pear
|
| 229 |
+
poires,pears
|
| 230 |
+
pomme,apple
|
| 231 |
+
pommes,apples
|
| 232 |
+
porcelaine,where
|
| 233 |
+
portugais,portuguese
|
| 234 |
+
pourquoi,why
|
| 235 |
+
pourraient,might
|
| 236 |
+
pourrait,might
|
| 237 |
+
pousse,where
|
| 238 |
+
printemps,spring
|
| 239 |
+
prochain,next
|
| 240 |
+
proches,where
|
| 241 |
+
préféré,favorite
|
| 242 |
+
préférée,where
|
| 243 |
+
préférées,where
|
| 244 |
+
préférés,animals
|
| 245 |
+
prévoient,where
|
| 246 |
+
prévois,plan
|
| 247 |
+
prévoit,where
|
| 248 |
+
prévoyons,plan
|
| 249 |
+
pêche,peach
|
| 250 |
+
pêches,peaches
|
| 251 |
+
qu,translate
|
| 252 |
+
quand,when
|
| 253 |
+
que,translating
|
| 254 |
+
qui,where
|
| 255 |
+
raisin,grape
|
| 256 |
+
raisins,grapes
|
| 257 |
+
redouté,feared
|
| 258 |
+
redoutée,where
|
| 259 |
+
redoutés,feared
|
| 260 |
+
relaxant,relaxing
|
| 261 |
+
rendre,plans
|
| 262 |
+
requin,shark
|
| 263 |
+
requins,sharks
|
| 264 |
+
ressort,where
|
| 265 |
+
rouge,red
|
| 266 |
+
rouille,where
|
| 267 |
+
rouillé,rusty
|
| 268 |
+
rouillée,rusty
|
| 269 |
+
se,plans
|
| 270 |
+
sec,dry
|
| 271 |
+
septembre,september
|
| 272 |
+
serpent,snake
|
| 273 |
+
serpents,snakes
|
| 274 |
+
ses,animals
|
| 275 |
+
singe,monkey
|
| 276 |
+
singes,monkeys
|
| 277 |
+
son,his
|
| 278 |
+
sont,are
|
| 279 |
+
souris,mouse
|
| 280 |
+
souvent,where
|
| 281 |
+
sur,football
|
| 282 |
+
sèche,where
|
| 283 |
+
t,does
|
| 284 |
+
temps,weather
|
| 285 |
+
terrain,football
|
| 286 |
+
tour,eiffel
|
| 287 |
+
tout,where
|
| 288 |
+
traduction,translating
|
| 289 |
+
traduire,translate
|
| 290 |
+
traduis,where
|
| 291 |
+
tranquille,where
|
| 292 |
+
trop,where
|
| 293 |
+
trouvé,where
|
| 294 |
+
tu,have
|
| 295 |
+
un,a
|
| 296 |
+
une,a
|
| 297 |
+
unis,states
|
| 298 |
+
va,when
|
| 299 |
+
vais,am
|
| 300 |
+
vers,have
|
| 301 |
+
vert,green
|
| 302 |
+
verte,green
|
| 303 |
+
verts,limes
|
| 304 |
+
veulent,want
|
| 305 |
+
veut,wants
|
| 306 |
+
vieille,old
|
| 307 |
+
vieux,where
|
| 308 |
+
visite,how
|
| 309 |
+
visiter,visit
|
| 310 |
+
vit,where
|
| 311 |
+
voiture,car
|
| 312 |
+
volant,where
|
| 313 |
+
vont,where
|
| 314 |
+
vos,dogs
|
| 315 |
+
votre,your
|
| 316 |
+
voudrait,would
|
| 317 |
+
voulaient,wanted
|
| 318 |
+
voulait,wanted
|
| 319 |
+
voulez,would
|
| 320 |
+
vous,you
|
| 321 |
+
vu,saw
|
| 322 |
+
à,fall
|
| 323 |
+
école,school
|
| 324 |
+
éléphant,elephant
|
| 325 |
+
éléphants,elephants
|
| 326 |
+
épicerie,store
|
| 327 |
+
étaient,were
|
| 328 |
+
était,was
|
| 329 |
+
états,states
|
| 330 |
+
été,summer
|
| 331 |
+
êtes,where
|
data/dict_knn_manhattan_en_fr
ADDED
|
@@ -0,0 +1,200 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Anglais,Francais
|
| 2 |
+
a,une
|
| 3 |
+
am,vais
|
| 4 |
+
and,et
|
| 5 |
+
animal,animal
|
| 6 |
+
animals,animaux
|
| 7 |
+
apple,pomme
|
| 8 |
+
apples,pommes
|
| 9 |
+
april,avril
|
| 10 |
+
are,sont
|
| 11 |
+
aren,allions
|
| 12 |
+
august,août
|
| 13 |
+
automobile,automobile
|
| 14 |
+
autumn,automne
|
| 15 |
+
banana,banane
|
| 16 |
+
bananas,bananes
|
| 17 |
+
bear,ours
|
| 18 |
+
bears,redoutée
|
| 19 |
+
beautiful,beau
|
| 20 |
+
been,tu
|
| 21 |
+
between,entre
|
| 22 |
+
big,grande
|
| 23 |
+
bird,oiseau
|
| 24 |
+
birds,oiseaux
|
| 25 |
+
black,noire
|
| 26 |
+
blue,bleue
|
| 27 |
+
busy,occupé
|
| 28 |
+
but,mais
|
| 29 |
+
california,californie
|
| 30 |
+
car,voiture
|
| 31 |
+
cat,chat
|
| 32 |
+
cats,chats
|
| 33 |
+
chilly,frisquet
|
| 34 |
+
china,chine
|
| 35 |
+
chinese,chinois
|
| 36 |
+
cold,fait
|
| 37 |
+
december,décembre
|
| 38 |
+
did,êtes
|
| 39 |
+
didn,allions
|
| 40 |
+
difficult,difficile
|
| 41 |
+
dislike,détestons
|
| 42 |
+
disliked,détestait
|
| 43 |
+
dislikes,déteste
|
| 44 |
+
do,pensez
|
| 45 |
+
does,t
|
| 46 |
+
dog,chien
|
| 47 |
+
dogs,chiens
|
| 48 |
+
drives,pousse
|
| 49 |
+
driving,conduisait
|
| 50 |
+
drove,allions
|
| 51 |
+
dry,sec
|
| 52 |
+
during,en
|
| 53 |
+
easy,facile
|
| 54 |
+
eiffel,eiffel
|
| 55 |
+
elephant,éléphant
|
| 56 |
+
elephants,éléphants
|
| 57 |
+
english,anglais
|
| 58 |
+
fall,à
|
| 59 |
+
favorite,préféré
|
| 60 |
+
feared,redouté
|
| 61 |
+
february,février
|
| 62 |
+
field,football
|
| 63 |
+
football,football
|
| 64 |
+
france,france
|
| 65 |
+
freezing,gel
|
| 66 |
+
french,français
|
| 67 |
+
fruit,fruit
|
| 68 |
+
fun,amusant
|
| 69 |
+
go,aller
|
| 70 |
+
going,va
|
| 71 |
+
grape,raisin
|
| 72 |
+
grapefruit,pamplemousse
|
| 73 |
+
grapes,raisins
|
| 74 |
+
green,verte
|
| 75 |
+
grocery,épicerie
|
| 76 |
+
has,allions
|
| 77 |
+
have,tu
|
| 78 |
+
he,allé
|
| 79 |
+
her,son
|
| 80 |
+
his,son
|
| 81 |
+
horse,cheval
|
| 82 |
+
horses,chevaux
|
| 83 |
+
hot,chaude
|
| 84 |
+
how,comment
|
| 85 |
+
i,je
|
| 86 |
+
in,en
|
| 87 |
+
india,inde
|
| 88 |
+
is,est
|
| 89 |
+
it,en
|
| 90 |
+
january,janvier
|
| 91 |
+
jersey,jersey
|
| 92 |
+
july,juillet
|
| 93 |
+
june,juin
|
| 94 |
+
lake,lac
|
| 95 |
+
last,dernier
|
| 96 |
+
least,moins
|
| 97 |
+
lemon,citron
|
| 98 |
+
lemons,citrons
|
| 99 |
+
like,aimons
|
| 100 |
+
liked,fruits
|
| 101 |
+
likes,aime
|
| 102 |
+
lime,chaux
|
| 103 |
+
limes,verts
|
| 104 |
+
lion,lion
|
| 105 |
+
lions,lions
|
| 106 |
+
little,petite
|
| 107 |
+
loved,plus
|
| 108 |
+
mango,mangue
|
| 109 |
+
mangoes,mangues
|
| 110 |
+
march,mars
|
| 111 |
+
may,mai
|
| 112 |
+
mice,préférées
|
| 113 |
+
might,pourrait
|
| 114 |
+
mild,doux
|
| 115 |
+
monkey,singe
|
| 116 |
+
monkeys,singes
|
| 117 |
+
most,plus
|
| 118 |
+
mouse,souris
|
| 119 |
+
my,mon
|
| 120 |
+
never,jamais
|
| 121 |
+
new,new
|
| 122 |
+
next,prochain
|
| 123 |
+
nice,agréable
|
| 124 |
+
not,allions
|
| 125 |
+
november,novembre
|
| 126 |
+
october,octobre
|
| 127 |
+
old,vieille
|
| 128 |
+
orange,orange
|
| 129 |
+
oranges,oranges
|
| 130 |
+
our,notre
|
| 131 |
+
paris,paris
|
| 132 |
+
peach,pêche
|
| 133 |
+
peaches,pêches
|
| 134 |
+
pear,poire
|
| 135 |
+
pears,poires
|
| 136 |
+
plan,visiter
|
| 137 |
+
plans,envisage
|
| 138 |
+
pleasant,agréable
|
| 139 |
+
portuguese,portugais
|
| 140 |
+
quiet,calme
|
| 141 |
+
rabbit,lapin
|
| 142 |
+
rabbits,lapins
|
| 143 |
+
rainy,pluvieux
|
| 144 |
+
red,rouge
|
| 145 |
+
relaxing,relaxant
|
| 146 |
+
rusty,rouillée
|
| 147 |
+
saw,vu
|
| 148 |
+
school,école
|
| 149 |
+
september,septembre
|
| 150 |
+
shark,requin
|
| 151 |
+
sharks,requins
|
| 152 |
+
she,elle
|
| 153 |
+
shiny,brillant
|
| 154 |
+
snake,serpent
|
| 155 |
+
snakes,serpents
|
| 156 |
+
snowy,enneigée
|
| 157 |
+
sometimes,parfois
|
| 158 |
+
spanish,espagnol
|
| 159 |
+
spring,printemps
|
| 160 |
+
states,unis
|
| 161 |
+
store,épicerie
|
| 162 |
+
strawberries,fraises
|
| 163 |
+
strawberry,fraise
|
| 164 |
+
summer,été
|
| 165 |
+
t,allions
|
| 166 |
+
that,cette
|
| 167 |
+
the,fruit
|
| 168 |
+
their,leur
|
| 169 |
+
they,ils
|
| 170 |
+
think,pensez
|
| 171 |
+
thinks,pense
|
| 172 |
+
this,cet
|
| 173 |
+
to,prochain
|
| 174 |
+
tower,eiffel
|
| 175 |
+
translate,traduire
|
| 176 |
+
translating,traduction
|
| 177 |
+
truck,camion
|
| 178 |
+
united,unis
|
| 179 |
+
usually,généralement
|
| 180 |
+
visit,visiter
|
| 181 |
+
want,veulent
|
| 182 |
+
wanted,voulait
|
| 183 |
+
wants,veut
|
| 184 |
+
warm,chaud
|
| 185 |
+
was,était
|
| 186 |
+
we,nous
|
| 187 |
+
weather,temps
|
| 188 |
+
went,allée
|
| 189 |
+
were,étaient
|
| 190 |
+
wet,humide
|
| 191 |
+
when,quand
|
| 192 |
+
where,où
|
| 193 |
+
white,blanche
|
| 194 |
+
why,pourquoi
|
| 195 |
+
winter,hiver
|
| 196 |
+
wonderful,merveilleux
|
| 197 |
+
would,voudrait
|
| 198 |
+
yellow,jaune
|
| 199 |
+
you,vous
|
| 200 |
+
your,votre
|
data/dict_knn_manhattan_fr_en
ADDED
|
@@ -0,0 +1,331 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Francais,Anglais
|
| 2 |
+
a,drove
|
| 3 |
+
agréable,pleasant
|
| 4 |
+
aimait,disliked
|
| 5 |
+
aime,likes
|
| 6 |
+
aiment,they
|
| 7 |
+
aimeraient,have
|
| 8 |
+
aimez,you
|
| 9 |
+
aimons,have
|
| 10 |
+
aimé,loved
|
| 11 |
+
aimée,have
|
| 12 |
+
aimés,have
|
| 13 |
+
aller,go
|
| 14 |
+
allez,have
|
| 15 |
+
allions,have
|
| 16 |
+
allons,have
|
| 17 |
+
allé,have
|
| 18 |
+
allée,have
|
| 19 |
+
allés,have
|
| 20 |
+
amusant,fun
|
| 21 |
+
anglais,english
|
| 22 |
+
animal,animal
|
| 23 |
+
animaux,animals
|
| 24 |
+
août,august
|
| 25 |
+
apprécié,have
|
| 26 |
+
as,have
|
| 27 |
+
at,have
|
| 28 |
+
au,spring
|
| 29 |
+
automne,fall
|
| 30 |
+
automobile,have
|
| 31 |
+
aux,have
|
| 32 |
+
avez,have
|
| 33 |
+
avons,have
|
| 34 |
+
avril,april
|
| 35 |
+
banane,banana
|
| 36 |
+
bananes,bananas
|
| 37 |
+
beau,beautiful
|
| 38 |
+
belle,have
|
| 39 |
+
bien,have
|
| 40 |
+
blanc,have
|
| 41 |
+
blanche,white
|
| 42 |
+
bleu,have
|
| 43 |
+
bleue,blue
|
| 44 |
+
brillant,shiny
|
| 45 |
+
brillante,have
|
| 46 |
+
bénigne,have
|
| 47 |
+
c,have
|
| 48 |
+
california,have
|
| 49 |
+
californie,california
|
| 50 |
+
calme,quiet
|
| 51 |
+
camion,truck
|
| 52 |
+
ce,this
|
| 53 |
+
cet,bird
|
| 54 |
+
cette,have
|
| 55 |
+
chat,cat
|
| 56 |
+
chats,cats
|
| 57 |
+
chaud,warm
|
| 58 |
+
chaude,have
|
| 59 |
+
chaux,lime
|
| 60 |
+
cher,have
|
| 61 |
+
cheval,horse
|
| 62 |
+
chevaux,horses
|
| 63 |
+
chien,dog
|
| 64 |
+
chiens,dogs
|
| 65 |
+
chine,china
|
| 66 |
+
chinois,chinese
|
| 67 |
+
citron,lemon
|
| 68 |
+
citrons,lemons
|
| 69 |
+
clémentes,have
|
| 70 |
+
comme,does
|
| 71 |
+
comment,how
|
| 72 |
+
conduisait,driving
|
| 73 |
+
conduit,drove
|
| 74 |
+
conduite,have
|
| 75 |
+
congélation,have
|
| 76 |
+
cours,have
|
| 77 |
+
cépage,have
|
| 78 |
+
d,august
|
| 79 |
+
dans,have
|
| 80 |
+
de,visit
|
| 81 |
+
dernier,last
|
| 82 |
+
dernière,have
|
| 83 |
+
des,monkeys
|
| 84 |
+
difficile,difficult
|
| 85 |
+
douce,have
|
| 86 |
+
doux,mild
|
| 87 |
+
du,have
|
| 88 |
+
durant,have
|
| 89 |
+
décembre,december
|
| 90 |
+
détend,have
|
| 91 |
+
détendre,have
|
| 92 |
+
détestait,have
|
| 93 |
+
déteste,dislikes
|
| 94 |
+
détestez,have
|
| 95 |
+
détestons,have
|
| 96 |
+
eiffel,eiffel
|
| 97 |
+
elle,she
|
| 98 |
+
en,in
|
| 99 |
+
enneigé,have
|
| 100 |
+
enneigée,have
|
| 101 |
+
entre,between
|
| 102 |
+
envisage,plans
|
| 103 |
+
envisagent,have
|
| 104 |
+
es,have
|
| 105 |
+
espagnol,spanish
|
| 106 |
+
est,is
|
| 107 |
+
et,and
|
| 108 |
+
etats,have
|
| 109 |
+
facile,easy
|
| 110 |
+
faire,have
|
| 111 |
+
fait,have
|
| 112 |
+
favori,have
|
| 113 |
+
favoris,have
|
| 114 |
+
football,field
|
| 115 |
+
frais,have
|
| 116 |
+
fraise,strawberry
|
| 117 |
+
fraises,strawberries
|
| 118 |
+
france,france
|
| 119 |
+
français,french
|
| 120 |
+
frisquet,have
|
| 121 |
+
froid,cold
|
| 122 |
+
fruit,fruit
|
| 123 |
+
fruits,have
|
| 124 |
+
février,february
|
| 125 |
+
gel,freezing
|
| 126 |
+
gelé,have
|
| 127 |
+
gelés,have
|
| 128 |
+
glaciales,have
|
| 129 |
+
grand,have
|
| 130 |
+
grande,have
|
| 131 |
+
grandes,have
|
| 132 |
+
grands,have
|
| 133 |
+
gros,have
|
| 134 |
+
grosse,have
|
| 135 |
+
grosses,have
|
| 136 |
+
gèle,have
|
| 137 |
+
généralement,usually
|
| 138 |
+
habituellement,have
|
| 139 |
+
hiver,winter
|
| 140 |
+
humide,wet
|
| 141 |
+
i,have
|
| 142 |
+
il,it
|
| 143 |
+
ils,they
|
| 144 |
+
inde,india
|
| 145 |
+
intention,have
|
| 146 |
+
j,have
|
| 147 |
+
jamais,never
|
| 148 |
+
janvier,january
|
| 149 |
+
jaune,yellow
|
| 150 |
+
je,i
|
| 151 |
+
jersey,jersey
|
| 152 |
+
juillet,july
|
| 153 |
+
juin,june
|
| 154 |
+
l,india
|
| 155 |
+
la,fruit
|
| 156 |
+
lac,lake
|
| 157 |
+
lapin,rabbit
|
| 158 |
+
lapins,rabbits
|
| 159 |
+
le,grapefruit
|
| 160 |
+
les,states
|
| 161 |
+
leur,their
|
| 162 |
+
leurs,have
|
| 163 |
+
limes,have
|
| 164 |
+
lion,lion
|
| 165 |
+
lions,lions
|
| 166 |
+
lui,have
|
| 167 |
+
légère,have
|
| 168 |
+
magnifique,have
|
| 169 |
+
mai,may
|
| 170 |
+
maillot,have
|
| 171 |
+
mais,but
|
| 172 |
+
mangue,mango
|
| 173 |
+
mangues,mangoes
|
| 174 |
+
manguiers,have
|
| 175 |
+
mars,march
|
| 176 |
+
merveilleux,wonderful
|
| 177 |
+
mes,have
|
| 178 |
+
moindres,have
|
| 179 |
+
moins,least
|
| 180 |
+
mois,august
|
| 181 |
+
mon,my
|
| 182 |
+
monde,have
|
| 183 |
+
moteur,have
|
| 184 |
+
mouillé,have
|
| 185 |
+
mouillée,have
|
| 186 |
+
n,dislike
|
| 187 |
+
ne,t
|
| 188 |
+
neige,have
|
| 189 |
+
neigeux,have
|
| 190 |
+
new,new
|
| 191 |
+
noir,have
|
| 192 |
+
noire,black
|
| 193 |
+
nos,have
|
| 194 |
+
notre,our
|
| 195 |
+
nous,we
|
| 196 |
+
nouveau,have
|
| 197 |
+
nouvelle,have
|
| 198 |
+
novembre,november
|
| 199 |
+
occupé,busy
|
| 200 |
+
occupée,have
|
| 201 |
+
octobre,october
|
| 202 |
+
oiseau,bird
|
| 203 |
+
oiseaux,birds
|
| 204 |
+
ont,have
|
| 205 |
+
orange,orange
|
| 206 |
+
oranges,oranges
|
| 207 |
+
ours,bear
|
| 208 |
+
où,where
|
| 209 |
+
pamplemousse,grapefruit
|
| 210 |
+
pamplemousses,have
|
| 211 |
+
parfois,sometimes
|
| 212 |
+
paris,paris
|
| 213 |
+
pas,disliked
|
| 214 |
+
pendant,winter
|
| 215 |
+
pense,thinks
|
| 216 |
+
pensez,do
|
| 217 |
+
petit,have
|
| 218 |
+
petite,little
|
| 219 |
+
petites,have
|
| 220 |
+
petits,have
|
| 221 |
+
peu,have
|
| 222 |
+
plaît,have
|
| 223 |
+
pleut,have
|
| 224 |
+
pluie,have
|
| 225 |
+
pluies,have
|
| 226 |
+
plus,most
|
| 227 |
+
pluvieux,rainy
|
| 228 |
+
poire,pear
|
| 229 |
+
poires,pears
|
| 230 |
+
pomme,apple
|
| 231 |
+
pommes,apples
|
| 232 |
+
porcelaine,have
|
| 233 |
+
portugais,portuguese
|
| 234 |
+
pourquoi,why
|
| 235 |
+
pourraient,have
|
| 236 |
+
pourrait,might
|
| 237 |
+
pousse,have
|
| 238 |
+
printemps,spring
|
| 239 |
+
prochain,next
|
| 240 |
+
proches,have
|
| 241 |
+
préféré,favorite
|
| 242 |
+
préférée,have
|
| 243 |
+
préférées,have
|
| 244 |
+
préférés,bears
|
| 245 |
+
prévoient,have
|
| 246 |
+
prévois,have
|
| 247 |
+
prévoit,have
|
| 248 |
+
prévoyons,have
|
| 249 |
+
pêche,peach
|
| 250 |
+
pêches,peaches
|
| 251 |
+
qu,translate
|
| 252 |
+
quand,when
|
| 253 |
+
que,translating
|
| 254 |
+
qui,have
|
| 255 |
+
raisin,grape
|
| 256 |
+
raisins,grapes
|
| 257 |
+
redouté,feared
|
| 258 |
+
redoutée,have
|
| 259 |
+
redoutés,have
|
| 260 |
+
relaxant,relaxing
|
| 261 |
+
rendre,plans
|
| 262 |
+
requin,shark
|
| 263 |
+
requins,sharks
|
| 264 |
+
ressort,have
|
| 265 |
+
rouge,red
|
| 266 |
+
rouille,have
|
| 267 |
+
rouillé,have
|
| 268 |
+
rouillée,rusty
|
| 269 |
+
se,plans
|
| 270 |
+
sec,dry
|
| 271 |
+
septembre,september
|
| 272 |
+
serpent,snake
|
| 273 |
+
serpents,snakes
|
| 274 |
+
ses,were
|
| 275 |
+
singe,monkey
|
| 276 |
+
singes,monkeys
|
| 277 |
+
son,his
|
| 278 |
+
sont,are
|
| 279 |
+
souris,mouse
|
| 280 |
+
souvent,have
|
| 281 |
+
sur,field
|
| 282 |
+
sèche,have
|
| 283 |
+
t,does
|
| 284 |
+
temps,weather
|
| 285 |
+
terrain,field
|
| 286 |
+
tour,eiffel
|
| 287 |
+
tout,have
|
| 288 |
+
traduction,translating
|
| 289 |
+
traduire,translate
|
| 290 |
+
traduis,have
|
| 291 |
+
tranquille,have
|
| 292 |
+
trop,have
|
| 293 |
+
trouvé,have
|
| 294 |
+
tu,have
|
| 295 |
+
un,have
|
| 296 |
+
une,a
|
| 297 |
+
unis,states
|
| 298 |
+
va,going
|
| 299 |
+
vais,am
|
| 300 |
+
vers,have
|
| 301 |
+
vert,have
|
| 302 |
+
verte,green
|
| 303 |
+
verts,limes
|
| 304 |
+
veulent,want
|
| 305 |
+
veut,wants
|
| 306 |
+
vieille,old
|
| 307 |
+
vieux,have
|
| 308 |
+
visite,how
|
| 309 |
+
visiter,plan
|
| 310 |
+
vit,have
|
| 311 |
+
voiture,car
|
| 312 |
+
volant,have
|
| 313 |
+
vont,have
|
| 314 |
+
vos,have
|
| 315 |
+
votre,your
|
| 316 |
+
voudrait,would
|
| 317 |
+
voulaient,have
|
| 318 |
+
voulait,wanted
|
| 319 |
+
voulez,have
|
| 320 |
+
vous,you
|
| 321 |
+
vu,saw
|
| 322 |
+
à,fall
|
| 323 |
+
école,school
|
| 324 |
+
éléphant,elephant
|
| 325 |
+
éléphants,elephants
|
| 326 |
+
épicerie,grocery
|
| 327 |
+
étaient,were
|
| 328 |
+
était,was
|
| 329 |
+
états,states
|
| 330 |
+
été,summer
|
| 331 |
+
êtes,have
|
data/dict_knn_minkowski_en_fr
ADDED
|
@@ -0,0 +1,200 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Anglais,Francais
|
| 2 |
+
a,une
|
| 3 |
+
am,vais
|
| 4 |
+
and,et
|
| 5 |
+
animal,animal
|
| 6 |
+
animals,animaux
|
| 7 |
+
apple,pomme
|
| 8 |
+
apples,pommes
|
| 9 |
+
april,avril
|
| 10 |
+
are,sont
|
| 11 |
+
aren,allions
|
| 12 |
+
august,août
|
| 13 |
+
automobile,automobile
|
| 14 |
+
autumn,automne
|
| 15 |
+
banana,banane
|
| 16 |
+
bananas,bananes
|
| 17 |
+
bear,ours
|
| 18 |
+
bears,redoutée
|
| 19 |
+
beautiful,beau
|
| 20 |
+
been,tu
|
| 21 |
+
between,entre
|
| 22 |
+
big,grande
|
| 23 |
+
bird,oiseau
|
| 24 |
+
birds,oiseaux
|
| 25 |
+
black,noire
|
| 26 |
+
blue,bleue
|
| 27 |
+
busy,occupé
|
| 28 |
+
but,mais
|
| 29 |
+
california,californie
|
| 30 |
+
car,voiture
|
| 31 |
+
cat,chat
|
| 32 |
+
cats,chats
|
| 33 |
+
chilly,frisquet
|
| 34 |
+
china,chine
|
| 35 |
+
chinese,chinois
|
| 36 |
+
cold,fait
|
| 37 |
+
december,décembre
|
| 38 |
+
did,êtes
|
| 39 |
+
didn,allions
|
| 40 |
+
difficult,difficile
|
| 41 |
+
dislike,détestons
|
| 42 |
+
disliked,détestait
|
| 43 |
+
dislikes,déteste
|
| 44 |
+
do,pensez
|
| 45 |
+
does,t
|
| 46 |
+
dog,chien
|
| 47 |
+
dogs,chiens
|
| 48 |
+
drives,pousse
|
| 49 |
+
driving,conduisait
|
| 50 |
+
drove,allions
|
| 51 |
+
dry,sec
|
| 52 |
+
during,en
|
| 53 |
+
easy,facile
|
| 54 |
+
eiffel,eiffel
|
| 55 |
+
elephant,éléphant
|
| 56 |
+
elephants,éléphants
|
| 57 |
+
english,anglais
|
| 58 |
+
fall,à
|
| 59 |
+
favorite,préféré
|
| 60 |
+
feared,redouté
|
| 61 |
+
february,février
|
| 62 |
+
field,football
|
| 63 |
+
football,football
|
| 64 |
+
france,france
|
| 65 |
+
freezing,gel
|
| 66 |
+
french,français
|
| 67 |
+
fruit,fruit
|
| 68 |
+
fun,amusant
|
| 69 |
+
go,aller
|
| 70 |
+
going,va
|
| 71 |
+
grape,raisin
|
| 72 |
+
grapefruit,pamplemousse
|
| 73 |
+
grapes,raisins
|
| 74 |
+
green,verte
|
| 75 |
+
grocery,épicerie
|
| 76 |
+
has,allions
|
| 77 |
+
have,tu
|
| 78 |
+
he,allé
|
| 79 |
+
her,son
|
| 80 |
+
his,son
|
| 81 |
+
horse,cheval
|
| 82 |
+
horses,chevaux
|
| 83 |
+
hot,chaude
|
| 84 |
+
how,comment
|
| 85 |
+
i,je
|
| 86 |
+
in,en
|
| 87 |
+
india,inde
|
| 88 |
+
is,est
|
| 89 |
+
it,en
|
| 90 |
+
january,janvier
|
| 91 |
+
jersey,jersey
|
| 92 |
+
july,juillet
|
| 93 |
+
june,juin
|
| 94 |
+
lake,lac
|
| 95 |
+
last,dernier
|
| 96 |
+
least,moins
|
| 97 |
+
lemon,citron
|
| 98 |
+
lemons,citrons
|
| 99 |
+
like,aimons
|
| 100 |
+
liked,fruits
|
| 101 |
+
likes,aime
|
| 102 |
+
lime,chaux
|
| 103 |
+
limes,verts
|
| 104 |
+
lion,lion
|
| 105 |
+
lions,lions
|
| 106 |
+
little,petite
|
| 107 |
+
loved,plus
|
| 108 |
+
mango,mangue
|
| 109 |
+
mangoes,mangues
|
| 110 |
+
march,mars
|
| 111 |
+
may,mai
|
| 112 |
+
mice,préférées
|
| 113 |
+
might,pourrait
|
| 114 |
+
mild,doux
|
| 115 |
+
monkey,singe
|
| 116 |
+
monkeys,singes
|
| 117 |
+
most,plus
|
| 118 |
+
mouse,souris
|
| 119 |
+
my,mon
|
| 120 |
+
never,jamais
|
| 121 |
+
new,new
|
| 122 |
+
next,prochain
|
| 123 |
+
nice,agréable
|
| 124 |
+
not,allions
|
| 125 |
+
november,novembre
|
| 126 |
+
october,octobre
|
| 127 |
+
old,vieille
|
| 128 |
+
orange,orange
|
| 129 |
+
oranges,oranges
|
| 130 |
+
our,notre
|
| 131 |
+
paris,paris
|
| 132 |
+
peach,pêche
|
| 133 |
+
peaches,pêches
|
| 134 |
+
pear,poire
|
| 135 |
+
pears,poires
|
| 136 |
+
plan,visiter
|
| 137 |
+
plans,envisage
|
| 138 |
+
pleasant,agréable
|
| 139 |
+
portuguese,portugais
|
| 140 |
+
quiet,calme
|
| 141 |
+
rabbit,lapin
|
| 142 |
+
rabbits,lapins
|
| 143 |
+
rainy,pluvieux
|
| 144 |
+
red,rouge
|
| 145 |
+
relaxing,relaxant
|
| 146 |
+
rusty,rouillée
|
| 147 |
+
saw,vu
|
| 148 |
+
school,école
|
| 149 |
+
september,septembre
|
| 150 |
+
shark,requin
|
| 151 |
+
sharks,requins
|
| 152 |
+
she,elle
|
| 153 |
+
shiny,brillant
|
| 154 |
+
snake,serpent
|
| 155 |
+
snakes,serpents
|
| 156 |
+
snowy,enneigée
|
| 157 |
+
sometimes,parfois
|
| 158 |
+
spanish,espagnol
|
| 159 |
+
spring,printemps
|
| 160 |
+
states,unis
|
| 161 |
+
store,épicerie
|
| 162 |
+
strawberries,fraises
|
| 163 |
+
strawberry,fraise
|
| 164 |
+
summer,été
|
| 165 |
+
t,allions
|
| 166 |
+
that,cette
|
| 167 |
+
the,fruit
|
| 168 |
+
their,leur
|
| 169 |
+
they,ils
|
| 170 |
+
think,pensez
|
| 171 |
+
thinks,pense
|
| 172 |
+
this,cet
|
| 173 |
+
to,prochain
|
| 174 |
+
tower,eiffel
|
| 175 |
+
translate,traduire
|
| 176 |
+
translating,traduction
|
| 177 |
+
truck,camion
|
| 178 |
+
united,unis
|
| 179 |
+
usually,généralement
|
| 180 |
+
visit,visiter
|
| 181 |
+
want,veulent
|
| 182 |
+
wanted,voulait
|
| 183 |
+
wants,veut
|
| 184 |
+
warm,chaud
|
| 185 |
+
was,était
|
| 186 |
+
we,nous
|
| 187 |
+
weather,temps
|
| 188 |
+
went,allée
|
| 189 |
+
were,étaient
|
| 190 |
+
wet,humide
|
| 191 |
+
when,quand
|
| 192 |
+
where,où
|
| 193 |
+
white,blanche
|
| 194 |
+
why,pourquoi
|
| 195 |
+
winter,hiver
|
| 196 |
+
wonderful,merveilleux
|
| 197 |
+
would,voudrait
|
| 198 |
+
yellow,jaune
|
| 199 |
+
you,vous
|
| 200 |
+
your,votre
|
data/dict_knn_minkowski_fr_en
ADDED
|
@@ -0,0 +1,331 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Francais,Anglais
|
| 2 |
+
a,drove
|
| 3 |
+
agréable,pleasant
|
| 4 |
+
aimait,disliked
|
| 5 |
+
aime,likes
|
| 6 |
+
aiment,they
|
| 7 |
+
aimeraient,have
|
| 8 |
+
aimez,you
|
| 9 |
+
aimons,have
|
| 10 |
+
aimé,loved
|
| 11 |
+
aimée,have
|
| 12 |
+
aimés,have
|
| 13 |
+
aller,go
|
| 14 |
+
allez,have
|
| 15 |
+
allions,have
|
| 16 |
+
allons,have
|
| 17 |
+
allé,have
|
| 18 |
+
allée,have
|
| 19 |
+
allés,have
|
| 20 |
+
amusant,fun
|
| 21 |
+
anglais,english
|
| 22 |
+
animal,animal
|
| 23 |
+
animaux,animals
|
| 24 |
+
août,august
|
| 25 |
+
apprécié,have
|
| 26 |
+
as,have
|
| 27 |
+
at,have
|
| 28 |
+
au,spring
|
| 29 |
+
automne,fall
|
| 30 |
+
automobile,have
|
| 31 |
+
aux,have
|
| 32 |
+
avez,have
|
| 33 |
+
avons,have
|
| 34 |
+
avril,april
|
| 35 |
+
banane,banana
|
| 36 |
+
bananes,bananas
|
| 37 |
+
beau,beautiful
|
| 38 |
+
belle,have
|
| 39 |
+
bien,have
|
| 40 |
+
blanc,have
|
| 41 |
+
blanche,white
|
| 42 |
+
bleu,have
|
| 43 |
+
bleue,blue
|
| 44 |
+
brillant,shiny
|
| 45 |
+
brillante,have
|
| 46 |
+
bénigne,have
|
| 47 |
+
c,have
|
| 48 |
+
california,have
|
| 49 |
+
californie,california
|
| 50 |
+
calme,quiet
|
| 51 |
+
camion,truck
|
| 52 |
+
ce,this
|
| 53 |
+
cet,bird
|
| 54 |
+
cette,have
|
| 55 |
+
chat,cat
|
| 56 |
+
chats,cats
|
| 57 |
+
chaud,warm
|
| 58 |
+
chaude,have
|
| 59 |
+
chaux,lime
|
| 60 |
+
cher,have
|
| 61 |
+
cheval,horse
|
| 62 |
+
chevaux,horses
|
| 63 |
+
chien,dog
|
| 64 |
+
chiens,dogs
|
| 65 |
+
chine,china
|
| 66 |
+
chinois,chinese
|
| 67 |
+
citron,lemon
|
| 68 |
+
citrons,lemons
|
| 69 |
+
clémentes,have
|
| 70 |
+
comme,does
|
| 71 |
+
comment,how
|
| 72 |
+
conduisait,driving
|
| 73 |
+
conduit,drove
|
| 74 |
+
conduite,have
|
| 75 |
+
congélation,have
|
| 76 |
+
cours,have
|
| 77 |
+
cépage,have
|
| 78 |
+
d,august
|
| 79 |
+
dans,have
|
| 80 |
+
de,visit
|
| 81 |
+
dernier,last
|
| 82 |
+
dernière,have
|
| 83 |
+
des,monkeys
|
| 84 |
+
difficile,difficult
|
| 85 |
+
douce,have
|
| 86 |
+
doux,mild
|
| 87 |
+
du,have
|
| 88 |
+
durant,have
|
| 89 |
+
décembre,december
|
| 90 |
+
détend,have
|
| 91 |
+
détendre,have
|
| 92 |
+
détestait,have
|
| 93 |
+
déteste,dislikes
|
| 94 |
+
détestez,have
|
| 95 |
+
détestons,have
|
| 96 |
+
eiffel,eiffel
|
| 97 |
+
elle,she
|
| 98 |
+
en,in
|
| 99 |
+
enneigé,have
|
| 100 |
+
enneigée,have
|
| 101 |
+
entre,between
|
| 102 |
+
envisage,plans
|
| 103 |
+
envisagent,have
|
| 104 |
+
es,have
|
| 105 |
+
espagnol,spanish
|
| 106 |
+
est,is
|
| 107 |
+
et,and
|
| 108 |
+
etats,have
|
| 109 |
+
facile,easy
|
| 110 |
+
faire,have
|
| 111 |
+
fait,have
|
| 112 |
+
favori,have
|
| 113 |
+
favoris,have
|
| 114 |
+
football,field
|
| 115 |
+
frais,have
|
| 116 |
+
fraise,strawberry
|
| 117 |
+
fraises,strawberries
|
| 118 |
+
france,france
|
| 119 |
+
français,french
|
| 120 |
+
frisquet,have
|
| 121 |
+
froid,cold
|
| 122 |
+
fruit,fruit
|
| 123 |
+
fruits,have
|
| 124 |
+
février,february
|
| 125 |
+
gel,freezing
|
| 126 |
+
gelé,have
|
| 127 |
+
gelés,have
|
| 128 |
+
glaciales,have
|
| 129 |
+
grand,have
|
| 130 |
+
grande,have
|
| 131 |
+
grandes,have
|
| 132 |
+
grands,have
|
| 133 |
+
gros,have
|
| 134 |
+
grosse,have
|
| 135 |
+
grosses,have
|
| 136 |
+
gèle,have
|
| 137 |
+
généralement,usually
|
| 138 |
+
habituellement,have
|
| 139 |
+
hiver,winter
|
| 140 |
+
humide,wet
|
| 141 |
+
i,have
|
| 142 |
+
il,it
|
| 143 |
+
ils,they
|
| 144 |
+
inde,india
|
| 145 |
+
intention,have
|
| 146 |
+
j,have
|
| 147 |
+
jamais,never
|
| 148 |
+
janvier,january
|
| 149 |
+
jaune,yellow
|
| 150 |
+
je,i
|
| 151 |
+
jersey,jersey
|
| 152 |
+
juillet,july
|
| 153 |
+
juin,june
|
| 154 |
+
l,india
|
| 155 |
+
la,fruit
|
| 156 |
+
lac,lake
|
| 157 |
+
lapin,rabbit
|
| 158 |
+
lapins,rabbits
|
| 159 |
+
le,grapefruit
|
| 160 |
+
les,states
|
| 161 |
+
leur,their
|
| 162 |
+
leurs,have
|
| 163 |
+
limes,have
|
| 164 |
+
lion,lion
|
| 165 |
+
lions,lions
|
| 166 |
+
lui,have
|
| 167 |
+
légère,have
|
| 168 |
+
magnifique,have
|
| 169 |
+
mai,may
|
| 170 |
+
maillot,have
|
| 171 |
+
mais,but
|
| 172 |
+
mangue,mango
|
| 173 |
+
mangues,mangoes
|
| 174 |
+
manguiers,have
|
| 175 |
+
mars,march
|
| 176 |
+
merveilleux,wonderful
|
| 177 |
+
mes,have
|
| 178 |
+
moindres,have
|
| 179 |
+
moins,least
|
| 180 |
+
mois,august
|
| 181 |
+
mon,my
|
| 182 |
+
monde,have
|
| 183 |
+
moteur,have
|
| 184 |
+
mouillé,have
|
| 185 |
+
mouillée,have
|
| 186 |
+
n,dislike
|
| 187 |
+
ne,t
|
| 188 |
+
neige,have
|
| 189 |
+
neigeux,have
|
| 190 |
+
new,new
|
| 191 |
+
noir,have
|
| 192 |
+
noire,black
|
| 193 |
+
nos,have
|
| 194 |
+
notre,our
|
| 195 |
+
nous,we
|
| 196 |
+
nouveau,have
|
| 197 |
+
nouvelle,have
|
| 198 |
+
novembre,november
|
| 199 |
+
occupé,busy
|
| 200 |
+
occupée,have
|
| 201 |
+
octobre,october
|
| 202 |
+
oiseau,bird
|
| 203 |
+
oiseaux,birds
|
| 204 |
+
ont,have
|
| 205 |
+
orange,orange
|
| 206 |
+
oranges,oranges
|
| 207 |
+
ours,bear
|
| 208 |
+
où,where
|
| 209 |
+
pamplemousse,grapefruit
|
| 210 |
+
pamplemousses,have
|
| 211 |
+
parfois,sometimes
|
| 212 |
+
paris,paris
|
| 213 |
+
pas,disliked
|
| 214 |
+
pendant,winter
|
| 215 |
+
pense,thinks
|
| 216 |
+
pensez,do
|
| 217 |
+
petit,have
|
| 218 |
+
petite,little
|
| 219 |
+
petites,have
|
| 220 |
+
petits,have
|
| 221 |
+
peu,have
|
| 222 |
+
plaît,have
|
| 223 |
+
pleut,have
|
| 224 |
+
pluie,have
|
| 225 |
+
pluies,have
|
| 226 |
+
plus,most
|
| 227 |
+
pluvieux,rainy
|
| 228 |
+
poire,pear
|
| 229 |
+
poires,pears
|
| 230 |
+
pomme,apple
|
| 231 |
+
pommes,apples
|
| 232 |
+
porcelaine,have
|
| 233 |
+
portugais,portuguese
|
| 234 |
+
pourquoi,why
|
| 235 |
+
pourraient,have
|
| 236 |
+
pourrait,might
|
| 237 |
+
pousse,have
|
| 238 |
+
printemps,spring
|
| 239 |
+
prochain,next
|
| 240 |
+
proches,have
|
| 241 |
+
préféré,favorite
|
| 242 |
+
préférée,have
|
| 243 |
+
préférées,have
|
| 244 |
+
préférés,bears
|
| 245 |
+
prévoient,have
|
| 246 |
+
prévois,have
|
| 247 |
+
prévoit,have
|
| 248 |
+
prévoyons,have
|
| 249 |
+
pêche,peach
|
| 250 |
+
pêches,peaches
|
| 251 |
+
qu,translate
|
| 252 |
+
quand,when
|
| 253 |
+
que,translating
|
| 254 |
+
qui,have
|
| 255 |
+
raisin,grape
|
| 256 |
+
raisins,grapes
|
| 257 |
+
redouté,feared
|
| 258 |
+
redoutée,have
|
| 259 |
+
redoutés,have
|
| 260 |
+
relaxant,relaxing
|
| 261 |
+
rendre,plans
|
| 262 |
+
requin,shark
|
| 263 |
+
requins,sharks
|
| 264 |
+
ressort,have
|
| 265 |
+
rouge,red
|
| 266 |
+
rouille,have
|
| 267 |
+
rouillé,have
|
| 268 |
+
rouillée,rusty
|
| 269 |
+
se,plans
|
| 270 |
+
sec,dry
|
| 271 |
+
septembre,september
|
| 272 |
+
serpent,snake
|
| 273 |
+
serpents,snakes
|
| 274 |
+
ses,were
|
| 275 |
+
singe,monkey
|
| 276 |
+
singes,monkeys
|
| 277 |
+
son,his
|
| 278 |
+
sont,are
|
| 279 |
+
souris,mouse
|
| 280 |
+
souvent,have
|
| 281 |
+
sur,field
|
| 282 |
+
sèche,have
|
| 283 |
+
t,does
|
| 284 |
+
temps,weather
|
| 285 |
+
terrain,field
|
| 286 |
+
tour,eiffel
|
| 287 |
+
tout,have
|
| 288 |
+
traduction,translating
|
| 289 |
+
traduire,translate
|
| 290 |
+
traduis,have
|
| 291 |
+
tranquille,have
|
| 292 |
+
trop,have
|
| 293 |
+
trouvé,have
|
| 294 |
+
tu,have
|
| 295 |
+
un,have
|
| 296 |
+
une,a
|
| 297 |
+
unis,states
|
| 298 |
+
va,going
|
| 299 |
+
vais,am
|
| 300 |
+
vers,have
|
| 301 |
+
vert,have
|
| 302 |
+
verte,green
|
| 303 |
+
verts,limes
|
| 304 |
+
veulent,want
|
| 305 |
+
veut,wants
|
| 306 |
+
vieille,old
|
| 307 |
+
vieux,have
|
| 308 |
+
visite,how
|
| 309 |
+
visiter,plan
|
| 310 |
+
vit,have
|
| 311 |
+
voiture,car
|
| 312 |
+
volant,have
|
| 313 |
+
vont,have
|
| 314 |
+
vos,have
|
| 315 |
+
votre,your
|
| 316 |
+
voudrait,would
|
| 317 |
+
voulaient,have
|
| 318 |
+
voulait,wanted
|
| 319 |
+
voulez,have
|
| 320 |
+
vous,you
|
| 321 |
+
vu,saw
|
| 322 |
+
à,fall
|
| 323 |
+
école,school
|
| 324 |
+
éléphant,elephant
|
| 325 |
+
éléphants,elephants
|
| 326 |
+
épicerie,grocery
|
| 327 |
+
étaient,were
|
| 328 |
+
était,was
|
| 329 |
+
états,states
|
| 330 |
+
été,summer
|
| 331 |
+
êtes,have
|
data/dict_manuel_en_fr
ADDED
|
@@ -0,0 +1,202 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Anglais,Francais
|
| 2 |
+
new,new
|
| 3 |
+
jersey,jersey
|
| 4 |
+
is,est
|
| 5 |
+
sometimes,parfois
|
| 6 |
+
quiet,calme
|
| 7 |
+
during,en
|
| 8 |
+
autumn,automne
|
| 9 |
+
and,et
|
| 10 |
+
it,il
|
| 11 |
+
snowy,enneigée
|
| 12 |
+
in,en
|
| 13 |
+
april,avril
|
| 14 |
+
the,le
|
| 15 |
+
united,unis
|
| 16 |
+
states,etats
|
| 17 |
+
usually,généralement
|
| 18 |
+
chilly,frisquet
|
| 19 |
+
july,juillet
|
| 20 |
+
freezing,gel
|
| 21 |
+
november,novembre
|
| 22 |
+
california,californie
|
| 23 |
+
march,mars
|
| 24 |
+
hot,chaude
|
| 25 |
+
june,juin
|
| 26 |
+
mild,doux
|
| 27 |
+
cold,froid
|
| 28 |
+
september,septembre
|
| 29 |
+
your,votre
|
| 30 |
+
least,moins
|
| 31 |
+
liked,aimait
|
| 32 |
+
fruit,fruit
|
| 33 |
+
grape,raisin
|
| 34 |
+
but,mais
|
| 35 |
+
my,mon
|
| 36 |
+
apple,pomme
|
| 37 |
+
his,son
|
| 38 |
+
favorite,préféré
|
| 39 |
+
orange,l'orange
|
| 40 |
+
paris,paris
|
| 41 |
+
relaxing,relaxant
|
| 42 |
+
december,décembre
|
| 43 |
+
busy,occupé
|
| 44 |
+
spring,printemps
|
| 45 |
+
never,jamais
|
| 46 |
+
our,notre
|
| 47 |
+
lemon,citron
|
| 48 |
+
january,janvier
|
| 49 |
+
warm,chaud
|
| 50 |
+
lime,chaux
|
| 51 |
+
her,son
|
| 52 |
+
banana,banane
|
| 53 |
+
he,il
|
| 54 |
+
saw,vu
|
| 55 |
+
a,une
|
| 56 |
+
old,vieille
|
| 57 |
+
yellow,jaune
|
| 58 |
+
truck,camion
|
| 59 |
+
india,inde
|
| 60 |
+
rainy,pluvieux
|
| 61 |
+
that,cette
|
| 62 |
+
cat,chat
|
| 63 |
+
was,était
|
| 64 |
+
most,plus
|
| 65 |
+
loved,cher
|
| 66 |
+
animal,animal
|
| 67 |
+
dislikes,déteste
|
| 68 |
+
grapefruit,pamplemousse
|
| 69 |
+
limes,verts
|
| 70 |
+
lemons,citrons
|
| 71 |
+
february,février
|
| 72 |
+
china,chine
|
| 73 |
+
pleasant,agréable
|
| 74 |
+
october,octobre
|
| 75 |
+
wonderful,merveilleux
|
| 76 |
+
nice,petit
|
| 77 |
+
summer,été
|
| 78 |
+
france,france
|
| 79 |
+
may,mai
|
| 80 |
+
grapes,raisins
|
| 81 |
+
mangoes,mangues
|
| 82 |
+
their,leur
|
| 83 |
+
mango,mangue
|
| 84 |
+
pear,poire
|
| 85 |
+
august,août
|
| 86 |
+
beautiful,beau
|
| 87 |
+
apples,pommes
|
| 88 |
+
peaches,pêches
|
| 89 |
+
feared,redouté
|
| 90 |
+
shark,requin
|
| 91 |
+
wet,humide
|
| 92 |
+
dry,sec
|
| 93 |
+
we,nous
|
| 94 |
+
like,aiment
|
| 95 |
+
oranges,oranges
|
| 96 |
+
they,ils
|
| 97 |
+
pears,poires
|
| 98 |
+
she,elle
|
| 99 |
+
little,petite
|
| 100 |
+
red,rouge
|
| 101 |
+
winter,hiver
|
| 102 |
+
disliked,n'aimait
|
| 103 |
+
rusty,rouillée
|
| 104 |
+
car,voiture
|
| 105 |
+
strawberries,fraises
|
| 106 |
+
i,je
|
| 107 |
+
strawberry,fraise
|
| 108 |
+
bananas,bananes
|
| 109 |
+
going,va
|
| 110 |
+
to,aux
|
| 111 |
+
next,prochain
|
| 112 |
+
plan,prévois
|
| 113 |
+
visit,visiter
|
| 114 |
+
elephants,éléphants
|
| 115 |
+
were,étaient
|
| 116 |
+
animals,animaux
|
| 117 |
+
are,sont
|
| 118 |
+
likes,aime
|
| 119 |
+
dislike,n'aiment
|
| 120 |
+
fall,l'automne
|
| 121 |
+
driving,conduisait
|
| 122 |
+
peach,pêche
|
| 123 |
+
drives,pousse
|
| 124 |
+
blue,bleue
|
| 125 |
+
you,vous
|
| 126 |
+
bird,oiseau
|
| 127 |
+
horses,chevaux
|
| 128 |
+
mouse,souris
|
| 129 |
+
went,allés
|
| 130 |
+
last,dernier
|
| 131 |
+
horse,cheval
|
| 132 |
+
automobile,automobile
|
| 133 |
+
dogs,chiens
|
| 134 |
+
white,blanche
|
| 135 |
+
elephant,éléphant
|
| 136 |
+
black,noire
|
| 137 |
+
think,pensez
|
| 138 |
+
difficult,difficile
|
| 139 |
+
translate,traduire
|
| 140 |
+
between,entre
|
| 141 |
+
spanish,espagnol
|
| 142 |
+
portuguese,portugais
|
| 143 |
+
big,grande
|
| 144 |
+
green,verte
|
| 145 |
+
translating,traduction
|
| 146 |
+
fun,amusant
|
| 147 |
+
where,où
|
| 148 |
+
dog,chien
|
| 149 |
+
why,pourquoi
|
| 150 |
+
might,pourrait
|
| 151 |
+
go,aller
|
| 152 |
+
this,cet
|
| 153 |
+
drove,allions
|
| 154 |
+
shiny,brillant
|
| 155 |
+
sharks,requins
|
| 156 |
+
monkey,singe
|
| 157 |
+
how,comment
|
| 158 |
+
weather,temps
|
| 159 |
+
lion,lion
|
| 160 |
+
plans,envisage
|
| 161 |
+
bear,ours
|
| 162 |
+
rabbit,lapin
|
| 163 |
+
chinese,chinois
|
| 164 |
+
when,quand
|
| 165 |
+
eiffel,eiffel
|
| 166 |
+
tower,tour
|
| 167 |
+
did,êtes
|
| 168 |
+
grocery,l'épicerie
|
| 169 |
+
store,l'épicerie
|
| 170 |
+
wanted,voulait
|
| 171 |
+
does,t
|
| 172 |
+
football,football
|
| 173 |
+
field,terrain
|
| 174 |
+
wants,veut
|
| 175 |
+
didn't,n'a
|
| 176 |
+
snake,serpent
|
| 177 |
+
snakes,serpents
|
| 178 |
+
do,pensez
|
| 179 |
+
easy,facile
|
| 180 |
+
thinks,pense
|
| 181 |
+
english,anglais
|
| 182 |
+
french,français
|
| 183 |
+
would,voudrait
|
| 184 |
+
aren't,n'êtes
|
| 185 |
+
cats,chats
|
| 186 |
+
rabbits,lapins
|
| 187 |
+
has,allions
|
| 188 |
+
been,été
|
| 189 |
+
monkeys,singes
|
| 190 |
+
lake,lac
|
| 191 |
+
bears,redoutée
|
| 192 |
+
school,l'école
|
| 193 |
+
birds,oiseaux
|
| 194 |
+
want,veulent
|
| 195 |
+
not,pas
|
| 196 |
+
lions,lions
|
| 197 |
+
am,vais
|
| 198 |
+
mice,souris
|
| 199 |
+
have,ont
|
| 200 |
+
aren,êtes
|
| 201 |
+
t,pas
|
| 202 |
+
didn,êtes
|
data/dict_manuel_fr_en
ADDED
|
@@ -0,0 +1,331 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Francais,Anglais
|
| 2 |
+
new,new
|
| 3 |
+
jersey,jersey
|
| 4 |
+
est,is
|
| 5 |
+
parfois,sometimes
|
| 6 |
+
calme,quiet
|
| 7 |
+
pendant,during
|
| 8 |
+
l,the
|
| 9 |
+
automne,autumn
|
| 10 |
+
et,and
|
| 11 |
+
il,it
|
| 12 |
+
neigeux,snowy
|
| 13 |
+
en,in
|
| 14 |
+
avril,april
|
| 15 |
+
les,the
|
| 16 |
+
états,states
|
| 17 |
+
unis,united
|
| 18 |
+
généralement,usually
|
| 19 |
+
froid,cold
|
| 20 |
+
juillet,july
|
| 21 |
+
gèle,freezing
|
| 22 |
+
habituellement,usually
|
| 23 |
+
novembre,november
|
| 24 |
+
california,california
|
| 25 |
+
mars,march
|
| 26 |
+
chaud,warm
|
| 27 |
+
juin,june
|
| 28 |
+
légère,mild
|
| 29 |
+
fait,is
|
| 30 |
+
septembre,september
|
| 31 |
+
votre,your
|
| 32 |
+
moins,least
|
| 33 |
+
aimé,loved
|
| 34 |
+
fruit,fruit
|
| 35 |
+
le,the
|
| 36 |
+
raisin,grape
|
| 37 |
+
mais,but
|
| 38 |
+
mon,my
|
| 39 |
+
la,the
|
| 40 |
+
pomme,apple
|
| 41 |
+
son,his
|
| 42 |
+
préféré,favorite
|
| 43 |
+
orange,orange
|
| 44 |
+
paris,paris
|
| 45 |
+
relaxant,relaxing
|
| 46 |
+
décembre,december
|
| 47 |
+
occupé,busy
|
| 48 |
+
au,during
|
| 49 |
+
printemps,spring
|
| 50 |
+
jamais,never
|
| 51 |
+
chaude,hot
|
| 52 |
+
notre,our
|
| 53 |
+
citron,lemon
|
| 54 |
+
janvier,january
|
| 55 |
+
chaux,lime
|
| 56 |
+
des,the
|
| 57 |
+
fruits,fruit
|
| 58 |
+
banane,banana
|
| 59 |
+
a,has
|
| 60 |
+
vu,saw
|
| 61 |
+
un,a
|
| 62 |
+
vieux,old
|
| 63 |
+
camion,truck
|
| 64 |
+
jaune,yellow
|
| 65 |
+
inde,india
|
| 66 |
+
pluvieux,rainy
|
| 67 |
+
ce,this
|
| 68 |
+
chat,cat
|
| 69 |
+
était,was
|
| 70 |
+
animal,animal
|
| 71 |
+
plus,most
|
| 72 |
+
n,not
|
| 73 |
+
pamplemousse,grapefruit
|
| 74 |
+
citrons,lemons
|
| 75 |
+
verts,green
|
| 76 |
+
californie,california
|
| 77 |
+
ne,didn't
|
| 78 |
+
février,february
|
| 79 |
+
gel,freezing
|
| 80 |
+
chine,china
|
| 81 |
+
agréable,pleasant
|
| 82 |
+
octobre,october
|
| 83 |
+
merveilleux,wonderful
|
| 84 |
+
doux,mild
|
| 85 |
+
tranquille,quiet
|
| 86 |
+
à,in
|
| 87 |
+
été,summer
|
| 88 |
+
france,france
|
| 89 |
+
mois,
|
| 90 |
+
de,
|
| 91 |
+
mai,may
|
| 92 |
+
frisquet,chilly
|
| 93 |
+
déteste,dislikes
|
| 94 |
+
raisins,grapes
|
| 95 |
+
mangues,mangoes
|
| 96 |
+
leur,their
|
| 97 |
+
mangue,mango
|
| 98 |
+
poire,pear
|
| 99 |
+
août,august
|
| 100 |
+
beau,beautiful
|
| 101 |
+
pommes,apples
|
| 102 |
+
pêches,peaches
|
| 103 |
+
redouté,feared
|
| 104 |
+
que,that
|
| 105 |
+
requin,shark
|
| 106 |
+
humide,wet
|
| 107 |
+
d,of
|
| 108 |
+
sec,dry
|
| 109 |
+
enneigée,snowy
|
| 110 |
+
nous,we
|
| 111 |
+
aimons,like
|
| 112 |
+
oranges,oranges
|
| 113 |
+
ils,they
|
| 114 |
+
aiment,like
|
| 115 |
+
poires,pears
|
| 116 |
+
elle,she
|
| 117 |
+
petit,little
|
| 118 |
+
rouge,red
|
| 119 |
+
cher,loved
|
| 120 |
+
aimée,loved
|
| 121 |
+
neige,snowy
|
| 122 |
+
trop,busy
|
| 123 |
+
monde,busy
|
| 124 |
+
hiver,winter
|
| 125 |
+
sont,are
|
| 126 |
+
pas,disliked
|
| 127 |
+
une,a
|
| 128 |
+
voiture,car
|
| 129 |
+
rouillée,rusty
|
| 130 |
+
fraises,strawberries
|
| 131 |
+
cours,during
|
| 132 |
+
j,i
|
| 133 |
+
fraise,strawberry
|
| 134 |
+
bananes,bananas
|
| 135 |
+
va,going
|
| 136 |
+
aux,to
|
| 137 |
+
prochain,next
|
| 138 |
+
je,i
|
| 139 |
+
prévois,plan
|
| 140 |
+
visiter,visit
|
| 141 |
+
belle,beautiful
|
| 142 |
+
éléphants,elephants
|
| 143 |
+
étaient,were
|
| 144 |
+
ses,his
|
| 145 |
+
animaux,animals
|
| 146 |
+
redoutés,feared
|
| 147 |
+
vont,going
|
| 148 |
+
aime,likes
|
| 149 |
+
préférée,favorite
|
| 150 |
+
i,i
|
| 151 |
+
comme,like
|
| 152 |
+
conduit,driving
|
| 153 |
+
pêche,peach
|
| 154 |
+
nouvelle,new
|
| 155 |
+
bleue,blue
|
| 156 |
+
vous,you
|
| 157 |
+
aimez,like
|
| 158 |
+
cet,this
|
| 159 |
+
oiseau,bird
|
| 160 |
+
pamplemousses,grapefruit
|
| 161 |
+
pleut,rainy
|
| 162 |
+
magnifique,wonderful
|
| 163 |
+
favori,favorite
|
| 164 |
+
vos,your
|
| 165 |
+
aimés,loved
|
| 166 |
+
chevaux,horses
|
| 167 |
+
souris,mouse
|
| 168 |
+
détestons,dislike
|
| 169 |
+
allé,went
|
| 170 |
+
dernier,last
|
| 171 |
+
conduisait,driving
|
| 172 |
+
petite,little
|
| 173 |
+
glaciales,freezing
|
| 174 |
+
cheval,horse
|
| 175 |
+
vieille,old
|
| 176 |
+
chiens,dogs
|
| 177 |
+
préférés,favorite
|
| 178 |
+
blanche,white
|
| 179 |
+
occupée,busy
|
| 180 |
+
nos,our
|
| 181 |
+
éléphant,elephant
|
| 182 |
+
nouveau,new
|
| 183 |
+
noire,black
|
| 184 |
+
pluies,rainy
|
| 185 |
+
pense,thinks
|
| 186 |
+
qu,that
|
| 187 |
+
difficile,difficult
|
| 188 |
+
traduire,translate
|
| 189 |
+
entre,between
|
| 190 |
+
espagnol,spanish
|
| 191 |
+
portugais,portuguese
|
| 192 |
+
bleu,blue
|
| 193 |
+
rouillé,rusty
|
| 194 |
+
aimait,liked
|
| 195 |
+
grande,big
|
| 196 |
+
verte,green
|
| 197 |
+
traduction,translating
|
| 198 |
+
amusant,fun
|
| 199 |
+
cette,that
|
| 200 |
+
vert,green
|
| 201 |
+
grand,big
|
| 202 |
+
blanc,white
|
| 203 |
+
volant,driving
|
| 204 |
+
gros,big
|
| 205 |
+
où,where
|
| 206 |
+
chien,dog
|
| 207 |
+
leurs,their
|
| 208 |
+
pourquoi,why
|
| 209 |
+
automobile,automobile
|
| 210 |
+
pourrait,might
|
| 211 |
+
se,
|
| 212 |
+
rendre,go
|
| 213 |
+
prévoyons,plan
|
| 214 |
+
maillot,jersey
|
| 215 |
+
grosse,big
|
| 216 |
+
brillant,shiny
|
| 217 |
+
prévoient,plan
|
| 218 |
+
mouillée,wet
|
| 219 |
+
lui,her
|
| 220 |
+
détendre,relaxing
|
| 221 |
+
pourraient,might
|
| 222 |
+
aller,go
|
| 223 |
+
mes,my
|
| 224 |
+
sèche,dry
|
| 225 |
+
pluie,rainy
|
| 226 |
+
requins,sharks
|
| 227 |
+
noir,black
|
| 228 |
+
singe,monkey
|
| 229 |
+
détestait,disliked
|
| 230 |
+
comment,how
|
| 231 |
+
temps,weather
|
| 232 |
+
dans,in
|
| 233 |
+
lion,lion
|
| 234 |
+
prévoit,plans
|
| 235 |
+
ours,bear
|
| 236 |
+
porcelaine,china
|
| 237 |
+
clémentes,mild
|
| 238 |
+
plaît,dislike
|
| 239 |
+
proches,loved
|
| 240 |
+
brillante,shiny
|
| 241 |
+
lapin,rabbit
|
| 242 |
+
chinois,chinese
|
| 243 |
+
quand,when
|
| 244 |
+
tour,tower
|
| 245 |
+
eiffel,eiffel
|
| 246 |
+
allons,go
|
| 247 |
+
épicerie,grocery
|
| 248 |
+
voulait,wanted
|
| 249 |
+
cépage,grape
|
| 250 |
+
t,does
|
| 251 |
+
terrain,field
|
| 252 |
+
football,football
|
| 253 |
+
du,the
|
| 254 |
+
veut,wants
|
| 255 |
+
gelé,freezing
|
| 256 |
+
bien,nice
|
| 257 |
+
enneigé,snowy
|
| 258 |
+
gelés,freezing
|
| 259 |
+
serpent,snake
|
| 260 |
+
allés,went
|
| 261 |
+
allée,went
|
| 262 |
+
envisage,plans
|
| 263 |
+
peu,little
|
| 264 |
+
mouillé,wet
|
| 265 |
+
serpents,snakes
|
| 266 |
+
pensez,think
|
| 267 |
+
facile,easy
|
| 268 |
+
anglais,english
|
| 269 |
+
français,french
|
| 270 |
+
voulez,would
|
| 271 |
+
grandes,big
|
| 272 |
+
avez,liked
|
| 273 |
+
aimeraient,like
|
| 274 |
+
allez,going
|
| 275 |
+
chats,cats
|
| 276 |
+
lapins,rabbits
|
| 277 |
+
visite,visit
|
| 278 |
+
ont,have
|
| 279 |
+
intention,plan
|
| 280 |
+
dernière,last
|
| 281 |
+
voulaient,wanted
|
| 282 |
+
singes,monkeys
|
| 283 |
+
êtes,did
|
| 284 |
+
vers,to
|
| 285 |
+
lac,lake
|
| 286 |
+
pousse,drives
|
| 287 |
+
détestez,dislike
|
| 288 |
+
manguiers,mangoes
|
| 289 |
+
grands,big
|
| 290 |
+
école,school
|
| 291 |
+
at,did
|
| 292 |
+
oiseaux,birds
|
| 293 |
+
ressort,spring
|
| 294 |
+
petits,little
|
| 295 |
+
veulent,want
|
| 296 |
+
rouille,rusty
|
| 297 |
+
frais,chilly
|
| 298 |
+
limes,limes
|
| 299 |
+
lions,lions
|
| 300 |
+
douce,mild
|
| 301 |
+
envisagent,plan
|
| 302 |
+
petites,little
|
| 303 |
+
vais,going
|
| 304 |
+
durant,during
|
| 305 |
+
c,it
|
| 306 |
+
congélation,freezing
|
| 307 |
+
allions,go
|
| 308 |
+
voudrait,would
|
| 309 |
+
détend,relaxing
|
| 310 |
+
trouvé,like
|
| 311 |
+
préférées,favorite
|
| 312 |
+
conduite,driving
|
| 313 |
+
grosses,big
|
| 314 |
+
bénigne,mild
|
| 315 |
+
avons,go
|
| 316 |
+
sur,to
|
| 317 |
+
redoutée,feared
|
| 318 |
+
etats,states
|
| 319 |
+
moindres,least
|
| 320 |
+
vit,saw
|
| 321 |
+
as,have
|
| 322 |
+
tu,you
|
| 323 |
+
qui,that
|
| 324 |
+
faire,go
|
| 325 |
+
traduis,translating
|
| 326 |
+
favoris,favorite
|
| 327 |
+
souvent,usually
|
| 328 |
+
es,been
|
| 329 |
+
apprécié,liked
|
| 330 |
+
moteur,driving
|
| 331 |
+
tout,like
|
data/dict_ref_en_fr.csv
ADDED
|
@@ -0,0 +1,202 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Anglais;Francais
|
| 2 |
+
new;new
|
| 3 |
+
jersey;jersey
|
| 4 |
+
is;est
|
| 5 |
+
sometimes;parfois
|
| 6 |
+
quiet;calme
|
| 7 |
+
during;en
|
| 8 |
+
autumn;automne
|
| 9 |
+
and;et
|
| 10 |
+
it;il
|
| 11 |
+
snowy;enneigée
|
| 12 |
+
in;en
|
| 13 |
+
april;avril
|
| 14 |
+
the;le
|
| 15 |
+
united;unis
|
| 16 |
+
states;etats
|
| 17 |
+
usually;généralement
|
| 18 |
+
chilly;frisquet
|
| 19 |
+
july;juillet
|
| 20 |
+
freezing;gel
|
| 21 |
+
november;novembre
|
| 22 |
+
california;californie
|
| 23 |
+
march;mars
|
| 24 |
+
hot;chaude
|
| 25 |
+
june;juin
|
| 26 |
+
mild;doux
|
| 27 |
+
cold;froid
|
| 28 |
+
september;septembre
|
| 29 |
+
your;votre
|
| 30 |
+
least;moins
|
| 31 |
+
liked;aimait
|
| 32 |
+
fruit;fruit
|
| 33 |
+
grape;raisin
|
| 34 |
+
but;mais
|
| 35 |
+
my;mon
|
| 36 |
+
apple;pomme
|
| 37 |
+
his;son
|
| 38 |
+
favorite;préféré
|
| 39 |
+
orange;l'orange
|
| 40 |
+
paris;paris
|
| 41 |
+
relaxing;relaxant
|
| 42 |
+
december;décembre
|
| 43 |
+
busy;occupé
|
| 44 |
+
spring;printemps
|
| 45 |
+
never;jamais
|
| 46 |
+
our;notre
|
| 47 |
+
lemon;citron
|
| 48 |
+
january;janvier
|
| 49 |
+
warm;chaud
|
| 50 |
+
lime;chaux
|
| 51 |
+
her;son
|
| 52 |
+
banana;banane
|
| 53 |
+
he;il
|
| 54 |
+
saw;vu
|
| 55 |
+
a;une
|
| 56 |
+
old;vieille
|
| 57 |
+
yellow;jaune
|
| 58 |
+
truck;camion
|
| 59 |
+
india;inde
|
| 60 |
+
rainy;pluvieux
|
| 61 |
+
that;cette
|
| 62 |
+
cat;chat
|
| 63 |
+
was;était
|
| 64 |
+
most;plus
|
| 65 |
+
loved;cher
|
| 66 |
+
animal;animal
|
| 67 |
+
dislikes;déteste
|
| 68 |
+
grapefruit;pamplemousse
|
| 69 |
+
limes;verts
|
| 70 |
+
lemons;citrons
|
| 71 |
+
february;février
|
| 72 |
+
china;chine
|
| 73 |
+
pleasant;agréable
|
| 74 |
+
october;octobre
|
| 75 |
+
wonderful;merveilleux
|
| 76 |
+
nice;petit
|
| 77 |
+
summer;été
|
| 78 |
+
france;france
|
| 79 |
+
may;mai
|
| 80 |
+
grapes;raisins
|
| 81 |
+
mangoes;mangues
|
| 82 |
+
their;leur
|
| 83 |
+
mango;mangue
|
| 84 |
+
pear;poire
|
| 85 |
+
august;août
|
| 86 |
+
beautiful;beau
|
| 87 |
+
apples;pommes
|
| 88 |
+
peaches;pêches
|
| 89 |
+
feared;redouté
|
| 90 |
+
shark;requin
|
| 91 |
+
wet;humide
|
| 92 |
+
dry;sec
|
| 93 |
+
we;nous
|
| 94 |
+
like;aiment
|
| 95 |
+
oranges;oranges
|
| 96 |
+
they;ils
|
| 97 |
+
pears;poires
|
| 98 |
+
she;elle
|
| 99 |
+
little;petite
|
| 100 |
+
red;rouge
|
| 101 |
+
winter;hiver
|
| 102 |
+
disliked;n'aimait
|
| 103 |
+
rusty;rouillée
|
| 104 |
+
car;voiture
|
| 105 |
+
strawberries;fraises
|
| 106 |
+
i;je
|
| 107 |
+
strawberry;fraise
|
| 108 |
+
bananas;bananes
|
| 109 |
+
going;va
|
| 110 |
+
to;aux
|
| 111 |
+
next;prochain
|
| 112 |
+
plan;prévois
|
| 113 |
+
visit;visiter
|
| 114 |
+
elephants;éléphants
|
| 115 |
+
were;étaient
|
| 116 |
+
animals;animaux
|
| 117 |
+
are;sont
|
| 118 |
+
likes;aime
|
| 119 |
+
dislike;n'aiment
|
| 120 |
+
fall;l'automne
|
| 121 |
+
driving;conduisait
|
| 122 |
+
peach;pêche
|
| 123 |
+
drives;pousse
|
| 124 |
+
blue;bleue
|
| 125 |
+
you;vous
|
| 126 |
+
bird;oiseau
|
| 127 |
+
horses;chevaux
|
| 128 |
+
mouse;souris
|
| 129 |
+
went;allés
|
| 130 |
+
last;dernier
|
| 131 |
+
horse;cheval
|
| 132 |
+
automobile;automobile
|
| 133 |
+
dogs;chiens
|
| 134 |
+
white;blanche
|
| 135 |
+
elephant;éléphant
|
| 136 |
+
black;noire
|
| 137 |
+
think;pensez
|
| 138 |
+
difficult;difficile
|
| 139 |
+
translate;traduire
|
| 140 |
+
between;entre
|
| 141 |
+
spanish;espagnol
|
| 142 |
+
portuguese;portugais
|
| 143 |
+
big;grande
|
| 144 |
+
green;verte
|
| 145 |
+
translating;traduction
|
| 146 |
+
fun;amusant
|
| 147 |
+
where;où
|
| 148 |
+
dog;chien
|
| 149 |
+
why;pourquoi
|
| 150 |
+
might;pourrait
|
| 151 |
+
go;aller
|
| 152 |
+
this;cet
|
| 153 |
+
drove;allions
|
| 154 |
+
shiny;brillant
|
| 155 |
+
sharks;requins
|
| 156 |
+
monkey;singe
|
| 157 |
+
how;comment
|
| 158 |
+
weather;temps
|
| 159 |
+
lion;lion
|
| 160 |
+
plans;envisage
|
| 161 |
+
bear;ours
|
| 162 |
+
rabbit;lapin
|
| 163 |
+
chinese;chinois
|
| 164 |
+
when;quand
|
| 165 |
+
eiffel;eiffel
|
| 166 |
+
tower;tour
|
| 167 |
+
did;êtes
|
| 168 |
+
grocery;l'épicerie
|
| 169 |
+
store;l'épicerie
|
| 170 |
+
wanted;voulait
|
| 171 |
+
does;t
|
| 172 |
+
football;football
|
| 173 |
+
field;terrain
|
| 174 |
+
wants;veut
|
| 175 |
+
didn't;n'a
|
| 176 |
+
snake;serpent
|
| 177 |
+
snakes;serpents
|
| 178 |
+
do;pensez
|
| 179 |
+
easy;facile
|
| 180 |
+
thinks;pense
|
| 181 |
+
english;anglais
|
| 182 |
+
french;français
|
| 183 |
+
would;voudrait
|
| 184 |
+
aren't;n'êtes
|
| 185 |
+
cats;chats
|
| 186 |
+
rabbits;lapins
|
| 187 |
+
has;allions
|
| 188 |
+
been;été
|
| 189 |
+
monkeys;singes
|
| 190 |
+
lake;lac
|
| 191 |
+
bears;redoutée
|
| 192 |
+
school;l'école
|
| 193 |
+
birds;oiseaux
|
| 194 |
+
want;veulent
|
| 195 |
+
not;pas
|
| 196 |
+
lions;lions
|
| 197 |
+
am;vais
|
| 198 |
+
mice;souris
|
| 199 |
+
have;ont
|
| 200 |
+
aren;êtes
|
| 201 |
+
t;pas
|
| 202 |
+
didn;êtes
|
data/dict_ref_fr_en.-save.csv
ADDED
|
@@ -0,0 +1,332 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Francais;Anglais
|
| 2 |
+
a;has
|
| 3 |
+
�;in
|
| 4 |
+
agr�able;pleasant
|
| 5 |
+
aimait;liked
|
| 6 |
+
aime;dislikes
|
| 7 |
+
aime;likes
|
| 8 |
+
aim�;loved
|
| 9 |
+
aim�e;loved
|
| 10 |
+
aiment;like
|
| 11 |
+
aimeraient;like
|
| 12 |
+
aim�s;loved
|
| 13 |
+
aimez;like
|
| 14 |
+
aimons;like
|
| 15 |
+
all�;went
|
| 16 |
+
all�e;went
|
| 17 |
+
aller;go
|
| 18 |
+
all�s;went
|
| 19 |
+
allez;going
|
| 20 |
+
allions;go
|
| 21 |
+
allons;go
|
| 22 |
+
amusant;fun
|
| 23 |
+
anglais;english
|
| 24 |
+
animal;animal
|
| 25 |
+
animaux;animals
|
| 26 |
+
ao�t;august
|
| 27 |
+
appr�ci�;liked
|
| 28 |
+
as;have
|
| 29 |
+
at;did
|
| 30 |
+
au;during
|
| 31 |
+
automne;autumn
|
| 32 |
+
automobile;automobile
|
| 33 |
+
aux;to
|
| 34 |
+
avez;liked
|
| 35 |
+
avons;go
|
| 36 |
+
avril;april
|
| 37 |
+
banane;banana
|
| 38 |
+
bananes;bananas
|
| 39 |
+
beau;beautiful
|
| 40 |
+
belle;beautiful
|
| 41 |
+
b�nigne;mild
|
| 42 |
+
bien;nice
|
| 43 |
+
blanc;white
|
| 44 |
+
blanche;white
|
| 45 |
+
bleu;blue
|
| 46 |
+
bleue;blue
|
| 47 |
+
brillant;shiny
|
| 48 |
+
brillante;shiny
|
| 49 |
+
c;it
|
| 50 |
+
california;california
|
| 51 |
+
californie;california
|
| 52 |
+
calme;quiet
|
| 53 |
+
camion;truck
|
| 54 |
+
ce;this
|
| 55 |
+
c�page;grape
|
| 56 |
+
cet;this
|
| 57 |
+
cette;that
|
| 58 |
+
chat;cat
|
| 59 |
+
chats;cats
|
| 60 |
+
chaud;warm
|
| 61 |
+
chaude;hot
|
| 62 |
+
chaux;lime
|
| 63 |
+
cher;loved
|
| 64 |
+
cheval;horse
|
| 65 |
+
chevaux;horses
|
| 66 |
+
chien;dog
|
| 67 |
+
chiens;dogs
|
| 68 |
+
chine;china
|
| 69 |
+
chinois;chinese
|
| 70 |
+
citron;lemon
|
| 71 |
+
citrons;lemons
|
| 72 |
+
cl�mentes;mild
|
| 73 |
+
comme;like
|
| 74 |
+
comment;how
|
| 75 |
+
conduisait;driving
|
| 76 |
+
conduit;driving
|
| 77 |
+
conduite;driving
|
| 78 |
+
cong�lation;freezing
|
| 79 |
+
cours;during
|
| 80 |
+
d;of
|
| 81 |
+
dans;in
|
| 82 |
+
de;
|
| 83 |
+
d�cembre;december
|
| 84 |
+
dernier;last
|
| 85 |
+
derni�re;last
|
| 86 |
+
des;the
|
| 87 |
+
d�tend;relaxing
|
| 88 |
+
d�tendre;relaxing
|
| 89 |
+
d�testait;disliked
|
| 90 |
+
d�teste;dislikes
|
| 91 |
+
d�testez;dislike
|
| 92 |
+
d�testons;dislike
|
| 93 |
+
difficile;difficult
|
| 94 |
+
douce;mild
|
| 95 |
+
doux;mild
|
| 96 |
+
du;the
|
| 97 |
+
durant;during
|
| 98 |
+
�cole;school
|
| 99 |
+
eiffel;eiffel
|
| 100 |
+
�l�phant;elephant
|
| 101 |
+
�l�phants;elephants
|
| 102 |
+
elle;she
|
| 103 |
+
en;in
|
| 104 |
+
enneig�;snowy
|
| 105 |
+
enneig�e;snowy
|
| 106 |
+
entre;between
|
| 107 |
+
envisage;plans
|
| 108 |
+
envisagent;plan
|
| 109 |
+
�picerie;grocery
|
| 110 |
+
es;been
|
| 111 |
+
espagnol;spanish
|
| 112 |
+
est;is
|
| 113 |
+
et;and
|
| 114 |
+
�taient;were
|
| 115 |
+
�tait;was
|
| 116 |
+
etats;states
|
| 117 |
+
�tats;states
|
| 118 |
+
�t�;summer
|
| 119 |
+
�tes;did
|
| 120 |
+
facile;easy
|
| 121 |
+
faire;go
|
| 122 |
+
fait;is
|
| 123 |
+
favori;favorite
|
| 124 |
+
favoris;favorite
|
| 125 |
+
f�vrier;february
|
| 126 |
+
football;football
|
| 127 |
+
frais;chilly
|
| 128 |
+
fraise;strawberry
|
| 129 |
+
fraises;strawberries
|
| 130 |
+
fran�ais;french
|
| 131 |
+
france;france
|
| 132 |
+
frisquet;chilly
|
| 133 |
+
froid;cold
|
| 134 |
+
fruit;fruit
|
| 135 |
+
fruits;fruit
|
| 136 |
+
gel;freezing
|
| 137 |
+
g�le;freezing
|
| 138 |
+
gel�;freezing
|
| 139 |
+
gel�s;freezing
|
| 140 |
+
g�n�ralement;usually
|
| 141 |
+
glaciales;freezing
|
| 142 |
+
grand;big
|
| 143 |
+
grande;big
|
| 144 |
+
grandes;big
|
| 145 |
+
grands;big
|
| 146 |
+
gros;big
|
| 147 |
+
grosse;big
|
| 148 |
+
grosses;big
|
| 149 |
+
habituellement;usually
|
| 150 |
+
hiver;winter
|
| 151 |
+
humide;wet
|
| 152 |
+
i;i
|
| 153 |
+
il;it
|
| 154 |
+
ils;they
|
| 155 |
+
inde;india
|
| 156 |
+
intention;plan
|
| 157 |
+
j;i
|
| 158 |
+
jamais;never
|
| 159 |
+
janvier;january
|
| 160 |
+
jaune;yellow
|
| 161 |
+
je;i
|
| 162 |
+
jersey;jersey
|
| 163 |
+
juillet;july
|
| 164 |
+
juin;june
|
| 165 |
+
l;the
|
| 166 |
+
la;the
|
| 167 |
+
lac;lake
|
| 168 |
+
lapin;rabbit
|
| 169 |
+
lapins;rabbits
|
| 170 |
+
le;the
|
| 171 |
+
l�g�re;mild
|
| 172 |
+
les;the
|
| 173 |
+
leur;their
|
| 174 |
+
leurs;their
|
| 175 |
+
limes;limes
|
| 176 |
+
lion;lion
|
| 177 |
+
lions;lions
|
| 178 |
+
lui;her
|
| 179 |
+
magnifique;wonderful
|
| 180 |
+
mai;may
|
| 181 |
+
maillot;jersey
|
| 182 |
+
mais;but
|
| 183 |
+
mangue;mango
|
| 184 |
+
mangues;mangoes
|
| 185 |
+
manguiers;mangoes
|
| 186 |
+
mars;march
|
| 187 |
+
merveilleux;wonderful
|
| 188 |
+
mes;my
|
| 189 |
+
moindres;least
|
| 190 |
+
moins;least
|
| 191 |
+
mois;
|
| 192 |
+
mon;my
|
| 193 |
+
monde;busy
|
| 194 |
+
moteur;driving
|
| 195 |
+
mouill�;wet
|
| 196 |
+
mouill�e;wet
|
| 197 |
+
n;not
|
| 198 |
+
ne;didn't
|
| 199 |
+
neige;snowy
|
| 200 |
+
neigeux;snowy
|
| 201 |
+
new;new
|
| 202 |
+
noir;black
|
| 203 |
+
noire;black
|
| 204 |
+
nos;our
|
| 205 |
+
notre;our
|
| 206 |
+
nous;we
|
| 207 |
+
nouveau;new
|
| 208 |
+
nouvelle;new
|
| 209 |
+
novembre;november
|
| 210 |
+
occup�;busy
|
| 211 |
+
occup�e;busy
|
| 212 |
+
octobre;october
|
| 213 |
+
oiseau;bird
|
| 214 |
+
oiseaux;birds
|
| 215 |
+
ont;have
|
| 216 |
+
orange;orange
|
| 217 |
+
oranges;oranges
|
| 218 |
+
o�;where
|
| 219 |
+
ours;bear
|
| 220 |
+
pamplemousse;grapefruit
|
| 221 |
+
pamplemousses;grapefruit
|
| 222 |
+
parfois;sometimes
|
| 223 |
+
paris;paris
|
| 224 |
+
pas;disliked
|
| 225 |
+
p�che;peach
|
| 226 |
+
p�ches;peaches
|
| 227 |
+
pendant;during
|
| 228 |
+
pense;thinks
|
| 229 |
+
pensez;think
|
| 230 |
+
petit;little
|
| 231 |
+
petite;little
|
| 232 |
+
petites;little
|
| 233 |
+
petits;little
|
| 234 |
+
peu;little
|
| 235 |
+
pla�t;dislike
|
| 236 |
+
pleut;rainy
|
| 237 |
+
pluie;rainy
|
| 238 |
+
pluies;rainy
|
| 239 |
+
plus;most
|
| 240 |
+
pluvieux;rainy
|
| 241 |
+
poire;pear
|
| 242 |
+
poires;pears
|
| 243 |
+
pomme;apple
|
| 244 |
+
pommes;apples
|
| 245 |
+
porcelaine;china
|
| 246 |
+
portugais;portuguese
|
| 247 |
+
pourquoi;why
|
| 248 |
+
pourraient;might
|
| 249 |
+
pourrait;might
|
| 250 |
+
pousse;drives
|
| 251 |
+
pr�f�r�;favorite
|
| 252 |
+
pr�f�r�e;favorite
|
| 253 |
+
pr�f�r�es;favorite
|
| 254 |
+
pr�f�r�s;favorite
|
| 255 |
+
pr�voient;plan
|
| 256 |
+
pr�vois;plan
|
| 257 |
+
pr�voit;plans
|
| 258 |
+
pr�voyons;plan
|
| 259 |
+
printemps;spring
|
| 260 |
+
prochain;next
|
| 261 |
+
proches;loved
|
| 262 |
+
qu;that
|
| 263 |
+
quand;when
|
| 264 |
+
que;that
|
| 265 |
+
qui;that
|
| 266 |
+
raisin;grape
|
| 267 |
+
raisins;grapes
|
| 268 |
+
redout�;feared
|
| 269 |
+
redout�e;feared
|
| 270 |
+
redout�s;feared
|
| 271 |
+
relaxant;relaxing
|
| 272 |
+
rendre;go
|
| 273 |
+
requin;shark
|
| 274 |
+
requins;sharks
|
| 275 |
+
ressort;spring
|
| 276 |
+
rouge;red
|
| 277 |
+
rouille;rusty
|
| 278 |
+
rouill�;rusty
|
| 279 |
+
rouill�e;rusty
|
| 280 |
+
se;
|
| 281 |
+
sec;dry
|
| 282 |
+
s�che;dry
|
| 283 |
+
septembre;september
|
| 284 |
+
serpent;snake
|
| 285 |
+
serpents;snakes
|
| 286 |
+
ses;his
|
| 287 |
+
singe;monkey
|
| 288 |
+
singes;monkeys
|
| 289 |
+
son;his
|
| 290 |
+
sont;are
|
| 291 |
+
souris;mouse
|
| 292 |
+
souvent;usually
|
| 293 |
+
sur;to
|
| 294 |
+
t;does
|
| 295 |
+
temps;weather
|
| 296 |
+
terrain;field
|
| 297 |
+
tour;tower
|
| 298 |
+
tout;like
|
| 299 |
+
traduction;translating
|
| 300 |
+
traduire;translate
|
| 301 |
+
traduis;translating
|
| 302 |
+
tranquille;quiet
|
| 303 |
+
trop;busy
|
| 304 |
+
trouv�;like
|
| 305 |
+
tu;you
|
| 306 |
+
un;a
|
| 307 |
+
une;a
|
| 308 |
+
unis;united
|
| 309 |
+
va;going
|
| 310 |
+
vais;going
|
| 311 |
+
vers;to
|
| 312 |
+
vert;green
|
| 313 |
+
verte;green
|
| 314 |
+
verts;green
|
| 315 |
+
veulent;want
|
| 316 |
+
veut;wants
|
| 317 |
+
vieille;old
|
| 318 |
+
vieux;old
|
| 319 |
+
visite;visit
|
| 320 |
+
visiter;visit
|
| 321 |
+
vit;saw
|
| 322 |
+
voiture;car
|
| 323 |
+
volant;driving
|
| 324 |
+
vont;going
|
| 325 |
+
vos;your
|
| 326 |
+
votre;your
|
| 327 |
+
voudrait;would
|
| 328 |
+
voulaient;wanted
|
| 329 |
+
voulait;wanted
|
| 330 |
+
voulez;would
|
| 331 |
+
vous;you
|
| 332 |
+
vu;saw
|