Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save emilfh/f2ee60ece263293d3f5c91ec05c53710 to your computer and use it in GitHub Desktop.
Save emilfh/f2ee60ece263293d3f5c91ec05c53710 to your computer and use it in GitHub Desktop.
Created on Skills Network Labs
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"<a href=\"https://cognitiveclass.ai\"><img src = \"https://ibm.box.com/shared/static/9gegpsmnsoo25ikkbl4qzlvlyjbgxs5x.png\" width = 400> </a>\n",
"\n",
"<h1 align=center><font size = 5>From Modeling to Evaluation</font></h1>"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Introduction\n",
"\n",
"In this lab, we will continue learning about the data science methodology, and focus on the **Modeling** and **Evaluation** stages.\n",
"\n",
"------------"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Table of Contents\n",
"\n",
"\n",
"<div class=\"alert alert-block alert-info\" style=\"margin-top: 20px\">\n",
"\n",
"1. [Recap](#0)<br>\n",
"2. [Data Modeling](#2)<br>\n",
"3. [Model Evaluation](#4)<br>\n",
"</div>\n",
"<hr>"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Recap <a id=\"0\"></a>\n",
"\n",
"In Lab **From Understanding to Preparation**, we explored the data and prepared it for modeling."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"The data was compiled by a researcher named Yong-Yeol Ahn, who scraped tens of thousands of food recipes (cuisines and ingredients) from three different websites, namely:"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"<img src=\"https://ibm.box.com/shared/static/4fruwan7wmjov3gywiz3swlojw0srv54.png\" width=500>\n",
"\n",
"www.allrecipes.com\n",
"\n",
"<img src=\"https://ibm.box.com/shared/static/cebfdbr22fjxa47lltp0bs533r103g0z.png\" width=500>\n",
"\n",
"www.epicurious.com\n",
"\n",
"<img src=\"https://ibm.box.com/shared/static/epk727njg7xrz49pbkpkzd05cm5ywqmu.png\" width=500>\n",
"\n",
"www.menupan.com"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"For more information on Yong-Yeol Ahn and his research, you can read his paper on [Flavor Network and the Principles of Food Pairing](http://yongyeol.com/papers/ahn-flavornet-2011.pdf)."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"<strong> Important note:</strong> Please note that you are not expected to know how to program in Python. This lab is meant to illustrate the stages of modeling and evaluation of the data science methodology, so it is totally fine if you do not understand the individual lines of code. We have a full course on programming in Python, <a href=\"http://cocl.us/PY0101EN_DS0103EN_LAB4_PYTHON_Coursera\"><strong>Python for Data Science</strong></a>, which is also offered on Coursera. So make sure to complete the Python course if you are interested in learning how to program in Python."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"### Using this notebook:\n",
"\n",
"To run any of the following cells of code, you can type **Shift + Enter** to excute the code in a cell."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Download the library and dependencies that we will need to run this lab."
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"import pandas as pd # import library to read data into dataframe\n",
"pd.set_option(\"display.max_columns\", None)\n",
"import numpy as np # import numpy library\n",
"import re # import library for regular expression\n",
"import random # library for random number generation"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"We already placed the data on an IBM server for your convenience, so let's download it from server and read it into a dataframe called **recipes**."
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Data read into dataframe!\n"
]
}
],
"source": [
"recipes = pd.read_csv(\"https://ibm.box.com/shared/static/5wah9atr5o1akuuavl2z9tkjzdinr1lv.csv\")\n",
"\n",
"print(\"Data read into dataframe!\") # takes about 30 seconds"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"We will repeat the preprocessing steps that we implemented in Lab **From Understanding to Preparation** in order to prepare the data for modeling. For more details on preparing the data, please refer to Lab **From Understanding to Preparation**."
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [],
"source": [
"# fix name of the column displaying the cuisine\n",
"column_names = recipes.columns.values\n",
"column_names[0] = \"cuisine\"\n",
"recipes.columns = column_names\n",
"\n",
"# convert cuisine names to lower case\n",
"recipes[\"cuisine\"] = recipes[\"cuisine\"].str.lower()\n",
"\n",
"# make the cuisine names consistent\n",
"recipes.loc[recipes[\"cuisine\"] == \"austria\", \"cuisine\"] = \"austrian\"\n",
"recipes.loc[recipes[\"cuisine\"] == \"belgium\", \"cuisine\"] = \"belgian\"\n",
"recipes.loc[recipes[\"cuisine\"] == \"china\", \"cuisine\"] = \"chinese\"\n",
"recipes.loc[recipes[\"cuisine\"] == \"canada\", \"cuisine\"] = \"canadian\"\n",
"recipes.loc[recipes[\"cuisine\"] == \"netherlands\", \"cuisine\"] = \"dutch\"\n",
"recipes.loc[recipes[\"cuisine\"] == \"france\", \"cuisine\"] = \"french\"\n",
"recipes.loc[recipes[\"cuisine\"] == \"germany\", \"cuisine\"] = \"german\"\n",
"recipes.loc[recipes[\"cuisine\"] == \"india\", \"cuisine\"] = \"indian\"\n",
"recipes.loc[recipes[\"cuisine\"] == \"indonesia\", \"cuisine\"] = \"indonesian\"\n",
"recipes.loc[recipes[\"cuisine\"] == \"iran\", \"cuisine\"] = \"iranian\"\n",
"recipes.loc[recipes[\"cuisine\"] == \"italy\", \"cuisine\"] = \"italian\"\n",
"recipes.loc[recipes[\"cuisine\"] == \"japan\", \"cuisine\"] = \"japanese\"\n",
"recipes.loc[recipes[\"cuisine\"] == \"israel\", \"cuisine\"] = \"jewish\"\n",
"recipes.loc[recipes[\"cuisine\"] == \"korea\", \"cuisine\"] = \"korean\"\n",
"recipes.loc[recipes[\"cuisine\"] == \"lebanon\", \"cuisine\"] = \"lebanese\"\n",
"recipes.loc[recipes[\"cuisine\"] == \"malaysia\", \"cuisine\"] = \"malaysian\"\n",
"recipes.loc[recipes[\"cuisine\"] == \"mexico\", \"cuisine\"] = \"mexican\"\n",
"recipes.loc[recipes[\"cuisine\"] == \"pakistan\", \"cuisine\"] = \"pakistani\"\n",
"recipes.loc[recipes[\"cuisine\"] == \"philippines\", \"cuisine\"] = \"philippine\"\n",
"recipes.loc[recipes[\"cuisine\"] == \"scandinavia\", \"cuisine\"] = \"scandinavian\"\n",
"recipes.loc[recipes[\"cuisine\"] == \"spain\", \"cuisine\"] = \"spanish_portuguese\"\n",
"recipes.loc[recipes[\"cuisine\"] == \"portugal\", \"cuisine\"] = \"spanish_portuguese\"\n",
"recipes.loc[recipes[\"cuisine\"] == \"switzerland\", \"cuisine\"] = \"swiss\"\n",
"recipes.loc[recipes[\"cuisine\"] == \"thailand\", \"cuisine\"] = \"thai\"\n",
"recipes.loc[recipes[\"cuisine\"] == \"turkey\", \"cuisine\"] = \"turkish\"\n",
"recipes.loc[recipes[\"cuisine\"] == \"vietnam\", \"cuisine\"] = \"vietnamese\"\n",
"recipes.loc[recipes[\"cuisine\"] == \"uk-and-ireland\", \"cuisine\"] = \"uk-and-irish\"\n",
"recipes.loc[recipes[\"cuisine\"] == \"irish\", \"cuisine\"] = \"uk-and-irish\"\n",
"\n",
"\n",
"# remove data for cuisines with < 50 recipes:\n",
"recipes_counts = recipes[\"cuisine\"].value_counts()\n",
"cuisines_indices = recipes_counts > 50\n",
"\n",
"cuisines_to_keep = list(np.array(recipes_counts.index.values)[np.array(cuisines_indices)])\n",
"recipes = recipes.loc[recipes[\"cuisine\"].isin(cuisines_to_keep)]\n",
"\n",
"# convert all Yes's to 1's and the No's to 0's\n",
"recipes = recipes.replace(to_replace=\"Yes\", value=1)\n",
"recipes = recipes.replace(to_replace=\"No\", value=0)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"<hr>"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Data Modeling <a id=\"2\"></a>"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"<img src=\"https://ibm.box.com/shared/static/d6fiatxvraho57fq3tfyblsf38fzi61f.png\" width=500>"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Download and install more libraries and dependies to build decision trees."
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Solving environment: done\n",
"\n",
"## Package Plan ##\n",
"\n",
" environment location: /home/jupyterlab/conda\n",
"\n",
" added / updated specs: \n",
" - python-graphviz\n",
"\n",
"\n",
"The following packages will be downloaded:\n",
"\n",
" package | build\n",
" ---------------------------|-----------------\n",
" python-graphviz-0.8.4 | py36_1 27 KB\n",
" conda-4.5.11 | py36_0 1.0 MB\n",
" ------------------------------------------------------------\n",
" Total: 1.0 MB\n",
"\n",
"The following NEW packages will be INSTALLED:\n",
"\n",
" python-graphviz: 0.8.4-py36_1 \n",
"\n",
"The following packages will be UPDATED:\n",
"\n",
" certifi: 2018.8.24-py36_1 conda-forge --> 2018.8.24-py36_1 \n",
" conda: 4.5.11-py36_0 conda-forge --> 4.5.11-py36_0 \n",
" openssl: 1.0.2p-h470a237_0 conda-forge --> 1.0.2p-h14c3975_0\n",
"\n",
"The following packages will be DOWNGRADED:\n",
"\n",
" ca-certificates: 2018.8.24-ha4d7672_0 conda-forge --> 2018.03.07-0 \n",
"\n",
"\n",
"Downloading and Extracting Packages\n",
"python-graphviz-0.8. | 27 KB | ##################################### | 100% \n",
"conda-4.5.11 | 1.0 MB | ##################################### | 100% \n",
"Preparing transaction: done\n",
"Verifying transaction: done\n",
"Executing transaction: done\n"
]
}
],
"source": [
"# import decision trees scikit-learn libraries\n",
"%matplotlib inline\n",
"from sklearn import tree\n",
"from sklearn.metrics import accuracy_score, confusion_matrix\n",
"\n",
"import matplotlib.pyplot as plt\n",
"\n",
"!conda install python-graphviz --yes\n",
"import graphviz\n",
"\n",
"from sklearn.tree import export_graphviz\n",
"\n",
"import itertools"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Check the data again!"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>cuisine</th>\n",
" <th>almond</th>\n",
" <th>angelica</th>\n",
" <th>anise</th>\n",
" <th>anise_seed</th>\n",
" <th>apple</th>\n",
" <th>apple_brandy</th>\n",
" <th>apricot</th>\n",
" <th>armagnac</th>\n",
" <th>artemisia</th>\n",
" <th>artichoke</th>\n",
" <th>asparagus</th>\n",
" <th>avocado</th>\n",
" <th>bacon</th>\n",
" <th>baked_potato</th>\n",
" <th>balm</th>\n",
" <th>banana</th>\n",
" <th>barley</th>\n",
" <th>bartlett_pear</th>\n",
" <th>basil</th>\n",
" <th>bay</th>\n",
" <th>bean</th>\n",
" <th>beech</th>\n",
" <th>beef</th>\n",
" <th>beef_broth</th>\n",
" <th>beef_liver</th>\n",
" <th>beer</th>\n",
" <th>beet</th>\n",
" <th>bell_pepper</th>\n",
" <th>bergamot</th>\n",
" <th>berry</th>\n",
" <th>bitter_orange</th>\n",
" <th>black_bean</th>\n",
" <th>black_currant</th>\n",
" <th>black_mustard_seed_oil</th>\n",
" <th>black_pepper</th>\n",
" <th>black_raspberry</th>\n",
" <th>black_sesame_seed</th>\n",
" <th>black_tea</th>\n",
" <th>blackberry</th>\n",
" <th>blackberry_brandy</th>\n",
" <th>blue_cheese</th>\n",
" <th>blueberry</th>\n",
" <th>bone_oil</th>\n",
" <th>bourbon_whiskey</th>\n",
" <th>brandy</th>\n",
" <th>brassica</th>\n",
" <th>bread</th>\n",
" <th>broccoli</th>\n",
" <th>brown_rice</th>\n",
" <th>brussels_sprout</th>\n",
" <th>buckwheat</th>\n",
" <th>butter</th>\n",
" <th>buttermilk</th>\n",
" <th>cabbage</th>\n",
" <th>cabernet_sauvignon_wine</th>\n",
" <th>cacao</th>\n",
" <th>camembert_cheese</th>\n",
" <th>cane_molasses</th>\n",
" <th>caraway</th>\n",
" <th>cardamom</th>\n",
" <th>carnation</th>\n",
" <th>carob</th>\n",
" <th>carrot</th>\n",
" <th>cashew</th>\n",
" <th>cassava</th>\n",
" <th>catfish</th>\n",
" <th>cauliflower</th>\n",
" <th>caviar</th>\n",
" <th>cayenne</th>\n",
" <th>celery</th>\n",
" <th>celery_oil</th>\n",
" <th>cereal</th>\n",
" <th>chamomile</th>\n",
" <th>champagne_wine</th>\n",
" <th>chayote</th>\n",
" <th>cheddar_cheese</th>\n",
" <th>cheese</th>\n",
" <th>cherry</th>\n",
" <th>cherry_brandy</th>\n",
" <th>chervil</th>\n",
" <th>chicken</th>\n",
" <th>chicken_broth</th>\n",
" <th>chicken_liver</th>\n",
" <th>chickpea</th>\n",
" <th>chicory</th>\n",
" <th>chinese_cabbage</th>\n",
" <th>chive</th>\n",
" <th>cider</th>\n",
" <th>cilantro</th>\n",
" <th>cinnamon</th>\n",
" <th>citrus</th>\n",
" <th>citrus_peel</th>\n",
" <th>clam</th>\n",
" <th>clove</th>\n",
" <th>cocoa</th>\n",
" <th>coconut</th>\n",
" <th>coconut_oil</th>\n",
" <th>cod</th>\n",
" <th>coffee</th>\n",
" <th>cognac</th>\n",
" <th>concord_grape</th>\n",
" <th>condiment</th>\n",
" <th>coriander</th>\n",
" <th>corn</th>\n",
" <th>corn_flake</th>\n",
" <th>corn_grit</th>\n",
" <th>cottage_cheese</th>\n",
" <th>crab</th>\n",
" <th>cranberry</th>\n",
" <th>cream</th>\n",
" <th>cream_cheese</th>\n",
" <th>cucumber</th>\n",
" <th>cumin</th>\n",
" <th>cured_pork</th>\n",
" <th>currant</th>\n",
" <th>date</th>\n",
" <th>dill</th>\n",
" <th>durian</th>\n",
" <th>eel</th>\n",
" <th>egg</th>\n",
" <th>egg_noodle</th>\n",
" <th>elderberry</th>\n",
" <th>emmental_cheese</th>\n",
" <th>endive</th>\n",
" <th>enokidake</th>\n",
" <th>fennel</th>\n",
" <th>fenugreek</th>\n",
" <th>feta_cheese</th>\n",
" <th>fig</th>\n",
" <th>fish</th>\n",
" <th>flower</th>\n",
" <th>frankfurter</th>\n",
" <th>fruit</th>\n",
" <th>galanga</th>\n",
" <th>gardenia</th>\n",
" <th>garlic</th>\n",
" <th>gelatin</th>\n",
" <th>geranium</th>\n",
" <th>gin</th>\n",
" <th>ginger</th>\n",
" <th>goat_cheese</th>\n",
" <th>grape</th>\n",
" <th>grape_brandy</th>\n",
" <th>grape_juice</th>\n",
" <th>grapefruit</th>\n",
" <th>green_bell_pepper</th>\n",
" <th>green_tea</th>\n",
" <th>gruyere_cheese</th>\n",
" <th>guava</th>\n",
" <th>haddock</th>\n",
" <th>ham</th>\n",
" <th>hazelnut</th>\n",
" <th>herring</th>\n",
" <th>holy_basil</th>\n",
" <th>honey</th>\n",
" <th>hop</th>\n",
" <th>horseradish</th>\n",
" <th>huckleberry</th>\n",
" <th>jamaican_rum</th>\n",
" <th>japanese_plum</th>\n",
" <th>jasmine</th>\n",
" <th>jasmine_tea</th>\n",
" <th>juniper_berry</th>\n",
" <th>kaffir_lime</th>\n",
" <th>kale</th>\n",
" <th>katsuobushi</th>\n",
" <th>kelp</th>\n",
" <th>kidney_bean</th>\n",
" <th>kiwi</th>\n",
" <th>kohlrabi</th>\n",
" <th>kumquat</th>\n",
" <th>lamb</th>\n",
" <th>lard</th>\n",
" <th>laurel</th>\n",
" <th>lavender</th>\n",
" <th>leaf</th>\n",
" <th>leek</th>\n",
" <th>lemon</th>\n",
" <th>lemon_juice</th>\n",
" <th>lemon_peel</th>\n",
" <th>lemongrass</th>\n",
" <th>lentil</th>\n",
" <th>lettuce</th>\n",
" <th>licorice</th>\n",
" <th>lilac_flower_oil</th>\n",
" <th>lima_bean</th>\n",
" <th>lime</th>\n",
" <th>lime_juice</th>\n",
" <th>lime_peel_oil</th>\n",
" <th>lingonberry</th>\n",
" <th>litchi</th>\n",
" <th>liver</th>\n",
" <th>lobster</th>\n",
" <th>long_pepper</th>\n",
" <th>lovage</th>\n",
" <th>macadamia_nut</th>\n",
" <th>macaroni</th>\n",
" <th>mace</th>\n",
" <th>mackerel</th>\n",
" <th>malt</th>\n",
" <th>mandarin</th>\n",
" <th>mandarin_peel</th>\n",
" <th>mango</th>\n",
" <th>maple_syrup</th>\n",
" <th>marjoram</th>\n",
" <th>mate</th>\n",
" <th>matsutake</th>\n",
" <th>meat</th>\n",
" <th>melon</th>\n",
" <th>milk</th>\n",
" <th>milk_fat</th>\n",
" <th>mint</th>\n",
" <th>mozzarella_cheese</th>\n",
" <th>mung_bean</th>\n",
" <th>munster_cheese</th>\n",
" <th>muscat_grape</th>\n",
" <th>mushroom</th>\n",
" <th>mussel</th>\n",
" <th>mustard</th>\n",
" <th>mutton</th>\n",
" <th>nectarine</th>\n",
" <th>nira</th>\n",
" <th>nut</th>\n",
" <th>nutmeg</th>\n",
" <th>oat</th>\n",
" <th>oatmeal</th>\n",
" <th>octopus</th>\n",
" <th>okra</th>\n",
" <th>olive</th>\n",
" <th>olive_oil</th>\n",
" <th>onion</th>\n",
" <th>orange</th>\n",
" <th>orange_flower</th>\n",
" <th>orange_juice</th>\n",
" <th>orange_peel</th>\n",
" <th>oregano</th>\n",
" <th>ouzo</th>\n",
" <th>oyster</th>\n",
" <th>palm</th>\n",
" <th>papaya</th>\n",
" <th>parmesan_cheese</th>\n",
" <th>parsley</th>\n",
" <th>parsnip</th>\n",
" <th>passion_fruit</th>\n",
" <th>pea</th>\n",
" <th>peach</th>\n",
" <th>peanut</th>\n",
" <th>peanut_butter</th>\n",
" <th>peanut_oil</th>\n",
" <th>pear</th>\n",
" <th>pear_brandy</th>\n",
" <th>pecan</th>\n",
" <th>pelargonium</th>\n",
" <th>pepper</th>\n",
" <th>peppermint</th>\n",
" <th>peppermint_oil</th>\n",
" <th>pimenta</th>\n",
" <th>pimento</th>\n",
" <th>pineapple</th>\n",
" <th>pistachio</th>\n",
" <th>plum</th>\n",
" <th>popcorn</th>\n",
" <th>porcini</th>\n",
" <th>pork</th>\n",
" <th>pork_liver</th>\n",
" <th>pork_sausage</th>\n",
" <th>port_wine</th>\n",
" <th>potato</th>\n",
" <th>potato_chip</th>\n",
" <th>prawn</th>\n",
" <th>prickly_pear</th>\n",
" <th>provolone_cheese</th>\n",
" <th>pumpkin</th>\n",
" <th>quince</th>\n",
" <th>radish</th>\n",
" <th>raisin</th>\n",
" <th>rapeseed</th>\n",
" <th>raspberry</th>\n",
" <th>raw_beef</th>\n",
" <th>red_algae</th>\n",
" <th>red_bean</th>\n",
" <th>red_kidney_bean</th>\n",
" <th>red_wine</th>\n",
" <th>rhubarb</th>\n",
" <th>rice</th>\n",
" <th>roasted_almond</th>\n",
" <th>roasted_beef</th>\n",
" <th>roasted_hazelnut</th>\n",
" <th>roasted_meat</th>\n",
" <th>roasted_nut</th>\n",
" <th>roasted_peanut</th>\n",
" <th>roasted_pecan</th>\n",
" <th>roasted_pork</th>\n",
" <th>roasted_sesame_seed</th>\n",
" <th>romano_cheese</th>\n",
" <th>root</th>\n",
" <th>roquefort_cheese</th>\n",
" <th>rose</th>\n",
" <th>rosemary</th>\n",
" <th>rum</th>\n",
" <th>rutabaga</th>\n",
" <th>rye_bread</th>\n",
" <th>rye_flour</th>\n",
" <th>saffron</th>\n",
" <th>sage</th>\n",
" <th>sake</th>\n",
" <th>salmon</th>\n",
" <th>salmon_roe</th>\n",
" <th>sassafras</th>\n",
" <th>sauerkraut</th>\n",
" <th>savory</th>\n",
" <th>scallion</th>\n",
" <th>scallop</th>\n",
" <th>sea_algae</th>\n",
" <th>seaweed</th>\n",
" <th>seed</th>\n",
" <th>sesame_oil</th>\n",
" <th>sesame_seed</th>\n",
" <th>shallot</th>\n",
" <th>sheep_cheese</th>\n",
" <th>shellfish</th>\n",
" <th>sherry</th>\n",
" <th>shiitake</th>\n",
" <th>shrimp</th>\n",
" <th>smoke</th>\n",
" <th>smoked_fish</th>\n",
" <th>smoked_salmon</th>\n",
" <th>smoked_sausage</th>\n",
" <th>sour_cherry</th>\n",
" <th>sour_milk</th>\n",
" <th>soy_sauce</th>\n",
" <th>soybean</th>\n",
" <th>soybean_oil</th>\n",
" <th>spearmint</th>\n",
" <th>squash</th>\n",
" <th>squid</th>\n",
" <th>star_anise</th>\n",
" <th>starch</th>\n",
" <th>strawberry</th>\n",
" <th>strawberry_jam</th>\n",
" <th>strawberry_juice</th>\n",
" <th>sturgeon_caviar</th>\n",
" <th>sumac</th>\n",
" <th>sunflower_oil</th>\n",
" <th>sweet_potato</th>\n",
" <th>swiss_cheese</th>\n",
" <th>tabasco_pepper</th>\n",
" <th>tamarind</th>\n",
" <th>tangerine</th>\n",
" <th>tarragon</th>\n",
" <th>tea</th>\n",
" <th>tequila</th>\n",
" <th>thai_pepper</th>\n",
" <th>thyme</th>\n",
" <th>tomato</th>\n",
" <th>tomato_juice</th>\n",
" <th>truffle</th>\n",
" <th>tuna</th>\n",
" <th>turkey</th>\n",
" <th>turmeric</th>\n",
" <th>turnip</th>\n",
" <th>vanilla</th>\n",
" <th>veal</th>\n",
" <th>vegetable</th>\n",
" <th>vegetable_oil</th>\n",
" <th>vinegar</th>\n",
" <th>violet</th>\n",
" <th>walnut</th>\n",
" <th>wasabi</th>\n",
" <th>watercress</th>\n",
" <th>watermelon</th>\n",
" <th>wheat</th>\n",
" <th>wheat_bread</th>\n",
" <th>whiskey</th>\n",
" <th>white_bread</th>\n",
" <th>white_wine</th>\n",
" <th>whole_grain_wheat_flour</th>\n",
" <th>wine</th>\n",
" <th>wood</th>\n",
" <th>yam</th>\n",
" <th>yeast</th>\n",
" <th>yogurt</th>\n",
" <th>zucchini</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>vietnamese</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>vietnamese</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>vietnamese</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>vietnamese</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" </tr>\n",
" <tr>\n",
" <th>4</th>\n",
" <td>vietnamese</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>1</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" <td>0</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" cuisine almond angelica anise anise_seed apple apple_brandy \\\n",
"0 vietnamese 0 0 0 0 0 0 \n",
"1 vietnamese 0 0 0 0 0 0 \n",
"2 vietnamese 0 0 0 0 0 0 \n",
"3 vietnamese 0 0 0 0 0 0 \n",
"4 vietnamese 0 0 0 0 0 0 \n",
"\n",
" apricot armagnac artemisia artichoke asparagus avocado bacon \\\n",
"0 0 0 0 0 0 0 0 \n",
"1 0 0 0 0 0 0 0 \n",
"2 0 0 0 0 0 0 0 \n",
"3 0 0 0 0 0 0 0 \n",
"4 0 0 0 0 0 0 0 \n",
"\n",
" baked_potato balm banana barley bartlett_pear basil bay bean beech \\\n",
"0 0 0 0 0 0 1 0 0 0 \n",
"1 0 0 0 0 0 0 0 0 0 \n",
"2 0 0 0 0 0 0 0 0 0 \n",
"3 0 0 0 0 0 1 0 1 0 \n",
"4 0 0 0 0 0 0 0 0 0 \n",
"\n",
" beef beef_broth beef_liver beer beet bell_pepper bergamot berry \\\n",
"0 0 0 0 0 0 0 0 0 \n",
"1 0 0 0 0 0 0 0 0 \n",
"2 0 0 0 0 0 0 0 0 \n",
"3 0 1 0 0 0 0 0 0 \n",
"4 0 0 0 0 0 0 0 0 \n",
"\n",
" bitter_orange black_bean black_currant black_mustard_seed_oil \\\n",
"0 0 0 0 0 \n",
"1 0 0 0 0 \n",
"2 0 0 0 0 \n",
"3 0 0 0 0 \n",
"4 0 0 0 0 \n",
"\n",
" black_pepper black_raspberry black_sesame_seed black_tea blackberry \\\n",
"0 0 0 0 0 0 \n",
"1 1 0 0 0 0 \n",
"2 0 0 0 0 0 \n",
"3 0 0 0 0 0 \n",
"4 0 0 0 0 0 \n",
"\n",
" blackberry_brandy blue_cheese blueberry bone_oil bourbon_whiskey \\\n",
"0 0 0 0 0 0 \n",
"1 0 0 0 0 0 \n",
"2 0 0 0 0 0 \n",
"3 0 0 0 0 0 \n",
"4 0 0 0 0 0 \n",
"\n",
" brandy brassica bread broccoli brown_rice brussels_sprout buckwheat \\\n",
"0 0 0 0 0 0 0 0 \n",
"1 0 0 0 0 0 0 0 \n",
"2 0 0 0 0 0 0 0 \n",
"3 0 0 0 0 0 0 0 \n",
"4 0 0 0 0 0 0 0 \n",
"\n",
" butter buttermilk cabbage cabernet_sauvignon_wine cacao \\\n",
"0 0 0 0 0 0 \n",
"1 0 0 0 0 0 \n",
"2 0 0 0 0 0 \n",
"3 0 0 0 0 0 \n",
"4 0 0 0 0 0 \n",
"\n",
" camembert_cheese cane_molasses caraway cardamom carnation carob \\\n",
"0 0 0 0 0 0 0 \n",
"1 0 0 0 0 0 0 \n",
"2 0 0 0 0 0 0 \n",
"3 0 0 0 0 0 0 \n",
"4 0 0 0 0 0 0 \n",
"\n",
" carrot cashew cassava catfish cauliflower caviar cayenne celery \\\n",
"0 1 0 0 0 0 0 1 0 \n",
"1 0 0 0 0 0 0 1 0 \n",
"2 0 0 0 0 0 0 0 0 \n",
"3 0 0 0 0 0 0 1 0 \n",
"4 0 0 0 0 0 0 1 0 \n",
"\n",
" celery_oil cereal chamomile champagne_wine chayote cheddar_cheese \\\n",
"0 0 0 0 0 0 0 \n",
"1 0 0 0 0 0 0 \n",
"2 0 0 0 0 0 0 \n",
"3 0 0 0 0 0 0 \n",
"4 0 0 0 0 0 0 \n",
"\n",
" cheese cherry cherry_brandy chervil chicken chicken_broth \\\n",
"0 0 0 0 0 0 0 \n",
"1 0 0 0 0 0 0 \n",
"2 0 0 0 0 0 0 \n",
"3 0 0 0 0 0 0 \n",
"4 0 0 0 0 0 0 \n",
"\n",
" chicken_liver chickpea chicory chinese_cabbage chive cider cilantro \\\n",
"0 0 0 0 0 0 0 1 \n",
"1 0 0 0 0 0 0 0 \n",
"2 0 0 0 0 0 0 0 \n",
"3 0 0 0 0 0 0 1 \n",
"4 0 0 0 0 0 0 0 \n",
"\n",
" cinnamon citrus citrus_peel clam clove cocoa coconut coconut_oil \\\n",
"0 0 0 0 0 0 0 0 0 \n",
"1 0 0 0 0 0 0 0 0 \n",
"2 0 0 0 0 0 0 0 0 \n",
"3 0 0 0 0 0 0 0 0 \n",
"4 0 0 0 0 0 0 0 0 \n",
"\n",
" cod coffee cognac concord_grape condiment coriander corn corn_flake \\\n",
"0 0 0 0 0 0 0 0 0 \n",
"1 0 0 0 0 0 0 0 0 \n",
"2 0 0 0 0 0 0 0 0 \n",
"3 0 0 0 0 0 0 0 0 \n",
"4 0 0 0 0 0 1 0 0 \n",
"\n",
" corn_grit cottage_cheese crab cranberry cream cream_cheese cucumber \\\n",
"0 0 0 0 0 0 0 1 \n",
"1 0 0 0 0 0 0 0 \n",
"2 0 0 0 0 0 0 0 \n",
"3 0 0 0 0 0 0 0 \n",
"4 0 0 0 0 0 0 1 \n",
"\n",
" cumin cured_pork currant date dill durian eel egg egg_noodle \\\n",
"0 0 0 0 0 0 0 0 0 0 \n",
"1 0 0 0 0 0 0 0 0 0 \n",
"2 0 0 0 0 0 0 0 0 0 \n",
"3 0 0 0 0 0 0 0 0 0 \n",
"4 0 0 0 0 0 0 0 0 0 \n",
"\n",
" elderberry emmental_cheese endive enokidake fennel fenugreek \\\n",
"0 0 0 0 0 0 0 \n",
"1 0 0 0 0 0 0 \n",
"2 0 0 0 0 0 0 \n",
"3 0 0 0 0 0 0 \n",
"4 0 0 0 0 0 0 \n",
"\n",
" feta_cheese fig fish flower frankfurter fruit galanga gardenia \\\n",
"0 0 0 1 0 0 0 0 0 \n",
"1 0 0 1 0 0 0 0 0 \n",
"2 0 0 0 0 0 0 0 0 \n",
"3 0 0 1 0 0 0 0 0 \n",
"4 0 0 1 0 0 0 0 0 \n",
"\n",
" garlic gelatin geranium gin ginger goat_cheese grape grape_brandy \\\n",
"0 1 0 0 0 0 0 0 0 \n",
"1 1 0 0 0 0 0 0 0 \n",
"2 1 0 0 0 0 0 0 0 \n",
"3 0 0 0 0 1 0 0 0 \n",
"4 1 0 0 0 0 0 0 0 \n",
"\n",
" grape_juice grapefruit green_bell_pepper green_tea gruyere_cheese \\\n",
"0 0 0 0 0 0 \n",
"1 0 0 0 0 0 \n",
"2 0 0 0 0 0 \n",
"3 0 0 0 0 0 \n",
"4 0 0 0 0 0 \n",
"\n",
" guava haddock ham hazelnut herring holy_basil honey hop \\\n",
"0 0 0 0 0 0 0 0 0 \n",
"1 0 0 0 0 0 0 0 0 \n",
"2 0 0 0 0 0 0 0 0 \n",
"3 0 0 0 0 0 0 0 0 \n",
"4 0 0 0 0 0 0 0 0 \n",
"\n",
" horseradish huckleberry jamaican_rum japanese_plum jasmine \\\n",
"0 0 0 0 0 0 \n",
"1 0 0 0 0 0 \n",
"2 0 0 0 0 0 \n",
"3 0 0 0 0 0 \n",
"4 0 0 0 0 0 \n",
"\n",
" jasmine_tea juniper_berry kaffir_lime kale katsuobushi kelp \\\n",
"0 0 0 0 0 0 0 \n",
"1 0 0 0 0 0 0 \n",
"2 0 0 0 0 0 0 \n",
"3 0 0 0 0 0 0 \n",
"4 0 0 0 0 0 0 \n",
"\n",
" kidney_bean kiwi kohlrabi kumquat lamb lard laurel lavender leaf \\\n",
"0 0 0 0 0 0 0 0 0 0 \n",
"1 0 0 0 0 0 0 0 0 0 \n",
"2 0 0 0 0 0 0 0 0 0 \n",
"3 0 0 0 0 0 0 0 0 0 \n",
"4 0 0 0 0 0 0 0 0 0 \n",
"\n",
" leek lemon lemon_juice lemon_peel lemongrass lentil lettuce \\\n",
"0 0 0 0 0 0 0 1 \n",
"1 0 0 0 0 0 0 0 \n",
"2 0 0 0 0 0 0 0 \n",
"3 0 0 0 0 0 0 0 \n",
"4 0 1 0 0 0 0 0 \n",
"\n",
" licorice lilac_flower_oil lima_bean lime lime_juice lime_peel_oil \\\n",
"0 0 0 0 0 1 0 \n",
"1 0 0 0 0 0 0 \n",
"2 0 0 0 0 1 0 \n",
"3 0 0 0 1 1 0 \n",
"4 0 0 0 0 1 0 \n",
"\n",
" lingonberry litchi liver lobster long_pepper lovage macadamia_nut \\\n",
"0 0 0 0 0 0 0 0 \n",
"1 0 0 0 0 0 0 0 \n",
"2 0 0 0 0 0 0 0 \n",
"3 0 0 0 0 0 0 0 \n",
"4 0 0 0 0 0 0 0 \n",
"\n",
" macaroni mace mackerel malt mandarin mandarin_peel mango \\\n",
"0 0 0 0 0 0 0 0 \n",
"1 0 0 0 0 0 0 0 \n",
"2 0 0 0 0 0 0 0 \n",
"3 0 0 0 0 0 0 0 \n",
"4 0 0 0 0 0 0 0 \n",
"\n",
" maple_syrup marjoram mate matsutake meat melon milk milk_fat mint \\\n",
"0 0 0 0 0 0 0 0 0 1 \n",
"1 0 0 0 0 0 0 0 0 0 \n",
"2 0 0 0 0 0 0 0 0 0 \n",
"3 0 0 0 0 0 0 0 0 1 \n",
"4 0 0 0 0 0 0 0 0 1 \n",
"\n",
" mozzarella_cheese mung_bean munster_cheese muscat_grape mushroom \\\n",
"0 0 0 0 0 0 \n",
"1 0 0 0 0 0 \n",
"2 0 0 0 0 0 \n",
"3 0 0 0 0 0 \n",
"4 0 0 0 0 0 \n",
"\n",
" mussel mustard mutton nectarine nira nut nutmeg oat oatmeal \\\n",
"0 0 0 0 0 0 0 0 0 0 \n",
"1 0 0 0 0 0 0 0 0 0 \n",
"2 0 0 0 0 0 0 0 0 0 \n",
"3 0 0 0 0 0 0 0 0 0 \n",
"4 0 0 0 0 0 0 0 0 0 \n",
"\n",
" octopus okra olive olive_oil onion orange orange_flower \\\n",
"0 0 0 0 1 0 0 0 \n",
"1 0 0 0 0 1 0 0 \n",
"2 0 0 0 0 0 0 0 \n",
"3 0 0 0 0 0 0 0 \n",
"4 0 0 0 0 0 0 0 \n",
"\n",
" orange_juice orange_peel oregano ouzo oyster palm papaya \\\n",
"0 0 0 0 0 0 0 0 \n",
"1 0 0 0 0 0 0 0 \n",
"2 0 0 0 0 0 0 0 \n",
"3 0 0 0 0 0 0 0 \n",
"4 0 0 0 0 0 0 0 \n",
"\n",
" parmesan_cheese parsley parsnip passion_fruit pea peach peanut \\\n",
"0 0 0 0 0 0 0 0 \n",
"1 0 0 0 0 0 0 0 \n",
"2 0 0 0 0 0 0 0 \n",
"3 0 0 0 0 1 0 0 \n",
"4 0 0 0 0 0 0 1 \n",
"\n",
" peanut_butter peanut_oil pear pear_brandy pecan pelargonium pepper \\\n",
"0 0 0 0 0 0 0 0 \n",
"1 0 0 0 0 0 0 0 \n",
"2 0 0 0 0 0 0 0 \n",
"3 0 0 0 0 0 0 0 \n",
"4 0 0 0 0 0 0 0 \n",
"\n",
" peppermint peppermint_oil pimenta pimento pineapple pistachio plum \\\n",
"0 0 0 0 0 0 0 0 \n",
"1 0 0 0 0 0 0 0 \n",
"2 0 0 0 0 0 0 0 \n",
"3 0 0 0 0 0 0 0 \n",
"4 0 0 0 0 0 0 0 \n",
"\n",
" popcorn porcini pork pork_liver pork_sausage port_wine potato \\\n",
"0 0 0 0 0 0 0 0 \n",
"1 0 0 0 0 0 0 0 \n",
"2 0 0 0 0 0 0 0 \n",
"3 0 0 0 0 0 0 0 \n",
"4 0 0 0 0 0 0 0 \n",
"\n",
" potato_chip prawn prickly_pear provolone_cheese pumpkin quince \\\n",
"0 0 0 0 0 0 0 \n",
"1 0 0 0 0 0 0 \n",
"2 0 0 0 0 0 0 \n",
"3 0 0 0 0 0 0 \n",
"4 0 0 0 0 0 0 \n",
"\n",
" radish raisin rapeseed raspberry raw_beef red_algae red_bean \\\n",
"0 0 0 0 0 0 0 0 \n",
"1 0 0 0 0 0 0 0 \n",
"2 0 0 0 0 0 0 0 \n",
"3 0 0 0 0 0 0 0 \n",
"4 0 0 0 0 0 0 0 \n",
"\n",
" red_kidney_bean red_wine rhubarb rice roasted_almond roasted_beef \\\n",
"0 0 0 0 1 0 0 \n",
"1 0 0 0 0 0 0 \n",
"2 0 0 0 0 0 0 \n",
"3 0 0 0 1 0 1 \n",
"4 0 0 0 1 0 0 \n",
"\n",
" roasted_hazelnut roasted_meat roasted_nut roasted_peanut roasted_pecan \\\n",
"0 0 0 0 0 0 \n",
"1 0 0 0 0 0 \n",
"2 0 0 0 0 0 \n",
"3 0 0 0 0 0 \n",
"4 0 0 0 0 0 \n",
"\n",
" roasted_pork roasted_sesame_seed romano_cheese root roquefort_cheese \\\n",
"0 0 0 0 0 0 \n",
"1 0 0 0 0 0 \n",
"2 0 0 0 0 0 \n",
"3 0 0 0 0 0 \n",
"4 0 0 0 0 0 \n",
"\n",
" rose rosemary rum rutabaga rye_bread rye_flour saffron sage sake \\\n",
"0 0 0 0 0 0 0 0 0 0 \n",
"1 0 0 0 0 0 0 0 0 0 \n",
"2 0 0 0 0 0 0 0 0 0 \n",
"3 0 0 0 0 0 0 0 0 0 \n",
"4 0 0 0 0 0 0 0 0 0 \n",
"\n",
" salmon salmon_roe sassafras sauerkraut savory scallion scallop \\\n",
"0 0 0 0 0 0 0 0 \n",
"1 0 0 0 0 0 0 0 \n",
"2 0 0 0 0 0 0 0 \n",
"3 0 0 0 0 0 0 0 \n",
"4 0 0 0 0 0 1 0 \n",
"\n",
" sea_algae seaweed seed sesame_oil sesame_seed shallot sheep_cheese \\\n",
"0 0 0 1 0 0 0 0 \n",
"1 0 0 1 0 0 0 0 \n",
"2 0 0 0 0 0 0 0 \n",
"3 0 0 0 0 0 1 0 \n",
"4 0 0 0 0 0 0 0 \n",
"\n",
" shellfish sherry shiitake shrimp smoke smoked_fish smoked_salmon \\\n",
"0 0 0 1 1 0 0 0 \n",
"1 0 0 0 0 0 0 0 \n",
"2 0 0 0 0 0 0 0 \n",
"3 0 0 0 0 0 0 0 \n",
"4 0 0 0 1 0 0 0 \n",
"\n",
" smoked_sausage sour_cherry sour_milk soy_sauce soybean soybean_oil \\\n",
"0 0 0 0 0 0 0 \n",
"1 0 0 0 0 0 0 \n",
"2 0 0 0 1 0 0 \n",
"3 0 0 0 0 0 0 \n",
"4 0 0 0 0 0 0 \n",
"\n",
" spearmint squash squid star_anise starch strawberry strawberry_jam \\\n",
"0 0 0 0 0 0 0 0 \n",
"1 0 0 0 0 0 0 0 \n",
"2 0 0 0 0 0 0 0 \n",
"3 0 0 0 0 0 0 0 \n",
"4 0 0 0 0 0 0 0 \n",
"\n",
" strawberry_juice sturgeon_caviar sumac sunflower_oil sweet_potato \\\n",
"0 0 0 0 0 0 \n",
"1 0 0 0 0 0 \n",
"2 0 0 0 0 0 \n",
"3 0 0 0 0 0 \n",
"4 0 0 0 0 0 \n",
"\n",
" swiss_cheese tabasco_pepper tamarind tangerine tarragon tea tequila \\\n",
"0 0 0 0 0 0 0 0 \n",
"1 0 0 0 0 0 0 0 \n",
"2 0 0 0 0 0 0 0 \n",
"3 0 0 0 0 0 0 0 \n",
"4 0 0 0 0 0 0 0 \n",
"\n",
" thai_pepper thyme tomato tomato_juice truffle tuna turkey turmeric \\\n",
"0 0 0 0 0 0 0 0 0 \n",
"1 0 0 0 0 0 0 0 0 \n",
"2 1 0 0 0 0 0 0 0 \n",
"3 0 0 0 0 0 0 0 0 \n",
"4 0 0 0 0 0 0 0 0 \n",
"\n",
" turnip vanilla veal vegetable vegetable_oil vinegar violet walnut \\\n",
"0 0 0 0 0 0 1 0 0 \n",
"1 0 0 0 0 0 0 0 0 \n",
"2 0 0 0 0 0 0 0 0 \n",
"3 0 0 0 0 1 0 0 0 \n",
"4 0 0 0 0 0 1 0 0 \n",
"\n",
" wasabi watercress watermelon wheat wheat_bread whiskey white_bread \\\n",
"0 0 0 0 0 0 0 0 \n",
"1 0 0 0 0 0 0 0 \n",
"2 0 0 0 0 0 0 0 \n",
"3 0 0 0 0 0 0 0 \n",
"4 0 0 0 0 0 0 0 \n",
"\n",
" white_wine whole_grain_wheat_flour wine wood yam yeast yogurt \\\n",
"0 0 0 0 0 0 0 0 \n",
"1 0 0 0 0 0 0 0 \n",
"2 0 0 0 0 0 0 0 \n",
"3 0 0 0 0 0 0 0 \n",
"4 0 0 0 0 0 0 0 \n",
"\n",
" zucchini \n",
"0 0 \n",
"1 0 \n",
"2 0 \n",
"3 0 \n",
"4 0 "
]
},
"execution_count": 5,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"recipes.head()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## [bamboo_tree] Only Asian and Indian Cuisines\n",
"\n",
"Here, we are creating a decision tree for the recipes for just some of the Asian (Korean, Japanese, Chinese, Thai) and Indian cuisines. The reason for this is because the decision tree does not run well when the data is biased towards one cuisine, in this case American cuisines. One option is to exclude the American cuisines from our analysis or just build decision trees for different subsets of the data. Let's go with the latter solution."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Let's build our decision tree using the data pertaining to the Asian and Indian cuisines and name our decision tree *bamboo_tree*."
]
},
{
"cell_type": "code",
"execution_count": 33,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Decision tree model saved to european_tree!\n"
]
}
],
"source": [
"# select subset of cuisines\n",
"european_recipes = recipes[recipes.cuisine.isin([\"austrian\", \"belgian\", \"dutch\", \"french\", \"german\",\"italian\",\"jewish\",\"scandinavian\",\"spanish_portuguese\",\"swiss\",\"uk-and-irish\"])]\n",
"cuisines = european_recipes[\"cuisine\"]\n",
"ingredients = european_recipes.iloc[:,1:]\n",
"\n",
"european_tree = tree.DecisionTreeClassifier(max_depth=5)\n",
"european_tree.fit(ingredients, cuisines)\n",
"\n",
"print(\"Decision tree model saved to european_tree!\")"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Let's plot the decision tree and examine how it looks like."
]
},
{
"cell_type": "code",
"execution_count": 34,
"metadata": {},
"outputs": [
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n",
"<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\n",
" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n",
"<!-- Generated by graphviz version 2.40.1 (20161225.0304)\n",
" -->\n",
"<!-- Title: Tree Pages: 1 -->\n",
"<svg width=\"4274pt\" height=\"671pt\"\n",
" viewBox=\"0.00 0.00 4274.00 671.00\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
"<g id=\"graph0\" class=\"graph\" transform=\"scale(1 1) rotate(0) translate(4 667)\">\n",
"<title>Tree</title>\n",
"<polygon fill=\"#ffffff\" stroke=\"transparent\" points=\"-4,4 -4,-667 4270,-667 4270,4 -4,4\"/>\n",
"<!-- 0 -->\n",
"<g id=\"node1\" class=\"node\">\n",
"<title>0</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.403922\" stroke=\"#000000\" points=\"3079,-663 2808,-663 2808,-580 3079,-580 3079,-663\"/>\n",
"<text text-anchor=\"start\" x=\"2921.5\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #0</text>\n",
"<text text-anchor=\"start\" x=\"2901\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">macaroni ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"2899.5\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 6166</text>\n",
"<text text-anchor=\"start\" x=\"2816\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1264, 289, 3250, 329, 250, 416, 368]</text>\n",
"<text text-anchor=\"start\" x=\"2905.5\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 1 -->\n",
"<g id=\"node2\" class=\"node\">\n",
"<title>1</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.274510\" stroke=\"#000000\" points=\"2517,-544 2246,-544 2246,-461 2517,-461 2517,-544\"/>\n",
"<text text-anchor=\"start\" x=\"2359.5\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #1</text>\n",
"<text text-anchor=\"start\" x=\"2340.5\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">olive_oil ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"2337.5\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 5210</text>\n",
"<text text-anchor=\"start\" x=\"2254\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1248, 285, 2330, 327, 249, 404, 367]</text>\n",
"<text text-anchor=\"start\" x=\"2343.5\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 0&#45;&gt;1 -->\n",
"<g id=\"edge1\" class=\"edge\">\n",
"<title>0&#45;&gt;1</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M2807.8138,-592.7693C2723.0528,-574.8217 2613.9552,-551.7209 2527.3442,-533.3816\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2527.9414,-529.9305 2517.4332,-531.283 2526.4913,-536.7787 2527.9414,-529.9305\"/>\n",
"<text text-anchor=\"middle\" x=\"2531.0655\" y=\"-548.5392\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">True</text>\n",
"</g>\n",
"<!-- 32 -->\n",
"<g id=\"node33\" class=\"node\">\n",
"<title>32</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.960784\" stroke=\"#000000\" points=\"3629.5,-544 3439.5,-544 3439.5,-461 3629.5,-461 3629.5,-544\"/>\n",
"<text text-anchor=\"start\" x=\"3509\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #32</text>\n",
"<text text-anchor=\"start\" x=\"3498.5\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">saffron ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"3494\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 956</text>\n",
"<text text-anchor=\"start\" x=\"3447.5\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [16, 4, 920, 2, 1, 12, 1]</text>\n",
"<text text-anchor=\"start\" x=\"3496.5\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 0&#45;&gt;32 -->\n",
"<g id=\"edge32\" class=\"edge\">\n",
"<title>0&#45;&gt;32</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3079.0873,-594.199C3185.507,-572.771 3331.5239,-543.37 3429.2488,-523.6927\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3430.0306,-527.1056 3439.143,-521.7005 3428.6489,-520.2433 3430.0306,-527.1056\"/>\n",
"<text text-anchor=\"middle\" x=\"3425.3026\" y=\"-538.8198\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">False</text>\n",
"</g>\n",
"<!-- 2 -->\n",
"<g id=\"node3\" class=\"node\">\n",
"<title>2</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.043137\" stroke=\"#000000\" points=\"1347.5,-425 1083.5,-425 1083.5,-342 1347.5,-342 1347.5,-425\"/>\n",
"<text text-anchor=\"start\" x=\"1193.5\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #2</text>\n",
"<text text-anchor=\"start\" x=\"1151\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">parmesan_cheese ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"1171.5\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3196</text>\n",
"<text text-anchor=\"start\" x=\"1091.5\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [907, 279, 1005, 245, 238, 174, 348]</text>\n",
"<text text-anchor=\"start\" x=\"1177.5\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 1&#45;&gt;2 -->\n",
"<g id=\"edge2\" class=\"edge\">\n",
"<title>1&#45;&gt;2</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M2245.7491,-488.6455C2023.4455,-465.9576 1583.9092,-421.0992 1357.5664,-397.9991\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"1357.9183,-394.5169 1347.6146,-396.9834 1357.2075,-401.4807 1357.9183,-394.5169\"/>\n",
"</g>\n",
"<!-- 17 -->\n",
"<g id=\"node18\" class=\"node\">\n",
"<title>17</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.588235\" stroke=\"#000000\" points=\"2496.5,-425 2266.5,-425 2266.5,-342 2496.5,-342 2496.5,-425\"/>\n",
"<text text-anchor=\"start\" x=\"2356\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #17</text>\n",
"<text text-anchor=\"start\" x=\"2352\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">basil ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"2337.5\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2014</text>\n",
"<text text-anchor=\"start\" x=\"2274.5\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [341, 6, 1325, 82, 11, 230, 19]</text>\n",
"<text text-anchor=\"start\" x=\"2343.5\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 1&#45;&gt;17 -->\n",
"<g id=\"edge17\" class=\"edge\">\n",
"<title>1&#45;&gt;17</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M2381.5,-460.8796C2381.5,-452.6838 2381.5,-443.9891 2381.5,-435.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2385.0001,-435.298 2381.5,-425.2981 2378.0001,-435.2981 2385.0001,-435.298\"/>\n",
"</g>\n",
"<!-- 3 -->\n",
"<g id=\"node4\" class=\"node\">\n",
"<title>3</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.023529\" stroke=\"#000000\" points=\"798,-306 541,-306 541,-223 798,-223 798,-306\"/>\n",
"<text text-anchor=\"start\" x=\"647.5\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #3</text>\n",
"<text text-anchor=\"start\" x=\"640\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">basil ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"625.5\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2971</text>\n",
"<text text-anchor=\"start\" x=\"549\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [873, 277, 823, 242, 238, 174, 344]</text>\n",
"<text text-anchor=\"start\" x=\"631\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 2&#45;&gt;3 -->\n",
"<g id=\"edge3\" class=\"edge\">\n",
"<title>2&#45;&gt;3</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M1083.3286,-354.6934C999.9943,-336.5308 892.5512,-313.1137 808.0294,-294.6923\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"808.6164,-291.2382 798.1005,-292.5283 807.1257,-298.0776 808.6164,-291.2382\"/>\n",
"</g>\n",
"<!-- 10 -->\n",
"<g id=\"node11\" class=\"node\">\n",
"<title>10</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.776471\" stroke=\"#000000\" points=\"1307,-306 1124,-306 1124,-223 1307,-223 1307,-306\"/>\n",
"<text text-anchor=\"start\" x=\"1190\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #10</text>\n",
"<text text-anchor=\"start\" x=\"1186\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">milk ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"1175\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 225</text>\n",
"<text text-anchor=\"start\" x=\"1132\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [34, 2, 182, 3, 0, 0, 4]</text>\n",
"<text text-anchor=\"start\" x=\"1177.5\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 2&#45;&gt;10 -->\n",
"<g id=\"edge10\" class=\"edge\">\n",
"<title>2&#45;&gt;10</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M1215.5,-341.8796C1215.5,-333.6838 1215.5,-324.9891 1215.5,-316.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"1219.0001,-316.298 1215.5,-306.2981 1212.0001,-316.2981 1219.0001,-316.298\"/>\n",
"</g>\n",
"<!-- 4 -->\n",
"<g id=\"node5\" class=\"node\">\n",
"<title>4</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.058824\" stroke=\"#000000\" points=\"492,-187 235,-187 235,-104 492,-104 492,-187\"/>\n",
"<text text-anchor=\"start\" x=\"341.5\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #4</text>\n",
"<text text-anchor=\"start\" x=\"328.5\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">shallot ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"319.5\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2866</text>\n",
"<text text-anchor=\"start\" x=\"243\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [860, 276, 738, 241, 238, 171, 342]</text>\n",
"<text text-anchor=\"start\" x=\"325\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 3&#45;&gt;4 -->\n",
"<g id=\"edge4\" class=\"edge\">\n",
"<title>3&#45;&gt;4</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M562.476,-222.8796C535.8047,-212.5074 507.0785,-201.3361 479.9762,-190.7963\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"481.0522,-187.4594 470.4635,-187.0969 478.515,-193.9835 481.0522,-187.4594\"/>\n",
"</g>\n",
"<!-- 7 -->\n",
"<g id=\"node8\" class=\"node\">\n",
"<title>7</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.784314\" stroke=\"#000000\" points=\"757.5,-187 581.5,-187 581.5,-104 757.5,-104 757.5,-187\"/>\n",
"<text text-anchor=\"start\" x=\"647.5\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #7</text>\n",
"<text text-anchor=\"start\" x=\"629.5\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">lavender ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"629\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 105</text>\n",
"<text text-anchor=\"start\" x=\"589.5\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [13, 1, 85, 1, 0, 3, 2]</text>\n",
"<text text-anchor=\"start\" x=\"631.5\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 3&#45;&gt;7 -->\n",
"<g id=\"edge7\" class=\"edge\">\n",
"<title>3&#45;&gt;7</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M669.5,-222.8796C669.5,-214.6838 669.5,-205.9891 669.5,-197.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"673.0001,-197.298 669.5,-187.2981 666.0001,-197.2981 673.0001,-197.298\"/>\n",
"</g>\n",
"<!-- 5 -->\n",
"<g id=\"node6\" class=\"node\">\n",
"<title>5</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.023529\" stroke=\"#000000\" points=\"257,-68 0,-68 0,0 257,0 257,-68\"/>\n",
"<text text-anchor=\"start\" x=\"106.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #5</text>\n",
"<text text-anchor=\"start\" x=\"84.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2761</text>\n",
"<text text-anchor=\"start\" x=\"8\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [777, 275, 726, 239, 236, 170, 338]</text>\n",
"<text text-anchor=\"start\" x=\"90\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 4&#45;&gt;5 -->\n",
"<g id=\"edge5\" class=\"edge\">\n",
"<title>4&#45;&gt;5</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M275.9947,-103.9815C254.1856,-93.6338 230.899,-82.585 209.4231,-72.3954\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"210.8747,-69.2102 200.3397,-68.0856 207.874,-75.5345 210.8747,-69.2102\"/>\n",
"</g>\n",
"<!-- 6 -->\n",
"<g id=\"node7\" class=\"node\">\n",
"<title>6</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.764706\" stroke=\"#000000\" points=\"451.5,-68 275.5,-68 275.5,0 451.5,0 451.5,-68\"/>\n",
"<text text-anchor=\"start\" x=\"341.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #6</text>\n",
"<text text-anchor=\"start\" x=\"323\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 105</text>\n",
"<text text-anchor=\"start\" x=\"283.5\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [83, 1, 12, 2, 2, 1, 4]</text>\n",
"<text text-anchor=\"start\" x=\"325\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 4&#45;&gt;6 -->\n",
"<g id=\"edge6\" class=\"edge\">\n",
"<title>4&#45;&gt;6</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M363.5,-103.9815C363.5,-95.618 363.5,-86.7965 363.5,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"367.0001,-78.2636 363.5,-68.2637 360.0001,-78.2637 367.0001,-78.2636\"/>\n",
"</g>\n",
"<!-- 8 -->\n",
"<g id=\"node9\" class=\"node\">\n",
"<title>8</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.827451\" stroke=\"#000000\" points=\"639.5,-68 469.5,-68 469.5,0 639.5,0 639.5,-68\"/>\n",
"<text text-anchor=\"start\" x=\"532.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #8</text>\n",
"<text text-anchor=\"start\" x=\"514\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 101</text>\n",
"<text text-anchor=\"start\" x=\"477.5\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [9, 1, 85, 1, 0, 3, 2]</text>\n",
"<text text-anchor=\"start\" x=\"516.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 7&#45;&gt;8 -->\n",
"<g id=\"edge8\" class=\"edge\">\n",
"<title>7&#45;&gt;8</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M626.6782,-103.9815C617.0095,-94.607 606.7473,-84.6572 597.0882,-75.2921\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"599.4551,-72.7118 589.8392,-68.2637 594.5824,-77.7375 599.4551,-72.7118\"/>\n",
"</g>\n",
"<!-- 9 -->\n",
"<g id=\"node10\" class=\"node\">\n",
"<title>9</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"821,-68 658,-68 658,0 821,0 821,-68\"/>\n",
"<text text-anchor=\"start\" x=\"717.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #9</text>\n",
"<text text-anchor=\"start\" x=\"706\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 4</text>\n",
"<text text-anchor=\"start\" x=\"666\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [4, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"701\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 7&#45;&gt;9 -->\n",
"<g id=\"edge9\" class=\"edge\">\n",
"<title>7&#45;&gt;9</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M695.5654,-103.9815C701.1045,-95.1585 706.9636,-85.8258 712.5355,-76.9506\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"715.6363,-78.594 717.9892,-68.2637 709.7078,-74.872 715.6363,-78.594\"/>\n",
"</g>\n",
"<!-- 11 -->\n",
"<g id=\"node12\" class=\"node\">\n",
"<title>11</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.847059\" stroke=\"#000000\" points=\"1208,-187 1025,-187 1025,-104 1208,-104 1208,-187\"/>\n",
"<text text-anchor=\"start\" x=\"1091\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #11</text>\n",
"<text text-anchor=\"start\" x=\"1071\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">peanut_oil ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"1076\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 172</text>\n",
"<text text-anchor=\"start\" x=\"1033\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [20, 0, 149, 3, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"1078.5\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 10&#45;&gt;11 -->\n",
"<g id=\"edge11\" class=\"edge\">\n",
"<title>10&#45;&gt;11</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M1180.8746,-222.8796C1173.382,-213.8733 1165.3881,-204.2644 1157.6721,-194.9897\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"1160.3593,-192.7472 1151.2732,-187.2981 1154.9781,-197.224 1160.3593,-192.7472\"/>\n",
"</g>\n",
"<!-- 14 -->\n",
"<g id=\"node15\" class=\"node\">\n",
"<title>14</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.486275\" stroke=\"#000000\" points=\"1402.5,-187 1226.5,-187 1226.5,-104 1402.5,-104 1402.5,-187\"/>\n",
"<text text-anchor=\"start\" x=\"1289\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #14</text>\n",
"<text text-anchor=\"start\" x=\"1288.5\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">pea ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"1277.5\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 53</text>\n",
"<text text-anchor=\"start\" x=\"1234.5\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [14, 2, 33, 0, 0, 0, 4]</text>\n",
"<text text-anchor=\"start\" x=\"1276.5\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 10&#45;&gt;14 -->\n",
"<g id=\"edge14\" class=\"edge\">\n",
"<title>10&#45;&gt;14</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M1250.1254,-222.8796C1257.618,-213.8733 1265.6119,-204.2644 1273.3279,-194.9897\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"1276.0219,-197.224 1279.7268,-187.2981 1270.6407,-192.7472 1276.0219,-197.224\"/>\n",
"</g>\n",
"<!-- 12 -->\n",
"<g id=\"node13\" class=\"node\">\n",
"<title>12</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.854902\" stroke=\"#000000\" points=\"1022,-68 839,-68 839,0 1022,0 1022,-68\"/>\n",
"<text text-anchor=\"start\" x=\"905\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #12</text>\n",
"<text text-anchor=\"start\" x=\"890\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 171</text>\n",
"<text text-anchor=\"start\" x=\"847\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [20, 0, 149, 2, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"892.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 11&#45;&gt;12 -->\n",
"<g id=\"edge12\" class=\"edge\">\n",
"<title>11&#45;&gt;12</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M1047.2405,-103.9815C1030.5953,-94.0034 1012.8627,-83.3733 996.3764,-73.4904\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"997.7369,-70.2253 987.3603,-68.0856 994.1377,-76.2292 997.7369,-70.2253\"/>\n",
"</g>\n",
"<!-- 13 -->\n",
"<g id=\"node14\" class=\"node\">\n",
"<title>13</title>\n",
"<polygon fill=\"#39e5e2\" stroke=\"#000000\" points=\"1203,-68 1040,-68 1040,0 1203,0 1203,-68\"/>\n",
"<text text-anchor=\"start\" x=\"1096\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #13</text>\n",
"<text text-anchor=\"start\" x=\"1088\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"1048\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 1, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"1082.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = jewish</text>\n",
"</g>\n",
"<!-- 11&#45;&gt;13 -->\n",
"<g id=\"edge13\" class=\"edge\">\n",
"<title>11&#45;&gt;13</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M1118.3618,-103.9815C1118.7369,-95.618 1119.1324,-86.7965 1119.5116,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"1123.0119,-78.4105 1119.9635,-68.2637 1116.019,-78.0968 1123.0119,-78.4105\"/>\n",
"</g>\n",
"<!-- 15 -->\n",
"<g id=\"node16\" class=\"node\">\n",
"<title>15</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.513725\" stroke=\"#000000\" points=\"1397.5,-68 1221.5,-68 1221.5,0 1397.5,0 1397.5,-68\"/>\n",
"<text text-anchor=\"start\" x=\"1284\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #15</text>\n",
"<text text-anchor=\"start\" x=\"1272.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 51</text>\n",
"<text text-anchor=\"start\" x=\"1229.5\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [14, 2, 33, 0, 0, 0, 2]</text>\n",
"<text text-anchor=\"start\" x=\"1271.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 14&#45;&gt;15 -->\n",
"<g id=\"edge15\" class=\"edge\">\n",
"<title>14&#45;&gt;15</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M1312.6382,-103.9815C1312.2631,-95.618 1311.8676,-86.7965 1311.4884,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"1314.981,-78.0968 1311.0365,-68.2637 1307.9881,-78.4105 1314.981,-78.0968\"/>\n",
"</g>\n",
"<!-- 16 -->\n",
"<g id=\"node17\" class=\"node\">\n",
"<title>16</title>\n",
"<polygon fill=\"#e53986\" stroke=\"#000000\" points=\"1579,-68 1416,-68 1416,0 1579,0 1579,-68\"/>\n",
"<text text-anchor=\"start\" x=\"1472\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #16</text>\n",
"<text text-anchor=\"start\" x=\"1464\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"1424\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 0, 0, 2]</text>\n",
"<text text-anchor=\"start\" x=\"1443\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = uk&#45;and&#45;irish</text>\n",
"</g>\n",
"<!-- 14&#45;&gt;16 -->\n",
"<g id=\"edge16\" class=\"edge\">\n",
"<title>14&#45;&gt;16</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M1382.6424,-103.9815C1399.0192,-94.0034 1416.4657,-83.3733 1432.6862,-73.4904\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"1434.8382,-76.2778 1441.5568,-68.0856 1431.1959,-70.2999 1434.8382,-76.2778\"/>\n",
"</g>\n",
"<!-- 18 -->\n",
"<g id=\"node19\" class=\"node\">\n",
"<title>18</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.486275\" stroke=\"#000000\" points=\"2345.5,-306 2121.5,-306 2121.5,-223 2345.5,-223 2345.5,-306\"/>\n",
"<text text-anchor=\"start\" x=\"2208\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #18</text>\n",
"<text text-anchor=\"start\" x=\"2169\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">parmesan_cheese ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"2189.5\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1482</text>\n",
"<text text-anchor=\"start\" x=\"2129.5\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [282, 6, 866, 79, 11, 223, 15]</text>\n",
"<text text-anchor=\"start\" x=\"2195.5\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 17&#45;&gt;18 -->\n",
"<g id=\"edge18\" class=\"edge\">\n",
"<title>17&#45;&gt;18</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M2329.7368,-341.8796C2317.9072,-332.368 2305.2419,-322.1843 2293.1129,-312.432\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2295.2204,-309.6355 2285.234,-306.0969 2290.8341,-315.0908 2295.2204,-309.6355\"/>\n",
"</g>\n",
"<!-- 25 -->\n",
"<g id=\"node26\" class=\"node\">\n",
"<title>25</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.847059\" stroke=\"#000000\" points=\"2705,-306 2522,-306 2522,-223 2705,-223 2705,-306\"/>\n",
"<text text-anchor=\"start\" x=\"2588\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #25</text>\n",
"<text text-anchor=\"start\" x=\"2578.5\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">savory ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"2573\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 532</text>\n",
"<text text-anchor=\"start\" x=\"2530\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [59, 0, 459, 3, 0, 7, 4]</text>\n",
"<text text-anchor=\"start\" x=\"2575.5\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 17&#45;&gt;25 -->\n",
"<g id=\"edge25\" class=\"edge\">\n",
"<title>17&#45;&gt;25</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M2462.6423,-341.8796C2482.2456,-331.8244 2503.3131,-321.0183 2523.3036,-310.7645\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2525.1031,-313.7751 2532.4035,-306.0969 2521.9083,-307.5467 2525.1031,-313.7751\"/>\n",
"</g>\n",
"<!-- 19 -->\n",
"<g id=\"node20\" class=\"node\">\n",
"<title>19</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.403922\" stroke=\"#000000\" points=\"2039.5,-187 1815.5,-187 1815.5,-104 2039.5,-104 2039.5,-187\"/>\n",
"<text text-anchor=\"start\" x=\"1902\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #19</text>\n",
"<text text-anchor=\"start\" x=\"1894\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">sherry ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"1883.5\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1270</text>\n",
"<text text-anchor=\"start\" x=\"1823.5\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [265, 6, 672, 78, 11, 223, 15]</text>\n",
"<text text-anchor=\"start\" x=\"1889.5\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 18&#45;&gt;19 -->\n",
"<g id=\"edge19\" class=\"edge\">\n",
"<title>18&#45;&gt;19</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M2126.476,-222.8796C2099.8047,-212.5074 2071.0785,-201.3361 2043.9762,-190.7963\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2045.0522,-187.4594 2034.4635,-187.0969 2042.515,-193.9835 2045.0522,-187.4594\"/>\n",
"</g>\n",
"<!-- 22 -->\n",
"<g id=\"node23\" class=\"node\">\n",
"<title>22</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.905882\" stroke=\"#000000\" points=\"2325,-187 2142,-187 2142,-104 2325,-104 2325,-187\"/>\n",
"<text text-anchor=\"start\" x=\"2208\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #22</text>\n",
"<text text-anchor=\"start\" x=\"2185\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">feta_cheese ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"2193\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 212</text>\n",
"<text text-anchor=\"start\" x=\"2150\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [17, 0, 194, 1, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"2195.5\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 18&#45;&gt;22 -->\n",
"<g id=\"edge22\" class=\"edge\">\n",
"<title>18&#45;&gt;22</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M2233.5,-222.8796C2233.5,-214.6838 2233.5,-205.9891 2233.5,-197.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2237.0001,-197.298 2233.5,-187.2981 2230.0001,-197.2981 2237.0001,-197.298\"/>\n",
"</g>\n",
"<!-- 20 -->\n",
"<g id=\"node21\" class=\"node\">\n",
"<title>20</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.435294\" stroke=\"#000000\" points=\"1821.5,-68 1597.5,-68 1597.5,0 1821.5,0 1821.5,-68\"/>\n",
"<text text-anchor=\"start\" x=\"1684\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #20</text>\n",
"<text text-anchor=\"start\" x=\"1665.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1205</text>\n",
"<text text-anchor=\"start\" x=\"1605.5\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [252, 6, 665, 76, 11, 180, 15]</text>\n",
"<text text-anchor=\"start\" x=\"1671.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 19&#45;&gt;20 -->\n",
"<g id=\"edge20\" class=\"edge\">\n",
"<title>19&#45;&gt;20</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M1846.3248,-103.9815C1826.2741,-93.7262 1804.877,-82.7823 1785.1032,-72.6686\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"1786.6396,-69.5232 1776.1427,-68.0856 1783.452,-75.7554 1786.6396,-69.5232\"/>\n",
"</g>\n",
"<!-- 21 -->\n",
"<g id=\"node22\" class=\"node\">\n",
"<title>21</title>\n",
"<polygon fill=\"#b139e5\" fill-opacity=\"0.576471\" stroke=\"#000000\" points=\"2015.5,-68 1839.5,-68 1839.5,0 2015.5,0 2015.5,-68\"/>\n",
"<text text-anchor=\"start\" x=\"1902\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #21</text>\n",
"<text text-anchor=\"start\" x=\"1890.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 65</text>\n",
"<text text-anchor=\"start\" x=\"1847.5\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [13, 0, 7, 2, 0, 43, 0]</text>\n",
"<text text-anchor=\"start\" x=\"1853\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 19&#45;&gt;21 -->\n",
"<g id=\"edge21\" class=\"edge\">\n",
"<title>19&#45;&gt;21</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M1927.5,-103.9815C1927.5,-95.618 1927.5,-86.7965 1927.5,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"1931.0001,-78.2636 1927.5,-68.2637 1924.0001,-78.2637 1931.0001,-78.2636\"/>\n",
"</g>\n",
"<!-- 23 -->\n",
"<g id=\"node24\" class=\"node\">\n",
"<title>23</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.913725\" stroke=\"#000000\" points=\"2217,-68 2034,-68 2034,0 2217,0 2217,-68\"/>\n",
"<text text-anchor=\"start\" x=\"2100\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #23</text>\n",
"<text text-anchor=\"start\" x=\"2085\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 211</text>\n",
"<text text-anchor=\"start\" x=\"2042\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [17, 0, 194, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"2087.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 22&#45;&gt;23 -->\n",
"<g id=\"edge23\" class=\"edge\">\n",
"<title>22&#45;&gt;23</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M2193.2848,-103.9815C2184.2936,-94.6989 2174.756,-84.8522 2165.7629,-75.5677\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2168.1596,-73.0115 2158.6881,-68.2637 2163.1316,-77.8817 2168.1596,-73.0115\"/>\n",
"</g>\n",
"<!-- 24 -->\n",
"<g id=\"node25\" class=\"node\">\n",
"<title>24</title>\n",
"<polygon fill=\"#39e5e2\" stroke=\"#000000\" points=\"2398,-68 2235,-68 2235,0 2398,0 2398,-68\"/>\n",
"<text text-anchor=\"start\" x=\"2291\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #24</text>\n",
"<text text-anchor=\"start\" x=\"2283\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"2243\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 1, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"2277.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = jewish</text>\n",
"</g>\n",
"<!-- 22&#45;&gt;24 -->\n",
"<g id=\"edge24\" class=\"edge\">\n",
"<title>22&#45;&gt;24</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M2264.4061,-103.9815C2271.1108,-94.9747 2278.2108,-85.4367 2284.9403,-76.3965\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2287.8306,-78.3752 2290.9943,-68.2637 2282.2155,-74.1953 2287.8306,-78.3752\"/>\n",
"</g>\n",
"<!-- 26 -->\n",
"<g id=\"node27\" class=\"node\">\n",
"<title>26</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.874510\" stroke=\"#000000\" points=\"2705,-187 2522,-187 2522,-104 2705,-104 2705,-187\"/>\n",
"<text text-anchor=\"start\" x=\"2588\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #26</text>\n",
"<text text-anchor=\"start\" x=\"2578.5\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">shallot ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"2573\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 516</text>\n",
"<text text-anchor=\"start\" x=\"2530\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [46, 0, 457, 3, 0, 7, 3]</text>\n",
"<text text-anchor=\"start\" x=\"2575.5\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 25&#45;&gt;26 -->\n",
"<g id=\"edge26\" class=\"edge\">\n",
"<title>25&#45;&gt;26</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M2613.5,-222.8796C2613.5,-214.6838 2613.5,-205.9891 2613.5,-197.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2617.0001,-197.298 2613.5,-187.2981 2610.0001,-197.2981 2617.0001,-197.298\"/>\n",
"</g>\n",
"<!-- 29 -->\n",
"<g id=\"node30\" class=\"node\">\n",
"<title>29</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.784314\" stroke=\"#000000\" points=\"2968.5,-187 2798.5,-187 2798.5,-104 2968.5,-104 2968.5,-187\"/>\n",
"<text text-anchor=\"start\" x=\"2858\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #29</text>\n",
"<text text-anchor=\"start\" x=\"2835\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">white_wine ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"2846.5\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 16</text>\n",
"<text text-anchor=\"start\" x=\"2806.5\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [13, 0, 2, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"2845\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 25&#45;&gt;29 -->\n",
"<g id=\"edge29\" class=\"edge\">\n",
"<title>25&#45;&gt;29</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M2705.2864,-224.046C2732.227,-212.1722 2761.7342,-199.1671 2788.8498,-187.2162\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2790.594,-190.2724 2798.3331,-183.0365 2787.7708,-183.8669 2790.594,-190.2724\"/>\n",
"</g>\n",
"<!-- 27 -->\n",
"<g id=\"node28\" class=\"node\">\n",
"<title>27</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.890196\" stroke=\"#000000\" points=\"2599,-68 2416,-68 2416,0 2599,0 2599,-68\"/>\n",
"<text text-anchor=\"start\" x=\"2482\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #27</text>\n",
"<text text-anchor=\"start\" x=\"2467\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 500</text>\n",
"<text text-anchor=\"start\" x=\"2424\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [38, 0, 449, 3, 0, 7, 3]</text>\n",
"<text text-anchor=\"start\" x=\"2469.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 26&#45;&gt;27 -->\n",
"<g id=\"edge27\" class=\"edge\">\n",
"<title>26&#45;&gt;27</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M2574.0295,-103.9815C2565.2048,-94.6989 2555.8438,-84.8522 2547.0173,-75.5677\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2549.5003,-73.0997 2540.0735,-68.2637 2544.427,-77.9228 2549.5003,-73.0997\"/>\n",
"</g>\n",
"<!-- 28 -->\n",
"<g id=\"node29\" class=\"node\">\n",
"<title>28</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"2780,-68 2617,-68 2617,0 2780,0 2780,-68\"/>\n",
"<text text-anchor=\"start\" x=\"2673\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #28</text>\n",
"<text text-anchor=\"start\" x=\"2661.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 16</text>\n",
"<text text-anchor=\"start\" x=\"2625\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [8, 0, 8, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"2660\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 26&#45;&gt;28 -->\n",
"<g id=\"edge28\" class=\"edge\">\n",
"<title>26&#45;&gt;28</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M2645.1509,-103.9815C2652.0171,-94.9747 2659.2882,-85.4367 2666.1798,-76.3965\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2669.1005,-78.3383 2672.3797,-68.2637 2663.5336,-74.0945 2669.1005,-78.3383\"/>\n",
"</g>\n",
"<!-- 30 -->\n",
"<g id=\"node31\" class=\"node\">\n",
"<title>30</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.917647\" stroke=\"#000000\" points=\"2968.5,-68 2798.5,-68 2798.5,0 2968.5,0 2968.5,-68\"/>\n",
"<text text-anchor=\"start\" x=\"2858\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #30</text>\n",
"<text text-anchor=\"start\" x=\"2846.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 13</text>\n",
"<text text-anchor=\"start\" x=\"2806.5\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [12, 0, 0, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"2845\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 29&#45;&gt;30 -->\n",
"<g id=\"edge30\" class=\"edge\">\n",
"<title>29&#45;&gt;30</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M2883.5,-103.9815C2883.5,-95.618 2883.5,-86.7965 2883.5,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2887.0001,-78.2636 2883.5,-68.2637 2880.0001,-78.2637 2887.0001,-78.2636\"/>\n",
"</g>\n",
"<!-- 31 -->\n",
"<g id=\"node32\" class=\"node\">\n",
"<title>31</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.498039\" stroke=\"#000000\" points=\"3150,-68 2987,-68 2987,0 3150,0 3150,-68\"/>\n",
"<text text-anchor=\"start\" x=\"3043\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #31</text>\n",
"<text text-anchor=\"start\" x=\"3035\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"2995\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 2, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"3030.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 29&#45;&gt;31 -->\n",
"<g id=\"edge31\" class=\"edge\">\n",
"<title>29&#45;&gt;31</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M2952.3872,-103.9815C2968.9429,-94.0034 2986.5801,-83.3733 3002.9778,-73.4904\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3005.1874,-76.2453 3011.9454,-68.0856 3001.574,-70.25 3005.1874,-76.2453\"/>\n",
"</g>\n",
"<!-- 33 -->\n",
"<g id=\"node34\" class=\"node\">\n",
"<title>33</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.968627\" stroke=\"#000000\" points=\"3626,-425 3443,-425 3443,-342 3626,-342 3626,-425\"/>\n",
"<text text-anchor=\"start\" x=\"3509\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #33</text>\n",
"<text text-anchor=\"start\" x=\"3501\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">potato ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"3494\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 947</text>\n",
"<text text-anchor=\"start\" x=\"3451\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [16, 4, 916, 2, 1, 7, 1]</text>\n",
"<text text-anchor=\"start\" x=\"3496.5\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 32&#45;&gt;33 -->\n",
"<g id=\"edge33\" class=\"edge\">\n",
"<title>32&#45;&gt;33</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3534.5,-460.8796C3534.5,-452.6838 3534.5,-443.9891 3534.5,-435.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3538.0001,-435.298 3534.5,-425.2981 3531.0001,-435.2981 3538.0001,-435.298\"/>\n",
"</g>\n",
"<!-- 44 -->\n",
"<g id=\"node45\" class=\"node\">\n",
"<title>44</title>\n",
"<polygon fill=\"#b139e5\" fill-opacity=\"0.200000\" stroke=\"#000000\" points=\"3903,-425 3738,-425 3738,-342 3903,-342 3903,-425\"/>\n",
"<text text-anchor=\"start\" x=\"3795\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #44</text>\n",
"<text text-anchor=\"start\" x=\"3788.5\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">garlic ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"3787\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 9</text>\n",
"<text text-anchor=\"start\" x=\"3747\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 4, 0, 0, 5, 0]</text>\n",
"<text text-anchor=\"start\" x=\"3746\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 32&#45;&gt;44 -->\n",
"<g id=\"edge44\" class=\"edge\">\n",
"<title>32&#45;&gt;44</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3629.7339,-462.8747C3661.395,-449.701 3696.5857,-435.0588 3728.0342,-421.9735\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3729.7778,-425.039 3737.6659,-417.9659 3727.0887,-418.5761 3729.7778,-425.039\"/>\n",
"</g>\n",
"<!-- 34 -->\n",
"<g id=\"node35\" class=\"node\">\n",
"<title>34</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.972549\" stroke=\"#000000\" points=\"3532,-306 3349,-306 3349,-223 3532,-223 3532,-306\"/>\n",
"<text text-anchor=\"start\" x=\"3415\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #34</text>\n",
"<text text-anchor=\"start\" x=\"3401\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">caraway ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"3400\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 922</text>\n",
"<text text-anchor=\"start\" x=\"3357\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [12, 4, 898, 1, 1, 5, 1]</text>\n",
"<text text-anchor=\"start\" x=\"3402.5\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 33&#45;&gt;34 -->\n",
"<g id=\"edge34\" class=\"edge\">\n",
"<title>33&#45;&gt;34</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3501.6234,-341.8796C3494.5803,-332.9633 3487.0707,-323.4565 3479.8126,-314.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3482.4621,-311.9757 3473.517,-306.2981 3476.9691,-316.3147 3482.4621,-311.9757\"/>\n",
"</g>\n",
"<!-- 39 -->\n",
"<g id=\"node40\" class=\"node\">\n",
"<title>39</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.666667\" stroke=\"#000000\" points=\"3720.5,-306 3550.5,-306 3550.5,-223 3720.5,-223 3720.5,-306\"/>\n",
"<text text-anchor=\"start\" x=\"3610\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #39</text>\n",
"<text text-anchor=\"start\" x=\"3607.5\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">leek ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"3598.5\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 25</text>\n",
"<text text-anchor=\"start\" x=\"3558.5\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [4, 0, 18, 1, 0, 2, 0]</text>\n",
"<text text-anchor=\"start\" x=\"3597.5\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 33&#45;&gt;39 -->\n",
"<g id=\"edge39\" class=\"edge\">\n",
"<title>33&#45;&gt;39</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3569.8249,-341.8796C3577.4689,-332.8733 3585.6243,-323.2644 3593.4961,-313.9897\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3596.2218,-316.1871 3600.0243,-306.2981 3590.8849,-311.6574 3596.2218,-316.1871\"/>\n",
"</g>\n",
"<!-- 35 -->\n",
"<g id=\"node36\" class=\"node\">\n",
"<title>35</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.976471\" stroke=\"#000000\" points=\"3351,-187 3168,-187 3168,-104 3351,-104 3351,-187\"/>\n",
"<text text-anchor=\"start\" x=\"3234\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #35</text>\n",
"<text text-anchor=\"start\" x=\"3214.5\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">sauerkraut ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"3219\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 921</text>\n",
"<text text-anchor=\"start\" x=\"3176\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [12, 4, 898, 1, 0, 5, 1]</text>\n",
"<text text-anchor=\"start\" x=\"3221.5\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 34&#45;&gt;35 -->\n",
"<g id=\"edge35\" class=\"edge\">\n",
"<title>34&#45;&gt;35</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3377.195,-222.8796C3362.3144,-213.0962 3346.3524,-202.6019 3331.1351,-192.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3333.0479,-189.666 3322.7693,-187.0969 3329.2023,-195.5151 3333.0479,-189.666\"/>\n",
"</g>\n",
"<!-- 38 -->\n",
"<g id=\"node39\" class=\"node\">\n",
"<title>38</title>\n",
"<polygon fill=\"#3956e5\" stroke=\"#000000\" points=\"3532,-179.5 3369,-179.5 3369,-111.5 3532,-111.5 3532,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"3425\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #38</text>\n",
"<text text-anchor=\"start\" x=\"3417\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"3377\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"3394\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = scandinavian</text>\n",
"</g>\n",
"<!-- 34&#45;&gt;38 -->\n",
"<g id=\"edge38\" class=\"edge\">\n",
"<title>34&#45;&gt;38</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3443.9975,-222.8796C3444.8938,-212.2134 3445.8612,-200.7021 3446.7688,-189.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3450.2666,-190.0729 3447.6164,-179.8149 3443.2912,-189.4867 3450.2666,-190.0729\"/>\n",
"</g>\n",
"<!-- 36 -->\n",
"<g id=\"node37\" class=\"node\">\n",
"<title>36</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.976471\" stroke=\"#000000\" points=\"3351,-68 3168,-68 3168,0 3351,0 3351,-68\"/>\n",
"<text text-anchor=\"start\" x=\"3234\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #36</text>\n",
"<text text-anchor=\"start\" x=\"3219\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 920</text>\n",
"<text text-anchor=\"start\" x=\"3176\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [12, 3, 898, 1, 0, 5, 1]</text>\n",
"<text text-anchor=\"start\" x=\"3221.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 35&#45;&gt;36 -->\n",
"<g id=\"edge36\" class=\"edge\">\n",
"<title>35&#45;&gt;36</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3259.5,-103.9815C3259.5,-95.618 3259.5,-86.7965 3259.5,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3263.0001,-78.2636 3259.5,-68.2637 3256.0001,-78.2637 3263.0001,-78.2636\"/>\n",
"</g>\n",
"<!-- 37 -->\n",
"<g id=\"node38\" class=\"node\">\n",
"<title>37</title>\n",
"<polygon fill=\"#b7e539\" stroke=\"#000000\" points=\"3532,-68 3369,-68 3369,0 3532,0 3532,-68\"/>\n",
"<text text-anchor=\"start\" x=\"3425\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #37</text>\n",
"<text text-anchor=\"start\" x=\"3417\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"3377\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 1, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"3408.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = german</text>\n",
"</g>\n",
"<!-- 35&#45;&gt;37 -->\n",
"<g id=\"edge37\" class=\"edge\">\n",
"<title>35&#45;&gt;37</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3330.6214,-103.9815C3347.8723,-93.911 3366.2605,-83.1764 3383.3227,-73.2161\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3385.2396,-76.1499 3392.1112,-68.0856 3381.7105,-70.1045 3385.2396,-76.1499\"/>\n",
"</g>\n",
"<!-- 40 -->\n",
"<g id=\"node41\" class=\"node\">\n",
"<title>40</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.800000\" stroke=\"#000000\" points=\"3720.5,-187 3550.5,-187 3550.5,-104 3720.5,-104 3720.5,-187\"/>\n",
"<text text-anchor=\"start\" x=\"3610\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #40</text>\n",
"<text text-anchor=\"start\" x=\"3582\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">pork_sausage ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"3598.5\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 22</text>\n",
"<text text-anchor=\"start\" x=\"3558.5\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 18, 1, 0, 2, 0]</text>\n",
"<text text-anchor=\"start\" x=\"3597.5\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 39&#45;&gt;40 -->\n",
"<g id=\"edge40\" class=\"edge\">\n",
"<title>39&#45;&gt;40</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3635.5,-222.8796C3635.5,-214.6838 3635.5,-205.9891 3635.5,-197.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3639.0001,-197.298 3635.5,-187.2981 3632.0001,-197.2981 3639.0001,-197.298\"/>\n",
"</g>\n",
"<!-- 43 -->\n",
"<g id=\"node44\" class=\"node\">\n",
"<title>43</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"3902,-179.5 3739,-179.5 3739,-111.5 3902,-111.5 3902,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"3795\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #43</text>\n",
"<text text-anchor=\"start\" x=\"3787\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"3747\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"3782\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 39&#45;&gt;43 -->\n",
"<g id=\"edge43\" class=\"edge\">\n",
"<title>39&#45;&gt;43</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3700.204,-222.8796C3719.2696,-210.6158 3740.0719,-197.2348 3758.9346,-185.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3760.9347,-187.9766 3767.4516,-179.623 3757.1478,-182.0893 3760.9347,-187.9766\"/>\n",
"</g>\n",
"<!-- 41 -->\n",
"<g id=\"node42\" class=\"node\">\n",
"<title>41</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.890196\" stroke=\"#000000\" points=\"3720.5,-68 3550.5,-68 3550.5,0 3720.5,0 3720.5,-68\"/>\n",
"<text text-anchor=\"start\" x=\"3610\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #41</text>\n",
"<text text-anchor=\"start\" x=\"3598.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 19</text>\n",
"<text text-anchor=\"start\" x=\"3558.5\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 17, 1, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"3597.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 40&#45;&gt;41 -->\n",
"<g id=\"edge41\" class=\"edge\">\n",
"<title>40&#45;&gt;41</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3635.5,-103.9815C3635.5,-95.618 3635.5,-86.7965 3635.5,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3639.0001,-78.2636 3635.5,-68.2637 3632.0001,-78.2637 3639.0001,-78.2636\"/>\n",
"</g>\n",
"<!-- 42 -->\n",
"<g id=\"node43\" class=\"node\">\n",
"<title>42</title>\n",
"<polygon fill=\"#b139e5\" fill-opacity=\"0.498039\" stroke=\"#000000\" points=\"3904,-68 3739,-68 3739,0 3904,0 3904,-68\"/>\n",
"<text text-anchor=\"start\" x=\"3796\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #42</text>\n",
"<text text-anchor=\"start\" x=\"3788\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"3748\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0, 2, 0]</text>\n",
"<text text-anchor=\"start\" x=\"3747\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 40&#45;&gt;42 -->\n",
"<g id=\"edge42\" class=\"edge\">\n",
"<title>40&#45;&gt;42</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3704.7595,-103.9815C3721.4047,-94.0034 3739.1373,-83.3733 3755.6236,-73.4904\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3757.8623,-76.2292 3764.6397,-68.0856 3754.2631,-70.2253 3757.8623,-76.2292\"/>\n",
"</g>\n",
"<!-- 45 -->\n",
"<g id=\"node46\" class=\"node\">\n",
"<title>45</title>\n",
"<polygon fill=\"#39e54d\" stroke=\"#000000\" points=\"3902,-298.5 3739,-298.5 3739,-230.5 3902,-230.5 3902,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"3795\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #45</text>\n",
"<text text-anchor=\"start\" x=\"3787\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"3747\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 3, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"3782.5\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 44&#45;&gt;45 -->\n",
"<g id=\"edge45\" class=\"edge\">\n",
"<title>44&#45;&gt;45</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3820.5,-341.8796C3820.5,-331.2134 3820.5,-319.7021 3820.5,-308.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3824.0001,-308.8149 3820.5,-298.8149 3817.0001,-308.815 3824.0001,-308.8149\"/>\n",
"</g>\n",
"<!-- 46 -->\n",
"<g id=\"node47\" class=\"node\">\n",
"<title>46</title>\n",
"<polygon fill=\"#b139e5\" fill-opacity=\"0.800000\" stroke=\"#000000\" points=\"4085,-306 3920,-306 3920,-223 4085,-223 4085,-306\"/>\n",
"<text text-anchor=\"start\" x=\"3977\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #46</text>\n",
"<text text-anchor=\"start\" x=\"3960\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">rosemary ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"3969\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 6</text>\n",
"<text text-anchor=\"start\" x=\"3929\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0, 5, 0]</text>\n",
"<text text-anchor=\"start\" x=\"3928\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 44&#45;&gt;46 -->\n",
"<g id=\"edge46\" class=\"edge\">\n",
"<title>44&#45;&gt;46</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3884.1548,-341.8796C3899.1176,-332.0962 3915.1677,-321.6019 3930.4691,-311.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3932.4269,-314.4989 3938.8812,-306.0969 3928.5961,-308.6401 3932.4269,-314.4989\"/>\n",
"</g>\n",
"<!-- 47 -->\n",
"<g id=\"node48\" class=\"node\">\n",
"<title>47</title>\n",
"<polygon fill=\"#b139e5\" stroke=\"#000000\" points=\"4085,-179.5 3920,-179.5 3920,-111.5 4085,-111.5 4085,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"3977\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #47</text>\n",
"<text text-anchor=\"start\" x=\"3969\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 5</text>\n",
"<text text-anchor=\"start\" x=\"3929\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 0, 5, 0]</text>\n",
"<text text-anchor=\"start\" x=\"3928\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 46&#45;&gt;47 -->\n",
"<g id=\"edge47\" class=\"edge\">\n",
"<title>46&#45;&gt;47</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M4002.5,-222.8796C4002.5,-212.2134 4002.5,-200.7021 4002.5,-189.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4006.0001,-189.8149 4002.5,-179.8149 3999.0001,-189.815 4006.0001,-189.8149\"/>\n",
"</g>\n",
"<!-- 48 -->\n",
"<g id=\"node49\" class=\"node\">\n",
"<title>48</title>\n",
"<polygon fill=\"#39e54d\" stroke=\"#000000\" points=\"4266,-179.5 4103,-179.5 4103,-111.5 4266,-111.5 4266,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"4159\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #48</text>\n",
"<text text-anchor=\"start\" x=\"4151\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"4111\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"4146.5\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 46&#45;&gt;48 -->\n",
"<g id=\"edge48\" class=\"edge\">\n",
"<title>46&#45;&gt;48</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M4066.1548,-222.8796C4084.9111,-210.6158 4105.3761,-197.2348 4123.933,-185.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4125.8575,-188.025 4132.3118,-179.623 4122.0267,-182.1662 4125.8575,-188.025\"/>\n",
"</g>\n",
"</g>\n",
"</svg>\n"
],
"text/plain": [
"<graphviz.files.Source at 0x7f28dc209cf8>"
]
},
"execution_count": 34,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"export_graphviz(european_tree,\n",
" feature_names=list(ingredients.columns.values),\n",
" out_file=\"european_tree.dot\",\n",
" class_names=np.unique(cuisines),\n",
" filled=True,\n",
" node_ids=True,\n",
" special_characters=True,\n",
" impurity=False,\n",
" label=\"all\",\n",
" leaves_parallel=False)\n",
"\n",
"with open(\"european_tree.dot\") as european_tree_image:\n",
" european_tree_graph = european_tree_image.read()\n",
"graphviz.Source(european_tree_graph)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"The decision tree learned:\n",
"* If a recipe contains *cumin* and *fish* and **no** *yoghurt*, then it is most likely a **Thai** recipe.\n",
"* If a recipe contains *cumin* but **no** *fish* and **no** *soy_sauce*, then it is most likely an **Indian** recipe."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"You can analyze the remaining branches of the tree to come up with similar rules for determining the cuisine of different recipes. "
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Feel free to select another subset of cuisines and build a decision tree of their recipes. You can select some European cuisines and build a decision tree to explore the ingredients that differentiate them."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Model Evaluation <a id=\"4\"></a>"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"<img src=\"https://ibm.box.com/shared/static/prc3kksci2a6deks36jpyf4cf4oxh74a.png\" width=500>"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"To evaluate our model of Asian and Indian cuisines, we will split our dataset into a training set and a test set. We will build the decision tree using the training set. Then, we will test the model on the test set and compare the cuisines that the model predicts to the actual cuisines. "
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Let's first create a new dataframe using only the data pertaining to the Asian and the Indian cuisines, and let's call the new dataframe **bamboo**."
]
},
{
"cell_type": "code",
"execution_count": 12,
"metadata": {},
"outputs": [],
"source": [
"european = recipes[recipes.cuisine.isin([\"austrian\", \"belgian\", \"dutch\", \"french\", \"german\",\"italian\",\"jewish\",\"scandinavian\",\"spanish_portuguese\",\"swiss\",\"uk-and-irish\"])]"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Let's see how many recipes exist for each cuisine."
]
},
{
"cell_type": "code",
"execution_count": 13,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"italian 3250\n",
"french 1264\n",
"spanish_portuguese 416\n",
"uk-and-irish 368\n",
"jewish 329\n",
"german 289\n",
"scandinavian 250\n",
"Name: cuisine, dtype: int64"
]
},
"execution_count": 13,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"european[\"cuisine\"].value_counts()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Let's remove 30 recipes from each cuisine to use as the test set, and let's name this test set **bamboo_test**."
]
},
{
"cell_type": "code",
"execution_count": 24,
"metadata": {},
"outputs": [],
"source": [
"# set sample size\n",
"sample_n = 100"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Create a dataframe containing 30 recipes from each cuisine, selected randomly."
]
},
{
"cell_type": "code",
"execution_count": 25,
"metadata": {},
"outputs": [],
"source": [
"# take 100 recipes from each cuisine\n",
"random.seed(5678) # set random seed\n",
"european_test = european.groupby(\"cuisine\", group_keys=False).apply(lambda x: x.sample(sample_n))\n",
"\n",
"european_test_ingredients = european_test.iloc[:,1:] # ingredients\n",
"european_test_cuisines = european_test[\"cuisine\"] # corresponding cuisines or labels"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Check that there are 30 recipes for each cuisine."
]
},
{
"cell_type": "code",
"execution_count": 26,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"french 100\n",
"german 100\n",
"italian 100\n",
"jewish 100\n",
"uk-and-irish 100\n",
"scandinavian 100\n",
"spanish_portuguese 100\n",
"Name: cuisine, dtype: int64"
]
},
"execution_count": 26,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# check that we have 100 recipes from each cuisine\n",
"european_test[\"cuisine\"].value_counts()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Next, let's create the training set by removing the test set from the **bamboo** dataset, and let's call the training set **bamboo_train**."
]
},
{
"cell_type": "code",
"execution_count": 27,
"metadata": {},
"outputs": [],
"source": [
"european_test_index = european.index.isin(european_test.index)\n",
"european_train = european[~european_test_index]\n",
"\n",
"european_train_ingredients = european_train.iloc[:,1:] # ingredients\n",
"european_train_cuisines = european_train[\"cuisine\"] # corresponding cuisines or labels"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Check that there are 30 _fewer_ recipes now for each cuisine."
]
},
{
"cell_type": "code",
"execution_count": 28,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"italian 3150\n",
"french 1164\n",
"spanish_portuguese 316\n",
"uk-and-irish 268\n",
"jewish 229\n",
"german 189\n",
"scandinavian 150\n",
"Name: cuisine, dtype: int64"
]
},
"execution_count": 28,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"european_train[\"cuisine\"].value_counts()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Let's build the decision tree using the training set, **bamboo_train**, and name the generated tree **bamboo_train_tree** for prediction."
]
},
{
"cell_type": "code",
"execution_count": 52,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Decision tree model saved to european_train_tree!\n"
]
}
],
"source": [
"european_train_tree = tree.DecisionTreeClassifier(max_depth=15, min_samples_split=5)\n",
"european_train_tree.fit(european_train_ingredients, european_train_cuisines)\n",
"\n",
"print(\"Decision tree model saved to european_train_tree!\")"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Let's plot the decision tree and explore it."
]
},
{
"cell_type": "code",
"execution_count": 53,
"metadata": {},
"outputs": [
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n",
"<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\n",
" \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n",
"<!-- Generated by graphviz version 2.40.1 (20161225.0304)\n",
" -->\n",
"<!-- Title: Tree Pages: 1 -->\n",
"<svg width=\"20156pt\" height=\"1861pt\"\n",
" viewBox=\"0.00 0.00 20156.00 1861.00\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n",
"<g id=\"graph0\" class=\"graph\" transform=\"scale(1 1) rotate(0) translate(4 1857)\">\n",
"<title>Tree</title>\n",
"<polygon fill=\"#ffffff\" stroke=\"transparent\" points=\"-4,4 -4,-1857 20152,-1857 20152,4 -4,4\"/>\n",
"<!-- 0 -->\n",
"<g id=\"node1\" class=\"node\">\n",
"<title>0</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.462745\" stroke=\"#000000\" points=\"19250,-1853 18979,-1853 18979,-1770 19250,-1770 19250,-1853\"/>\n",
"<text text-anchor=\"start\" x=\"19092.5\" y=\"-1837.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #0</text>\n",
"<text text-anchor=\"start\" x=\"19072\" y=\"-1822.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">macaroni ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"19070.5\" y=\"-1807.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 5466</text>\n",
"<text text-anchor=\"start\" x=\"18987\" y=\"-1792.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1164, 189, 3150, 229, 150, 316, 268]</text>\n",
"<text text-anchor=\"start\" x=\"19076.5\" y=\"-1777.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 1 -->\n",
"<g id=\"node2\" class=\"node\">\n",
"<title>1</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.325490\" stroke=\"#000000\" points=\"18221,-1734 17950,-1734 17950,-1651 18221,-1651 18221,-1734\"/>\n",
"<text text-anchor=\"start\" x=\"18063.5\" y=\"-1718.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #1</text>\n",
"<text text-anchor=\"start\" x=\"18044.5\" y=\"-1703.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">olive_oil ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"18041.5\" y=\"-1688.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 4548</text>\n",
"<text text-anchor=\"start\" x=\"17958\" y=\"-1673.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1149, 185, 2261, 228, 150, 308, 267]</text>\n",
"<text text-anchor=\"start\" x=\"18047.5\" y=\"-1658.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 0&#45;&gt;1 -->\n",
"<g id=\"edge1\" class=\"edge\">\n",
"<title>0&#45;&gt;1</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M18978.9181,-1795.8205C18785.1773,-1773.4151 18430.5808,-1732.4073 18231.3385,-1709.3657\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"18231.7181,-1705.8863 18221.3822,-1708.2143 18230.9138,-1712.84 18231.7181,-1705.8863\"/>\n",
"<text text-anchor=\"middle\" x=\"18236.912\" y=\"-1724.1057\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">True</text>\n",
"</g>\n",
"<!-- 558 -->\n",
"<g id=\"node559\" class=\"node\">\n",
"<title>558</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.968627\" stroke=\"#000000\" points=\"19608,-1734 19425,-1734 19425,-1651 19608,-1651 19608,-1734\"/>\n",
"<text text-anchor=\"start\" x=\"19487.5\" y=\"-1718.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #558</text>\n",
"<text text-anchor=\"start\" x=\"19480.5\" y=\"-1703.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">saffron ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"19476\" y=\"-1688.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 918</text>\n",
"<text text-anchor=\"start\" x=\"19433\" y=\"-1673.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [15, 4, 889, 1, 0, 8, 1]</text>\n",
"<text text-anchor=\"start\" x=\"19478.5\" y=\"-1658.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 0&#45;&gt;558 -->\n",
"<g id=\"edge558\" class=\"edge\">\n",
"<title>0&#45;&gt;558</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M19250.0384,-1771.3779C19303.9959,-1755.4054 19365.0186,-1737.3415 19415.0394,-1722.5344\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"19416.2963,-1725.8125 19424.8915,-1719.6179 19414.3093,-1719.1004 19416.2963,-1725.8125\"/>\n",
"<text text-anchor=\"middle\" x=\"19412.9586\" y=\"-1737.8862\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">False</text>\n",
"</g>\n",
"<!-- 2 -->\n",
"<g id=\"node3\" class=\"node\">\n",
"<title>2</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.082353\" stroke=\"#000000\" points=\"11776,-1615 11519,-1615 11519,-1532 11776,-1532 11776,-1615\"/>\n",
"<text text-anchor=\"start\" x=\"11625.5\" y=\"-1599.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #2</text>\n",
"<text text-anchor=\"start\" x=\"11583\" y=\"-1584.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">parmesan_cheese ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"11603.5\" y=\"-1569.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2680</text>\n",
"<text text-anchor=\"start\" x=\"11527\" y=\"-1554.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [827, 179, 978, 168, 144, 129, 255]</text>\n",
"<text text-anchor=\"start\" x=\"11609.5\" y=\"-1539.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 1&#45;&gt;2 -->\n",
"<g id=\"edge2\" class=\"edge\">\n",
"<title>1&#45;&gt;2</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17949.9199,-1689.9939C17110.8739,-1674.485 12634.2733,-1591.7395 11786.2179,-1576.0641\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11786.1693,-1572.5627 11776.1063,-1575.8772 11786.0399,-1579.5615 11786.1693,-1572.5627\"/>\n",
"</g>\n",
"<!-- 301 -->\n",
"<g id=\"node302\" class=\"node\">\n",
"<title>301</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.623529\" stroke=\"#000000\" points=\"18197.5,-1615 17973.5,-1615 17973.5,-1532 18197.5,-1532 18197.5,-1615\"/>\n",
"<text text-anchor=\"start\" x=\"18056.5\" y=\"-1599.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #301</text>\n",
"<text text-anchor=\"start\" x=\"18056\" y=\"-1584.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">basil ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"18041.5\" y=\"-1569.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1868</text>\n",
"<text text-anchor=\"start\" x=\"17981.5\" y=\"-1554.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [322, 6, 1283, 60, 6, 179, 12]</text>\n",
"<text text-anchor=\"start\" x=\"18047.5\" y=\"-1539.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 1&#45;&gt;301 -->\n",
"<g id=\"edge301\" class=\"edge\">\n",
"<title>1&#45;&gt;301</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M18085.5,-1650.8796C18085.5,-1642.6838 18085.5,-1633.9891 18085.5,-1625.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"18089.0001,-1625.298 18085.5,-1615.2981 18082.0001,-1625.2981 18089.0001,-1625.298\"/>\n",
"</g>\n",
"<!-- 3 -->\n",
"<g id=\"node4\" class=\"node\">\n",
"<title>3</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.003922\" stroke=\"#000000\" points=\"10918,-1496 10661,-1496 10661,-1413 10918,-1413 10918,-1496\"/>\n",
"<text text-anchor=\"start\" x=\"10767.5\" y=\"-1480.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #3</text>\n",
"<text text-anchor=\"start\" x=\"10760\" y=\"-1465.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">basil ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"10745.5\" y=\"-1450.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2465</text>\n",
"<text text-anchor=\"start\" x=\"10669\" y=\"-1435.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [796, 178, 800, 166, 144, 129, 252]</text>\n",
"<text text-anchor=\"start\" x=\"10751.5\" y=\"-1420.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 2&#45;&gt;3 -->\n",
"<g id=\"edge3\" class=\"edge\">\n",
"<title>2&#45;&gt;3</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11518.5846,-1555.6201C11359.9249,-1533.6149 11091.5539,-1496.3933 10928.4332,-1473.7693\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10928.7137,-1470.2748 10918.3277,-1472.3677 10927.752,-1477.2084 10928.7137,-1470.2748\"/>\n",
"</g>\n",
"<!-- 260 -->\n",
"<g id=\"node261\" class=\"node\">\n",
"<title>260</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.800000\" stroke=\"#000000\" points=\"11739,-1496 11556,-1496 11556,-1413 11739,-1413 11739,-1496\"/>\n",
"<text text-anchor=\"start\" x=\"11618.5\" y=\"-1480.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #260</text>\n",
"<text text-anchor=\"start\" x=\"11608.5\" y=\"-1465.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cayenne ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"11607\" y=\"-1450.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 215</text>\n",
"<text text-anchor=\"start\" x=\"11564\" y=\"-1435.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [31, 1, 178, 2, 0, 0, 3]</text>\n",
"<text text-anchor=\"start\" x=\"11609.5\" y=\"-1420.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 2&#45;&gt;260 -->\n",
"<g id=\"edge260\" class=\"edge\">\n",
"<title>2&#45;&gt;260</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11647.5,-1531.8796C11647.5,-1523.6838 11647.5,-1514.9891 11647.5,-1506.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11651.0001,-1506.298 11647.5,-1496.2981 11644.0001,-1506.2981 11651.0001,-1506.298\"/>\n",
"</g>\n",
"<!-- 4 -->\n",
"<g id=\"node5\" class=\"node\">\n",
"<title>4</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.043137\" stroke=\"#000000\" points=\"10082,-1377 9825,-1377 9825,-1294 10082,-1294 10082,-1377\"/>\n",
"<text text-anchor=\"start\" x=\"9931.5\" y=\"-1361.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #4</text>\n",
"<text text-anchor=\"start\" x=\"9918.5\" y=\"-1346.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cheese ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"9909.5\" y=\"-1331.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2367</text>\n",
"<text text-anchor=\"start\" x=\"9833\" y=\"-1316.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [784, 178, 716, 166, 144, 127, 252]</text>\n",
"<text text-anchor=\"start\" x=\"9915\" y=\"-1301.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 3&#45;&gt;4 -->\n",
"<g id=\"edge4\" class=\"edge\">\n",
"<title>3&#45;&gt;4</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10660.7071,-1436.167C10506.8704,-1414.2692 10250.5266,-1377.7801 10092.3692,-1355.2673\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10092.4892,-1351.7491 10082.0958,-1353.8049 10091.5027,-1358.6793 10092.4892,-1351.7491\"/>\n",
"</g>\n",
"<!-- 243 -->\n",
"<g id=\"node244\" class=\"node\">\n",
"<title>243</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.835294\" stroke=\"#000000\" points=\"10877.5,-1377 10701.5,-1377 10701.5,-1294 10877.5,-1294 10877.5,-1377\"/>\n",
"<text text-anchor=\"start\" x=\"10760.5\" y=\"-1361.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #243</text>\n",
"<text text-anchor=\"start\" x=\"10749.5\" y=\"-1346.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">lavender ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"10752.5\" y=\"-1331.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 98</text>\n",
"<text text-anchor=\"start\" x=\"10709.5\" y=\"-1316.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [12, 0, 84, 0, 0, 2, 0]</text>\n",
"<text text-anchor=\"start\" x=\"10751.5\" y=\"-1301.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 3&#45;&gt;243 -->\n",
"<g id=\"edge243\" class=\"edge\">\n",
"<title>3&#45;&gt;243</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10789.5,-1412.8796C10789.5,-1404.6838 10789.5,-1395.9891 10789.5,-1387.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10793.0001,-1387.298 10789.5,-1377.2981 10786.0001,-1387.2981 10793.0001,-1387.298\"/>\n",
"</g>\n",
"<!-- 5 -->\n",
"<g id=\"node6\" class=\"node\">\n",
"<title>5</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.086275\" stroke=\"#000000\" points=\"8975,-1258 8718,-1258 8718,-1175 8975,-1175 8975,-1258\"/>\n",
"<text text-anchor=\"start\" x=\"8824.5\" y=\"-1242.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #5</text>\n",
"<text text-anchor=\"start\" x=\"8811.5\" y=\"-1227.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">shallot ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"8802.5\" y=\"-1212.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2191</text>\n",
"<text text-anchor=\"start\" x=\"8726\" y=\"-1197.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [741, 174, 602, 164, 142, 119, 249]</text>\n",
"<text text-anchor=\"start\" x=\"8808\" y=\"-1182.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 4&#45;&gt;5 -->\n",
"<g id=\"edge5\" class=\"edge\">\n",
"<title>4&#45;&gt;5</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9824.8895,-1321.6747C9615.2768,-1299.1418 9201.718,-1254.6851 8985.5474,-1231.4473\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8985.7212,-1227.9459 8975.4044,-1230.3569 8984.973,-1234.9058 8985.7212,-1227.9459\"/>\n",
"</g>\n",
"<!-- 204 -->\n",
"<g id=\"node205\" class=\"node\">\n",
"<title>204</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.533333\" stroke=\"#000000\" points=\"10045,-1258 9862,-1258 9862,-1175 10045,-1175 10045,-1258\"/>\n",
"<text text-anchor=\"start\" x=\"9924.5\" y=\"-1242.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #204</text>\n",
"<text text-anchor=\"start\" x=\"9918.5\" y=\"-1227.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">vanilla ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"9913\" y=\"-1212.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 176</text>\n",
"<text text-anchor=\"start\" x=\"9870\" y=\"-1197.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [43, 4, 114, 2, 2, 8, 3]</text>\n",
"<text text-anchor=\"start\" x=\"9915.5\" y=\"-1182.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 4&#45;&gt;204 -->\n",
"<g id=\"edge204\" class=\"edge\">\n",
"<title>4&#45;&gt;204</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9953.5,-1293.8796C9953.5,-1285.6838 9953.5,-1276.9891 9953.5,-1268.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9957.0001,-1268.298 9953.5,-1258.2981 9950.0001,-1268.2981 9957.0001,-1268.298\"/>\n",
"</g>\n",
"<!-- 6 -->\n",
"<g id=\"node7\" class=\"node\">\n",
"<title>6</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.050980\" stroke=\"#000000\" points=\"8000,-1139 7743,-1139 7743,-1056 8000,-1056 8000,-1139\"/>\n",
"<text text-anchor=\"start\" x=\"7849.5\" y=\"-1123.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #6</text>\n",
"<text text-anchor=\"start\" x=\"7839\" y=\"-1108.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">butter ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"7827.5\" y=\"-1093.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2104</text>\n",
"<text text-anchor=\"start\" x=\"7751\" y=\"-1078.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [671, 173, 591, 163, 141, 118, 247]</text>\n",
"<text text-anchor=\"start\" x=\"7833\" y=\"-1063.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 5&#45;&gt;6 -->\n",
"<g id=\"edge6\" class=\"edge\">\n",
"<title>5&#45;&gt;6</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8717.782,-1200.7898C8534.3099,-1178.3968 8198.9585,-1137.4667 8010.1686,-1114.4247\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8010.5276,-1110.9426 8000.1772,-1113.2052 8009.6795,-1117.891 8010.5276,-1110.9426\"/>\n",
"</g>\n",
"<!-- 181 -->\n",
"<g id=\"node182\" class=\"node\">\n",
"<title>181</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.776471\" stroke=\"#000000\" points=\"8934.5,-1139 8758.5,-1139 8758.5,-1056 8934.5,-1056 8934.5,-1139\"/>\n",
"<text text-anchor=\"start\" x=\"8817.5\" y=\"-1123.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #181</text>\n",
"<text text-anchor=\"start\" x=\"8812.5\" y=\"-1108.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">lemon ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"8809.5\" y=\"-1093.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 87</text>\n",
"<text text-anchor=\"start\" x=\"8766.5\" y=\"-1078.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [70, 1, 11, 1, 1, 1, 2]</text>\n",
"<text text-anchor=\"start\" x=\"8808\" y=\"-1063.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 5&#45;&gt;181 -->\n",
"<g id=\"edge181\" class=\"edge\">\n",
"<title>5&#45;&gt;181</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8846.5,-1174.8796C8846.5,-1166.6838 8846.5,-1157.9891 8846.5,-1149.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8850.0001,-1149.298 8846.5,-1139.2981 8843.0001,-1149.2981 8850.0001,-1149.298\"/>\n",
"</g>\n",
"<!-- 7 -->\n",
"<g id=\"node8\" class=\"node\">\n",
"<title>7</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.090196\" stroke=\"#000000\" points=\"5662,-1020 5425,-1020 5425,-937 5662,-937 5662,-1020\"/>\n",
"<text text-anchor=\"start\" x=\"5521.5\" y=\"-1004.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #7</text>\n",
"<text text-anchor=\"start\" x=\"5510\" y=\"-989.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">potato ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"5499.5\" y=\"-974.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1050</text>\n",
"<text text-anchor=\"start\" x=\"5433\" y=\"-959.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [277, 94, 346, 102, 44, 87, 100]</text>\n",
"<text text-anchor=\"start\" x=\"5505.5\" y=\"-944.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 6&#45;&gt;7 -->\n",
"<g id=\"edge7\" class=\"edge\">\n",
"<title>6&#45;&gt;7</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M7742.6034,-1090.9112C7335.3097,-1070.0916 6078.927,-1005.8693 5672.0774,-985.0725\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"5672.2063,-981.5746 5662.0406,-984.5594 5671.8488,-988.5655 5672.2063,-981.5746\"/>\n",
"</g>\n",
"<!-- 122 -->\n",
"<g id=\"node123\" class=\"node\">\n",
"<title>122</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.184314\" stroke=\"#000000\" points=\"7986.5,-1020 7756.5,-1020 7756.5,-937 7986.5,-937 7986.5,-1020\"/>\n",
"<text text-anchor=\"start\" x=\"7842.5\" y=\"-1004.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #122</text>\n",
"<text text-anchor=\"start\" x=\"7837.5\" y=\"-989.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">thyme ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"7827.5\" y=\"-974.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1054</text>\n",
"<text text-anchor=\"start\" x=\"7764.5\" y=\"-959.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [394, 79, 245, 61, 97, 31, 147]</text>\n",
"<text text-anchor=\"start\" x=\"7833\" y=\"-944.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 6&#45;&gt;122 -->\n",
"<g id=\"edge122\" class=\"edge\">\n",
"<title>6&#45;&gt;122</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M7871.5,-1055.8796C7871.5,-1047.6838 7871.5,-1038.9891 7871.5,-1030.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"7875.0001,-1030.298 7871.5,-1020.2981 7868.0001,-1030.2981 7875.0001,-1030.298\"/>\n",
"</g>\n",
"<!-- 8 -->\n",
"<g id=\"node9\" class=\"node\">\n",
"<title>8</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.113725\" stroke=\"#000000\" points=\"4063.5,-901 3839.5,-901 3839.5,-818 4063.5,-818 4063.5,-901\"/>\n",
"<text text-anchor=\"start\" x=\"3929.5\" y=\"-885.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #8</text>\n",
"<text text-anchor=\"start\" x=\"3918\" y=\"-870.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cream ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"3911\" y=\"-855.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 953</text>\n",
"<text text-anchor=\"start\" x=\"3847.5\" y=\"-840.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [257, 72, 337, 95, 38, 80, 74]</text>\n",
"<text text-anchor=\"start\" x=\"3913.5\" y=\"-825.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 7&#45;&gt;8 -->\n",
"<g id=\"edge8\" class=\"edge\">\n",
"<title>7&#45;&gt;8</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M5424.8173,-969.6286C5130.9722,-947.6641 4371.8678,-890.922 4074.0185,-868.6581\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4073.8523,-865.136 4063.6192,-867.8808 4073.3304,-872.1165 4073.8523,-865.136\"/>\n",
"</g>\n",
"<!-- 89 -->\n",
"<g id=\"node90\" class=\"node\">\n",
"<title>89</title>\n",
"<polygon fill=\"#e53986\" fill-opacity=\"0.054902\" stroke=\"#000000\" points=\"5635,-901 5452,-901 5452,-818 5635,-818 5635,-901\"/>\n",
"<text text-anchor=\"start\" x=\"5518\" y=\"-885.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #89</text>\n",
"<text text-anchor=\"start\" x=\"5513\" y=\"-870.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cider ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"5506.5\" y=\"-855.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 97</text>\n",
"<text text-anchor=\"start\" x=\"5460\" y=\"-840.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [20, 22, 9, 7, 6, 7, 26]</text>\n",
"<text text-anchor=\"start\" x=\"5489\" y=\"-825.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = uk&#45;and&#45;irish</text>\n",
"</g>\n",
"<!-- 7&#45;&gt;89 -->\n",
"<g id=\"edge89\" class=\"edge\">\n",
"<title>7&#45;&gt;89</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M5543.5,-936.8796C5543.5,-928.6838 5543.5,-919.9891 5543.5,-911.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"5547.0001,-911.298 5543.5,-901.2981 5540.0001,-911.2981 5547.0001,-911.298\"/>\n",
"</g>\n",
"<!-- 9 -->\n",
"<g id=\"node10\" class=\"node\">\n",
"<title>9</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.176471\" stroke=\"#000000\" points=\"2861.5,-782 2637.5,-782 2637.5,-699 2861.5,-699 2861.5,-782\"/>\n",
"<text text-anchor=\"start\" x=\"2727.5\" y=\"-766.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #9</text>\n",
"<text text-anchor=\"start\" x=\"2704.5\" y=\"-751.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">sauerkraut ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"2709\" y=\"-736.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 716</text>\n",
"<text text-anchor=\"start\" x=\"2645.5\" y=\"-721.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [157, 65, 256, 92, 27, 67, 52]</text>\n",
"<text text-anchor=\"start\" x=\"2711.5\" y=\"-706.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 8&#45;&gt;9 -->\n",
"<g id=\"edge9\" class=\"edge\">\n",
"<title>8&#45;&gt;9</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3839.4981,-848.4116C3613.8105,-826.0682 3105.9892,-775.793 2871.9117,-752.619\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2871.9517,-749.1059 2861.6555,-751.6036 2871.262,-756.0718 2871.9517,-749.1059\"/>\n",
"</g>\n",
"<!-- 54 -->\n",
"<g id=\"node55\" class=\"node\">\n",
"<title>54</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.121569\" stroke=\"#000000\" points=\"4053,-782 3850,-782 3850,-699 4053,-699 4053,-782\"/>\n",
"<text text-anchor=\"start\" x=\"3926\" y=\"-766.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #54</text>\n",
"<text text-anchor=\"start\" x=\"3916.5\" y=\"-751.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">gelatin ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"3911\" y=\"-736.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 237</text>\n",
"<text text-anchor=\"start\" x=\"3858\" y=\"-721.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [100, 7, 81, 3, 11, 13, 22]</text>\n",
"<text text-anchor=\"start\" x=\"3913\" y=\"-706.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 8&#45;&gt;54 -->\n",
"<g id=\"edge54\" class=\"edge\">\n",
"<title>8&#45;&gt;54</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3951.5,-817.8796C3951.5,-809.6838 3951.5,-800.9891 3951.5,-792.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3955.0001,-792.298 3951.5,-782.2981 3948.0001,-792.2981 3955.0001,-792.298\"/>\n",
"</g>\n",
"<!-- 10 -->\n",
"<g id=\"node11\" class=\"node\">\n",
"<title>10</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.184314\" stroke=\"#000000\" points=\"2342.5,-663 2118.5,-663 2118.5,-580 2342.5,-580 2342.5,-663\"/>\n",
"<text text-anchor=\"start\" x=\"2205\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #10</text>\n",
"<text text-anchor=\"start\" x=\"2197.5\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">wheat ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"2190\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 704</text>\n",
"<text text-anchor=\"start\" x=\"2126.5\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [155, 55, 256, 92, 27, 67, 52]</text>\n",
"<text text-anchor=\"start\" x=\"2192.5\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 9&#45;&gt;10 -->\n",
"<g id=\"edge10\" class=\"edge\">\n",
"<title>9&#45;&gt;10</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M2637.2044,-714.7521C2553.2568,-695.504 2438.5987,-669.2143 2352.4194,-649.4545\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2353.115,-646.0233 2342.5857,-647.1998 2351.5506,-652.8462 2353.115,-646.0233\"/>\n",
"</g>\n",
"<!-- 51 -->\n",
"<g id=\"node52\" class=\"node\">\n",
"<title>51</title>\n",
"<polygon fill=\"#b7e539\" fill-opacity=\"0.800000\" stroke=\"#000000\" points=\"2834.5,-663 2664.5,-663 2664.5,-580 2834.5,-580 2834.5,-663\"/>\n",
"<text text-anchor=\"start\" x=\"2724\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #51</text>\n",
"<text text-anchor=\"start\" x=\"2714.5\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">smoke ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"2712.5\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 12</text>\n",
"<text text-anchor=\"start\" x=\"2672.5\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 10, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"2707.5\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = german</text>\n",
"</g>\n",
"<!-- 9&#45;&gt;51 -->\n",
"<g id=\"edge51\" class=\"edge\">\n",
"<title>9&#45;&gt;51</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M2749.5,-698.8796C2749.5,-690.6838 2749.5,-681.9891 2749.5,-673.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2753.0001,-673.298 2749.5,-663.2981 2746.0001,-673.2981 2753.0001,-673.298\"/>\n",
"</g>\n",
"<!-- 11 -->\n",
"<g id=\"node12\" class=\"node\">\n",
"<title>11</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.125490\" stroke=\"#000000\" points=\"1357.5,-544 1133.5,-544 1133.5,-461 1357.5,-461 1357.5,-544\"/>\n",
"<text text-anchor=\"start\" x=\"1220\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #11</text>\n",
"<text text-anchor=\"start\" x=\"1201.5\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cinnamon ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"1205\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 468</text>\n",
"<text text-anchor=\"start\" x=\"1141.5\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [121, 21, 165, 49, 19, 67, 26]</text>\n",
"<text text-anchor=\"start\" x=\"1207.5\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 10&#45;&gt;11 -->\n",
"<g id=\"edge11\" class=\"edge\">\n",
"<title>10&#45;&gt;11</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M2118.467,-607.965C1932.3316,-585.4776 1560.8115,-540.5935 1367.9835,-517.2975\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"1368.1543,-513.7928 1357.8066,-516.068 1367.3146,-520.7422 1368.1543,-513.7928\"/>\n",
"</g>\n",
"<!-- 30 -->\n",
"<g id=\"node31\" class=\"node\">\n",
"<title>30</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.247059\" stroke=\"#000000\" points=\"2329,-544 2132,-544 2132,-461 2329,-461 2329,-544\"/>\n",
"<text text-anchor=\"start\" x=\"2205\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #30</text>\n",
"<text text-anchor=\"start\" x=\"2200\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">anise ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"2190\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 236</text>\n",
"<text text-anchor=\"start\" x=\"2140\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [34, 34, 91, 43, 8, 0, 26]</text>\n",
"<text text-anchor=\"start\" x=\"2192.5\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 10&#45;&gt;30 -->\n",
"<g id=\"edge30\" class=\"edge\">\n",
"<title>10&#45;&gt;30</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M2230.5,-579.8796C2230.5,-571.6838 2230.5,-562.9891 2230.5,-554.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2234.0001,-554.298 2230.5,-544.2981 2227.0001,-554.2981 2234.0001,-554.298\"/>\n",
"</g>\n",
"<!-- 12 -->\n",
"<g id=\"node13\" class=\"node\">\n",
"<title>12</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.145098\" stroke=\"#000000\" points=\"907.5,-425 683.5,-425 683.5,-342 907.5,-342 907.5,-425\"/>\n",
"<text text-anchor=\"start\" x=\"770\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #12</text>\n",
"<text text-anchor=\"start\" x=\"769.5\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">dill ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"755\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 429</text>\n",
"<text text-anchor=\"start\" x=\"691.5\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [116, 19, 161, 37, 14, 56, 26]</text>\n",
"<text text-anchor=\"start\" x=\"757.5\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 11&#45;&gt;12 -->\n",
"<g id=\"edge12\" class=\"edge\">\n",
"<title>11&#45;&gt;12</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M1133.3964,-472.8548C1067.7711,-455.5006 984.8509,-433.5728 917.5777,-415.7828\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"918.3321,-412.362 907.7696,-413.1891 916.5424,-419.1294 918.3321,-412.362\"/>\n",
"</g>\n",
"<!-- 23 -->\n",
"<g id=\"node24\" class=\"node\">\n",
"<title>23</title>\n",
"<polygon fill=\"#39e5e2\" fill-opacity=\"0.035294\" stroke=\"#000000\" points=\"1333.5,-425 1157.5,-425 1157.5,-342 1333.5,-342 1333.5,-425\"/>\n",
"<text text-anchor=\"start\" x=\"1220\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #23</text>\n",
"<text text-anchor=\"start\" x=\"1210.5\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">vanilla ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"1208.5\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 39</text>\n",
"<text text-anchor=\"start\" x=\"1165.5\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [5, 2, 4, 12, 5, 11, 0]</text>\n",
"<text text-anchor=\"start\" x=\"1206.5\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = jewish</text>\n",
"</g>\n",
"<!-- 11&#45;&gt;23 -->\n",
"<g id=\"edge23\" class=\"edge\">\n",
"<title>11&#45;&gt;23</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M1245.5,-460.8796C1245.5,-452.6838 1245.5,-443.9891 1245.5,-435.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"1249.0001,-435.298 1245.5,-425.2981 1242.0001,-435.2981 1249.0001,-435.298\"/>\n",
"</g>\n",
"<!-- 13 -->\n",
"<g id=\"node14\" class=\"node\">\n",
"<title>13</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.160784\" stroke=\"#000000\" points=\"619,-306 402,-306 402,-223 619,-223 619,-306\"/>\n",
"<text text-anchor=\"start\" x=\"485\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #13</text>\n",
"<text text-anchor=\"start\" x=\"471\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">caraway ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"470\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 415</text>\n",
"<text text-anchor=\"start\" x=\"410\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [113, 19, 161, 33, 7, 56, 26]</text>\n",
"<text text-anchor=\"start\" x=\"472.5\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 12&#45;&gt;13 -->\n",
"<g id=\"edge13\" class=\"edge\">\n",
"<title>12&#45;&gt;13</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M695.8208,-341.8796C671.1968,-331.598 644.6922,-320.5311 619.6444,-310.0726\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"620.6994,-306.7203 610.1229,-306.0969 618.0022,-313.1798 620.6994,-306.7203\"/>\n",
"</g>\n",
"<!-- 18 -->\n",
"<g id=\"node19\" class=\"node\">\n",
"<title>18</title>\n",
"<polygon fill=\"#3956e5\" fill-opacity=\"0.298039\" stroke=\"#000000\" points=\"877,-306 714,-306 714,-223 877,-223 877,-306\"/>\n",
"<text text-anchor=\"start\" x=\"770\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #18</text>\n",
"<text text-anchor=\"start\" x=\"763.5\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">garlic ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"758.5\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 14</text>\n",
"<text text-anchor=\"start\" x=\"722\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 0, 4, 7, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"739\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = scandinavian</text>\n",
"</g>\n",
"<!-- 12&#45;&gt;18 -->\n",
"<g id=\"edge18\" class=\"edge\">\n",
"<title>12&#45;&gt;18</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M795.5,-341.8796C795.5,-333.6838 795.5,-324.9891 795.5,-316.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"799.0001,-316.298 795.5,-306.2981 792.0001,-316.2981 799.0001,-316.298\"/>\n",
"</g>\n",
"<!-- 14 -->\n",
"<g id=\"node15\" class=\"node\">\n",
"<title>14</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.160784\" stroke=\"#000000\" points=\"411,-187 194,-187 194,-104 411,-104 411,-187\"/>\n",
"<text text-anchor=\"start\" x=\"277\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #14</text>\n",
"<text text-anchor=\"start\" x=\"269\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">barley ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"262\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 410</text>\n",
"<text text-anchor=\"start\" x=\"202\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [113, 14, 161, 33, 7, 56, 26]</text>\n",
"<text text-anchor=\"start\" x=\"264.5\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 13&#45;&gt;14 -->\n",
"<g id=\"edge14\" class=\"edge\">\n",
"<title>13&#45;&gt;14</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M437.7517,-222.8796C420.493,-213.0056 401.9685,-202.4075 384.3355,-192.3193\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"385.6252,-189.0249 375.2072,-187.0969 382.149,-195.1008 385.6252,-189.0249\"/>\n",
"</g>\n",
"<!-- 17 -->\n",
"<g id=\"node18\" class=\"node\">\n",
"<title>17</title>\n",
"<polygon fill=\"#b7e539\" stroke=\"#000000\" points=\"592,-179.5 429,-179.5 429,-111.5 592,-111.5 592,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"485\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #17</text>\n",
"<text text-anchor=\"start\" x=\"477\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 5</text>\n",
"<text text-anchor=\"start\" x=\"437\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 5, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"468.5\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = german</text>\n",
"</g>\n",
"<!-- 13&#45;&gt;17 -->\n",
"<g id=\"edge17\" class=\"edge\">\n",
"<title>13&#45;&gt;17</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M510.5,-222.8796C510.5,-212.2134 510.5,-200.7021 510.5,-189.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"514.0001,-189.8149 510.5,-179.8149 507.0001,-189.815 514.0001,-189.8149\"/>\n",
"</g>\n",
"<!-- 15 -->\n",
"<g id=\"node16\" class=\"node\">\n",
"<title>15</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.164706\" stroke=\"#000000\" points=\"217,-68 0,-68 0,0 217,0 217,-68\"/>\n",
"<text text-anchor=\"start\" x=\"83\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #15</text>\n",
"<text text-anchor=\"start\" x=\"68\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 405</text>\n",
"<text text-anchor=\"start\" x=\"8\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [113, 14, 161, 33, 7, 56, 21]</text>\n",
"<text text-anchor=\"start\" x=\"70.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 14&#45;&gt;15 -->\n",
"<g id=\"edge15\" class=\"edge\">\n",
"<title>14&#45;&gt;15</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M230.2616,-103.9815C212.7397,-93.911 194.0626,-83.1764 176.7324,-73.2161\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"178.2201,-70.0342 167.8059,-68.0856 174.7319,-76.1032 178.2201,-70.0342\"/>\n",
"</g>\n",
"<!-- 16 -->\n",
"<g id=\"node17\" class=\"node\">\n",
"<title>16</title>\n",
"<polygon fill=\"#e53986\" stroke=\"#000000\" points=\"398,-68 235,-68 235,0 398,0 398,-68\"/>\n",
"<text text-anchor=\"start\" x=\"291\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #16</text>\n",
"<text text-anchor=\"start\" x=\"283\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 5</text>\n",
"<text text-anchor=\"start\" x=\"243\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 0, 0, 5]</text>\n",
"<text text-anchor=\"start\" x=\"262\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = uk&#45;and&#45;irish</text>\n",
"</g>\n",
"<!-- 14&#45;&gt;16 -->\n",
"<g id=\"edge16\" class=\"edge\">\n",
"<title>14&#45;&gt;16</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M307.7131,-103.9815C308.7632,-95.618 309.8708,-86.7965 310.9325,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"314.4247,-78.6218 312.1978,-68.2637 307.4792,-77.7497 314.4247,-78.6218\"/>\n",
"</g>\n",
"<!-- 19 -->\n",
"<g id=\"node20\" class=\"node\">\n",
"<title>19</title>\n",
"<polygon fill=\"#3956e5\" fill-opacity=\"0.376471\" stroke=\"#000000\" points=\"773,-187 610,-187 610,-104 773,-104 773,-187\"/>\n",
"<text text-anchor=\"start\" x=\"666\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #19</text>\n",
"<text text-anchor=\"start\" x=\"652.5\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">mustard ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"654.5\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 12</text>\n",
"<text text-anchor=\"start\" x=\"618\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 4, 7, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"635\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = scandinavian</text>\n",
"</g>\n",
"<!-- 18&#45;&gt;19 -->\n",
"<g id=\"edge19\" class=\"edge\">\n",
"<title>18&#45;&gt;19</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M759.1258,-222.8796C751.2548,-213.8733 742.8571,-204.2644 734.7515,-194.9897\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"737.2454,-192.5246 728.0294,-187.2981 731.9746,-197.131 737.2454,-192.5246\"/>\n",
"</g>\n",
"<!-- 22 -->\n",
"<g id=\"node23\" class=\"node\">\n",
"<title>22</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"954,-179.5 791,-179.5 791,-111.5 954,-111.5 954,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"847\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #22</text>\n",
"<text text-anchor=\"start\" x=\"839\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"799\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"834\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 18&#45;&gt;22 -->\n",
"<g id=\"edge22\" class=\"edge\">\n",
"<title>18&#45;&gt;22</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M822.4309,-222.8796C829.6883,-211.6636 837.5503,-199.5131 844.8465,-188.2372\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"847.8022,-190.112 850.2962,-179.8149 841.9252,-186.3093 847.8022,-190.112\"/>\n",
"</g>\n",
"<!-- 20 -->\n",
"<g id=\"node21\" class=\"node\">\n",
"<title>20</title>\n",
"<polygon fill=\"#39e5e2\" fill-opacity=\"0.498039\" stroke=\"#000000\" points=\"592,-68 429,-68 429,0 592,0 592,-68\"/>\n",
"<text text-anchor=\"start\" x=\"485\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #20</text>\n",
"<text text-anchor=\"start\" x=\"477\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 6</text>\n",
"<text text-anchor=\"start\" x=\"437\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 4, 2, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"471.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = jewish</text>\n",
"</g>\n",
"<!-- 19&#45;&gt;20 -->\n",
"<g id=\"edge20\" class=\"edge\">\n",
"<title>19&#45;&gt;20</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M624.1023,-103.9815C607.9045,-94.0034 590.6487,-83.3733 574.6055,-73.4904\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"576.1817,-70.3506 565.8318,-68.0856 572.5103,-76.3105 576.1817,-70.3506\"/>\n",
"</g>\n",
"<!-- 21 -->\n",
"<g id=\"node22\" class=\"node\">\n",
"<title>21</title>\n",
"<polygon fill=\"#3956e5\" fill-opacity=\"0.800000\" stroke=\"#000000\" points=\"773,-68 610,-68 610,0 773,0 773,-68\"/>\n",
"<text text-anchor=\"start\" x=\"666\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #21</text>\n",
"<text text-anchor=\"start\" x=\"658\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 6</text>\n",
"<text text-anchor=\"start\" x=\"618\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 5, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"635\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = scandinavian</text>\n",
"</g>\n",
"<!-- 19&#45;&gt;21 -->\n",
"<g id=\"edge21\" class=\"edge\">\n",
"<title>19&#45;&gt;21</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M691.5,-103.9815C691.5,-95.618 691.5,-86.7965 691.5,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"695.0001,-78.2636 691.5,-68.2637 688.0001,-78.2637 695.0001,-78.2636\"/>\n",
"</g>\n",
"<!-- 24 -->\n",
"<g id=\"node25\" class=\"node\">\n",
"<title>24</title>\n",
"<polygon fill=\"#39e5e2\" fill-opacity=\"0.141176\" stroke=\"#000000\" points=\"1237.5,-306 1067.5,-306 1067.5,-223 1237.5,-223 1237.5,-306\"/>\n",
"<text text-anchor=\"start\" x=\"1127\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #24</text>\n",
"<text text-anchor=\"start\" x=\"1108.5\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">port_wine ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"1115.5\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 36</text>\n",
"<text text-anchor=\"start\" x=\"1075.5\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [5, 2, 4, 12, 5, 8, 0]</text>\n",
"<text text-anchor=\"start\" x=\"1113.5\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = jewish</text>\n",
"</g>\n",
"<!-- 23&#45;&gt;24 -->\n",
"<g id=\"edge24\" class=\"edge\">\n",
"<title>23&#45;&gt;24</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M1212.9731,-341.8796C1206.0049,-332.9633 1198.5753,-323.4565 1191.3944,-314.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"1194.0812,-312.0221 1185.1657,-306.2981 1188.5657,-316.3326 1194.0812,-312.0221\"/>\n",
"</g>\n",
"<!-- 29 -->\n",
"<g id=\"node30\" class=\"node\">\n",
"<title>29</title>\n",
"<polygon fill=\"#b139e5\" stroke=\"#000000\" points=\"1421,-298.5 1256,-298.5 1256,-230.5 1421,-230.5 1421,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"1313\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #29</text>\n",
"<text text-anchor=\"start\" x=\"1305\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"1265\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 0, 3, 0]</text>\n",
"<text text-anchor=\"start\" x=\"1264\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 23&#45;&gt;29 -->\n",
"<g id=\"edge29\" class=\"edge\">\n",
"<title>23&#45;&gt;29</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M1278.0269,-341.8796C1286.8783,-330.5536 1296.4743,-318.2748 1305.3593,-306.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"1308.2824,-308.8494 1311.6824,-298.8149 1302.7669,-304.539 1308.2824,-308.8494\"/>\n",
"</g>\n",
"<!-- 25 -->\n",
"<g id=\"node26\" class=\"node\">\n",
"<title>25</title>\n",
"<polygon fill=\"#39e5e2\" fill-opacity=\"0.152941\" stroke=\"#000000\" points=\"1144.5,-187 974.5,-187 974.5,-104 1144.5,-104 1144.5,-187\"/>\n",
"<text text-anchor=\"start\" x=\"1034\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #25</text>\n",
"<text text-anchor=\"start\" x=\"1006\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">apple_brandy ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"1022.5\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 34</text>\n",
"<text text-anchor=\"start\" x=\"982.5\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [5, 2, 4, 12, 3, 8, 0]</text>\n",
"<text text-anchor=\"start\" x=\"1020.5\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = jewish</text>\n",
"</g>\n",
"<!-- 24&#45;&gt;25 -->\n",
"<g id=\"edge25\" class=\"edge\">\n",
"<title>24&#45;&gt;25</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M1119.9731,-222.8796C1113.0049,-213.9633 1105.5753,-204.4565 1098.3944,-195.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"1101.0812,-193.0221 1092.1657,-187.2981 1095.5657,-197.3326 1101.0812,-193.0221\"/>\n",
"</g>\n",
"<!-- 28 -->\n",
"<g id=\"node29\" class=\"node\">\n",
"<title>28</title>\n",
"<polygon fill=\"#3956e5\" stroke=\"#000000\" points=\"1326,-179.5 1163,-179.5 1163,-111.5 1326,-111.5 1326,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"1219\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #28</text>\n",
"<text text-anchor=\"start\" x=\"1211\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"1171\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 2, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"1188\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = scandinavian</text>\n",
"</g>\n",
"<!-- 24&#45;&gt;28 -->\n",
"<g id=\"edge28\" class=\"edge\">\n",
"<title>24&#45;&gt;28</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M1184.6771,-222.8796C1193.4333,-211.5536 1202.9262,-199.2748 1211.7156,-187.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"1214.6234,-189.8671 1217.9708,-179.8149 1209.0854,-185.5856 1214.6234,-189.8671\"/>\n",
"</g>\n",
"<!-- 26 -->\n",
"<g id=\"node27\" class=\"node\">\n",
"<title>26</title>\n",
"<polygon fill=\"#39e5e2\" fill-opacity=\"0.164706\" stroke=\"#000000\" points=\"961.5,-68 791.5,-68 791.5,0 961.5,0 961.5,-68\"/>\n",
"<text text-anchor=\"start\" x=\"851\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #26</text>\n",
"<text text-anchor=\"start\" x=\"839.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 32</text>\n",
"<text text-anchor=\"start\" x=\"799.5\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 2, 4, 12, 3, 8, 0]</text>\n",
"<text text-anchor=\"start\" x=\"837.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = jewish</text>\n",
"</g>\n",
"<!-- 25&#45;&gt;26 -->\n",
"<g id=\"edge26\" class=\"edge\">\n",
"<title>25&#45;&gt;26</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M991.3576,-103.9815C974.9808,-94.0034 957.5343,-83.3733 941.3138,-73.4904\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"942.8041,-70.2999 932.4432,-68.0856 939.1618,-76.2778 942.8041,-70.2999\"/>\n",
"</g>\n",
"<!-- 27 -->\n",
"<g id=\"node28\" class=\"node\">\n",
"<title>27</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"1143,-68 980,-68 980,0 1143,0 1143,-68\"/>\n",
"<text text-anchor=\"start\" x=\"1036\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #27</text>\n",
"<text text-anchor=\"start\" x=\"1028\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"988\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"1023\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 25&#45;&gt;27 -->\n",
"<g id=\"edge27\" class=\"edge\">\n",
"<title>25&#45;&gt;27</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M1060.2447,-103.9815C1060.3947,-95.618 1060.553,-86.7965 1060.7046,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"1064.2054,-78.3249 1060.8854,-68.2637 1057.2065,-78.1993 1064.2054,-78.3249\"/>\n",
"</g>\n",
"<!-- 31 -->\n",
"<g id=\"node32\" class=\"node\">\n",
"<title>31</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.235294\" stroke=\"#000000\" points=\"2148,-425 1951,-425 1951,-342 2148,-342 2148,-425\"/>\n",
"<text text-anchor=\"start\" x=\"2024\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #31</text>\n",
"<text text-anchor=\"start\" x=\"2018\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">apple ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"2009\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 217</text>\n",
"<text text-anchor=\"start\" x=\"1959\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [34, 22, 84, 43, 8, 0, 26]</text>\n",
"<text text-anchor=\"start\" x=\"2011.5\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 30&#45;&gt;31 -->\n",
"<g id=\"edge31\" class=\"edge\">\n",
"<title>30&#45;&gt;31</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M2167.195,-460.8796C2152.3144,-451.0962 2136.3524,-440.6019 2121.1351,-430.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2123.0479,-427.666 2112.7693,-425.0969 2119.2023,-433.5151 2123.0479,-427.666\"/>\n",
"</g>\n",
"<!-- 44 -->\n",
"<g id=\"node45\" class=\"node\">\n",
"<title>44</title>\n",
"<polygon fill=\"#b7e539\" fill-opacity=\"0.415686\" stroke=\"#000000\" points=\"2455.5,-425 2285.5,-425 2285.5,-342 2455.5,-342 2455.5,-425\"/>\n",
"<text text-anchor=\"start\" x=\"2345\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #44</text>\n",
"<text text-anchor=\"start\" x=\"2336.5\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">ginger ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"2333.5\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 19</text>\n",
"<text text-anchor=\"start\" x=\"2293.5\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 12, 7, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"2328.5\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = german</text>\n",
"</g>\n",
"<!-- 30&#45;&gt;44 -->\n",
"<g id=\"edge44\" class=\"edge\">\n",
"<title>30&#45;&gt;44</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M2279.4652,-460.8796C2290.4847,-451.513 2302.2709,-441.4948 2313.5842,-431.8784\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2315.9732,-434.4414 2321.3258,-425.2981 2311.4396,-429.1078 2315.9732,-434.4414\"/>\n",
"</g>\n",
"<!-- 32 -->\n",
"<g id=\"node33\" class=\"node\">\n",
"<title>32</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.286275\" stroke=\"#000000\" points=\"1875,-306 1678,-306 1678,-223 1875,-223 1875,-306\"/>\n",
"<text text-anchor=\"start\" x=\"1751\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #32</text>\n",
"<text text-anchor=\"start\" x=\"1747\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">milk ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"1736\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 205</text>\n",
"<text text-anchor=\"start\" x=\"1686\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [33, 21, 83, 34, 8, 0, 26]</text>\n",
"<text text-anchor=\"start\" x=\"1738.5\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 31&#45;&gt;32 -->\n",
"<g id=\"edge32\" class=\"edge\">\n",
"<title>31&#45;&gt;32</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M1954.0178,-341.8796C1930.5346,-331.6433 1905.2657,-320.6286 1881.366,-310.2108\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"1882.4938,-306.8844 1871.9282,-306.0969 1879.6966,-313.3013 1882.4938,-306.8844\"/>\n",
"</g>\n",
"<!-- 39 -->\n",
"<g id=\"node40\" class=\"node\">\n",
"<title>39</title>\n",
"<polygon fill=\"#39e5e2\" fill-opacity=\"0.725490\" stroke=\"#000000\" points=\"2131,-306 1968,-306 1968,-223 2131,-223 2131,-306\"/>\n",
"<text text-anchor=\"start\" x=\"2024\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #39</text>\n",
"<text text-anchor=\"start\" x=\"2025\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">fig ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"2012.5\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 12</text>\n",
"<text text-anchor=\"start\" x=\"1976\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 1, 1, 9, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"2010.5\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = jewish</text>\n",
"</g>\n",
"<!-- 31&#45;&gt;39 -->\n",
"<g id=\"edge39\" class=\"edge\">\n",
"<title>31&#45;&gt;39</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M2049.5,-341.8796C2049.5,-333.6838 2049.5,-324.9891 2049.5,-316.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2053.0001,-316.298 2049.5,-306.2981 2046.0001,-316.2981 2053.0001,-316.298\"/>\n",
"</g>\n",
"<!-- 33 -->\n",
"<g id=\"node34\" class=\"node\">\n",
"<title>33</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.298039\" stroke=\"#000000\" points=\"1550,-187 1353,-187 1353,-104 1550,-104 1550,-187\"/>\n",
"<text text-anchor=\"start\" x=\"1426\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #33</text>\n",
"<text text-anchor=\"start\" x=\"1406\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">buttermilk ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"1411\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 161</text>\n",
"<text text-anchor=\"start\" x=\"1361\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [20, 18, 71, 33, 6, 0, 13]</text>\n",
"<text text-anchor=\"start\" x=\"1413.5\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 32&#45;&gt;33 -->\n",
"<g id=\"edge33\" class=\"edge\">\n",
"<title>32&#45;&gt;33</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M1677.6656,-228.3114C1640.3926,-214.6637 1597.8115,-199.0725 1559.7245,-185.1268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"1560.7379,-181.7707 1550.1441,-181.6189 1558.331,-188.3439 1560.7379,-181.7707\"/>\n",
"</g>\n",
"<!-- 36 -->\n",
"<g id=\"node37\" class=\"node\">\n",
"<title>36</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"1868,-187 1685,-187 1685,-104 1868,-104 1868,-187\"/>\n",
"<text text-anchor=\"start\" x=\"1751\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #36</text>\n",
"<text text-anchor=\"start\" x=\"1744\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cocoa ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"1739.5\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 44</text>\n",
"<text text-anchor=\"start\" x=\"1693\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [13, 3, 12, 1, 2, 0, 13]</text>\n",
"<text text-anchor=\"start\" x=\"1738\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 32&#45;&gt;36 -->\n",
"<g id=\"edge36\" class=\"edge\">\n",
"<title>32&#45;&gt;36</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M1776.5,-222.8796C1776.5,-214.6838 1776.5,-205.9891 1776.5,-197.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"1780.0001,-197.298 1776.5,-187.2981 1773.0001,-197.2981 1780.0001,-197.298\"/>\n",
"</g>\n",
"<!-- 34 -->\n",
"<g id=\"node35\" class=\"node\">\n",
"<title>34</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.305882\" stroke=\"#000000\" points=\"1351.5,-68 1161.5,-68 1161.5,0 1351.5,0 1351.5,-68\"/>\n",
"<text text-anchor=\"start\" x=\"1231\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #34</text>\n",
"<text text-anchor=\"start\" x=\"1216\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 151</text>\n",
"<text text-anchor=\"start\" x=\"1169.5\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [20, 17, 69, 33, 5, 0, 7]</text>\n",
"<text text-anchor=\"start\" x=\"1218.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 33&#45;&gt;34 -->\n",
"<g id=\"edge34\" class=\"edge\">\n",
"<title>33&#45;&gt;34</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M1378.8892,-103.9815C1361.277,-93.911 1342.5036,-83.1764 1325.0842,-73.2161\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"1326.53,-70.0111 1316.1116,-68.0856 1323.0554,-76.0878 1326.53,-70.0111\"/>\n",
"</g>\n",
"<!-- 35 -->\n",
"<g id=\"node36\" class=\"node\">\n",
"<title>35</title>\n",
"<polygon fill=\"#e53986\" fill-opacity=\"0.498039\" stroke=\"#000000\" points=\"1533,-68 1370,-68 1370,0 1533,0 1533,-68\"/>\n",
"<text text-anchor=\"start\" x=\"1426\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #35</text>\n",
"<text text-anchor=\"start\" x=\"1414.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 10</text>\n",
"<text text-anchor=\"start\" x=\"1378\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 1, 2, 0, 1, 0, 6]</text>\n",
"<text text-anchor=\"start\" x=\"1397\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = uk&#45;and&#45;irish</text>\n",
"</g>\n",
"<!-- 33&#45;&gt;35 -->\n",
"<g id=\"edge35\" class=\"edge\">\n",
"<title>33&#45;&gt;35</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M1451.5,-103.9815C1451.5,-95.618 1451.5,-86.7965 1451.5,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"1455.0001,-78.2636 1451.5,-68.2637 1448.0001,-78.2637 1455.0001,-78.2636\"/>\n",
"</g>\n",
"<!-- 37 -->\n",
"<g id=\"node38\" class=\"node\">\n",
"<title>37</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"1727.5,-68 1551.5,-68 1551.5,0 1727.5,0 1727.5,-68\"/>\n",
"<text text-anchor=\"start\" x=\"1614\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #37</text>\n",
"<text text-anchor=\"start\" x=\"1602.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 39</text>\n",
"<text text-anchor=\"start\" x=\"1559.5\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [13, 3, 7, 1, 2, 0, 13]</text>\n",
"<text text-anchor=\"start\" x=\"1601\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 36&#45;&gt;37 -->\n",
"<g id=\"edge37\" class=\"edge\">\n",
"<title>36&#45;&gt;37</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M1725.4863,-103.9815C1713.742,-94.4232 1701.2628,-84.2668 1689.5595,-74.7419\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"1691.565,-71.8614 1681.5998,-68.2637 1687.1464,-77.2906 1691.565,-71.8614\"/>\n",
"</g>\n",
"<!-- 38 -->\n",
"<g id=\"node39\" class=\"node\">\n",
"<title>38</title>\n",
"<polygon fill=\"#39e54d\" stroke=\"#000000\" points=\"1909,-68 1746,-68 1746,0 1909,0 1909,-68\"/>\n",
"<text text-anchor=\"start\" x=\"1802\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #38</text>\n",
"<text text-anchor=\"start\" x=\"1794\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 5</text>\n",
"<text text-anchor=\"start\" x=\"1754\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 5, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"1789.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 36&#45;&gt;38 -->\n",
"<g id=\"edge38\" class=\"edge\">\n",
"<title>36&#45;&gt;38</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M1795.4905,-103.9815C1799.4421,-95.3423 1803.6172,-86.2144 1807.6005,-77.5059\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"1810.8511,-78.8134 1811.8278,-68.2637 1804.4854,-75.9017 1810.8511,-78.8134\"/>\n",
"</g>\n",
"<!-- 40 -->\n",
"<g id=\"node41\" class=\"node\">\n",
"<title>40</title>\n",
"<polygon fill=\"#39e5e2\" fill-opacity=\"0.800000\" stroke=\"#000000\" points=\"2090,-187 1927,-187 1927,-104 2090,-104 2090,-187\"/>\n",
"<text text-anchor=\"start\" x=\"1983\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #40</text>\n",
"<text text-anchor=\"start\" x=\"1955\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">apple_brandy ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"1971.5\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 11</text>\n",
"<text text-anchor=\"start\" x=\"1935\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 1, 0, 9, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"1969.5\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = jewish</text>\n",
"</g>\n",
"<!-- 39&#45;&gt;40 -->\n",
"<g id=\"edge40\" class=\"edge\">\n",
"<title>39&#45;&gt;40</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M2035.1602,-222.8796C2032.2744,-214.5037 2029.209,-205.6067 2026.2237,-196.942\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2029.4676,-195.6125 2022.901,-187.2981 2022.8494,-197.8928 2029.4676,-195.6125\"/>\n",
"</g>\n",
"<!-- 43 -->\n",
"<g id=\"node44\" class=\"node\">\n",
"<title>43</title>\n",
"<polygon fill=\"#39e54d\" stroke=\"#000000\" points=\"2271,-179.5 2108,-179.5 2108,-111.5 2271,-111.5 2271,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"2164\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #43</text>\n",
"<text text-anchor=\"start\" x=\"2156\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"2116\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"2151.5\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 39&#45;&gt;43 -->\n",
"<g id=\"edge43\" class=\"edge\">\n",
"<title>39&#45;&gt;43</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M2098.4652,-222.8796C2112.3073,-211.1138 2127.3592,-198.3197 2141.1641,-186.5855\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2143.7769,-188.9582 2149.1295,-179.8149 2139.2433,-183.6247 2143.7769,-188.9582\"/>\n",
"</g>\n",
"<!-- 41 -->\n",
"<g id=\"node42\" class=\"node\">\n",
"<title>41</title>\n",
"<polygon fill=\"#39e5e2\" fill-opacity=\"0.890196\" stroke=\"#000000\" points=\"2090,-68 1927,-68 1927,0 2090,0 2090,-68\"/>\n",
"<text text-anchor=\"start\" x=\"1983\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #41</text>\n",
"<text text-anchor=\"start\" x=\"1971.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 10</text>\n",
"<text text-anchor=\"start\" x=\"1935\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 1, 0, 9, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"1969.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = jewish</text>\n",
"</g>\n",
"<!-- 40&#45;&gt;41 -->\n",
"<g id=\"edge41\" class=\"edge\">\n",
"<title>40&#45;&gt;41</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M2008.5,-103.9815C2008.5,-95.618 2008.5,-86.7965 2008.5,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2012.0001,-78.2636 2008.5,-68.2637 2005.0001,-78.2637 2012.0001,-78.2636\"/>\n",
"</g>\n",
"<!-- 42 -->\n",
"<g id=\"node43\" class=\"node\">\n",
"<title>42</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"2271,-68 2108,-68 2108,0 2271,0 2271,-68\"/>\n",
"<text text-anchor=\"start\" x=\"2164\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #42</text>\n",
"<text text-anchor=\"start\" x=\"2156\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"2116\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"2151\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 40&#45;&gt;42 -->\n",
"<g id=\"edge42\" class=\"edge\">\n",
"<title>40&#45;&gt;42</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M2075.8977,-103.9815C2092.0955,-94.0034 2109.3513,-83.3733 2125.3945,-73.4904\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2127.4897,-76.3105 2134.1682,-68.0856 2123.8183,-70.3506 2127.4897,-76.3105\"/>\n",
"</g>\n",
"<!-- 45 -->\n",
"<g id=\"node46\" class=\"node\">\n",
"<title>45</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"2452,-306 2289,-306 2289,-223 2452,-223 2452,-306\"/>\n",
"<text text-anchor=\"start\" x=\"2345\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #45</text>\n",
"<text text-anchor=\"start\" x=\"2317.5\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">vegetable_oil ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"2333.5\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 14</text>\n",
"<text text-anchor=\"start\" x=\"2297\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 7, 7, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"2328.5\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = german</text>\n",
"</g>\n",
"<!-- 44&#45;&gt;45 -->\n",
"<g id=\"edge45\" class=\"edge\">\n",
"<title>44&#45;&gt;45</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M2370.5,-341.8796C2370.5,-333.6838 2370.5,-324.9891 2370.5,-316.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2374.0001,-316.298 2370.5,-306.2981 2367.0001,-316.2981 2374.0001,-316.298\"/>\n",
"</g>\n",
"<!-- 50 -->\n",
"<g id=\"node51\" class=\"node\">\n",
"<title>50</title>\n",
"<polygon fill=\"#b7e539\" stroke=\"#000000\" points=\"2633,-298.5 2470,-298.5 2470,-230.5 2633,-230.5 2633,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"2526\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #50</text>\n",
"<text text-anchor=\"start\" x=\"2518\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 5</text>\n",
"<text text-anchor=\"start\" x=\"2478\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 5, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"2509.5\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = german</text>\n",
"</g>\n",
"<!-- 44&#45;&gt;50 -->\n",
"<g id=\"edge50\" class=\"edge\">\n",
"<title>44&#45;&gt;50</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M2433.805,-341.8796C2452.2903,-329.7263 2472.4443,-316.4759 2490.7665,-304.4297\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2493.1655,-307.0412 2499.5986,-298.623 2489.3199,-301.1921 2493.1655,-307.0412\"/>\n",
"</g>\n",
"<!-- 46 -->\n",
"<g id=\"node47\" class=\"node\">\n",
"<title>46</title>\n",
"<polygon fill=\"#b7e539\" fill-opacity=\"0.572549\" stroke=\"#000000\" points=\"2452,-187 2289,-187 2289,-104 2452,-104 2452,-187\"/>\n",
"<text text-anchor=\"start\" x=\"2345\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #46</text>\n",
"<text text-anchor=\"start\" x=\"2343\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">lard ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"2333.5\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 10</text>\n",
"<text text-anchor=\"start\" x=\"2297\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 7, 3, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"2328.5\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = german</text>\n",
"</g>\n",
"<!-- 45&#45;&gt;46 -->\n",
"<g id=\"edge46\" class=\"edge\">\n",
"<title>45&#45;&gt;46</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M2370.5,-222.8796C2370.5,-214.6838 2370.5,-205.9891 2370.5,-197.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2374.0001,-197.298 2370.5,-187.2981 2367.0001,-197.2981 2374.0001,-197.298\"/>\n",
"</g>\n",
"<!-- 49 -->\n",
"<g id=\"node50\" class=\"node\">\n",
"<title>49</title>\n",
"<polygon fill=\"#39e54d\" stroke=\"#000000\" points=\"2633,-179.5 2470,-179.5 2470,-111.5 2633,-111.5 2633,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"2526\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #49</text>\n",
"<text text-anchor=\"start\" x=\"2518\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 4</text>\n",
"<text text-anchor=\"start\" x=\"2478\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 4, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"2513.5\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 45&#45;&gt;49 -->\n",
"<g id=\"edge49\" class=\"edge\">\n",
"<title>45&#45;&gt;49</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M2433.805,-222.8796C2452.2903,-210.7263 2472.4443,-197.4759 2490.7665,-185.4297\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2493.1655,-188.0412 2499.5986,-179.623 2489.3199,-182.1921 2493.1655,-188.0412\"/>\n",
"</g>\n",
"<!-- 47 -->\n",
"<g id=\"node48\" class=\"node\">\n",
"<title>47</title>\n",
"<polygon fill=\"#b7e539\" fill-opacity=\"0.858824\" stroke=\"#000000\" points=\"2452,-68 2289,-68 2289,0 2452,0 2452,-68\"/>\n",
"<text text-anchor=\"start\" x=\"2345\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #47</text>\n",
"<text text-anchor=\"start\" x=\"2337\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 8</text>\n",
"<text text-anchor=\"start\" x=\"2297\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 7, 1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"2328.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = german</text>\n",
"</g>\n",
"<!-- 46&#45;&gt;47 -->\n",
"<g id=\"edge47\" class=\"edge\">\n",
"<title>46&#45;&gt;47</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M2370.5,-103.9815C2370.5,-95.618 2370.5,-86.7965 2370.5,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2374.0001,-78.2636 2370.5,-68.2637 2367.0001,-78.2637 2374.0001,-78.2636\"/>\n",
"</g>\n",
"<!-- 48 -->\n",
"<g id=\"node49\" class=\"node\">\n",
"<title>48</title>\n",
"<polygon fill=\"#39e54d\" stroke=\"#000000\" points=\"2633,-68 2470,-68 2470,0 2633,0 2633,-68\"/>\n",
"<text text-anchor=\"start\" x=\"2526\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #48</text>\n",
"<text text-anchor=\"start\" x=\"2518\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"2478\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 2, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"2513.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 46&#45;&gt;48 -->\n",
"<g id=\"edge48\" class=\"edge\">\n",
"<title>46&#45;&gt;48</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M2437.8977,-103.9815C2454.0955,-94.0034 2471.3513,-83.3733 2487.3945,-73.4904\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2489.4897,-76.3105 2496.1682,-68.0856 2485.8183,-70.3506 2489.4897,-76.3105\"/>\n",
"</g>\n",
"<!-- 52 -->\n",
"<g id=\"node53\" class=\"node\">\n",
"<title>52</title>\n",
"<polygon fill=\"#b7e539\" stroke=\"#000000\" points=\"2740,-536.5 2577,-536.5 2577,-468.5 2740,-468.5 2740,-536.5\"/>\n",
"<text text-anchor=\"start\" x=\"2633\" y=\"-521.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #52</text>\n",
"<text text-anchor=\"start\" x=\"2625\" y=\"-506.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 9</text>\n",
"<text text-anchor=\"start\" x=\"2585\" y=\"-491.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 9, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"2616.5\" y=\"-476.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = german</text>\n",
"</g>\n",
"<!-- 51&#45;&gt;52 -->\n",
"<g id=\"edge52\" class=\"edge\">\n",
"<title>51&#45;&gt;52</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M2717.6726,-579.8796C2709.0116,-568.5536 2699.6219,-556.2748 2690.928,-544.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2693.5956,-542.6324 2684.7408,-536.8149 2688.0351,-546.8846 2693.5956,-542.6324\"/>\n",
"</g>\n",
"<!-- 53 -->\n",
"<g id=\"node54\" class=\"node\">\n",
"<title>53</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.498039\" stroke=\"#000000\" points=\"2921,-536.5 2758,-536.5 2758,-468.5 2921,-468.5 2921,-536.5\"/>\n",
"<text text-anchor=\"start\" x=\"2814\" y=\"-521.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #53</text>\n",
"<text text-anchor=\"start\" x=\"2806\" y=\"-506.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"2766\" y=\"-491.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 1, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"2801\" y=\"-476.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 51&#45;&gt;53 -->\n",
"<g id=\"edge53\" class=\"edge\">\n",
"<title>51&#45;&gt;53</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M2780.9776,-579.8796C2789.5435,-568.5536 2798.83,-556.2748 2807.4283,-544.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2810.3069,-546.902 2813.5475,-536.8149 2804.7238,-542.6795 2810.3069,-546.902\"/>\n",
"</g>\n",
"<!-- 55 -->\n",
"<g id=\"node56\" class=\"node\">\n",
"<title>55</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.282353\" stroke=\"#000000\" points=\"3908,-663 3711,-663 3711,-580 3908,-580 3908,-663\"/>\n",
"<text text-anchor=\"start\" x=\"3784\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #55</text>\n",
"<text text-anchor=\"start\" x=\"3772\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">almond ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"3769\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 198</text>\n",
"<text text-anchor=\"start\" x=\"3719\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [94, 7, 53, 3, 10, 11, 20]</text>\n",
"<text text-anchor=\"start\" x=\"3771\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 54&#45;&gt;55 -->\n",
"<g id=\"edge55\" class=\"edge\">\n",
"<title>54&#45;&gt;55</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3901.8353,-698.8796C3890.6584,-689.513 3878.7038,-679.4948 3867.2288,-669.8784\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3869.2893,-667.0386 3859.3767,-663.2981 3864.7931,-672.4037 3869.2893,-667.0386\"/>\n",
"</g>\n",
"<!-- 78 -->\n",
"<g id=\"node79\" class=\"node\">\n",
"<title>78</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.666667\" stroke=\"#000000\" points=\"4178.5,-663 4008.5,-663 4008.5,-580 4178.5,-580 4178.5,-663\"/>\n",
"<text text-anchor=\"start\" x=\"4068\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #78</text>\n",
"<text text-anchor=\"start\" x=\"4067\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">egg ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"4056.5\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 39</text>\n",
"<text text-anchor=\"start\" x=\"4016.5\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [6, 0, 28, 0, 1, 2, 2]</text>\n",
"<text text-anchor=\"start\" x=\"4055.5\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 54&#45;&gt;78 -->\n",
"<g id=\"edge78\" class=\"edge\">\n",
"<title>54&#45;&gt;78</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M4001.1647,-698.8796C4012.3416,-689.513 4024.2962,-679.4948 4035.7712,-669.8784\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4038.2069,-672.4037 4043.6233,-663.2981 4033.7107,-667.0386 4038.2069,-672.4037\"/>\n",
"</g>\n",
"<!-- 56 -->\n",
"<g id=\"node57\" class=\"node\">\n",
"<title>56</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.356863\" stroke=\"#000000\" points=\"3583.5,-544 3393.5,-544 3393.5,-461 3583.5,-461 3583.5,-544\"/>\n",
"<text text-anchor=\"start\" x=\"3463\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #56</text>\n",
"<text text-anchor=\"start\" x=\"3449\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">whiskey ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"3448\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 180</text>\n",
"<text text-anchor=\"start\" x=\"3401.5\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [91, 7, 42, 3, 8, 10, 19]</text>\n",
"<text text-anchor=\"start\" x=\"3450\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 55&#45;&gt;56 -->\n",
"<g id=\"edge56\" class=\"edge\">\n",
"<title>55&#45;&gt;56</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3710.5702,-584.8251C3673.2942,-571.0063 3630.7958,-555.2514 3593.0253,-541.2493\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3594.1236,-537.9237 3583.5306,-537.7294 3591.6904,-544.4872 3594.1236,-537.9237\"/>\n",
"</g>\n",
"<!-- 69 -->\n",
"<g id=\"node70\" class=\"node\">\n",
"<title>69</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.533333\" stroke=\"#000000\" points=\"3894.5,-544 3724.5,-544 3724.5,-461 3894.5,-461 3894.5,-544\"/>\n",
"<text text-anchor=\"start\" x=\"3784\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #69</text>\n",
"<text text-anchor=\"start\" x=\"3778.5\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">plum ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"3772.5\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 18</text>\n",
"<text text-anchor=\"start\" x=\"3732.5\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 11, 0, 2, 1, 1]</text>\n",
"<text text-anchor=\"start\" x=\"3771.5\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 55&#45;&gt;69 -->\n",
"<g id=\"edge69\" class=\"edge\">\n",
"<title>55&#45;&gt;69</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3809.5,-579.8796C3809.5,-571.6838 3809.5,-562.9891 3809.5,-554.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3813.0001,-554.298 3809.5,-544.2981 3806.0001,-554.2981 3813.0001,-554.298\"/>\n",
"</g>\n",
"<!-- 57 -->\n",
"<g id=\"node58\" class=\"node\">\n",
"<title>57</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.364706\" stroke=\"#000000\" points=\"3388.5,-425 3198.5,-425 3198.5,-342 3388.5,-342 3388.5,-425\"/>\n",
"<text text-anchor=\"start\" x=\"3268\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #57</text>\n",
"<text text-anchor=\"start\" x=\"3261.5\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">raisin ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"3253\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 177</text>\n",
"<text text-anchor=\"start\" x=\"3206.5\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [91, 7, 42, 3, 8, 10, 16]</text>\n",
"<text text-anchor=\"start\" x=\"3255\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 56&#45;&gt;57 -->\n",
"<g id=\"edge57\" class=\"edge\">\n",
"<title>56&#45;&gt;57</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3420.2985,-460.8796C3404.1184,-451.0056 3386.7517,-440.4075 3370.2208,-430.3193\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3372.0223,-427.3185 3361.663,-425.0969 3368.3759,-433.2938 3372.0223,-427.3185\"/>\n",
"</g>\n",
"<!-- 68 -->\n",
"<g id=\"node69\" class=\"node\">\n",
"<title>68</title>\n",
"<polygon fill=\"#e53986\" stroke=\"#000000\" points=\"3570,-417.5 3407,-417.5 3407,-349.5 3570,-349.5 3570,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"3463\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #68</text>\n",
"<text text-anchor=\"start\" x=\"3455\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"3415\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 0, 0, 3]</text>\n",
"<text text-anchor=\"start\" x=\"3434\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = uk&#45;and&#45;irish</text>\n",
"</g>\n",
"<!-- 56&#45;&gt;68 -->\n",
"<g id=\"edge68\" class=\"edge\">\n",
"<title>56&#45;&gt;68</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3488.5,-460.8796C3488.5,-450.2134 3488.5,-438.7021 3488.5,-427.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3492.0001,-427.8149 3488.5,-417.8149 3485.0001,-427.815 3492.0001,-427.8149\"/>\n",
"</g>\n",
"<!-- 58 -->\n",
"<g id=\"node59\" class=\"node\">\n",
"<title>58</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.380392\" stroke=\"#000000\" points=\"3201,-306 3018,-306 3018,-223 3201,-223 3201,-306\"/>\n",
"<text text-anchor=\"start\" x=\"3084\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #58</text>\n",
"<text text-anchor=\"start\" x=\"3074.5\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">pepper ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"3069\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 171</text>\n",
"<text text-anchor=\"start\" x=\"3026\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [91, 5, 42, 3, 7, 9, 14]</text>\n",
"<text text-anchor=\"start\" x=\"3071\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 57&#45;&gt;58 -->\n",
"<g id=\"edge58\" class=\"edge\">\n",
"<title>57&#45;&gt;58</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3229.1457,-341.8796C3214.0185,-332.0962 3197.7919,-321.6019 3182.3224,-311.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3184.1156,-308.5887 3173.8179,-306.0969 3180.3141,-314.4665 3184.1156,-308.5887\"/>\n",
"</g>\n",
"<!-- 65 -->\n",
"<g id=\"node66\" class=\"node\">\n",
"<title>65</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"3382,-306 3219,-306 3219,-223 3382,-223 3382,-306\"/>\n",
"<text text-anchor=\"start\" x=\"3275\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #65</text>\n",
"<text text-anchor=\"start\" x=\"3256.5\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cinnamon ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"3267\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 6</text>\n",
"<text text-anchor=\"start\" x=\"3227\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 2, 0, 0, 1, 1, 2]</text>\n",
"<text text-anchor=\"start\" x=\"3258.5\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = german</text>\n",
"</g>\n",
"<!-- 57&#45;&gt;65 -->\n",
"<g id=\"edge65\" class=\"edge\">\n",
"<title>57&#45;&gt;65</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3295.9483,-341.8796C3296.4304,-333.6838 3296.9418,-324.9891 3297.4411,-316.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3300.9479,-316.4864 3298.0413,-306.2981 3293.96,-316.0753 3300.9479,-316.4864\"/>\n",
"</g>\n",
"<!-- 59 -->\n",
"<g id=\"node60\" class=\"node\">\n",
"<title>59</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.400000\" stroke=\"#000000\" points=\"3015,-187 2832,-187 2832,-104 3015,-104 3015,-187\"/>\n",
"<text text-anchor=\"start\" x=\"2898\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #59</text>\n",
"<text text-anchor=\"start\" x=\"2878\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">strawberry ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"2883\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 163</text>\n",
"<text text-anchor=\"start\" x=\"2840\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [90, 3, 41, 2, 5, 9, 13]</text>\n",
"<text text-anchor=\"start\" x=\"2885\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 58&#45;&gt;59 -->\n",
"<g id=\"edge59\" class=\"edge\">\n",
"<title>58&#45;&gt;59</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3044.4462,-222.8796C3029.1546,-213.0962 3012.7516,-202.6019 2997.114,-192.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2998.8268,-189.538 2988.517,-187.0969 2995.0543,-195.4345 2998.8268,-189.538\"/>\n",
"</g>\n",
"<!-- 62 -->\n",
"<g id=\"node63\" class=\"node\">\n",
"<title>62</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"3196,-187 3033,-187 3033,-104 3196,-104 3196,-187\"/>\n",
"<text text-anchor=\"start\" x=\"3089\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #62</text>\n",
"<text text-anchor=\"start\" x=\"3085.5\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">ham ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"3081\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 8</text>\n",
"<text text-anchor=\"start\" x=\"3041\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 2, 1, 1, 2, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"3072.5\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = german</text>\n",
"</g>\n",
"<!-- 58&#45;&gt;62 -->\n",
"<g id=\"edge62\" class=\"edge\">\n",
"<title>58&#45;&gt;62</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3111.2488,-222.8796C3111.5931,-214.6838 3111.9584,-205.9891 3112.3151,-197.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3115.8208,-197.4362 3112.7438,-187.2981 3108.827,-197.1423 3115.8208,-197.4362\"/>\n",
"</g>\n",
"<!-- 60 -->\n",
"<g id=\"node61\" class=\"node\">\n",
"<title>60</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.419608\" stroke=\"#000000\" points=\"2834,-68 2651,-68 2651,0 2834,0 2834,-68\"/>\n",
"<text text-anchor=\"start\" x=\"2717\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #60</text>\n",
"<text text-anchor=\"start\" x=\"2702\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 154</text>\n",
"<text text-anchor=\"start\" x=\"2659\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [88, 3, 40, 1, 4, 8, 10]</text>\n",
"<text text-anchor=\"start\" x=\"2704\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 59&#45;&gt;60 -->\n",
"<g id=\"edge60\" class=\"edge\">\n",
"<title>59&#45;&gt;60</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M2856.1023,-103.9815C2839.9045,-94.0034 2822.6487,-83.3733 2806.6055,-73.4904\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2808.1817,-70.3506 2797.8318,-68.0856 2804.5103,-76.3105 2808.1817,-70.3506\"/>\n",
"</g>\n",
"<!-- 61 -->\n",
"<g id=\"node62\" class=\"node\">\n",
"<title>61</title>\n",
"<polygon fill=\"#e53986\" fill-opacity=\"0.141176\" stroke=\"#000000\" points=\"3015,-68 2852,-68 2852,0 3015,0 3015,-68\"/>\n",
"<text text-anchor=\"start\" x=\"2908\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #61</text>\n",
"<text text-anchor=\"start\" x=\"2900\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 9</text>\n",
"<text text-anchor=\"start\" x=\"2860\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 1, 1, 1, 1, 3]</text>\n",
"<text text-anchor=\"start\" x=\"2879\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = uk&#45;and&#45;irish</text>\n",
"</g>\n",
"<!-- 59&#45;&gt;61 -->\n",
"<g id=\"edge61\" class=\"edge\">\n",
"<title>59&#45;&gt;61</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M2927.2236,-103.9815C2927.9737,-95.618 2928.7649,-86.7965 2929.5232,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2933.0197,-78.5364 2930.427,-68.2637 2926.0477,-77.911 2933.0197,-78.5364\"/>\n",
"</g>\n",
"<!-- 63 -->\n",
"<g id=\"node64\" class=\"node\">\n",
"<title>63</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"3196,-68 3033,-68 3033,0 3196,0 3196,-68\"/>\n",
"<text text-anchor=\"start\" x=\"3089\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #63</text>\n",
"<text text-anchor=\"start\" x=\"3081\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 6</text>\n",
"<text text-anchor=\"start\" x=\"3041\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 2, 0, 1, 2, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"3072.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = german</text>\n",
"</g>\n",
"<!-- 62&#45;&gt;63 -->\n",
"<g id=\"edge63\" class=\"edge\">\n",
"<title>62&#45;&gt;63</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3114.5,-103.9815C3114.5,-95.618 3114.5,-86.7965 3114.5,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3118.0001,-78.2636 3114.5,-68.2637 3111.0001,-78.2637 3118.0001,-78.2636\"/>\n",
"</g>\n",
"<!-- 64 -->\n",
"<g id=\"node65\" class=\"node\">\n",
"<title>64</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"3377,-68 3214,-68 3214,0 3377,0 3377,-68\"/>\n",
"<text text-anchor=\"start\" x=\"3270\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #64</text>\n",
"<text text-anchor=\"start\" x=\"3262\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"3222\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"3257.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 62&#45;&gt;64 -->\n",
"<g id=\"edge64\" class=\"edge\">\n",
"<title>62&#45;&gt;64</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3181.8977,-103.9815C3198.0955,-94.0034 3215.3513,-83.3733 3231.3945,-73.4904\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3233.4897,-76.3105 3240.1682,-68.0856 3229.8183,-70.3506 3233.4897,-76.3105\"/>\n",
"</g>\n",
"<!-- 66 -->\n",
"<g id=\"node67\" class=\"node\">\n",
"<title>66</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"3377,-179.5 3214,-179.5 3214,-111.5 3377,-111.5 3377,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"3270\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #66</text>\n",
"<text text-anchor=\"start\" x=\"3262\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 4</text>\n",
"<text text-anchor=\"start\" x=\"3222\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 2, 0, 0, 0, 0, 2]</text>\n",
"<text text-anchor=\"start\" x=\"3253.5\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = german</text>\n",
"</g>\n",
"<!-- 65&#45;&gt;66 -->\n",
"<g id=\"edge66\" class=\"edge\">\n",
"<title>65&#45;&gt;66</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3298.7512,-222.8796C3298.3031,-212.2134 3297.8194,-200.7021 3297.3656,-189.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3300.8586,-189.6592 3296.9418,-179.8149 3293.8648,-189.9531 3300.8586,-189.6592\"/>\n",
"</g>\n",
"<!-- 67 -->\n",
"<g id=\"node68\" class=\"node\">\n",
"<title>67</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"3558,-179.5 3395,-179.5 3395,-111.5 3558,-111.5 3558,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"3451\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #67</text>\n",
"<text text-anchor=\"start\" x=\"3443\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"3403\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 1, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"3420\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = scandinavian</text>\n",
"</g>\n",
"<!-- 65&#45;&gt;67 -->\n",
"<g id=\"edge67\" class=\"edge\">\n",
"<title>65&#45;&gt;67</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3362.0563,-222.8796C3380.0309,-210.7263 3399.6282,-197.4759 3417.4442,-185.4297\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3419.7086,-188.1237 3426.0323,-179.623 3415.7877,-182.3248 3419.7086,-188.1237\"/>\n",
"</g>\n",
"<!-- 70 -->\n",
"<g id=\"node71\" class=\"node\">\n",
"<title>70</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.615686\" stroke=\"#000000\" points=\"3758.5,-425 3588.5,-425 3588.5,-342 3758.5,-342 3758.5,-425\"/>\n",
"<text text-anchor=\"start\" x=\"3648\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #70</text>\n",
"<text text-anchor=\"start\" x=\"3639.5\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">lemon ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"3636.5\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 16</text>\n",
"<text text-anchor=\"start\" x=\"3596.5\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 11, 0, 1, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"3635.5\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 69&#45;&gt;70 -->\n",
"<g id=\"edge70\" class=\"edge\">\n",
"<title>69&#45;&gt;70</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3761.9338,-460.8796C3751.3321,-451.6031 3739.9998,-441.6874 3729.1067,-432.1559\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3731.0998,-429.2491 3721.2692,-425.2981 3726.4902,-434.5172 3731.0998,-429.2491\"/>\n",
"</g>\n",
"<!-- 77 -->\n",
"<g id=\"node78\" class=\"node\">\n",
"<title>77</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"3940,-417.5 3777,-417.5 3777,-349.5 3940,-349.5 3940,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"3833\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #77</text>\n",
"<text text-anchor=\"start\" x=\"3825\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"3785\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 1, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"3802\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = scandinavian</text>\n",
"</g>\n",
"<!-- 69&#45;&gt;77 -->\n",
"<g id=\"edge77\" class=\"edge\">\n",
"<title>69&#45;&gt;77</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3826.6378,-460.8796C3831.1203,-449.9935 3835.9653,-438.227 3840.4917,-427.2344\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3843.7991,-428.3944 3844.3703,-417.8149 3837.3264,-425.7291 3843.7991,-428.3944\"/>\n",
"</g>\n",
"<!-- 71 -->\n",
"<g id=\"node72\" class=\"node\">\n",
"<title>71</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.666667\" stroke=\"#000000\" points=\"3746.5,-306 3576.5,-306 3576.5,-223 3746.5,-223 3746.5,-306\"/>\n",
"<text text-anchor=\"start\" x=\"3636\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #71</text>\n",
"<text text-anchor=\"start\" x=\"3626\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">apricot ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"3624.5\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 15</text>\n",
"<text text-anchor=\"start\" x=\"3584.5\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 11, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"3623.5\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 70&#45;&gt;71 -->\n",
"<g id=\"edge71\" class=\"edge\">\n",
"<title>70&#45;&gt;71</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3669.303,-341.8796C3668.4765,-333.6838 3667.5997,-324.9891 3666.7438,-316.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3670.2007,-315.8964 3665.7149,-306.2981 3663.236,-316.5988 3670.2007,-315.8964\"/>\n",
"</g>\n",
"<!-- 76 -->\n",
"<g id=\"node77\" class=\"node\">\n",
"<title>76</title>\n",
"<polygon fill=\"#3956e5\" stroke=\"#000000\" points=\"3928,-298.5 3765,-298.5 3765,-230.5 3928,-230.5 3928,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"3821\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #76</text>\n",
"<text text-anchor=\"start\" x=\"3813\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"3773\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"3790\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = scandinavian</text>\n",
"</g>\n",
"<!-- 70&#45;&gt;76 -->\n",
"<g id=\"edge76\" class=\"edge\">\n",
"<title>70&#45;&gt;76</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3734.007,-341.8796C3751.6752,-329.7263 3770.9385,-316.4759 3788.4509,-304.4297\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3790.6371,-307.1741 3796.8926,-298.623 3786.6699,-301.4067 3790.6371,-307.1741\"/>\n",
"</g>\n",
"<!-- 72 -->\n",
"<g id=\"node73\" class=\"node\">\n",
"<title>72</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.749020\" stroke=\"#000000\" points=\"3746.5,-187 3576.5,-187 3576.5,-104 3746.5,-104 3746.5,-187\"/>\n",
"<text text-anchor=\"start\" x=\"3636\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #72</text>\n",
"<text text-anchor=\"start\" x=\"3629.5\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">bread ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"3624.5\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 14</text>\n",
"<text text-anchor=\"start\" x=\"3584.5\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 11, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"3623.5\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 71&#45;&gt;72 -->\n",
"<g id=\"edge72\" class=\"edge\">\n",
"<title>71&#45;&gt;72</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3661.5,-222.8796C3661.5,-214.6838 3661.5,-205.9891 3661.5,-197.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3665.0001,-197.298 3661.5,-187.2981 3658.0001,-197.2981 3665.0001,-197.298\"/>\n",
"</g>\n",
"<!-- 75 -->\n",
"<g id=\"node76\" class=\"node\">\n",
"<title>75</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"3928,-179.5 3765,-179.5 3765,-111.5 3928,-111.5 3928,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"3821\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #75</text>\n",
"<text text-anchor=\"start\" x=\"3813\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"3773\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"3808\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 71&#45;&gt;75 -->\n",
"<g id=\"edge75\" class=\"edge\">\n",
"<title>71&#45;&gt;75</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3726.204,-222.8796C3745.2696,-210.6158 3766.0719,-197.2348 3784.9346,-185.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3786.9347,-187.9766 3793.4516,-179.623 3783.1478,-182.0893 3786.9347,-187.9766\"/>\n",
"</g>\n",
"<!-- 73 -->\n",
"<g id=\"node74\" class=\"node\">\n",
"<title>73</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.831373\" stroke=\"#000000\" points=\"3656.5,-68 3486.5,-68 3486.5,0 3656.5,0 3656.5,-68\"/>\n",
"<text text-anchor=\"start\" x=\"3546\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #73</text>\n",
"<text text-anchor=\"start\" x=\"3534.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 13</text>\n",
"<text text-anchor=\"start\" x=\"3494.5\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 11, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"3533.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 72&#45;&gt;73 -->\n",
"<g id=\"edge73\" class=\"edge\">\n",
"<title>72&#45;&gt;73</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3627.9873,-103.9815C3620.643,-94.8828 3612.8612,-85.242 3605.4981,-76.1199\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3608.1612,-73.8467 3599.1568,-68.2637 3602.7143,-78.2434 3608.1612,-73.8467\"/>\n",
"</g>\n",
"<!-- 74 -->\n",
"<g id=\"node75\" class=\"node\">\n",
"<title>74</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"3838,-68 3675,-68 3675,0 3838,0 3838,-68\"/>\n",
"<text text-anchor=\"start\" x=\"3731\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #74</text>\n",
"<text text-anchor=\"start\" x=\"3723\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"3683\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"3718\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 72&#45;&gt;74 -->\n",
"<g id=\"edge74\" class=\"edge\">\n",
"<title>72&#45;&gt;74</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3696.8745,-103.9815C3704.6268,-94.8828 3712.8409,-85.242 3720.6131,-76.1199\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3723.4854,-78.1454 3727.3067,-68.2637 3718.1572,-73.6056 3723.4854,-78.1454\"/>\n",
"</g>\n",
"<!-- 79 -->\n",
"<g id=\"node80\" class=\"node\">\n",
"<title>79</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.894118\" stroke=\"#000000\" points=\"4178.5,-544 4008.5,-544 4008.5,-461 4178.5,-461 4178.5,-544\"/>\n",
"<text text-anchor=\"start\" x=\"4068\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #79</text>\n",
"<text text-anchor=\"start\" x=\"4056\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">almond ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"4056.5\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 30</text>\n",
"<text text-anchor=\"start\" x=\"4016.5\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 27, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"4055.5\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 78&#45;&gt;79 -->\n",
"<g id=\"edge79\" class=\"edge\">\n",
"<title>78&#45;&gt;79</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M4093.5,-579.8796C4093.5,-571.6838 4093.5,-562.9891 4093.5,-554.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4097.0001,-554.298 4093.5,-544.2981 4090.0001,-554.2981 4097.0001,-554.298\"/>\n",
"</g>\n",
"<!-- 84 -->\n",
"<g id=\"node85\" class=\"node\">\n",
"<title>84</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.286275\" stroke=\"#000000\" points=\"4491,-544 4328,-544 4328,-461 4491,-461 4491,-544\"/>\n",
"<text text-anchor=\"start\" x=\"4384\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #84</text>\n",
"<text text-anchor=\"start\" x=\"4375.5\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">lemon ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"4376\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 9</text>\n",
"<text text-anchor=\"start\" x=\"4336\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [4, 0, 1, 0, 0, 2, 2]</text>\n",
"<text text-anchor=\"start\" x=\"4371\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 78&#45;&gt;84 -->\n",
"<g id=\"edge84\" class=\"edge\">\n",
"<title>78&#45;&gt;84</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M4178.5979,-589.4536C4221.7703,-573.1957 4274.2437,-553.4351 4318.2516,-536.8625\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4319.6702,-540.0683 4327.7951,-533.2686 4317.2032,-533.5174 4319.6702,-540.0683\"/>\n",
"</g>\n",
"<!-- 80 -->\n",
"<g id=\"node81\" class=\"node\">\n",
"<title>80</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.964706\" stroke=\"#000000\" points=\"4128.5,-425 3958.5,-425 3958.5,-342 4128.5,-342 4128.5,-425\"/>\n",
"<text text-anchor=\"start\" x=\"4018\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #80</text>\n",
"<text text-anchor=\"start\" x=\"4015.5\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">date ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"4006.5\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 28</text>\n",
"<text text-anchor=\"start\" x=\"3966.5\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 27, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"4005.5\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 79&#45;&gt;80 -->\n",
"<g id=\"edge80\" class=\"edge\">\n",
"<title>79&#45;&gt;80</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M4076.0124,-460.8796C4072.4553,-452.4136 4068.6745,-443.4153 4064.9969,-434.6626\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4068.1627,-433.1616 4061.0622,-425.2981 4061.7092,-435.8731 4068.1627,-433.1616\"/>\n",
"</g>\n",
"<!-- 83 -->\n",
"<g id=\"node84\" class=\"node\">\n",
"<title>83</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"4310,-417.5 4147,-417.5 4147,-349.5 4310,-349.5 4310,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"4203\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #83</text>\n",
"<text text-anchor=\"start\" x=\"4195\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"4155\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"4190\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 79&#45;&gt;83 -->\n",
"<g id=\"edge83\" class=\"edge\">\n",
"<title>79&#45;&gt;83</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M4140.7164,-460.8796C4154.0642,-449.1138 4168.5785,-436.3197 4181.8904,-424.5855\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4184.384,-427.0531 4189.5713,-417.8149 4179.7552,-421.8019 4184.384,-427.0531\"/>\n",
"</g>\n",
"<!-- 81 -->\n",
"<g id=\"node82\" class=\"node\">\n",
"<title>81</title>\n",
"<polygon fill=\"#39e54d\" stroke=\"#000000\" points=\"4116.5,-298.5 3946.5,-298.5 3946.5,-230.5 4116.5,-230.5 4116.5,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"4006\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #81</text>\n",
"<text text-anchor=\"start\" x=\"3994.5\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 27</text>\n",
"<text text-anchor=\"start\" x=\"3954.5\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 27, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"3993.5\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 80&#45;&gt;81 -->\n",
"<g id=\"edge81\" class=\"edge\">\n",
"<title>80&#45;&gt;81</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M4039.303,-341.8796C4038.2274,-331.2134 4037.0666,-319.7021 4035.9775,-308.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4039.4461,-308.4133 4034.9603,-298.8149 4032.4814,-309.1157 4039.4461,-308.4133\"/>\n",
"</g>\n",
"<!-- 82 -->\n",
"<g id=\"node83\" class=\"node\">\n",
"<title>82</title>\n",
"<polygon fill=\"#3956e5\" stroke=\"#000000\" points=\"4298,-298.5 4135,-298.5 4135,-230.5 4298,-230.5 4298,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"4191\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #82</text>\n",
"<text text-anchor=\"start\" x=\"4183\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"4143\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"4160\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = scandinavian</text>\n",
"</g>\n",
"<!-- 80&#45;&gt;82 -->\n",
"<g id=\"edge82\" class=\"edge\">\n",
"<title>80&#45;&gt;82</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M4104.007,-341.8796C4121.6752,-329.7263 4140.9385,-316.4759 4158.4509,-304.4297\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4160.6371,-307.1741 4166.8926,-298.623 4156.6699,-301.4067 4160.6371,-307.1741\"/>\n",
"</g>\n",
"<!-- 85 -->\n",
"<g id=\"node86\" class=\"node\">\n",
"<title>85</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.400000\" stroke=\"#000000\" points=\"4491,-425 4328,-425 4328,-342 4491,-342 4491,-425\"/>\n",
"<text text-anchor=\"start\" x=\"4384\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #85</text>\n",
"<text text-anchor=\"start\" x=\"4376.5\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">wheat ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"4376\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 7</text>\n",
"<text text-anchor=\"start\" x=\"4336\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [4, 0, 1, 0, 0, 0, 2]</text>\n",
"<text text-anchor=\"start\" x=\"4371\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 84&#45;&gt;85 -->\n",
"<g id=\"edge85\" class=\"edge\">\n",
"<title>84&#45;&gt;85</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M4409.5,-460.8796C4409.5,-452.6838 4409.5,-443.9891 4409.5,-435.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4413.0001,-435.298 4409.5,-425.2981 4406.0001,-435.2981 4413.0001,-435.298\"/>\n",
"</g>\n",
"<!-- 88 -->\n",
"<g id=\"node89\" class=\"node\">\n",
"<title>88</title>\n",
"<polygon fill=\"#b139e5\" stroke=\"#000000\" points=\"4674,-417.5 4509,-417.5 4509,-349.5 4674,-349.5 4674,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"4566\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #88</text>\n",
"<text text-anchor=\"start\" x=\"4558\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"4518\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 0, 2, 0]</text>\n",
"<text text-anchor=\"start\" x=\"4517\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 84&#45;&gt;88 -->\n",
"<g id=\"edge88\" class=\"edge\">\n",
"<title>84&#45;&gt;88</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M4473.1548,-460.8796C4491.9111,-448.6158 4512.3761,-435.2348 4530.933,-423.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4532.8575,-426.025 4539.3118,-417.623 4529.0267,-420.1662 4532.8575,-426.025\"/>\n",
"</g>\n",
"<!-- 86 -->\n",
"<g id=\"node87\" class=\"node\">\n",
"<title>86</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"4479,-298.5 4316,-298.5 4316,-230.5 4479,-230.5 4479,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"4372\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #86</text>\n",
"<text text-anchor=\"start\" x=\"4364\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 4</text>\n",
"<text text-anchor=\"start\" x=\"4324\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [4, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"4359\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 85&#45;&gt;86 -->\n",
"<g id=\"edge86\" class=\"edge\">\n",
"<title>85&#45;&gt;86</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M4405.303,-341.8796C4404.2274,-331.2134 4403.0666,-319.7021 4401.9775,-308.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4405.4461,-308.4133 4400.9603,-298.8149 4398.4814,-309.1157 4405.4461,-308.4133\"/>\n",
"</g>\n",
"<!-- 87 -->\n",
"<g id=\"node88\" class=\"node\">\n",
"<title>87</title>\n",
"<polygon fill=\"#e53986\" fill-opacity=\"0.498039\" stroke=\"#000000\" points=\"4660,-298.5 4497,-298.5 4497,-230.5 4660,-230.5 4660,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"4553\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #87</text>\n",
"<text text-anchor=\"start\" x=\"4545\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"4505\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0, 0, 2]</text>\n",
"<text text-anchor=\"start\" x=\"4524\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = uk&#45;and&#45;irish</text>\n",
"</g>\n",
"<!-- 85&#45;&gt;87 -->\n",
"<g id=\"edge87\" class=\"edge\">\n",
"<title>85&#45;&gt;87</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M4468.608,-341.8796C4485.8677,-329.7263 4504.6856,-316.4759 4521.793,-304.4297\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4523.8782,-307.2421 4530.0396,-298.623 4519.8481,-301.5187 4523.8782,-307.2421\"/>\n",
"</g>\n",
"<!-- 90 -->\n",
"<g id=\"node91\" class=\"node\">\n",
"<title>90</title>\n",
"<polygon fill=\"#e53986\" fill-opacity=\"0.086275\" stroke=\"#000000\" points=\"5539,-782 5356,-782 5356,-699 5539,-699 5539,-782\"/>\n",
"<text text-anchor=\"start\" x=\"5422\" y=\"-766.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #90</text>\n",
"<text text-anchor=\"start\" x=\"5417\" y=\"-751.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">lamb ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"5410.5\" y=\"-736.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 91</text>\n",
"<text text-anchor=\"start\" x=\"5364\" y=\"-721.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [20, 16, 9, 7, 6, 7, 26]</text>\n",
"<text text-anchor=\"start\" x=\"5393\" y=\"-706.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = uk&#45;and&#45;irish</text>\n",
"</g>\n",
"<!-- 89&#45;&gt;90 -->\n",
"<g id=\"edge90\" class=\"edge\">\n",
"<title>89&#45;&gt;90</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M5509.9239,-817.8796C5502.7309,-808.9633 5495.0616,-799.4565 5487.649,-790.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"5490.2224,-787.8836 5481.2195,-782.2981 5484.7742,-792.2788 5490.2224,-787.8836\"/>\n",
"</g>\n",
"<!-- 121 -->\n",
"<g id=\"node122\" class=\"node\">\n",
"<title>121</title>\n",
"<polygon fill=\"#b7e539\" stroke=\"#000000\" points=\"5720,-774.5 5557,-774.5 5557,-706.5 5720,-706.5 5720,-774.5\"/>\n",
"<text text-anchor=\"start\" x=\"5609.5\" y=\"-759.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #121</text>\n",
"<text text-anchor=\"start\" x=\"5605\" y=\"-744.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 6</text>\n",
"<text text-anchor=\"start\" x=\"5565\" y=\"-729.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 6, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"5596.5\" y=\"-714.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = german</text>\n",
"</g>\n",
"<!-- 89&#45;&gt;121 -->\n",
"<g id=\"edge121\" class=\"edge\">\n",
"<title>89&#45;&gt;121</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M5576.7264,-817.8796C5585.7681,-806.5536 5595.5705,-794.2748 5604.6466,-782.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"5607.602,-784.8137 5611.1057,-774.8149 5602.1315,-780.4464 5607.602,-784.8137\"/>\n",
"</g>\n",
"<!-- 91 -->\n",
"<g id=\"node92\" class=\"node\">\n",
"<title>91</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"5444,-663 5261,-663 5261,-580 5444,-580 5444,-663\"/>\n",
"<text text-anchor=\"start\" x=\"5327\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #91</text>\n",
"<text text-anchor=\"start\" x=\"5317.5\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">pepper ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"5315.5\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 85</text>\n",
"<text text-anchor=\"start\" x=\"5269\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [20, 16, 9, 7, 6, 7, 20]</text>\n",
"<text text-anchor=\"start\" x=\"5314\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 90&#45;&gt;91 -->\n",
"<g id=\"edge91\" class=\"edge\">\n",
"<title>90&#45;&gt;91</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M5414.2736,-698.8796C5407.1556,-689.9633 5399.5661,-680.4565 5392.2308,-671.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"5394.8425,-668.9295 5385.8682,-663.2981 5389.3719,-673.2968 5394.8425,-668.9295\"/>\n",
"</g>\n",
"<!-- 120 -->\n",
"<g id=\"node121\" class=\"node\">\n",
"<title>120</title>\n",
"<polygon fill=\"#e53986\" stroke=\"#000000\" points=\"5625,-655.5 5462,-655.5 5462,-587.5 5625,-587.5 5625,-655.5\"/>\n",
"<text text-anchor=\"start\" x=\"5514.5\" y=\"-640.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #120</text>\n",
"<text text-anchor=\"start\" x=\"5510\" y=\"-625.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 6</text>\n",
"<text text-anchor=\"start\" x=\"5470\" y=\"-610.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 0, 0, 6]</text>\n",
"<text text-anchor=\"start\" x=\"5489\" y=\"-595.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = uk&#45;and&#45;irish</text>\n",
"</g>\n",
"<!-- 90&#45;&gt;120 -->\n",
"<g id=\"edge120\" class=\"edge\">\n",
"<title>90&#45;&gt;120</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M5481.0761,-698.8796C5490.2131,-687.5536 5500.1187,-675.2748 5509.2902,-663.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"5512.2626,-665.7957 5515.8174,-655.8149 5506.8144,-661.4005 5512.2626,-665.7957\"/>\n",
"</g>\n",
"<!-- 92 -->\n",
"<g id=\"node93\" class=\"node\">\n",
"<title>92</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.062745\" stroke=\"#000000\" points=\"5346.5,-544 5170.5,-544 5170.5,-461 5346.5,-461 5346.5,-544\"/>\n",
"<text text-anchor=\"start\" x=\"5233\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #92</text>\n",
"<text text-anchor=\"start\" x=\"5232.5\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">dill ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"5221.5\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 63</text>\n",
"<text text-anchor=\"start\" x=\"5178.5\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [18, 7, 8, 2, 6, 7, 15]</text>\n",
"<text text-anchor=\"start\" x=\"5220\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 91&#45;&gt;92 -->\n",
"<g id=\"edge92\" class=\"edge\">\n",
"<title>91&#45;&gt;92</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M5319.6234,-579.8796C5312.5803,-570.9633 5305.0707,-561.4565 5297.8126,-552.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"5300.4621,-549.9757 5291.517,-544.2981 5294.9691,-554.3147 5300.4621,-549.9757\"/>\n",
"</g>\n",
"<!-- 107 -->\n",
"<g id=\"node108\" class=\"node\">\n",
"<title>107</title>\n",
"<polygon fill=\"#b7e539\" fill-opacity=\"0.235294\" stroke=\"#000000\" points=\"5549,-544 5386,-544 5386,-461 5549,-461 5549,-544\"/>\n",
"<text text-anchor=\"start\" x=\"5438.5\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #107</text>\n",
"<text text-anchor=\"start\" x=\"5441\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">egg ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"5430.5\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 22</text>\n",
"<text text-anchor=\"start\" x=\"5394\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 9, 1, 5, 0, 0, 5]</text>\n",
"<text text-anchor=\"start\" x=\"5425.5\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = german</text>\n",
"</g>\n",
"<!-- 91&#45;&gt;107 -->\n",
"<g id=\"edge107\" class=\"edge\">\n",
"<title>91&#45;&gt;107</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M5392.7214,-579.8796C5401.512,-570.7832 5410.8966,-561.0722 5419.9426,-551.7116\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"5422.6745,-553.9212 5427.1069,-544.2981 5417.6409,-549.0568 5422.6745,-553.9212\"/>\n",
"</g>\n",
"<!-- 93 -->\n",
"<g id=\"node94\" class=\"node\">\n",
"<title>93</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.066667\" stroke=\"#000000\" points=\"5077.5,-425 4901.5,-425 4901.5,-342 5077.5,-342 5077.5,-425\"/>\n",
"<text text-anchor=\"start\" x=\"4964\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #93</text>\n",
"<text text-anchor=\"start\" x=\"4961\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">beef ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"4952.5\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 59</text>\n",
"<text text-anchor=\"start\" x=\"4909.5\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [18, 6, 8, 2, 3, 7, 15]</text>\n",
"<text text-anchor=\"start\" x=\"4951\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 92&#45;&gt;93 -->\n",
"<g id=\"edge93\" class=\"edge\">\n",
"<title>92&#45;&gt;93</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M5170.4193,-463.5349C5143.7125,-451.7204 5114.2225,-438.6747 5086.9393,-426.6051\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"5088.3397,-423.3975 5077.7785,-422.5526 5085.5077,-429.7991 5088.3397,-423.3975\"/>\n",
"</g>\n",
"<!-- 106 -->\n",
"<g id=\"node107\" class=\"node\">\n",
"<title>106</title>\n",
"<polygon fill=\"#3956e5\" fill-opacity=\"0.666667\" stroke=\"#000000\" points=\"5340,-417.5 5177,-417.5 5177,-349.5 5340,-349.5 5340,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"5229.5\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #106</text>\n",
"<text text-anchor=\"start\" x=\"5225\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 4</text>\n",
"<text text-anchor=\"start\" x=\"5185\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 1, 0, 0, 3, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"5202\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = scandinavian</text>\n",
"</g>\n",
"<!-- 92&#45;&gt;106 -->\n",
"<g id=\"edge106\" class=\"edge\">\n",
"<title>92&#45;&gt;106</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M5258.5,-460.8796C5258.5,-450.2134 5258.5,-438.7021 5258.5,-427.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"5262.0001,-427.8149 5258.5,-417.8149 5255.0001,-427.815 5262.0001,-427.8149\"/>\n",
"</g>\n",
"<!-- 94 -->\n",
"<g id=\"node95\" class=\"node\">\n",
"<title>94</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.196078\" stroke=\"#000000\" points=\"4848.5,-306 4678.5,-306 4678.5,-223 4848.5,-223 4848.5,-306\"/>\n",
"<text text-anchor=\"start\" x=\"4738\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #94</text>\n",
"<text text-anchor=\"start\" x=\"4730.5\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">wheat ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"4726.5\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 44</text>\n",
"<text text-anchor=\"start\" x=\"4686.5\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [15, 5, 8, 1, 2, 6, 7]</text>\n",
"<text text-anchor=\"start\" x=\"4725\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 93&#45;&gt;94 -->\n",
"<g id=\"edge94\" class=\"edge\">\n",
"<title>93&#45;&gt;94</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M4910.4562,-341.8796C4891.3599,-331.8244 4870.8373,-321.0183 4851.3638,-310.7645\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4852.9782,-307.6591 4842.4992,-306.0969 4849.7169,-313.853 4852.9782,-307.6591\"/>\n",
"</g>\n",
"<!-- 101 -->\n",
"<g id=\"node102\" class=\"node\">\n",
"<title>101</title>\n",
"<polygon fill=\"#e53986\" fill-opacity=\"0.415686\" stroke=\"#000000\" points=\"5071,-306 4908,-306 4908,-223 5071,-223 5071,-306\"/>\n",
"<text text-anchor=\"start\" x=\"4960.5\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #101</text>\n",
"<text text-anchor=\"start\" x=\"4959\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">yeast ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"4952.5\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 15</text>\n",
"<text text-anchor=\"start\" x=\"4916\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 1, 0, 1, 1, 1, 8]</text>\n",
"<text text-anchor=\"start\" x=\"4935\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = uk&#45;and&#45;irish</text>\n",
"</g>\n",
"<!-- 93&#45;&gt;101 -->\n",
"<g id=\"edge101\" class=\"edge\">\n",
"<title>93&#45;&gt;101</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M4989.5,-341.8796C4989.5,-333.6838 4989.5,-324.9891 4989.5,-316.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4993.0001,-316.298 4989.5,-306.2981 4986.0001,-316.2981 4993.0001,-316.298\"/>\n",
"</g>\n",
"<!-- 95 -->\n",
"<g id=\"node96\" class=\"node\">\n",
"<title>95</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.270588\" stroke=\"#000000\" points=\"4408.5,-187 4238.5,-187 4238.5,-104 4408.5,-104 4408.5,-187\"/>\n",
"<text text-anchor=\"start\" x=\"4298\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #95</text>\n",
"<text text-anchor=\"start\" x=\"4294\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">milk ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"4286.5\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 33</text>\n",
"<text text-anchor=\"start\" x=\"4246.5\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [14, 1, 7, 0, 1, 6, 4]</text>\n",
"<text text-anchor=\"start\" x=\"4285\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 94&#45;&gt;95 -->\n",
"<g id=\"edge95\" class=\"edge\">\n",
"<title>94&#45;&gt;95</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M4678.3483,-226.3878C4675.0406,-225.1988 4671.7499,-224.0641 4668.5,-223 4585.7857,-195.9182 4488.8723,-175.0628 4418.8569,-161.8436\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4419.1999,-158.3471 4408.7268,-159.9488 4417.9128,-165.2278 4419.1999,-158.3471\"/>\n",
"</g>\n",
"<!-- 98 -->\n",
"<g id=\"node99\" class=\"node\">\n",
"<title>98</title>\n",
"<polygon fill=\"#b7e539\" fill-opacity=\"0.125490\" stroke=\"#000000\" points=\"4767,-187 4604,-187 4604,-104 4767,-104 4767,-187\"/>\n",
"<text text-anchor=\"start\" x=\"4660\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #98</text>\n",
"<text text-anchor=\"start\" x=\"4649\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">parsley ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"4648.5\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 11</text>\n",
"<text text-anchor=\"start\" x=\"4612\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 4, 1, 1, 1, 0, 3]</text>\n",
"<text text-anchor=\"start\" x=\"4643.5\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = german</text>\n",
"</g>\n",
"<!-- 94&#45;&gt;98 -->\n",
"<g id=\"edge98\" class=\"edge\">\n",
"<title>94&#45;&gt;98</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M4736.2194,-222.8796C4730.4932,-214.1434 4724.3954,-204.8404 4718.4863,-195.8253\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4721.3063,-193.7429 4712.8971,-187.2981 4715.4518,-197.5803 4721.3063,-193.7429\"/>\n",
"</g>\n",
"<!-- 96 -->\n",
"<g id=\"node97\" class=\"node\">\n",
"<title>96</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.364706\" stroke=\"#000000\" points=\"4223.5,-68 4053.5,-68 4053.5,0 4223.5,0 4223.5,-68\"/>\n",
"<text text-anchor=\"start\" x=\"4113\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #96</text>\n",
"<text text-anchor=\"start\" x=\"4101.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 28</text>\n",
"<text text-anchor=\"start\" x=\"4061.5\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [14, 1, 5, 0, 1, 6, 1]</text>\n",
"<text text-anchor=\"start\" x=\"4100\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 95&#45;&gt;96 -->\n",
"<g id=\"edge96\" class=\"edge\">\n",
"<title>95&#45;&gt;96</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M4254.6128,-103.9815C4238.0571,-94.0034 4220.4199,-83.3733 4204.0222,-73.4904\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4205.426,-70.25 4195.0546,-68.0856 4201.8126,-76.2453 4205.426,-70.25\"/>\n",
"</g>\n",
"<!-- 97 -->\n",
"<g id=\"node98\" class=\"node\">\n",
"<title>97</title>\n",
"<polygon fill=\"#e53986\" fill-opacity=\"0.333333\" stroke=\"#000000\" points=\"4405,-68 4242,-68 4242,0 4405,0 4405,-68\"/>\n",
"<text text-anchor=\"start\" x=\"4298\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #97</text>\n",
"<text text-anchor=\"start\" x=\"4290\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 5</text>\n",
"<text text-anchor=\"start\" x=\"4250\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 2, 0, 0, 0, 3]</text>\n",
"<text text-anchor=\"start\" x=\"4269\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = uk&#45;and&#45;irish</text>\n",
"</g>\n",
"<!-- 95&#45;&gt;97 -->\n",
"<g id=\"edge97\" class=\"edge\">\n",
"<title>95&#45;&gt;97</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M4323.5,-103.9815C4323.5,-95.618 4323.5,-86.7965 4323.5,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4327.0001,-78.2636 4323.5,-68.2637 4320.0001,-78.2637 4327.0001,-78.2636\"/>\n",
"</g>\n",
"<!-- 99 -->\n",
"<g id=\"node100\" class=\"node\">\n",
"<title>99</title>\n",
"<polygon fill=\"#e53986\" fill-opacity=\"0.141176\" stroke=\"#000000\" points=\"4586,-68 4423,-68 4423,0 4586,0 4586,-68\"/>\n",
"<text text-anchor=\"start\" x=\"4479\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #99</text>\n",
"<text text-anchor=\"start\" x=\"4471\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 9</text>\n",
"<text text-anchor=\"start\" x=\"4431\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 2, 1, 1, 1, 0, 3]</text>\n",
"<text text-anchor=\"start\" x=\"4450\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = uk&#45;and&#45;irish</text>\n",
"</g>\n",
"<!-- 98&#45;&gt;99 -->\n",
"<g id=\"edge99\" class=\"edge\">\n",
"<title>98&#45;&gt;99</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M4618.1023,-103.9815C4601.9045,-94.0034 4584.6487,-83.3733 4568.6055,-73.4904\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4570.1817,-70.3506 4559.8318,-68.0856 4566.5103,-76.3105 4570.1817,-70.3506\"/>\n",
"</g>\n",
"<!-- 100 -->\n",
"<g id=\"node101\" class=\"node\">\n",
"<title>100</title>\n",
"<polygon fill=\"#b7e539\" stroke=\"#000000\" points=\"4767,-68 4604,-68 4604,0 4767,0 4767,-68\"/>\n",
"<text text-anchor=\"start\" x=\"4656.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #100</text>\n",
"<text text-anchor=\"start\" x=\"4652\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"4612\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 2, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"4643.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = german</text>\n",
"</g>\n",
"<!-- 98&#45;&gt;100 -->\n",
"<g id=\"edge100\" class=\"edge\">\n",
"<title>98&#45;&gt;100</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M4685.5,-103.9815C4685.5,-95.618 4685.5,-86.7965 4685.5,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4689.0001,-78.2636 4685.5,-68.2637 4682.0001,-78.2637 4689.0001,-78.2636\"/>\n",
"</g>\n",
"<!-- 102 -->\n",
"<g id=\"node103\" class=\"node\">\n",
"<title>102</title>\n",
"<polygon fill=\"#e53986\" fill-opacity=\"0.584314\" stroke=\"#000000\" points=\"4948,-187 4785,-187 4785,-104 4948,-104 4948,-187\"/>\n",
"<text text-anchor=\"start\" x=\"4837.5\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #102</text>\n",
"<text text-anchor=\"start\" x=\"4804\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">smoked_sausage ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"4829.5\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 13</text>\n",
"<text text-anchor=\"start\" x=\"4793\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 1, 0, 1, 1, 1, 8]</text>\n",
"<text text-anchor=\"start\" x=\"4812\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = uk&#45;and&#45;irish</text>\n",
"</g>\n",
"<!-- 101&#45;&gt;102 -->\n",
"<g id=\"edge102\" class=\"edge\">\n",
"<title>101&#45;&gt;102</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M4946.4806,-222.8796C4936.9853,-213.6931 4926.8422,-203.8798 4917.0785,-194.4336\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4919.3237,-191.7359 4909.703,-187.2981 4914.4564,-196.7668 4919.3237,-191.7359\"/>\n",
"</g>\n",
"<!-- 105 -->\n",
"<g id=\"node106\" class=\"node\">\n",
"<title>105</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"5129,-179.5 4966,-179.5 4966,-111.5 5129,-111.5 5129,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"5018.5\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #105</text>\n",
"<text text-anchor=\"start\" x=\"5014\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"4974\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"5009\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 101&#45;&gt;105 -->\n",
"<g id=\"edge105\" class=\"edge\">\n",
"<title>101&#45;&gt;105</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M5009.7856,-222.8796C5015.145,-211.8835 5020.9422,-199.9893 5026.3463,-188.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"5029.54,-190.3375 5030.7751,-179.8149 5023.2476,-187.2706 5029.54,-190.3375\"/>\n",
"</g>\n",
"<!-- 103 -->\n",
"<g id=\"node104\" class=\"node\">\n",
"<title>103</title>\n",
"<polygon fill=\"#e53986\" fill-opacity=\"0.635294\" stroke=\"#000000\" points=\"4948,-68 4785,-68 4785,0 4948,0 4948,-68\"/>\n",
"<text text-anchor=\"start\" x=\"4837.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #103</text>\n",
"<text text-anchor=\"start\" x=\"4829.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 12</text>\n",
"<text text-anchor=\"start\" x=\"4793\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 1, 0, 1, 1, 0, 8]</text>\n",
"<text text-anchor=\"start\" x=\"4812\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = uk&#45;and&#45;irish</text>\n",
"</g>\n",
"<!-- 102&#45;&gt;103 -->\n",
"<g id=\"edge103\" class=\"edge\">\n",
"<title>102&#45;&gt;103</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M4866.5,-103.9815C4866.5,-95.618 4866.5,-86.7965 4866.5,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4870.0001,-78.2636 4866.5,-68.2637 4863.0001,-78.2637 4870.0001,-78.2636\"/>\n",
"</g>\n",
"<!-- 104 -->\n",
"<g id=\"node105\" class=\"node\">\n",
"<title>104</title>\n",
"<polygon fill=\"#b139e5\" stroke=\"#000000\" points=\"5131,-68 4966,-68 4966,0 5131,0 5131,-68\"/>\n",
"<text text-anchor=\"start\" x=\"5019.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #104</text>\n",
"<text text-anchor=\"start\" x=\"5015\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"4975\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"4974\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 102&#45;&gt;104 -->\n",
"<g id=\"edge104\" class=\"edge\">\n",
"<title>102&#45;&gt;104</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M4934.2701,-103.9815C4950.5573,-94.0034 4967.9085,-83.3733 4984.0403,-73.4904\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4986.1638,-76.2941 4992.8625,-68.0856 4982.507,-70.3252 4986.1638,-76.2941\"/>\n",
"</g>\n",
"<!-- 108 -->\n",
"<g id=\"node109\" class=\"node\">\n",
"<title>108</title>\n",
"<polygon fill=\"#b7e539\" fill-opacity=\"0.200000\" stroke=\"#000000\" points=\"5549,-425 5386,-425 5386,-342 5549,-342 5549,-425\"/>\n",
"<text text-anchor=\"start\" x=\"5438.5\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #108</text>\n",
"<text text-anchor=\"start\" x=\"5435\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">carrot ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"5430.5\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 15</text>\n",
"<text text-anchor=\"start\" x=\"5394\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 7, 1, 0, 0, 0, 5]</text>\n",
"<text text-anchor=\"start\" x=\"5425.5\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = german</text>\n",
"</g>\n",
"<!-- 107&#45;&gt;108 -->\n",
"<g id=\"edge108\" class=\"edge\">\n",
"<title>107&#45;&gt;108</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M5467.5,-460.8796C5467.5,-452.6838 5467.5,-443.9891 5467.5,-435.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"5471.0001,-435.298 5467.5,-425.2981 5464.0001,-435.2981 5471.0001,-435.298\"/>\n",
"</g>\n",
"<!-- 117 -->\n",
"<g id=\"node118\" class=\"node\">\n",
"<title>117</title>\n",
"<polygon fill=\"#39e5e2\" fill-opacity=\"0.600000\" stroke=\"#000000\" points=\"5854,-425 5691,-425 5691,-342 5854,-342 5854,-425\"/>\n",
"<text text-anchor=\"start\" x=\"5743.5\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #117</text>\n",
"<text text-anchor=\"start\" x=\"5736\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">parsley ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"5739\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 7</text>\n",
"<text text-anchor=\"start\" x=\"5699\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 2, 0, 5, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"5733.5\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = jewish</text>\n",
"</g>\n",
"<!-- 107&#45;&gt;117 -->\n",
"<g id=\"edge117\" class=\"edge\">\n",
"<title>107&#45;&gt;117</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M5549.2344,-470.6102C5590.0002,-454.7048 5639.4347,-435.4173 5681.4148,-419.0382\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"5682.7609,-422.27 5690.8047,-415.3745 5680.2165,-415.7488 5682.7609,-422.27\"/>\n",
"</g>\n",
"<!-- 109 -->\n",
"<g id=\"node110\" class=\"node\">\n",
"<title>109</title>\n",
"<polygon fill=\"#b7e539\" fill-opacity=\"0.623529\" stroke=\"#000000\" points=\"5492,-306 5329,-306 5329,-223 5492,-223 5492,-306\"/>\n",
"<text text-anchor=\"start\" x=\"5381.5\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #109</text>\n",
"<text text-anchor=\"start\" x=\"5351\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cheddar_cheese ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"5377\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 9</text>\n",
"<text text-anchor=\"start\" x=\"5337\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 6, 1, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"5368.5\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = german</text>\n",
"</g>\n",
"<!-- 108&#45;&gt;109 -->\n",
"<g id=\"edge109\" class=\"edge\">\n",
"<title>108&#45;&gt;109</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M5447.5642,-341.8796C5443.4659,-333.3236 5439.1072,-324.2238 5434.8727,-315.3833\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"5437.9975,-313.8049 5430.5209,-306.2981 5431.6843,-316.8288 5437.9975,-313.8049\"/>\n",
"</g>\n",
"<!-- 114 -->\n",
"<g id=\"node115\" class=\"node\">\n",
"<title>114</title>\n",
"<polygon fill=\"#e53986\" fill-opacity=\"0.600000\" stroke=\"#000000\" points=\"5673,-306 5510,-306 5510,-223 5673,-223 5673,-306\"/>\n",
"<text text-anchor=\"start\" x=\"5562.5\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #114</text>\n",
"<text text-anchor=\"start\" x=\"5558.5\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">wheat ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"5558\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 6</text>\n",
"<text text-anchor=\"start\" x=\"5518\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 1, 0, 0, 0, 0, 4]</text>\n",
"<text text-anchor=\"start\" x=\"5537\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = uk&#45;and&#45;irish</text>\n",
"</g>\n",
"<!-- 108&#45;&gt;114 -->\n",
"<g id=\"edge114\" class=\"edge\">\n",
"<title>108&#45;&gt;114</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M5510.8692,-341.8796C5520.4416,-332.6931 5530.6672,-322.8798 5540.5103,-313.4336\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"5543.1541,-315.7475 5547.9457,-306.2981 5538.3072,-310.6969 5543.1541,-315.7475\"/>\n",
"</g>\n",
"<!-- 110 -->\n",
"<g id=\"node111\" class=\"node\">\n",
"<title>110</title>\n",
"<polygon fill=\"#b7e539\" fill-opacity=\"0.713725\" stroke=\"#000000\" points=\"5311,-187 5148,-187 5148,-104 5311,-104 5311,-187\"/>\n",
"<text text-anchor=\"start\" x=\"5200.5\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #110</text>\n",
"<text text-anchor=\"start\" x=\"5196\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cream ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"5196\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 8</text>\n",
"<text text-anchor=\"start\" x=\"5156\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 6, 0, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"5187.5\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = german</text>\n",
"</g>\n",
"<!-- 109&#45;&gt;110 -->\n",
"<g id=\"edge110\" class=\"edge\">\n",
"<title>109&#45;&gt;110</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M5347.195,-222.8796C5332.3144,-213.0962 5316.3524,-202.6019 5301.1351,-192.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"5303.0479,-189.666 5292.7693,-187.0969 5299.2023,-195.5151 5303.0479,-189.666\"/>\n",
"</g>\n",
"<!-- 113 -->\n",
"<g id=\"node114\" class=\"node\">\n",
"<title>113</title>\n",
"<polygon fill=\"#39e54d\" stroke=\"#000000\" points=\"5492,-179.5 5329,-179.5 5329,-111.5 5492,-111.5 5492,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"5381.5\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #113</text>\n",
"<text text-anchor=\"start\" x=\"5377\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"5337\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"5372.5\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 109&#45;&gt;113 -->\n",
"<g id=\"edge113\" class=\"edge\">\n",
"<title>109&#45;&gt;113</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M5410.5,-222.8796C5410.5,-212.2134 5410.5,-200.7021 5410.5,-189.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"5414.0001,-189.8149 5410.5,-179.8149 5407.0001,-189.815 5414.0001,-189.8149\"/>\n",
"</g>\n",
"<!-- 111 -->\n",
"<g id=\"node112\" class=\"node\">\n",
"<title>111</title>\n",
"<polygon fill=\"#b7e539\" fill-opacity=\"0.831373\" stroke=\"#000000\" points=\"5312,-68 5149,-68 5149,0 5312,0 5312,-68\"/>\n",
"<text text-anchor=\"start\" x=\"5201.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #111</text>\n",
"<text text-anchor=\"start\" x=\"5197\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 7</text>\n",
"<text text-anchor=\"start\" x=\"5157\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 6, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"5188.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = german</text>\n",
"</g>\n",
"<!-- 110&#45;&gt;111 -->\n",
"<g id=\"edge111\" class=\"edge\">\n",
"<title>110&#45;&gt;111</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M5229.8724,-103.9815C5229.9474,-95.618 5230.0265,-86.7965 5230.1023,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"5233.6028,-78.2947 5230.1927,-68.2637 5226.6031,-78.2318 5233.6028,-78.2947\"/>\n",
"</g>\n",
"<!-- 112 -->\n",
"<g id=\"node113\" class=\"node\">\n",
"<title>112</title>\n",
"<polygon fill=\"#e53986\" stroke=\"#000000\" points=\"5493,-68 5330,-68 5330,0 5493,0 5493,-68\"/>\n",
"<text text-anchor=\"start\" x=\"5382.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #112</text>\n",
"<text text-anchor=\"start\" x=\"5378\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"5338\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"5357\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = uk&#45;and&#45;irish</text>\n",
"</g>\n",
"<!-- 110&#45;&gt;112 -->\n",
"<g id=\"edge112\" class=\"edge\">\n",
"<title>110&#45;&gt;112</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M5297.2701,-103.9815C5313.5573,-94.0034 5330.9085,-83.3733 5347.0403,-73.4904\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"5349.1638,-76.2941 5355.8625,-68.0856 5345.507,-70.3252 5349.1638,-76.2941\"/>\n",
"</g>\n",
"<!-- 115 -->\n",
"<g id=\"node116\" class=\"node\">\n",
"<title>115</title>\n",
"<polygon fill=\"#e53986\" stroke=\"#000000\" points=\"5673,-179.5 5510,-179.5 5510,-111.5 5673,-111.5 5673,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"5562.5\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #115</text>\n",
"<text text-anchor=\"start\" x=\"5558\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 4</text>\n",
"<text text-anchor=\"start\" x=\"5518\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 0, 0, 4]</text>\n",
"<text text-anchor=\"start\" x=\"5537\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = uk&#45;and&#45;irish</text>\n",
"</g>\n",
"<!-- 114&#45;&gt;115 -->\n",
"<g id=\"edge115\" class=\"edge\">\n",
"<title>114&#45;&gt;115</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M5591.5,-222.8796C5591.5,-212.2134 5591.5,-200.7021 5591.5,-189.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"5595.0001,-189.8149 5591.5,-179.8149 5588.0001,-189.815 5595.0001,-189.8149\"/>\n",
"</g>\n",
"<!-- 116 -->\n",
"<g id=\"node117\" class=\"node\">\n",
"<title>116</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"5854,-179.5 5691,-179.5 5691,-111.5 5854,-111.5 5854,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"5743.5\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #116</text>\n",
"<text text-anchor=\"start\" x=\"5739\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"5699\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 1, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"5734\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 114&#45;&gt;116 -->\n",
"<g id=\"edge116\" class=\"edge\">\n",
"<title>114&#45;&gt;116</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M5654.805,-222.8796C5673.2903,-210.7263 5693.4443,-197.4759 5711.7665,-185.4297\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"5714.1655,-188.0412 5720.5986,-179.623 5710.3199,-182.1921 5714.1655,-188.0412\"/>\n",
"</g>\n",
"<!-- 118 -->\n",
"<g id=\"node119\" class=\"node\">\n",
"<title>118</title>\n",
"<polygon fill=\"#39e5e2\" stroke=\"#000000\" points=\"5854,-298.5 5691,-298.5 5691,-230.5 5854,-230.5 5854,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"5743.5\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #118</text>\n",
"<text text-anchor=\"start\" x=\"5739\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 4</text>\n",
"<text text-anchor=\"start\" x=\"5699\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 4, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"5733.5\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = jewish</text>\n",
"</g>\n",
"<!-- 117&#45;&gt;118 -->\n",
"<g id=\"edge118\" class=\"edge\">\n",
"<title>117&#45;&gt;118</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M5772.5,-341.8796C5772.5,-331.2134 5772.5,-319.7021 5772.5,-308.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"5776.0001,-308.8149 5772.5,-298.8149 5769.0001,-308.815 5776.0001,-308.8149\"/>\n",
"</g>\n",
"<!-- 119 -->\n",
"<g id=\"node120\" class=\"node\">\n",
"<title>119</title>\n",
"<polygon fill=\"#b7e539\" fill-opacity=\"0.498039\" stroke=\"#000000\" points=\"6035,-298.5 5872,-298.5 5872,-230.5 6035,-230.5 6035,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"5924.5\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #119</text>\n",
"<text text-anchor=\"start\" x=\"5920\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"5880\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 2, 0, 1, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"5911.5\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = german</text>\n",
"</g>\n",
"<!-- 117&#45;&gt;119 -->\n",
"<g id=\"edge119\" class=\"edge\">\n",
"<title>117&#45;&gt;119</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M5835.805,-341.8796C5854.2903,-329.7263 5874.4443,-316.4759 5892.7665,-304.4297\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"5895.1655,-307.0412 5901.5986,-298.623 5891.3199,-301.1921 5895.1655,-307.0412\"/>\n",
"</g>\n",
"<!-- 123 -->\n",
"<g id=\"node124\" class=\"node\">\n",
"<title>123</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.145098\" stroke=\"#000000\" points=\"7846.5,-901 7616.5,-901 7616.5,-818 7846.5,-818 7846.5,-901\"/>\n",
"<text text-anchor=\"start\" x=\"7702.5\" y=\"-885.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #123</text>\n",
"<text text-anchor=\"start\" x=\"7645\" y=\"-870.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">whole_grain_wheat_flour ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"7691\" y=\"-855.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 999</text>\n",
"<text text-anchor=\"start\" x=\"7624.5\" y=\"-840.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [352, 78, 241, 60, 95, 30, 143]</text>\n",
"<text text-anchor=\"start\" x=\"7693\" y=\"-825.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 122&#45;&gt;123 -->\n",
"<g id=\"edge123\" class=\"edge\">\n",
"<title>122&#45;&gt;123</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M7822.5348,-936.8796C7811.5153,-927.513 7799.7291,-917.4948 7788.4158,-907.8784\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"7790.5604,-905.1078 7780.6742,-901.2981 7786.0268,-910.4414 7790.5604,-905.1078\"/>\n",
"</g>\n",
"<!-- 166 -->\n",
"<g id=\"node167\" class=\"node\">\n",
"<title>166</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.745098\" stroke=\"#000000\" points=\"8141.5,-901 7971.5,-901 7971.5,-818 8141.5,-818 8141.5,-901\"/>\n",
"<text text-anchor=\"start\" x=\"8027.5\" y=\"-885.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #166</text>\n",
"<text text-anchor=\"start\" x=\"8030.5\" y=\"-870.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">dill ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"8019.5\" y=\"-855.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 55</text>\n",
"<text text-anchor=\"start\" x=\"7979.5\" y=\"-840.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [42, 1, 4, 1, 2, 1, 4]</text>\n",
"<text text-anchor=\"start\" x=\"8018\" y=\"-825.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 122&#45;&gt;166 -->\n",
"<g id=\"edge166\" class=\"edge\">\n",
"<title>122&#45;&gt;166</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M7936.204,-936.8796C7951.4135,-927.0962 7967.7282,-916.6019 7983.2818,-906.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"7985.3157,-909.4505 7991.8325,-901.0969 7981.5287,-903.5632 7985.3157,-909.4505\"/>\n",
"</g>\n",
"<!-- 124 -->\n",
"<g id=\"node125\" class=\"node\">\n",
"<title>124</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.152941\" stroke=\"#000000\" points=\"7567.5,-782 7337.5,-782 7337.5,-699 7567.5,-699 7567.5,-782\"/>\n",
"<text text-anchor=\"start\" x=\"7423.5\" y=\"-766.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #124</text>\n",
"<text text-anchor=\"start\" x=\"7399.5\" y=\"-751.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">swiss_cheese ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"7412\" y=\"-736.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 978</text>\n",
"<text text-anchor=\"start\" x=\"7345.5\" y=\"-721.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [351, 76, 239, 60, 94, 30, 128]</text>\n",
"<text text-anchor=\"start\" x=\"7414\" y=\"-706.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 123&#45;&gt;124 -->\n",
"<g id=\"edge124\" class=\"edge\">\n",
"<title>123&#45;&gt;124</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M7633.9193,-817.8796C7609.8137,-807.598 7583.8671,-796.5311 7559.3466,-786.0726\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"7560.597,-782.8009 7550.0256,-782.0969 7557.8507,-789.2396 7560.597,-782.8009\"/>\n",
"</g>\n",
"<!-- 159 -->\n",
"<g id=\"node160\" class=\"node\">\n",
"<title>159</title>\n",
"<polygon fill=\"#e53986\" fill-opacity=\"0.682353\" stroke=\"#000000\" points=\"7816.5,-782 7646.5,-782 7646.5,-699 7816.5,-699 7816.5,-782\"/>\n",
"<text text-anchor=\"start\" x=\"7702.5\" y=\"-766.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #159</text>\n",
"<text text-anchor=\"start\" x=\"7697.5\" y=\"-751.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">ginger ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"7694.5\" y=\"-736.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 21</text>\n",
"<text text-anchor=\"start\" x=\"7654.5\" y=\"-721.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 2, 2, 0, 1, 0, 15]</text>\n",
"<text text-anchor=\"start\" x=\"7677\" y=\"-706.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = uk&#45;and&#45;irish</text>\n",
"</g>\n",
"<!-- 123&#45;&gt;159 -->\n",
"<g id=\"edge159\" class=\"edge\">\n",
"<title>123&#45;&gt;159</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M7731.5,-817.8796C7731.5,-809.6838 7731.5,-800.9891 7731.5,-792.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"7735.0001,-792.298 7731.5,-782.2981 7728.0001,-792.2981 7735.0001,-792.298\"/>\n",
"</g>\n",
"<!-- 125 -->\n",
"<g id=\"node126\" class=\"node\">\n",
"<title>125</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.129412\" stroke=\"#000000\" points=\"7243.5,-663 7013.5,-663 7013.5,-580 7243.5,-580 7243.5,-663\"/>\n",
"<text text-anchor=\"start\" x=\"7099.5\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #125</text>\n",
"<text text-anchor=\"start\" x=\"7082.5\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cardamom ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"7088\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 958</text>\n",
"<text text-anchor=\"start\" x=\"7021.5\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [332, 76, 238, 60, 94, 30, 128]</text>\n",
"<text text-anchor=\"start\" x=\"7090\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 124&#45;&gt;125 -->\n",
"<g id=\"edge125\" class=\"edge\">\n",
"<title>124&#45;&gt;125</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M7339.1805,-698.8796C7310.817,-688.4621 7280.2586,-677.2385 7251.4519,-666.6582\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"7252.3491,-663.2592 7241.7555,-663.0969 7249.9357,-669.8301 7252.3491,-663.2592\"/>\n",
"</g>\n",
"<!-- 156 -->\n",
"<g id=\"node157\" class=\"node\">\n",
"<title>156</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.949020\" stroke=\"#000000\" points=\"7537.5,-663 7367.5,-663 7367.5,-580 7537.5,-580 7537.5,-663\"/>\n",
"<text text-anchor=\"start\" x=\"7423.5\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #156</text>\n",
"<text text-anchor=\"start\" x=\"7421\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">chive ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"7415.5\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 20</text>\n",
"<text text-anchor=\"start\" x=\"7375.5\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [19, 0, 1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"7414\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 124&#45;&gt;156 -->\n",
"<g id=\"edge156\" class=\"edge\">\n",
"<title>124&#45;&gt;156</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M7452.5,-698.8796C7452.5,-690.6838 7452.5,-681.9891 7452.5,-673.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"7456.0001,-673.298 7452.5,-663.2981 7449.0001,-673.2981 7456.0001,-673.298\"/>\n",
"</g>\n",
"<!-- 126 -->\n",
"<g id=\"node127\" class=\"node\">\n",
"<title>126</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.137255\" stroke=\"#000000\" points=\"6950.5,-544 6720.5,-544 6720.5,-461 6950.5,-461 6950.5,-544\"/>\n",
"<text text-anchor=\"start\" x=\"6806.5\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #126</text>\n",
"<text text-anchor=\"start\" x=\"6810\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">nut ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"6795\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 929</text>\n",
"<text text-anchor=\"start\" x=\"6728.5\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [329, 72, 234, 59, 79, 30, 126]</text>\n",
"<text text-anchor=\"start\" x=\"6797\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 125&#45;&gt;126 -->\n",
"<g id=\"edge126\" class=\"edge\">\n",
"<title>125&#45;&gt;126</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M7026.0228,-579.8796C7000.5961,-569.5527 6973.2189,-558.4336 6947.3679,-547.9344\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"6948.5014,-544.6172 6937.9193,-544.0969 6945.8673,-551.1027 6948.5014,-544.6172\"/>\n",
"</g>\n",
"<!-- 145 -->\n",
"<g id=\"node146\" class=\"node\">\n",
"<title>145</title>\n",
"<polygon fill=\"#3956e5\" fill-opacity=\"0.439216\" stroke=\"#000000\" points=\"7213.5,-544 7043.5,-544 7043.5,-461 7213.5,-461 7213.5,-544\"/>\n",
"<text text-anchor=\"start\" x=\"7099.5\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #145</text>\n",
"<text text-anchor=\"start\" x=\"7078.5\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">orange_peel ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"7091.5\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 29</text>\n",
"<text text-anchor=\"start\" x=\"7051.5\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 4, 4, 1, 15, 0, 2]</text>\n",
"<text text-anchor=\"start\" x=\"7072\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = scandinavian</text>\n",
"</g>\n",
"<!-- 125&#45;&gt;145 -->\n",
"<g id=\"edge145\" class=\"edge\">\n",
"<title>125&#45;&gt;145</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M7128.5,-579.8796C7128.5,-571.6838 7128.5,-562.9891 7128.5,-554.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"7132.0001,-554.298 7128.5,-544.2981 7125.0001,-554.2981 7132.0001,-554.298\"/>\n",
"</g>\n",
"<!-- 127 -->\n",
"<g id=\"node128\" class=\"node\">\n",
"<title>127</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.156863\" stroke=\"#000000\" points=\"6661.5,-425 6431.5,-425 6431.5,-342 6661.5,-342 6661.5,-425\"/>\n",
"<text text-anchor=\"start\" x=\"6517.5\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #127</text>\n",
"<text text-anchor=\"start\" x=\"6516\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">anise ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"6506\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 905</text>\n",
"<text text-anchor=\"start\" x=\"6439.5\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [327, 69, 218, 58, 78, 29, 126]</text>\n",
"<text text-anchor=\"start\" x=\"6508\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 126&#45;&gt;127 -->\n",
"<g id=\"edge127\" class=\"edge\">\n",
"<title>126&#45;&gt;127</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M6734.4218,-460.8796C6709.3422,-450.5527 6682.3388,-439.4336 6656.8407,-428.9344\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"6658.1005,-425.6681 6647.5211,-425.0969 6655.4352,-432.1409 6658.1005,-425.6681\"/>\n",
"</g>\n",
"<!-- 138 -->\n",
"<g id=\"node139\" class=\"node\">\n",
"<title>138</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.619608\" stroke=\"#000000\" points=\"6920.5,-425 6750.5,-425 6750.5,-342 6920.5,-342 6920.5,-425\"/>\n",
"<text text-anchor=\"start\" x=\"6806.5\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #138</text>\n",
"<text text-anchor=\"start\" x=\"6805\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">anise ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"6798.5\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 24</text>\n",
"<text text-anchor=\"start\" x=\"6758.5\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 3, 16, 1, 1, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"6797.5\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 126&#45;&gt;138 -->\n",
"<g id=\"edge138\" class=\"edge\">\n",
"<title>126&#45;&gt;138</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M6835.5,-460.8796C6835.5,-452.6838 6835.5,-443.9891 6835.5,-435.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"6839.0001,-435.298 6835.5,-425.2981 6832.0001,-435.2981 6839.0001,-435.298\"/>\n",
"</g>\n",
"<!-- 128 -->\n",
"<g id=\"node129\" class=\"node\">\n",
"<title>128</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.176471\" stroke=\"#000000\" points=\"6334.5,-306 6104.5,-306 6104.5,-223 6334.5,-223 6334.5,-306\"/>\n",
"<text text-anchor=\"start\" x=\"6190.5\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #128</text>\n",
"<text text-anchor=\"start\" x=\"6186\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cream ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"6179\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 892</text>\n",
"<text text-anchor=\"start\" x=\"6112.5\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [326, 69, 206, 58, 78, 29, 126]</text>\n",
"<text text-anchor=\"start\" x=\"6181\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 127&#45;&gt;128 -->\n",
"<g id=\"edge128\" class=\"edge\">\n",
"<title>127&#45;&gt;128</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M6432.1313,-341.8796C6403.3806,-331.4168 6372.3955,-320.1409 6343.2112,-309.5203\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"6344.3982,-306.2277 6333.8042,-306.0969 6342.0043,-312.8057 6344.3982,-306.2277\"/>\n",
"</g>\n",
"<!-- 135 -->\n",
"<g id=\"node136\" class=\"node\">\n",
"<title>135</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.917647\" stroke=\"#000000\" points=\"6631.5,-306 6461.5,-306 6461.5,-223 6631.5,-223 6631.5,-306\"/>\n",
"<text text-anchor=\"start\" x=\"6517.5\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #135</text>\n",
"<text text-anchor=\"start\" x=\"6495\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">orange_juice ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"6509.5\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 13</text>\n",
"<text text-anchor=\"start\" x=\"6469.5\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 12, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"6508.5\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 127&#45;&gt;135 -->\n",
"<g id=\"edge135\" class=\"edge\">\n",
"<title>127&#45;&gt;135</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M6546.5,-341.8796C6546.5,-333.6838 6546.5,-324.9891 6546.5,-316.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"6550.0001,-316.298 6546.5,-306.2981 6543.0001,-316.2981 6550.0001,-316.298\"/>\n",
"</g>\n",
"<!-- 129 -->\n",
"<g id=\"node130\" class=\"node\">\n",
"<title>129</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.094118\" stroke=\"#000000\" points=\"6096.5,-187 5872.5,-187 5872.5,-104 6096.5,-104 6096.5,-187\"/>\n",
"<text text-anchor=\"start\" x=\"5955.5\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #129</text>\n",
"<text text-anchor=\"start\" x=\"5951\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">potato ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"5944\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 669</text>\n",
"<text text-anchor=\"start\" x=\"5880.5\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [216, 58, 168, 45, 61, 22, 99]</text>\n",
"<text text-anchor=\"start\" x=\"5946\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 128&#45;&gt;129 -->\n",
"<g id=\"edge129\" class=\"edge\">\n",
"<title>128&#45;&gt;129</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M6137.3084,-222.8796C6117.3622,-212.7791 6095.9195,-201.9209 6075.5892,-191.626\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"6077.1478,-188.4921 6066.6452,-187.0969 6073.9854,-194.7371 6077.1478,-188.4921\"/>\n",
"</g>\n",
"<!-- 132 -->\n",
"<g id=\"node133\" class=\"node\">\n",
"<title>132</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.388235\" stroke=\"#000000\" points=\"6324.5,-187 6114.5,-187 6114.5,-104 6324.5,-104 6324.5,-187\"/>\n",
"<text text-anchor=\"start\" x=\"6190.5\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #132</text>\n",
"<text text-anchor=\"start\" x=\"6162\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cottage_cheese ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"6179\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 223</text>\n",
"<text text-anchor=\"start\" x=\"6122.5\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [110, 11, 38, 13, 17, 7, 27]</text>\n",
"<text text-anchor=\"start\" x=\"6181\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 128&#45;&gt;132 -->\n",
"<g id=\"edge132\" class=\"edge\">\n",
"<title>128&#45;&gt;132</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M6219.5,-222.8796C6219.5,-214.6838 6219.5,-205.9891 6219.5,-197.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"6223.0001,-197.298 6219.5,-187.2981 6216.0001,-197.2981 6223.0001,-197.298\"/>\n",
"</g>\n",
"<!-- 130 -->\n",
"<g id=\"node131\" class=\"node\">\n",
"<title>130</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.086275\" stroke=\"#000000\" points=\"5885.5,-68 5661.5,-68 5661.5,0 5885.5,0 5885.5,-68\"/>\n",
"<text text-anchor=\"start\" x=\"5744.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #130</text>\n",
"<text text-anchor=\"start\" x=\"5733\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 621</text>\n",
"<text text-anchor=\"start\" x=\"5669.5\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [205, 54, 166, 41, 56, 21, 78]</text>\n",
"<text text-anchor=\"start\" x=\"5735\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 129&#45;&gt;130 -->\n",
"<g id=\"edge130\" class=\"edge\">\n",
"<title>129&#45;&gt;130</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M5905.9314,-103.9815C5886.6119,-93.7724 5866.001,-82.8809 5846.9343,-72.8053\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"5848.4796,-69.6633 5838.0028,-68.0856 5845.209,-75.8523 5848.4796,-69.6633\"/>\n",
"</g>\n",
"<!-- 131 -->\n",
"<g id=\"node132\" class=\"node\">\n",
"<title>131</title>\n",
"<polygon fill=\"#e53986\" fill-opacity=\"0.270588\" stroke=\"#000000\" points=\"6079.5,-68 5903.5,-68 5903.5,0 6079.5,0 6079.5,-68\"/>\n",
"<text text-anchor=\"start\" x=\"5962.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #131</text>\n",
"<text text-anchor=\"start\" x=\"5954.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 48</text>\n",
"<text text-anchor=\"start\" x=\"5911.5\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [11, 4, 2, 4, 5, 1, 21]</text>\n",
"<text text-anchor=\"start\" x=\"5937\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = uk&#45;and&#45;irish</text>\n",
"</g>\n",
"<!-- 129&#45;&gt;131 -->\n",
"<g id=\"edge131\" class=\"edge\">\n",
"<title>129&#45;&gt;131</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M5987.1065,-103.9815C5987.6316,-95.618 5988.1854,-86.7965 5988.7163,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"5992.2154,-78.4634 5989.3489,-68.2637 5985.2291,-78.0247 5992.2154,-78.4634\"/>\n",
"</g>\n",
"<!-- 133 -->\n",
"<g id=\"node134\" class=\"node\">\n",
"<title>133</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.396078\" stroke=\"#000000\" points=\"6314,-68 6111,-68 6111,0 6314,0 6314,-68\"/>\n",
"<text text-anchor=\"start\" x=\"6183.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #133</text>\n",
"<text text-anchor=\"start\" x=\"6172\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 219</text>\n",
"<text text-anchor=\"start\" x=\"6119\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [110, 11, 38, 9, 17, 7, 27]</text>\n",
"<text text-anchor=\"start\" x=\"6174\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 132&#45;&gt;133 -->\n",
"<g id=\"edge133\" class=\"edge\">\n",
"<title>132&#45;&gt;133</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M6216.8935,-103.9815C6216.3684,-95.618 6215.8146,-86.7965 6215.2837,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"6218.7709,-78.0247 6214.6511,-68.2637 6211.7846,-78.4634 6218.7709,-78.0247\"/>\n",
"</g>\n",
"<!-- 134 -->\n",
"<g id=\"node135\" class=\"node\">\n",
"<title>134</title>\n",
"<polygon fill=\"#39e5e2\" stroke=\"#000000\" points=\"6495,-68 6332,-68 6332,0 6495,0 6495,-68\"/>\n",
"<text text-anchor=\"start\" x=\"6384.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #134</text>\n",
"<text text-anchor=\"start\" x=\"6380\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 4</text>\n",
"<text text-anchor=\"start\" x=\"6340\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 4, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"6374.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = jewish</text>\n",
"</g>\n",
"<!-- 132&#45;&gt;134 -->\n",
"<g id=\"edge134\" class=\"edge\">\n",
"<title>132&#45;&gt;134</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M6291.7384,-103.9815C6309.2603,-93.911 6327.9374,-83.1764 6345.2676,-73.2161\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"6347.2681,-76.1032 6354.1941,-68.0856 6343.7799,-70.0342 6347.2681,-76.1032\"/>\n",
"</g>\n",
"<!-- 136 -->\n",
"<g id=\"node137\" class=\"node\">\n",
"<title>136</title>\n",
"<polygon fill=\"#39e54d\" stroke=\"#000000\" points=\"6512.5,-179.5 6342.5,-179.5 6342.5,-111.5 6512.5,-111.5 6512.5,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"6398.5\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #136</text>\n",
"<text text-anchor=\"start\" x=\"6390.5\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 12</text>\n",
"<text text-anchor=\"start\" x=\"6350.5\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 12, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"6389.5\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 135&#45;&gt;136 -->\n",
"<g id=\"edge136\" class=\"edge\">\n",
"<title>135&#45;&gt;136</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M6504.8796,-222.8796C6493.2237,-211.2237 6480.5587,-198.5587 6468.9148,-186.9148\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"6471.3609,-184.4111 6461.8149,-179.8149 6466.4111,-189.3609 6471.3609,-184.4111\"/>\n",
"</g>\n",
"<!-- 137 -->\n",
"<g id=\"node138\" class=\"node\">\n",
"<title>137</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"6694,-179.5 6531,-179.5 6531,-111.5 6694,-111.5 6694,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"6583.5\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #137</text>\n",
"<text text-anchor=\"start\" x=\"6579\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"6539\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"6574\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 135&#45;&gt;137 -->\n",
"<g id=\"edge137\" class=\"edge\">\n",
"<title>135&#45;&gt;137</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M6569.5836,-222.8796C6575.7433,-211.7735 6582.4111,-199.7513 6588.6129,-188.5691\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"6591.6787,-190.2576 6593.4682,-179.8149 6585.5572,-186.8624 6591.6787,-190.2576\"/>\n",
"</g>\n",
"<!-- 139 -->\n",
"<g id=\"node140\" class=\"node\">\n",
"<title>139</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.737255\" stroke=\"#000000\" points=\"6882.5,-306 6712.5,-306 6712.5,-223 6882.5,-223 6882.5,-306\"/>\n",
"<text text-anchor=\"start\" x=\"6768.5\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #139</text>\n",
"<text text-anchor=\"start\" x=\"6770\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">lard ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"6760.5\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 21</text>\n",
"<text text-anchor=\"start\" x=\"6720.5\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 1, 16, 1, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"6759.5\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 138&#45;&gt;139 -->\n",
"<g id=\"edge139\" class=\"edge\">\n",
"<title>138&#45;&gt;139</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M6822.2094,-341.8796C6819.5348,-333.5037 6816.6937,-324.6067 6813.9269,-315.942\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"6817.2234,-314.7595 6810.8473,-306.2981 6810.5552,-316.8889 6817.2234,-314.7595\"/>\n",
"</g>\n",
"<!-- 144 -->\n",
"<g id=\"node145\" class=\"node\">\n",
"<title>144</title>\n",
"<polygon fill=\"#b7e539\" fill-opacity=\"0.498039\" stroke=\"#000000\" points=\"7064,-298.5 6901,-298.5 6901,-230.5 7064,-230.5 7064,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"6953.5\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #144</text>\n",
"<text text-anchor=\"start\" x=\"6949\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"6909\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 2, 0, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"6940.5\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = german</text>\n",
"</g>\n",
"<!-- 138&#45;&gt;144 -->\n",
"<g id=\"edge144\" class=\"edge\">\n",
"<title>138&#45;&gt;144</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M6886.9135,-341.8796C6901.5835,-330.0038 6917.5477,-317.0804 6932.1533,-305.2568\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"6934.5407,-307.8273 6940.111,-298.8149 6930.1363,-302.3866 6934.5407,-307.8273\"/>\n",
"</g>\n",
"<!-- 140 -->\n",
"<g id=\"node141\" class=\"node\">\n",
"<title>140</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.776471\" stroke=\"#000000\" points=\"6882.5,-187 6712.5,-187 6712.5,-104 6882.5,-104 6882.5,-187\"/>\n",
"<text text-anchor=\"start\" x=\"6768.5\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #140</text>\n",
"<text text-anchor=\"start\" x=\"6765.5\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">raisin ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"6760.5\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 20</text>\n",
"<text text-anchor=\"start\" x=\"6720.5\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 1, 16, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"6759.5\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 139&#45;&gt;140 -->\n",
"<g id=\"edge140\" class=\"edge\">\n",
"<title>139&#45;&gt;140</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M6797.5,-222.8796C6797.5,-214.6838 6797.5,-205.9891 6797.5,-197.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"6801.0001,-197.298 6797.5,-187.2981 6794.0001,-197.2981 6801.0001,-197.298\"/>\n",
"</g>\n",
"<!-- 143 -->\n",
"<g id=\"node144\" class=\"node\">\n",
"<title>143</title>\n",
"<polygon fill=\"#39e5e2\" stroke=\"#000000\" points=\"7064,-179.5 6901,-179.5 6901,-111.5 7064,-111.5 7064,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"6953.5\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #143</text>\n",
"<text text-anchor=\"start\" x=\"6949\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"6909\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 1, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"6943.5\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = jewish</text>\n",
"</g>\n",
"<!-- 139&#45;&gt;143 -->\n",
"<g id=\"edge143\" class=\"edge\">\n",
"<title>139&#45;&gt;143</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M6862.204,-222.8796C6881.2696,-210.6158 6902.0719,-197.2348 6920.9346,-185.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"6922.9347,-187.9766 6929.4516,-179.623 6919.1478,-182.0893 6922.9347,-187.9766\"/>\n",
"</g>\n",
"<!-- 141 -->\n",
"<g id=\"node142\" class=\"node\">\n",
"<title>141</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.811765\" stroke=\"#000000\" points=\"6698.5,-68 6528.5,-68 6528.5,0 6698.5,0 6698.5,-68\"/>\n",
"<text text-anchor=\"start\" x=\"6584.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #141</text>\n",
"<text text-anchor=\"start\" x=\"6576.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 18</text>\n",
"<text text-anchor=\"start\" x=\"6536.5\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 15, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"6575.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 140&#45;&gt;141 -->\n",
"<g id=\"edge141\" class=\"edge\">\n",
"<title>140&#45;&gt;141</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M6728.9852,-103.9815C6712.519,-94.0034 6694.9771,-83.3733 6678.668,-73.4904\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"6680.1151,-70.2749 6669.7489,-68.0856 6676.4873,-76.2615 6680.1151,-70.2749\"/>\n",
"</g>\n",
"<!-- 142 -->\n",
"<g id=\"node143\" class=\"node\">\n",
"<title>142</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"6880,-68 6717,-68 6717,0 6880,0 6880,-68\"/>\n",
"<text text-anchor=\"start\" x=\"6769.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #142</text>\n",
"<text text-anchor=\"start\" x=\"6765\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"6725\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 1, 1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"6756.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = german</text>\n",
"</g>\n",
"<!-- 140&#45;&gt;142 -->\n",
"<g id=\"edge142\" class=\"edge\">\n",
"<title>140&#45;&gt;142</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M6797.8724,-103.9815C6797.9474,-95.618 6798.0265,-86.7965 6798.1023,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"6801.6028,-78.2947 6798.1927,-68.2637 6794.6031,-78.2318 6801.6028,-78.2947\"/>\n",
"</g>\n",
"<!-- 146 -->\n",
"<g id=\"node147\" class=\"node\">\n",
"<title>146</title>\n",
"<polygon fill=\"#3956e5\" fill-opacity=\"0.478431\" stroke=\"#000000\" points=\"7239.5,-425 7069.5,-425 7069.5,-342 7239.5,-342 7239.5,-425\"/>\n",
"<text text-anchor=\"start\" x=\"7125.5\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #146</text>\n",
"<text text-anchor=\"start\" x=\"7119.5\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">vanilla ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"7117.5\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 27</text>\n",
"<text text-anchor=\"start\" x=\"7077.5\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 4, 2, 1, 15, 0, 2]</text>\n",
"<text text-anchor=\"start\" x=\"7098\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = scandinavian</text>\n",
"</g>\n",
"<!-- 145&#45;&gt;146 -->\n",
"<g id=\"edge146\" class=\"edge\">\n",
"<title>145&#45;&gt;146</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M7137.5935,-460.8796C7139.4039,-452.5938 7141.3257,-443.798 7143.1995,-435.2216\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"7146.6524,-435.8147 7145.3676,-425.2981 7139.8137,-434.3205 7146.6524,-435.8147\"/>\n",
"</g>\n",
"<!-- 155 -->\n",
"<g id=\"node156\" class=\"node\">\n",
"<title>155</title>\n",
"<polygon fill=\"#39e54d\" stroke=\"#000000\" points=\"7421,-417.5 7258,-417.5 7258,-349.5 7421,-349.5 7421,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"7310.5\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #155</text>\n",
"<text text-anchor=\"start\" x=\"7306\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"7266\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 2, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"7301.5\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 145&#45;&gt;155 -->\n",
"<g id=\"edge155\" class=\"edge\">\n",
"<title>145&#45;&gt;155</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M7202.2976,-460.8796C7224.3364,-448.4501 7248.4101,-434.873 7270.1531,-422.6103\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"7272.0052,-425.5841 7278.9961,-417.623 7268.5665,-419.4869 7272.0052,-425.5841\"/>\n",
"</g>\n",
"<!-- 147 -->\n",
"<g id=\"node148\" class=\"node\">\n",
"<title>147</title>\n",
"<polygon fill=\"#3956e5\" fill-opacity=\"0.600000\" stroke=\"#000000\" points=\"7252.5,-306 7082.5,-306 7082.5,-223 7252.5,-223 7252.5,-306\"/>\n",
"<text text-anchor=\"start\" x=\"7138.5\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #147</text>\n",
"<text text-anchor=\"start\" x=\"7133.5\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">ginger ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"7130.5\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 23</text>\n",
"<text text-anchor=\"start\" x=\"7090.5\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 3, 0, 1, 15, 0, 2]</text>\n",
"<text text-anchor=\"start\" x=\"7111\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = scandinavian</text>\n",
"</g>\n",
"<!-- 146&#45;&gt;147 -->\n",
"<g id=\"edge147\" class=\"edge\">\n",
"<title>146&#45;&gt;147</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M7159.0468,-341.8796C7159.9421,-333.6838 7160.8919,-324.9891 7161.8192,-316.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"7165.3271,-316.6191 7162.9338,-306.2981 7158.3685,-315.8588 7165.3271,-316.6191\"/>\n",
"</g>\n",
"<!-- 154 -->\n",
"<g id=\"node155\" class=\"node\">\n",
"<title>154</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.333333\" stroke=\"#000000\" points=\"7434,-298.5 7271,-298.5 7271,-230.5 7434,-230.5 7434,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"7323.5\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #154</text>\n",
"<text text-anchor=\"start\" x=\"7319\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 4</text>\n",
"<text text-anchor=\"start\" x=\"7279\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 1, 2, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"7314.5\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 146&#45;&gt;154 -->\n",
"<g id=\"edge154\" class=\"edge\">\n",
"<title>146&#45;&gt;154</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M7223.7508,-341.8796C7244.248,-329.5606 7266.6208,-316.1143 7286.8811,-303.9376\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"7288.9557,-306.7743 7295.7239,-298.623 7285.3498,-300.7745 7288.9557,-306.7743\"/>\n",
"</g>\n",
"<!-- 148 -->\n",
"<g id=\"node149\" class=\"node\">\n",
"<title>148</title>\n",
"<polygon fill=\"#3956e5\" fill-opacity=\"0.858824\" stroke=\"#000000\" points=\"7252.5,-187 7082.5,-187 7082.5,-104 7252.5,-104 7252.5,-187\"/>\n",
"<text text-anchor=\"start\" x=\"7138.5\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #148</text>\n",
"<text text-anchor=\"start\" x=\"7138.5\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">corn ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"7130.5\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 15</text>\n",
"<text text-anchor=\"start\" x=\"7090.5\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 1, 0, 0, 13, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"7111\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = scandinavian</text>\n",
"</g>\n",
"<!-- 147&#45;&gt;148 -->\n",
"<g id=\"edge148\" class=\"edge\">\n",
"<title>147&#45;&gt;148</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M7167.5,-222.8796C7167.5,-214.6838 7167.5,-205.9891 7167.5,-197.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"7171.0001,-197.298 7167.5,-187.2981 7164.0001,-197.2981 7171.0001,-197.298\"/>\n",
"</g>\n",
"<!-- 151 -->\n",
"<g id=\"node152\" class=\"node\">\n",
"<title>151</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"7434,-187 7271,-187 7271,-104 7434,-104 7434,-187\"/>\n",
"<text text-anchor=\"start\" x=\"7323.5\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #151</text>\n",
"<text text-anchor=\"start\" x=\"7295\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cane_molasses ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"7319\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 8</text>\n",
"<text text-anchor=\"start\" x=\"7279\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 2, 0, 1, 2, 0, 2]</text>\n",
"<text text-anchor=\"start\" x=\"7310.5\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = german</text>\n",
"</g>\n",
"<!-- 147&#45;&gt;151 -->\n",
"<g id=\"edge151\" class=\"edge\">\n",
"<title>147&#45;&gt;151</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M7232.204,-222.8796C7247.4135,-213.0962 7263.7282,-202.6019 7279.2818,-192.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"7281.3157,-195.4505 7287.8325,-187.0969 7277.5287,-189.5632 7281.3157,-195.4505\"/>\n",
"</g>\n",
"<!-- 149 -->\n",
"<g id=\"node150\" class=\"node\">\n",
"<title>149</title>\n",
"<polygon fill=\"#3956e5\" fill-opacity=\"0.921569\" stroke=\"#000000\" points=\"7068.5,-68 6898.5,-68 6898.5,0 7068.5,0 7068.5,-68\"/>\n",
"<text text-anchor=\"start\" x=\"6954.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #149</text>\n",
"<text text-anchor=\"start\" x=\"6946.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 14</text>\n",
"<text text-anchor=\"start\" x=\"6906.5\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 1, 0, 0, 13, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"6927\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = scandinavian</text>\n",
"</g>\n",
"<!-- 148&#45;&gt;149 -->\n",
"<g id=\"edge149\" class=\"edge\">\n",
"<title>148&#45;&gt;149</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M7098.9852,-103.9815C7082.519,-94.0034 7064.9771,-83.3733 7048.668,-73.4904\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"7050.1151,-70.2749 7039.7489,-68.0856 7046.4873,-76.2615 7050.1151,-70.2749\"/>\n",
"</g>\n",
"<!-- 150 -->\n",
"<g id=\"node151\" class=\"node\">\n",
"<title>150</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"7250,-68 7087,-68 7087,0 7250,0 7250,-68\"/>\n",
"<text text-anchor=\"start\" x=\"7139.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #150</text>\n",
"<text text-anchor=\"start\" x=\"7135\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"7095\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"7130\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 148&#45;&gt;150 -->\n",
"<g id=\"edge150\" class=\"edge\">\n",
"<title>148&#45;&gt;150</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M7167.8724,-103.9815C7167.9474,-95.618 7168.0265,-86.7965 7168.1023,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"7171.6028,-78.2947 7168.1927,-68.2637 7164.6031,-78.2318 7171.6028,-78.2947\"/>\n",
"</g>\n",
"<!-- 152 -->\n",
"<g id=\"node153\" class=\"node\">\n",
"<title>152</title>\n",
"<polygon fill=\"#e53986\" fill-opacity=\"0.250980\" stroke=\"#000000\" points=\"7433,-68 7270,-68 7270,0 7433,0 7433,-68\"/>\n",
"<text text-anchor=\"start\" x=\"7322.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #152</text>\n",
"<text text-anchor=\"start\" x=\"7318\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 5</text>\n",
"<text text-anchor=\"start\" x=\"7278\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 1, 1, 0, 2]</text>\n",
"<text text-anchor=\"start\" x=\"7297\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = uk&#45;and&#45;irish</text>\n",
"</g>\n",
"<!-- 151&#45;&gt;152 -->\n",
"<g id=\"edge152\" class=\"edge\">\n",
"<title>151&#45;&gt;152</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M7352.1276,-103.9815C7352.0526,-95.618 7351.9735,-86.7965 7351.8977,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"7355.3969,-78.2318 7351.8073,-68.2637 7348.3972,-78.2947 7355.3969,-78.2318\"/>\n",
"</g>\n",
"<!-- 153 -->\n",
"<g id=\"node154\" class=\"node\">\n",
"<title>153</title>\n",
"<polygon fill=\"#b7e539\" fill-opacity=\"0.498039\" stroke=\"#000000\" points=\"7614,-68 7451,-68 7451,0 7614,0 7614,-68\"/>\n",
"<text text-anchor=\"start\" x=\"7503.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #153</text>\n",
"<text text-anchor=\"start\" x=\"7499\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"7459\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 2, 0, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"7490.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = german</text>\n",
"</g>\n",
"<!-- 151&#45;&gt;153 -->\n",
"<g id=\"edge153\" class=\"edge\">\n",
"<title>151&#45;&gt;153</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M7419.5254,-103.9815C7435.6336,-94.0034 7452.7941,-83.3733 7468.7487,-73.4904\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"7470.8158,-76.3271 7477.4739,-68.0856 7467.1296,-70.3763 7470.8158,-76.3271\"/>\n",
"</g>\n",
"<!-- 157 -->\n",
"<g id=\"node158\" class=\"node\">\n",
"<title>157</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"7401.5,-536.5 7231.5,-536.5 7231.5,-468.5 7401.5,-468.5 7401.5,-536.5\"/>\n",
"<text text-anchor=\"start\" x=\"7287.5\" y=\"-521.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #157</text>\n",
"<text text-anchor=\"start\" x=\"7279.5\" y=\"-506.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 18</text>\n",
"<text text-anchor=\"start\" x=\"7239.5\" y=\"-491.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [18, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"7278\" y=\"-476.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 156&#45;&gt;157 -->\n",
"<g id=\"edge157\" class=\"edge\">\n",
"<title>156&#45;&gt;157</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M7404.9338,-579.8796C7391.4872,-568.1138 7376.8653,-555.3197 7363.4549,-543.5855\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"7365.5476,-540.766 7355.7171,-536.8149 7360.9381,-546.034 7365.5476,-540.766\"/>\n",
"</g>\n",
"<!-- 158 -->\n",
"<g id=\"node159\" class=\"node\">\n",
"<title>158</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"7583,-536.5 7420,-536.5 7420,-468.5 7583,-468.5 7583,-536.5\"/>\n",
"<text text-anchor=\"start\" x=\"7472.5\" y=\"-521.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #158</text>\n",
"<text text-anchor=\"start\" x=\"7468\" y=\"-506.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"7428\" y=\"-491.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"7463\" y=\"-476.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 156&#45;&gt;158 -->\n",
"<g id=\"edge158\" class=\"edge\">\n",
"<title>156&#45;&gt;158</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M7469.6378,-579.8796C7474.1203,-568.9935 7478.9653,-557.227 7483.4917,-546.2344\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"7486.7991,-547.3944 7487.3703,-536.8149 7480.3264,-544.7291 7486.7991,-547.3944\"/>\n",
"</g>\n",
"<!-- 160 -->\n",
"<g id=\"node161\" class=\"node\">\n",
"<title>160</title>\n",
"<polygon fill=\"#e53986\" fill-opacity=\"0.874510\" stroke=\"#000000\" points=\"7771.5,-663 7601.5,-663 7601.5,-580 7771.5,-580 7771.5,-663\"/>\n",
"<text text-anchor=\"start\" x=\"7657.5\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #160</text>\n",
"<text text-anchor=\"start\" x=\"7640.5\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cardamom ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"7649.5\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 17</text>\n",
"<text text-anchor=\"start\" x=\"7609.5\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 1, 0, 15]</text>\n",
"<text text-anchor=\"start\" x=\"7632\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = uk&#45;and&#45;irish</text>\n",
"</g>\n",
"<!-- 159&#45;&gt;160 -->\n",
"<g id=\"edge160\" class=\"edge\">\n",
"<title>159&#45;&gt;160</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M7715.7612,-698.8796C7712.5598,-690.4136 7709.1571,-681.4153 7705.8472,-672.6626\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"7709.1169,-671.4136 7702.306,-663.2981 7702.5694,-673.8896 7709.1169,-671.4136\"/>\n",
"</g>\n",
"<!-- 165 -->\n",
"<g id=\"node166\" class=\"node\">\n",
"<title>165</title>\n",
"<polygon fill=\"#b7e539\" fill-opacity=\"0.333333\" stroke=\"#000000\" points=\"7953,-655.5 7790,-655.5 7790,-587.5 7953,-587.5 7953,-655.5\"/>\n",
"<text text-anchor=\"start\" x=\"7842.5\" y=\"-640.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #165</text>\n",
"<text text-anchor=\"start\" x=\"7838\" y=\"-625.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 4</text>\n",
"<text text-anchor=\"start\" x=\"7798\" y=\"-610.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 2, 1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"7829.5\" y=\"-595.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = german</text>\n",
"</g>\n",
"<!-- 159&#45;&gt;165 -->\n",
"<g id=\"edge165\" class=\"edge\">\n",
"<title>159&#45;&gt;165</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M7780.4652,-698.8796C7794.3073,-687.1138 7809.3592,-674.3197 7823.1641,-662.5855\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"7825.7769,-664.9582 7831.1295,-655.8149 7821.2433,-659.6247 7825.7769,-664.9582\"/>\n",
"</g>\n",
"<!-- 161 -->\n",
"<g id=\"node162\" class=\"node\">\n",
"<title>161</title>\n",
"<polygon fill=\"#e53986\" fill-opacity=\"0.933333\" stroke=\"#000000\" points=\"7771.5,-544 7601.5,-544 7601.5,-461 7771.5,-461 7771.5,-544\"/>\n",
"<text text-anchor=\"start\" x=\"7657.5\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #161</text>\n",
"<text text-anchor=\"start\" x=\"7654\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cocoa ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"7649.5\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 16</text>\n",
"<text text-anchor=\"start\" x=\"7609.5\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0, 0, 15]</text>\n",
"<text text-anchor=\"start\" x=\"7632\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = uk&#45;and&#45;irish</text>\n",
"</g>\n",
"<!-- 160&#45;&gt;161 -->\n",
"<g id=\"edge161\" class=\"edge\">\n",
"<title>160&#45;&gt;161</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M7686.5,-579.8796C7686.5,-571.6838 7686.5,-562.9891 7686.5,-554.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"7690.0001,-554.298 7686.5,-544.2981 7683.0001,-554.2981 7690.0001,-554.298\"/>\n",
"</g>\n",
"<!-- 164 -->\n",
"<g id=\"node165\" class=\"node\">\n",
"<title>164</title>\n",
"<polygon fill=\"#3956e5\" stroke=\"#000000\" points=\"7953,-536.5 7790,-536.5 7790,-468.5 7953,-468.5 7953,-536.5\"/>\n",
"<text text-anchor=\"start\" x=\"7842.5\" y=\"-521.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #164</text>\n",
"<text text-anchor=\"start\" x=\"7838\" y=\"-506.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"7798\" y=\"-491.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"7815\" y=\"-476.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = scandinavian</text>\n",
"</g>\n",
"<!-- 160&#45;&gt;164 -->\n",
"<g id=\"edge164\" class=\"edge\">\n",
"<title>160&#45;&gt;164</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M7751.204,-579.8796C7770.2696,-567.6158 7791.0719,-554.2348 7809.9346,-542.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"7811.9347,-544.9766 7818.4516,-536.623 7808.1478,-539.0893 7811.9347,-544.9766\"/>\n",
"</g>\n",
"<!-- 162 -->\n",
"<g id=\"node163\" class=\"node\">\n",
"<title>162</title>\n",
"<polygon fill=\"#e53986\" stroke=\"#000000\" points=\"7662.5,-417.5 7492.5,-417.5 7492.5,-349.5 7662.5,-349.5 7662.5,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"7548.5\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #162</text>\n",
"<text text-anchor=\"start\" x=\"7540.5\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 15</text>\n",
"<text text-anchor=\"start\" x=\"7500.5\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 0, 0, 15]</text>\n",
"<text text-anchor=\"start\" x=\"7523\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = uk&#45;and&#45;irish</text>\n",
"</g>\n",
"<!-- 161&#45;&gt;162 -->\n",
"<g id=\"edge162\" class=\"edge\">\n",
"<title>161&#45;&gt;162</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M7648.3771,-460.8796C7637.8014,-449.3337 7626.3188,-436.7976 7615.7367,-425.2446\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"7618.2667,-422.825 7608.9313,-417.8149 7613.1049,-427.5531 7618.2667,-422.825\"/>\n",
"</g>\n",
"<!-- 163 -->\n",
"<g id=\"node164\" class=\"node\">\n",
"<title>163</title>\n",
"<polygon fill=\"#39e54d\" stroke=\"#000000\" points=\"7844,-417.5 7681,-417.5 7681,-349.5 7844,-349.5 7844,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"7733.5\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #163</text>\n",
"<text text-anchor=\"start\" x=\"7729\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"7689\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"7724.5\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 161&#45;&gt;163 -->\n",
"<g id=\"edge163\" class=\"edge\">\n",
"<title>161&#45;&gt;163</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M7713.0811,-460.8796C7720.174,-449.7735 7727.8521,-437.7513 7734.9937,-426.5691\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"7738.1518,-428.1267 7740.5846,-417.8149 7732.2523,-424.3589 7738.1518,-428.1267\"/>\n",
"</g>\n",
"<!-- 167 -->\n",
"<g id=\"node168\" class=\"node\">\n",
"<title>167</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.776471\" stroke=\"#000000\" points=\"8141.5,-782 7971.5,-782 7971.5,-699 8141.5,-699 8141.5,-782\"/>\n",
"<text text-anchor=\"start\" x=\"8027.5\" y=\"-766.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #167</text>\n",
"<text text-anchor=\"start\" x=\"8021.5\" y=\"-751.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">smoke ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"8019.5\" y=\"-736.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 53</text>\n",
"<text text-anchor=\"start\" x=\"7979.5\" y=\"-721.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [42, 1, 4, 1, 0, 1, 4]</text>\n",
"<text text-anchor=\"start\" x=\"8018\" y=\"-706.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 166&#45;&gt;167 -->\n",
"<g id=\"edge167\" class=\"edge\">\n",
"<title>166&#45;&gt;167</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8056.5,-817.8796C8056.5,-809.6838 8056.5,-800.9891 8056.5,-792.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8060.0001,-792.298 8056.5,-782.2981 8053.0001,-792.2981 8060.0001,-792.298\"/>\n",
"</g>\n",
"<!-- 180 -->\n",
"<g id=\"node181\" class=\"node\">\n",
"<title>180</title>\n",
"<polygon fill=\"#3956e5\" stroke=\"#000000\" points=\"8323,-774.5 8160,-774.5 8160,-706.5 8323,-706.5 8323,-774.5\"/>\n",
"<text text-anchor=\"start\" x=\"8212.5\" y=\"-759.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #180</text>\n",
"<text text-anchor=\"start\" x=\"8208\" y=\"-744.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"8168\" y=\"-729.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 2, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"8185\" y=\"-714.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = scandinavian</text>\n",
"</g>\n",
"<!-- 166&#45;&gt;180 -->\n",
"<g id=\"edge180\" class=\"edge\">\n",
"<title>166&#45;&gt;180</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8121.204,-817.8796C8140.2696,-805.6158 8161.0719,-792.2348 8179.9346,-780.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8181.9347,-782.9766 8188.4516,-774.623 8178.1478,-777.0893 8181.9347,-782.9766\"/>\n",
"</g>\n",
"<!-- 168 -->\n",
"<g id=\"node169\" class=\"node\">\n",
"<title>168</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.792157\" stroke=\"#000000\" points=\"8141.5,-663 7971.5,-663 7971.5,-580 8141.5,-580 8141.5,-663\"/>\n",
"<text text-anchor=\"start\" x=\"8027.5\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #168</text>\n",
"<text text-anchor=\"start\" x=\"8021.5\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">squash ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"8019.5\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 52</text>\n",
"<text text-anchor=\"start\" x=\"7979.5\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [42, 1, 4, 1, 0, 0, 4]</text>\n",
"<text text-anchor=\"start\" x=\"8018\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 167&#45;&gt;168 -->\n",
"<g id=\"edge168\" class=\"edge\">\n",
"<title>167&#45;&gt;168</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8056.5,-698.8796C8056.5,-690.6838 8056.5,-681.9891 8056.5,-673.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8060.0001,-673.298 8056.5,-663.2981 8053.0001,-673.2981 8060.0001,-673.298\"/>\n",
"</g>\n",
"<!-- 179 -->\n",
"<g id=\"node180\" class=\"node\">\n",
"<title>179</title>\n",
"<polygon fill=\"#b139e5\" stroke=\"#000000\" points=\"8325,-655.5 8160,-655.5 8160,-587.5 8325,-587.5 8325,-655.5\"/>\n",
"<text text-anchor=\"start\" x=\"8213.5\" y=\"-640.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #179</text>\n",
"<text text-anchor=\"start\" x=\"8209\" y=\"-625.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"8169\" y=\"-610.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"8168\" y=\"-595.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 167&#45;&gt;179 -->\n",
"<g id=\"edge179\" class=\"edge\">\n",
"<title>167&#45;&gt;179</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8121.5538,-698.8796C8140.7224,-686.6158 8161.6371,-673.2348 8180.6018,-661.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8182.6275,-663.9606 8189.1648,-655.623 8178.855,-658.0641 8182.6275,-663.9606\"/>\n",
"</g>\n",
"<!-- 169 -->\n",
"<g id=\"node170\" class=\"node\">\n",
"<title>169</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.807843\" stroke=\"#000000\" points=\"8141.5,-544 7971.5,-544 7971.5,-461 8141.5,-461 8141.5,-544\"/>\n",
"<text text-anchor=\"start\" x=\"8027.5\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #169</text>\n",
"<text text-anchor=\"start\" x=\"8025\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">apple ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"8019.5\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 51</text>\n",
"<text text-anchor=\"start\" x=\"7979.5\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [42, 1, 4, 0, 0, 0, 4]</text>\n",
"<text text-anchor=\"start\" x=\"8018\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 168&#45;&gt;169 -->\n",
"<g id=\"edge169\" class=\"edge\">\n",
"<title>168&#45;&gt;169</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8056.5,-579.8796C8056.5,-571.6838 8056.5,-562.9891 8056.5,-554.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8060.0001,-554.298 8056.5,-544.2981 8053.0001,-554.2981 8060.0001,-554.298\"/>\n",
"</g>\n",
"<!-- 178 -->\n",
"<g id=\"node179\" class=\"node\">\n",
"<title>178</title>\n",
"<polygon fill=\"#39e5e2\" stroke=\"#000000\" points=\"8323,-536.5 8160,-536.5 8160,-468.5 8323,-468.5 8323,-536.5\"/>\n",
"<text text-anchor=\"start\" x=\"8212.5\" y=\"-521.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #178</text>\n",
"<text text-anchor=\"start\" x=\"8208\" y=\"-506.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"8168\" y=\"-491.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 1, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"8202.5\" y=\"-476.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = jewish</text>\n",
"</g>\n",
"<!-- 168&#45;&gt;178 -->\n",
"<g id=\"edge178\" class=\"edge\">\n",
"<title>168&#45;&gt;178</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8121.204,-579.8796C8140.2696,-567.6158 8161.0719,-554.2348 8179.9346,-542.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8181.9347,-544.9766 8188.4516,-536.623 8178.1478,-539.0893 8181.9347,-544.9766\"/>\n",
"</g>\n",
"<!-- 170 -->\n",
"<g id=\"node171\" class=\"node\">\n",
"<title>170</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.827451\" stroke=\"#000000\" points=\"8058.5,-425 7888.5,-425 7888.5,-342 8058.5,-342 8058.5,-425\"/>\n",
"<text text-anchor=\"start\" x=\"7944.5\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #170</text>\n",
"<text text-anchor=\"start\" x=\"7916\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cane_molasses ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"7936.5\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 50</text>\n",
"<text text-anchor=\"start\" x=\"7896.5\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [42, 1, 4, 0, 0, 0, 3]</text>\n",
"<text text-anchor=\"start\" x=\"7935\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 169&#45;&gt;170 -->\n",
"<g id=\"edge170\" class=\"edge\">\n",
"<title>169&#45;&gt;170</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8027.4706,-460.8796C8021.3145,-452.0534 8014.7549,-442.6485 8008.4064,-433.5466\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8011.2448,-431.4978 8002.6533,-425.2981 8005.5033,-435.5024 8011.2448,-431.4978\"/>\n",
"</g>\n",
"<!-- 177 -->\n",
"<g id=\"node178\" class=\"node\">\n",
"<title>177</title>\n",
"<polygon fill=\"#e53986\" stroke=\"#000000\" points=\"8240,-417.5 8077,-417.5 8077,-349.5 8240,-349.5 8240,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"8129.5\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #177</text>\n",
"<text text-anchor=\"start\" x=\"8125\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"8085\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"8104\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = uk&#45;and&#45;irish</text>\n",
"</g>\n",
"<!-- 169&#45;&gt;177 -->\n",
"<g id=\"edge177\" class=\"edge\">\n",
"<title>169&#45;&gt;177</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8092.1747,-460.8796C8101.9769,-449.4436 8112.6118,-437.0363 8122.4357,-425.575\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8125.2367,-427.6853 8129.0872,-417.8149 8119.9218,-423.1297 8125.2367,-427.6853\"/>\n",
"</g>\n",
"<!-- 171 -->\n",
"<g id=\"node172\" class=\"node\">\n",
"<title>171</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.843137\" stroke=\"#000000\" points=\"7946.5,-306 7776.5,-306 7776.5,-223 7946.5,-223 7946.5,-306\"/>\n",
"<text text-anchor=\"start\" x=\"7832.5\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #171</text>\n",
"<text text-anchor=\"start\" x=\"7814\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cured_pork ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"7824.5\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 49</text>\n",
"<text text-anchor=\"start\" x=\"7784.5\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [42, 1, 4, 0, 0, 0, 2]</text>\n",
"<text text-anchor=\"start\" x=\"7823\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 170&#45;&gt;171 -->\n",
"<g id=\"edge171\" class=\"edge\">\n",
"<title>170&#45;&gt;171</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M7934.3278,-341.8796C7925.7665,-332.7832 7916.6268,-323.0722 7907.8168,-313.7116\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"7910.2417,-311.1813 7900.8394,-306.2981 7905.1443,-315.9789 7910.2417,-311.1813\"/>\n",
"</g>\n",
"<!-- 176 -->\n",
"<g id=\"node177\" class=\"node\">\n",
"<title>176</title>\n",
"<polygon fill=\"#e53986\" stroke=\"#000000\" points=\"8128,-298.5 7965,-298.5 7965,-230.5 8128,-230.5 8128,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"8017.5\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #176</text>\n",
"<text text-anchor=\"start\" x=\"8013\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"7973\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"7992\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = uk&#45;and&#45;irish</text>\n",
"</g>\n",
"<!-- 170&#45;&gt;176 -->\n",
"<g id=\"edge176\" class=\"edge\">\n",
"<title>170&#45;&gt;176</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M7999.0319,-341.8796C8005.8448,-330.7735 8013.2198,-318.7513 8020.0794,-307.5691\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8023.204,-309.1691 8025.4497,-298.8149 8017.2372,-305.5087 8023.204,-309.1691\"/>\n",
"</g>\n",
"<!-- 172 -->\n",
"<g id=\"node173\" class=\"node\">\n",
"<title>172</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.866667\" stroke=\"#000000\" points=\"7898,-187 7707,-187 7707,-104 7898,-104 7898,-187\"/>\n",
"<text text-anchor=\"start\" x=\"7773.5\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #172</text>\n",
"<text text-anchor=\"start\" x=\"7715\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cabernet_sauvignon_wine ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"7765.5\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 48</text>\n",
"<text text-anchor=\"start\" x=\"7725.5\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [42, 1, 3, 0, 0, 0, 2]</text>\n",
"<text text-anchor=\"start\" x=\"7764\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 171&#45;&gt;172 -->\n",
"<g id=\"edge172\" class=\"edge\">\n",
"<title>171&#45;&gt;172</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M7840.8647,-222.8796C7836.6226,-214.3236 7832.111,-205.2238 7827.7279,-196.3833\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"7830.8012,-194.7026 7823.2234,-187.2981 7824.5297,-197.8121 7830.8012,-194.7026\"/>\n",
"</g>\n",
"<!-- 175 -->\n",
"<g id=\"node176\" class=\"node\">\n",
"<title>175</title>\n",
"<polygon fill=\"#39e54d\" stroke=\"#000000\" points=\"8079,-179.5 7916,-179.5 7916,-111.5 8079,-111.5 8079,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"7968.5\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #175</text>\n",
"<text text-anchor=\"start\" x=\"7964\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"7924\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"7959.5\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 171&#45;&gt;175 -->\n",
"<g id=\"edge175\" class=\"edge\">\n",
"<title>171&#45;&gt;175</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M7909.0662,-222.8796C7922.5128,-211.1138 7937.1347,-198.3197 7950.5451,-186.5855\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"7953.0619,-189.034 7958.2829,-179.8149 7948.4524,-183.766 7953.0619,-189.034\"/>\n",
"</g>\n",
"<!-- 173 -->\n",
"<g id=\"node174\" class=\"node\">\n",
"<title>173</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.890196\" stroke=\"#000000\" points=\"7833.5,-68 7663.5,-68 7663.5,0 7833.5,0 7833.5,-68\"/>\n",
"<text text-anchor=\"start\" x=\"7719.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #173</text>\n",
"<text text-anchor=\"start\" x=\"7711.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 47</text>\n",
"<text text-anchor=\"start\" x=\"7671.5\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [42, 1, 2, 0, 0, 0, 2]</text>\n",
"<text text-anchor=\"start\" x=\"7710\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 172&#45;&gt;173 -->\n",
"<g id=\"edge173\" class=\"edge\">\n",
"<title>172&#45;&gt;173</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M7782.3924,-103.9815C7778.2084,-95.3423 7773.7877,-86.2144 7769.5701,-77.5059\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"7772.6029,-75.7382 7765.0941,-68.2637 7766.3029,-78.7893 7772.6029,-75.7382\"/>\n",
"</g>\n",
"<!-- 174 -->\n",
"<g id=\"node175\" class=\"node\">\n",
"<title>174</title>\n",
"<polygon fill=\"#39e54d\" stroke=\"#000000\" points=\"8015,-68 7852,-68 7852,0 8015,0 8015,-68\"/>\n",
"<text text-anchor=\"start\" x=\"7904.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #174</text>\n",
"<text text-anchor=\"start\" x=\"7900\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"7860\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"7895.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 172&#45;&gt;174 -->\n",
"<g id=\"edge174\" class=\"edge\">\n",
"<title>172&#45;&gt;174</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M7851.2796,-103.9815C7862.4015,-94.5151 7874.2128,-84.462 7885.3099,-75.0168\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"7887.8975,-77.4105 7893.244,-68.2637 7883.3604,-72.08 7887.8975,-77.4105\"/>\n",
"</g>\n",
"<!-- 182 -->\n",
"<g id=\"node183\" class=\"node\">\n",
"<title>182</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.823529\" stroke=\"#000000\" points=\"8839.5,-1020 8669.5,-1020 8669.5,-937 8839.5,-937 8839.5,-1020\"/>\n",
"<text text-anchor=\"start\" x=\"8725.5\" y=\"-1004.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #182</text>\n",
"<text text-anchor=\"start\" x=\"8717\" y=\"-989.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cilantro ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"8717.5\" y=\"-974.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 81</text>\n",
"<text text-anchor=\"start\" x=\"8677.5\" y=\"-959.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [68, 1, 7, 1, 1, 1, 2]</text>\n",
"<text text-anchor=\"start\" x=\"8716\" y=\"-944.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 181&#45;&gt;182 -->\n",
"<g id=\"edge182\" class=\"edge\">\n",
"<title>181&#45;&gt;182</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8814.3229,-1055.8796C8807.4296,-1046.9633 8800.0798,-1037.4565 8792.9761,-1028.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8795.6999,-1026.0687 8786.8145,-1020.2981 8790.1619,-1030.3502 8795.6999,-1026.0687\"/>\n",
"</g>\n",
"<!-- 201 -->\n",
"<g id=\"node202\" class=\"node\">\n",
"<title>201</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.498039\" stroke=\"#000000\" points=\"9021,-1020 8858,-1020 8858,-937 9021,-937 9021,-1020\"/>\n",
"<text text-anchor=\"start\" x=\"8910.5\" y=\"-1004.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #201</text>\n",
"<text text-anchor=\"start\" x=\"8889\" y=\"-989.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">lemon_juice ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"8906\" y=\"-974.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 6</text>\n",
"<text text-anchor=\"start\" x=\"8866\" y=\"-959.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 4, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"8901.5\" y=\"-944.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 181&#45;&gt;201 -->\n",
"<g id=\"edge201\" class=\"edge\">\n",
"<title>181&#45;&gt;201</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8879.0269,-1055.8796C8885.9951,-1046.9633 8893.4247,-1037.4565 8900.6056,-1028.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8903.4343,-1030.3326 8906.8343,-1020.2981 8897.9188,-1026.0221 8903.4343,-1030.3326\"/>\n",
"</g>\n",
"<!-- 183 -->\n",
"<g id=\"node184\" class=\"node\">\n",
"<title>183</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.847059\" stroke=\"#000000\" points=\"8656.5,-901 8486.5,-901 8486.5,-818 8656.5,-818 8656.5,-901\"/>\n",
"<text text-anchor=\"start\" x=\"8542.5\" y=\"-885.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #183</text>\n",
"<text text-anchor=\"start\" x=\"8541.5\" y=\"-870.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">wine ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"8534.5\" y=\"-855.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 79</text>\n",
"<text text-anchor=\"start\" x=\"8494.5\" y=\"-840.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [68, 1, 7, 1, 0, 0, 2]</text>\n",
"<text text-anchor=\"start\" x=\"8533\" y=\"-825.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 182&#45;&gt;183 -->\n",
"<g id=\"edge183\" class=\"edge\">\n",
"<title>182&#45;&gt;183</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8690.4955,-936.8796C8675.4505,-927.0962 8659.3121,-916.6019 8643.9267,-906.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8645.7598,-903.6143 8635.4684,-901.0969 8641.9437,-909.4827 8645.7598,-903.6143\"/>\n",
"</g>\n",
"<!-- 200 -->\n",
"<g id=\"node201\" class=\"node\">\n",
"<title>200</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"8838,-893.5 8675,-893.5 8675,-825.5 8838,-825.5 8838,-893.5\"/>\n",
"<text text-anchor=\"start\" x=\"8727.5\" y=\"-878.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #200</text>\n",
"<text text-anchor=\"start\" x=\"8723\" y=\"-863.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"8683\" y=\"-848.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 1, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"8700\" y=\"-833.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = scandinavian</text>\n",
"</g>\n",
"<!-- 182&#45;&gt;200 -->\n",
"<g id=\"edge200\" class=\"edge\">\n",
"<title>182&#45;&gt;200</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8755.1995,-936.8796C8755.3788,-926.2134 8755.5722,-914.7021 8755.7538,-903.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8759.2546,-903.8724 8755.9233,-893.8149 8752.2556,-903.7547 8759.2546,-903.8724\"/>\n",
"</g>\n",
"<!-- 184 -->\n",
"<g id=\"node185\" class=\"node\">\n",
"<title>184</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.882353\" stroke=\"#000000\" points=\"8656.5,-782 8486.5,-782 8486.5,-699 8656.5,-699 8656.5,-782\"/>\n",
"<text text-anchor=\"start\" x=\"8542.5\" y=\"-766.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #184</text>\n",
"<text text-anchor=\"start\" x=\"8526.5\" y=\"-751.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">sauerkraut ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"8534.5\" y=\"-736.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 73</text>\n",
"<text text-anchor=\"start\" x=\"8494.5\" y=\"-721.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [65, 1, 4, 1, 0, 0, 2]</text>\n",
"<text text-anchor=\"start\" x=\"8533\" y=\"-706.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 183&#45;&gt;184 -->\n",
"<g id=\"edge184\" class=\"edge\">\n",
"<title>183&#45;&gt;184</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8571.5,-817.8796C8571.5,-809.6838 8571.5,-800.9891 8571.5,-792.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8575.0001,-792.298 8571.5,-782.2981 8568.0001,-792.2981 8575.0001,-792.298\"/>\n",
"</g>\n",
"<!-- 197 -->\n",
"<g id=\"node198\" class=\"node\">\n",
"<title>197</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"8876,-782 8713,-782 8713,-699 8876,-699 8876,-782\"/>\n",
"<text text-anchor=\"start\" x=\"8765.5\" y=\"-766.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #197</text>\n",
"<text text-anchor=\"start\" x=\"8768\" y=\"-751.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">egg ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"8761\" y=\"-736.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 6</text>\n",
"<text text-anchor=\"start\" x=\"8721\" y=\"-721.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 3, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"8756\" y=\"-706.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 183&#45;&gt;197 -->\n",
"<g id=\"edge197\" class=\"edge\">\n",
"<title>183&#45;&gt;197</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8649.4946,-817.8796C8668.2525,-807.8697 8688.4052,-797.1156 8707.5428,-786.9031\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8709.3748,-789.8928 8716.5495,-782.0969 8706.0792,-783.7171 8709.3748,-789.8928\"/>\n",
"</g>\n",
"<!-- 185 -->\n",
"<g id=\"node186\" class=\"node\">\n",
"<title>185</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.898039\" stroke=\"#000000\" points=\"8513.5,-663 8343.5,-663 8343.5,-580 8513.5,-580 8513.5,-663\"/>\n",
"<text text-anchor=\"start\" x=\"8399.5\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #185</text>\n",
"<text text-anchor=\"start\" x=\"8389\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">whiskey ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"8391.5\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 72</text>\n",
"<text text-anchor=\"start\" x=\"8351.5\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [65, 0, 4, 1, 0, 0, 2]</text>\n",
"<text text-anchor=\"start\" x=\"8390\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 184&#45;&gt;185 -->\n",
"<g id=\"edge185\" class=\"edge\">\n",
"<title>184&#45;&gt;185</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8521.4855,-698.8796C8510.2299,-689.513 8498.1912,-679.4948 8486.6354,-669.8784\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8488.6534,-667.0043 8478.7279,-663.2981 8484.1758,-672.385 8488.6534,-667.0043\"/>\n",
"</g>\n",
"<!-- 196 -->\n",
"<g id=\"node197\" class=\"node\">\n",
"<title>196</title>\n",
"<polygon fill=\"#b7e539\" stroke=\"#000000\" points=\"8695,-655.5 8532,-655.5 8532,-587.5 8695,-587.5 8695,-655.5\"/>\n",
"<text text-anchor=\"start\" x=\"8584.5\" y=\"-640.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #196</text>\n",
"<text text-anchor=\"start\" x=\"8580\" y=\"-625.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"8540\" y=\"-610.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 1, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"8571.5\" y=\"-595.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = german</text>\n",
"</g>\n",
"<!-- 184&#45;&gt;196 -->\n",
"<g id=\"edge196\" class=\"edge\">\n",
"<title>184&#45;&gt;196</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8586.1896,-698.8796C8589.9929,-688.1034 8594.1007,-676.4647 8597.9467,-665.5677\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8601.361,-666.4097 8601.3888,-655.8149 8594.7601,-664.08 8601.361,-666.4097\"/>\n",
"</g>\n",
"<!-- 186 -->\n",
"<g id=\"node187\" class=\"node\">\n",
"<title>186</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.909804\" stroke=\"#000000\" points=\"8512.5,-544 8342.5,-544 8342.5,-461 8512.5,-461 8512.5,-544\"/>\n",
"<text text-anchor=\"start\" x=\"8398.5\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #186</text>\n",
"<text text-anchor=\"start\" x=\"8374\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">pork_sausage ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"8390.5\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 71</text>\n",
"<text text-anchor=\"start\" x=\"8350.5\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [65, 0, 4, 1, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"8389\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 185&#45;&gt;186 -->\n",
"<g id=\"edge186\" class=\"edge\">\n",
"<title>185&#45;&gt;186</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8428.1502,-579.8796C8428.0814,-571.6838 8428.0083,-562.9891 8427.937,-554.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8431.4352,-554.2683 8427.8512,-544.2981 8424.4355,-554.3272 8431.4352,-554.2683\"/>\n",
"</g>\n",
"<!-- 195 -->\n",
"<g id=\"node196\" class=\"node\">\n",
"<title>195</title>\n",
"<polygon fill=\"#e53986\" stroke=\"#000000\" points=\"8694,-536.5 8531,-536.5 8531,-468.5 8694,-468.5 8694,-536.5\"/>\n",
"<text text-anchor=\"start\" x=\"8583.5\" y=\"-521.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #195</text>\n",
"<text text-anchor=\"start\" x=\"8579\" y=\"-506.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"8539\" y=\"-491.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"8558\" y=\"-476.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = uk&#45;and&#45;irish</text>\n",
"</g>\n",
"<!-- 185&#45;&gt;195 -->\n",
"<g id=\"edge195\" class=\"edge\">\n",
"<title>185&#45;&gt;195</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8492.8543,-579.8796C8511.8167,-567.6158 8532.5066,-554.2348 8551.2674,-542.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8553.2421,-544.9926 8559.7383,-536.623 8549.4407,-539.1148 8553.2421,-544.9926\"/>\n",
"</g>\n",
"<!-- 187 -->\n",
"<g id=\"node188\" class=\"node\">\n",
"<title>187</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.925490\" stroke=\"#000000\" points=\"8430.5,-425 8260.5,-425 8260.5,-342 8430.5,-342 8430.5,-425\"/>\n",
"<text text-anchor=\"start\" x=\"8316.5\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #187</text>\n",
"<text text-anchor=\"start\" x=\"8295.5\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">blue_cheese ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"8308.5\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 70</text>\n",
"<text text-anchor=\"start\" x=\"8268.5\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [65, 0, 3, 1, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"8307\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 186&#45;&gt;187 -->\n",
"<g id=\"edge187\" class=\"edge\">\n",
"<title>186&#45;&gt;187</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8398.8204,-460.8796C8392.7385,-452.0534 8386.2578,-442.6485 8379.9859,-433.5466\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8382.8582,-431.5465 8374.302,-425.2981 8377.0941,-435.5184 8382.8582,-431.5465\"/>\n",
"</g>\n",
"<!-- 194 -->\n",
"<g id=\"node195\" class=\"node\">\n",
"<title>194</title>\n",
"<polygon fill=\"#39e54d\" stroke=\"#000000\" points=\"8612,-417.5 8449,-417.5 8449,-349.5 8612,-349.5 8612,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"8501.5\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #194</text>\n",
"<text text-anchor=\"start\" x=\"8497\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"8457\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"8492.5\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 186&#45;&gt;194 -->\n",
"<g id=\"edge194\" class=\"edge\">\n",
"<title>186&#45;&gt;194</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8463.5244,-460.8796C8473.4227,-449.4436 8484.1619,-437.0363 8494.0822,-425.575\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8496.9007,-427.6666 8500.7988,-417.8149 8491.6079,-423.0855 8496.9007,-427.6666\"/>\n",
"</g>\n",
"<!-- 188 -->\n",
"<g id=\"node189\" class=\"node\">\n",
"<title>188</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.941176\" stroke=\"#000000\" points=\"8321.5,-306 8151.5,-306 8151.5,-223 8321.5,-223 8321.5,-306\"/>\n",
"<text text-anchor=\"start\" x=\"8207.5\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #188</text>\n",
"<text text-anchor=\"start\" x=\"8188\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">bell_pepper ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"8199.5\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 69</text>\n",
"<text text-anchor=\"start\" x=\"8159.5\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [65, 0, 2, 1, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"8198\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 187&#45;&gt;188 -->\n",
"<g id=\"edge188\" class=\"edge\">\n",
"<title>187&#45;&gt;188</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8307.3771,-341.8796C8299.0451,-332.7832 8290.1502,-323.0722 8281.5761,-313.7116\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8284.1211,-311.3081 8274.7856,-306.2981 8278.9592,-316.0363 8284.1211,-311.3081\"/>\n",
"</g>\n",
"<!-- 193 -->\n",
"<g id=\"node194\" class=\"node\">\n",
"<title>193</title>\n",
"<polygon fill=\"#39e54d\" stroke=\"#000000\" points=\"8503,-298.5 8340,-298.5 8340,-230.5 8503,-230.5 8503,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"8392.5\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #193</text>\n",
"<text text-anchor=\"start\" x=\"8388\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"8348\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"8383.5\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 187&#45;&gt;193 -->\n",
"<g id=\"edge193\" class=\"edge\">\n",
"<title>187&#45;&gt;193</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8372.0811,-341.8796C8379.174,-330.7735 8386.8521,-318.7513 8393.9937,-307.5691\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8397.1518,-309.1267 8399.5846,-298.8149 8391.2523,-305.3589 8397.1518,-309.1267\"/>\n",
"</g>\n",
"<!-- 189 -->\n",
"<g id=\"node190\" class=\"node\">\n",
"<title>189</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.956863\" stroke=\"#000000\" points=\"8321.5,-187 8151.5,-187 8151.5,-104 8321.5,-104 8321.5,-187\"/>\n",
"<text text-anchor=\"start\" x=\"8207.5\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #189</text>\n",
"<text text-anchor=\"start\" x=\"8189\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cured_pork ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"8199.5\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 68</text>\n",
"<text text-anchor=\"start\" x=\"8159.5\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [65, 0, 1, 1, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"8198\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 188&#45;&gt;189 -->\n",
"<g id=\"edge189\" class=\"edge\">\n",
"<title>188&#45;&gt;189</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8236.5,-222.8796C8236.5,-214.6838 8236.5,-205.9891 8236.5,-197.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8240.0001,-197.298 8236.5,-187.2981 8233.0001,-197.2981 8240.0001,-197.298\"/>\n",
"</g>\n",
"<!-- 192 -->\n",
"<g id=\"node193\" class=\"node\">\n",
"<title>192</title>\n",
"<polygon fill=\"#39e54d\" stroke=\"#000000\" points=\"8503,-179.5 8340,-179.5 8340,-111.5 8503,-111.5 8503,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"8392.5\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #192</text>\n",
"<text text-anchor=\"start\" x=\"8388\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"8348\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"8383.5\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 188&#45;&gt;192 -->\n",
"<g id=\"edge192\" class=\"edge\">\n",
"<title>188&#45;&gt;192</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8301.204,-222.8796C8320.2696,-210.6158 8341.0719,-197.2348 8359.9346,-185.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8361.9347,-187.9766 8368.4516,-179.623 8358.1478,-182.0893 8361.9347,-187.9766\"/>\n",
"</g>\n",
"<!-- 190 -->\n",
"<g id=\"node191\" class=\"node\">\n",
"<title>190</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.968627\" stroke=\"#000000\" points=\"8210.5,-68 8040.5,-68 8040.5,0 8210.5,0 8210.5,-68\"/>\n",
"<text text-anchor=\"start\" x=\"8096.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #190</text>\n",
"<text text-anchor=\"start\" x=\"8088.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 67</text>\n",
"<text text-anchor=\"start\" x=\"8048.5\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [65, 0, 0, 1, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"8087\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 189&#45;&gt;190 -->\n",
"<g id=\"edge190\" class=\"edge\">\n",
"<title>189&#45;&gt;190</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8195.1677,-103.9815C8185.9267,-94.6989 8176.1242,-84.8522 8166.8813,-75.5677\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8169.1457,-72.8813 8159.61,-68.2637 8164.1848,-77.82 8169.1457,-72.8813\"/>\n",
"</g>\n",
"<!-- 191 -->\n",
"<g id=\"node192\" class=\"node\">\n",
"<title>191</title>\n",
"<polygon fill=\"#39e54d\" stroke=\"#000000\" points=\"8392,-68 8229,-68 8229,0 8392,0 8392,-68\"/>\n",
"<text text-anchor=\"start\" x=\"8281.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #191</text>\n",
"<text text-anchor=\"start\" x=\"8277\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"8237\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"8272.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 189&#45;&gt;191 -->\n",
"<g id=\"edge191\" class=\"edge\">\n",
"<title>189&#45;&gt;191</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8264.0549,-103.9815C8269.9715,-95.0666 8276.2335,-85.6313 8282.1787,-76.6734\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8285.1464,-78.5311 8287.76,-68.2637 8279.314,-74.6602 8285.1464,-78.5311\"/>\n",
"</g>\n",
"<!-- 198 -->\n",
"<g id=\"node199\" class=\"node\">\n",
"<title>198</title>\n",
"<polygon fill=\"#39e54d\" stroke=\"#000000\" points=\"8876,-655.5 8713,-655.5 8713,-587.5 8876,-587.5 8876,-655.5\"/>\n",
"<text text-anchor=\"start\" x=\"8765.5\" y=\"-640.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #198</text>\n",
"<text text-anchor=\"start\" x=\"8761\" y=\"-625.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"8721\" y=\"-610.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 3, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"8756.5\" y=\"-595.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 197&#45;&gt;198 -->\n",
"<g id=\"edge198\" class=\"edge\">\n",
"<title>197&#45;&gt;198</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8794.5,-698.8796C8794.5,-688.2134 8794.5,-676.7021 8794.5,-665.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8798.0001,-665.8149 8794.5,-655.8149 8791.0001,-665.815 8798.0001,-665.8149\"/>\n",
"</g>\n",
"<!-- 199 -->\n",
"<g id=\"node200\" class=\"node\">\n",
"<title>199</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"9057,-655.5 8894,-655.5 8894,-587.5 9057,-587.5 9057,-655.5\"/>\n",
"<text text-anchor=\"start\" x=\"8946.5\" y=\"-640.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #199</text>\n",
"<text text-anchor=\"start\" x=\"8942\" y=\"-625.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"8902\" y=\"-610.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"8937\" y=\"-595.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 197&#45;&gt;199 -->\n",
"<g id=\"edge199\" class=\"edge\">\n",
"<title>197&#45;&gt;199</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8857.805,-698.8796C8876.2903,-686.7263 8896.4443,-673.4759 8914.7665,-661.4297\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8917.1655,-664.0412 8923.5986,-655.623 8913.3199,-658.1921 8917.1655,-664.0412\"/>\n",
"</g>\n",
"<!-- 202 -->\n",
"<g id=\"node203\" class=\"node\">\n",
"<title>202</title>\n",
"<polygon fill=\"#39e54d\" stroke=\"#000000\" points=\"9019,-893.5 8856,-893.5 8856,-825.5 9019,-825.5 9019,-893.5\"/>\n",
"<text text-anchor=\"start\" x=\"8908.5\" y=\"-878.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #202</text>\n",
"<text text-anchor=\"start\" x=\"8904\" y=\"-863.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"8864\" y=\"-848.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 3, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"8899.5\" y=\"-833.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 201&#45;&gt;202 -->\n",
"<g id=\"edge202\" class=\"edge\">\n",
"<title>201&#45;&gt;202</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8938.8005,-936.8796C8938.6212,-926.2134 8938.4278,-914.7021 8938.2462,-903.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8941.7444,-903.7547 8938.0767,-893.8149 8934.7454,-903.8724 8941.7444,-903.7547\"/>\n",
"</g>\n",
"<!-- 203 -->\n",
"<g id=\"node204\" class=\"node\">\n",
"<title>203</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.498039\" stroke=\"#000000\" points=\"9200,-893.5 9037,-893.5 9037,-825.5 9200,-825.5 9200,-893.5\"/>\n",
"<text text-anchor=\"start\" x=\"9089.5\" y=\"-878.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #203</text>\n",
"<text text-anchor=\"start\" x=\"9085\" y=\"-863.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"9045\" y=\"-848.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"9080\" y=\"-833.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 201&#45;&gt;203 -->\n",
"<g id=\"edge203\" class=\"edge\">\n",
"<title>201&#45;&gt;203</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9002.1055,-936.8796C9020.3865,-924.7263 9040.3178,-911.4759 9058.4376,-899.4297\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9060.7821,-902.074 9067.1721,-893.623 9056.9067,-896.2447 9060.7821,-902.074\"/>\n",
"</g>\n",
"<!-- 205 -->\n",
"<g id=\"node206\" class=\"node\">\n",
"<title>205</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.282353\" stroke=\"#000000\" points=\"9859.5,-1139 9683.5,-1139 9683.5,-1056 9859.5,-1056 9859.5,-1139\"/>\n",
"<text text-anchor=\"start\" x=\"9742.5\" y=\"-1123.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #205</text>\n",
"<text text-anchor=\"start\" x=\"9726\" y=\"-1108.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">buttermilk ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"9731\" y=\"-1093.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 117</text>\n",
"<text text-anchor=\"start\" x=\"9691.5\" y=\"-1078.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [39, 4, 61, 0, 2, 8, 3]</text>\n",
"<text text-anchor=\"start\" x=\"9733.5\" y=\"-1063.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 204&#45;&gt;205 -->\n",
"<g id=\"edge205\" class=\"edge\">\n",
"<title>204&#45;&gt;205</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9889.8452,-1174.8796C9874.8824,-1165.0962 9858.8323,-1154.6019 9843.5309,-1144.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9845.4039,-1141.6401 9835.1188,-1139.0969 9841.5731,-1147.4989 9845.4039,-1141.6401\"/>\n",
"</g>\n",
"<!-- 236 -->\n",
"<g id=\"node237\" class=\"node\">\n",
"<title>236</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.890196\" stroke=\"#000000\" points=\"10134.5,-1139 9964.5,-1139 9964.5,-1056 10134.5,-1056 10134.5,-1139\"/>\n",
"<text text-anchor=\"start\" x=\"10020.5\" y=\"-1123.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #236</text>\n",
"<text text-anchor=\"start\" x=\"10018\" y=\"-1108.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">apple ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"10012.5\" y=\"-1093.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 59</text>\n",
"<text text-anchor=\"start\" x=\"9972.5\" y=\"-1078.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [4, 0, 53, 2, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"10011.5\" y=\"-1063.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 204&#45;&gt;236 -->\n",
"<g id=\"edge236\" class=\"edge\">\n",
"<title>204&#45;&gt;236</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9987.0761,-1174.8796C9994.2691,-1165.9633 10001.9384,-1156.4565 10009.351,-1147.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10012.2258,-1149.2788 10015.7805,-1139.2981 10006.7776,-1144.8836 10012.2258,-1149.2788\"/>\n",
"</g>\n",
"<!-- 206 -->\n",
"<g id=\"node207\" class=\"node\">\n",
"<title>206</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.019608\" stroke=\"#000000\" points=\"9582.5,-1020 9406.5,-1020 9406.5,-937 9582.5,-937 9582.5,-1020\"/>\n",
"<text text-anchor=\"start\" x=\"9465.5\" y=\"-1004.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #206</text>\n",
"<text text-anchor=\"start\" x=\"9435\" y=\"-989.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cheddar_cheese ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"9457.5\" y=\"-974.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 94</text>\n",
"<text text-anchor=\"start\" x=\"9414.5\" y=\"-959.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [38, 4, 39, 0, 2, 8, 3]</text>\n",
"<text text-anchor=\"start\" x=\"9456.5\" y=\"-944.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 205&#45;&gt;206 -->\n",
"<g id=\"edge206\" class=\"edge\">\n",
"<title>205&#45;&gt;206</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9683.4749,-1059.6841C9654.4567,-1047.2178 9622.0139,-1033.2803 9592.3111,-1020.5199\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9593.341,-1017.1531 9582.7714,-1016.4216 9590.5779,-1023.5847 9593.341,-1017.1531\"/>\n",
"</g>\n",
"<!-- 233 -->\n",
"<g id=\"node234\" class=\"node\">\n",
"<title>233</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.952941\" stroke=\"#000000\" points=\"9856.5,-1020 9686.5,-1020 9686.5,-937 9856.5,-937 9856.5,-1020\"/>\n",
"<text text-anchor=\"start\" x=\"9742.5\" y=\"-1004.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #233</text>\n",
"<text text-anchor=\"start\" x=\"9735.5\" y=\"-989.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">banana ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"9734.5\" y=\"-974.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 23</text>\n",
"<text text-anchor=\"start\" x=\"9694.5\" y=\"-959.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 22, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"9733.5\" y=\"-944.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 205&#45;&gt;233 -->\n",
"<g id=\"edge233\" class=\"edge\">\n",
"<title>205&#45;&gt;233</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9771.5,-1055.8796C9771.5,-1047.6838 9771.5,-1038.9891 9771.5,-1030.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9775.0001,-1030.298 9771.5,-1020.2981 9768.0001,-1030.2981 9775.0001,-1030.298\"/>\n",
"</g>\n",
"<!-- 207 -->\n",
"<g id=\"node208\" class=\"node\">\n",
"<title>207</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.019608\" stroke=\"#000000\" points=\"9394.5,-901 9218.5,-901 9218.5,-818 9394.5,-818 9394.5,-901\"/>\n",
"<text text-anchor=\"start\" x=\"9277.5\" y=\"-885.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #207</text>\n",
"<text text-anchor=\"start\" x=\"9271.5\" y=\"-870.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">quince ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"9269.5\" y=\"-855.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 91</text>\n",
"<text text-anchor=\"start\" x=\"9226.5\" y=\"-840.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [38, 1, 39, 0, 2, 8, 3]</text>\n",
"<text text-anchor=\"start\" x=\"9268.5\" y=\"-825.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 206&#45;&gt;207 -->\n",
"<g id=\"edge207\" class=\"edge\">\n",
"<title>206&#45;&gt;207</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9428.7467,-936.8796C9413.2906,-927.0962 9396.7113,-916.6019 9380.9055,-906.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9382.5377,-903.488 9372.2162,-901.0969 9378.7938,-909.4027 9382.5377,-903.488\"/>\n",
"</g>\n",
"<!-- 232 -->\n",
"<g id=\"node233\" class=\"node\">\n",
"<title>232</title>\n",
"<polygon fill=\"#b7e539\" stroke=\"#000000\" points=\"9576,-893.5 9413,-893.5 9413,-825.5 9576,-825.5 9576,-893.5\"/>\n",
"<text text-anchor=\"start\" x=\"9465.5\" y=\"-878.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #232</text>\n",
"<text text-anchor=\"start\" x=\"9461\" y=\"-863.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"9421\" y=\"-848.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 3, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"9452.5\" y=\"-833.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = german</text>\n",
"</g>\n",
"<!-- 206&#45;&gt;232 -->\n",
"<g id=\"edge232\" class=\"edge\">\n",
"<title>206&#45;&gt;232</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9494.5,-936.8796C9494.5,-926.2134 9494.5,-914.7021 9494.5,-903.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9498.0001,-903.8149 9494.5,-893.8149 9491.0001,-903.815 9498.0001,-903.8149\"/>\n",
"</g>\n",
"<!-- 208 -->\n",
"<g id=\"node209\" class=\"node\">\n",
"<title>208</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.019608\" stroke=\"#000000\" points=\"9336.5,-782 9160.5,-782 9160.5,-699 9336.5,-699 9336.5,-782\"/>\n",
"<text text-anchor=\"start\" x=\"9219.5\" y=\"-766.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #208</text>\n",
"<text text-anchor=\"start\" x=\"9216.5\" y=\"-751.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">bread ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"9211.5\" y=\"-736.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 88</text>\n",
"<text text-anchor=\"start\" x=\"9168.5\" y=\"-721.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [38, 1, 39, 0, 2, 5, 3]</text>\n",
"<text text-anchor=\"start\" x=\"9210.5\" y=\"-706.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 207&#45;&gt;208 -->\n",
"<g id=\"edge208\" class=\"edge\">\n",
"<title>207&#45;&gt;208</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9286.2144,-817.8796C9282.0443,-809.3236 9277.6091,-800.2238 9273.3003,-791.3833\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9276.3997,-789.7538 9268.8722,-782.2981 9270.1073,-792.8207 9276.3997,-789.7538\"/>\n",
"</g>\n",
"<!-- 231 -->\n",
"<g id=\"node232\" class=\"node\">\n",
"<title>231</title>\n",
"<polygon fill=\"#b139e5\" stroke=\"#000000\" points=\"9520,-774.5 9355,-774.5 9355,-706.5 9520,-706.5 9520,-774.5\"/>\n",
"<text text-anchor=\"start\" x=\"9408.5\" y=\"-759.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #231</text>\n",
"<text text-anchor=\"start\" x=\"9404\" y=\"-744.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"9364\" y=\"-729.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 0, 3, 0]</text>\n",
"<text text-anchor=\"start\" x=\"9363\" y=\"-714.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 207&#45;&gt;231 -->\n",
"<g id=\"edge231\" class=\"edge\">\n",
"<title>207&#45;&gt;231</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9352.3174,-817.8796C9365.2697,-806.1138 9379.354,-793.3197 9392.2714,-781.5855\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9394.6761,-784.1296 9399.7247,-774.8149 9389.9694,-778.9482 9394.6761,-784.1296\"/>\n",
"</g>\n",
"<!-- 209 -->\n",
"<g id=\"node210\" class=\"node\">\n",
"<title>209</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.215686\" stroke=\"#000000\" points=\"9317.5,-663 9141.5,-663 9141.5,-580 9317.5,-580 9317.5,-663\"/>\n",
"<text text-anchor=\"start\" x=\"9200.5\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #209</text>\n",
"<text text-anchor=\"start\" x=\"9190.5\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">mustard ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"9192.5\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 72</text>\n",
"<text text-anchor=\"start\" x=\"9149.5\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [26, 1, 36, 0, 1, 5, 3]</text>\n",
"<text text-anchor=\"start\" x=\"9191.5\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 208&#45;&gt;209 -->\n",
"<g id=\"edge209\" class=\"edge\">\n",
"<title>208&#45;&gt;209</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9241.8547,-698.8796C9240.5318,-690.5938 9239.1274,-681.798 9237.7581,-673.2216\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9241.2066,-672.6211 9236.1736,-663.2981 9234.2942,-673.7249 9241.2066,-672.6211\"/>\n",
"</g>\n",
"<!-- 224 -->\n",
"<g id=\"node225\" class=\"node\">\n",
"<title>224</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.694118\" stroke=\"#000000\" points=\"9538.5,-663 9368.5,-663 9368.5,-580 9538.5,-580 9538.5,-663\"/>\n",
"<text text-anchor=\"start\" x=\"9424.5\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #224</text>\n",
"<text text-anchor=\"start\" x=\"9420\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">fennel ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"9416.5\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 16</text>\n",
"<text text-anchor=\"start\" x=\"9376.5\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [12, 0, 3, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"9415\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 208&#45;&gt;224 -->\n",
"<g id=\"edge224\" class=\"edge\">\n",
"<title>208&#45;&gt;224</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9320.1991,-698.8796C9337.2088,-689.0056 9355.4661,-678.4075 9372.8448,-668.3193\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9374.9501,-671.1443 9381.8414,-663.0969 9371.4358,-665.0903 9374.9501,-671.1443\"/>\n",
"</g>\n",
"<!-- 210 -->\n",
"<g id=\"node211\" class=\"node\">\n",
"<title>210</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.341176\" stroke=\"#000000\" points=\"8994.5,-544 8818.5,-544 8818.5,-461 8994.5,-461 8994.5,-544\"/>\n",
"<text text-anchor=\"start\" x=\"8877.5\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #210</text>\n",
"<text text-anchor=\"start\" x=\"8873.5\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">bacon ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"8869.5\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 65</text>\n",
"<text text-anchor=\"start\" x=\"8826.5\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [21, 1, 36, 0, 0, 5, 2]</text>\n",
"<text text-anchor=\"start\" x=\"8868.5\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 209&#45;&gt;210 -->\n",
"<g id=\"edge210\" class=\"edge\">\n",
"<title>209&#45;&gt;210</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9141.2388,-588.9827C9098.7786,-573.3395 9047.7495,-554.5393 9004.1302,-538.469\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9005.2479,-535.1509 8994.6545,-534.978 9002.8279,-541.7193 9005.2479,-535.1509\"/>\n",
"</g>\n",
"<!-- 221 -->\n",
"<g id=\"node222\" class=\"node\">\n",
"<title>221</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.666667\" stroke=\"#000000\" points=\"9311,-544 9148,-544 9148,-461 9311,-461 9311,-544\"/>\n",
"<text text-anchor=\"start\" x=\"9200.5\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #221</text>\n",
"<text text-anchor=\"start\" x=\"9185.5\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">rye_bread ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"9196\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 7</text>\n",
"<text text-anchor=\"start\" x=\"9156\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [5, 0, 0, 0, 1, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"9191\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 209&#45;&gt;221 -->\n",
"<g id=\"edge221\" class=\"edge\">\n",
"<title>209&#45;&gt;221</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9229.5,-579.8796C9229.5,-571.6838 9229.5,-562.9891 9229.5,-554.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9233.0001,-554.298 9229.5,-544.2981 9226.0001,-554.2981 9233.0001,-554.298\"/>\n",
"</g>\n",
"<!-- 211 -->\n",
"<g id=\"node212\" class=\"node\">\n",
"<title>211</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.407843\" stroke=\"#000000\" points=\"8806.5,-425 8630.5,-425 8630.5,-342 8806.5,-342 8806.5,-425\"/>\n",
"<text text-anchor=\"start\" x=\"8689.5\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #211</text>\n",
"<text text-anchor=\"start\" x=\"8686\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cocoa ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"8681.5\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 62</text>\n",
"<text text-anchor=\"start\" x=\"8638.5\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [18, 1, 36, 0, 0, 5, 2]</text>\n",
"<text text-anchor=\"start\" x=\"8680.5\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 210&#45;&gt;211 -->\n",
"<g id=\"edge211\" class=\"edge\">\n",
"<title>210&#45;&gt;211</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8840.7467,-460.8796C8825.2906,-451.0962 8808.7113,-440.6019 8792.9055,-430.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8794.5377,-427.488 8784.2162,-425.0969 8790.7938,-433.4027 8794.5377,-427.488\"/>\n",
"</g>\n",
"<!-- 220 -->\n",
"<g id=\"node221\" class=\"node\">\n",
"<title>220</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"8988,-417.5 8825,-417.5 8825,-349.5 8988,-349.5 8988,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"8877.5\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #220</text>\n",
"<text text-anchor=\"start\" x=\"8873\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"8833\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"8868\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 210&#45;&gt;220 -->\n",
"<g id=\"edge220\" class=\"edge\">\n",
"<title>210&#45;&gt;220</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8906.5,-460.8796C8906.5,-450.2134 8906.5,-438.7021 8906.5,-427.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8910.0001,-427.8149 8906.5,-417.8149 8903.0001,-427.815 8910.0001,-427.8149\"/>\n",
"</g>\n",
"<!-- 212 -->\n",
"<g id=\"node213\" class=\"node\">\n",
"<title>212</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.317647\" stroke=\"#000000\" points=\"8782.5,-306 8606.5,-306 8606.5,-223 8782.5,-223 8782.5,-306\"/>\n",
"<text text-anchor=\"start\" x=\"8665.5\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #212</text>\n",
"<text text-anchor=\"start\" x=\"8665.5\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">corn ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"8657.5\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 56</text>\n",
"<text text-anchor=\"start\" x=\"8614.5\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [18, 1, 30, 0, 0, 5, 2]</text>\n",
"<text text-anchor=\"start\" x=\"8656.5\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 211&#45;&gt;212 -->\n",
"<g id=\"edge212\" class=\"edge\">\n",
"<title>211&#45;&gt;212</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8710.106,-341.8796C8708.4349,-333.5938 8706.6609,-324.798 8704.9312,-316.2216\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8708.3379,-315.4087 8702.9299,-306.2981 8701.476,-316.7927 8708.3379,-315.4087\"/>\n",
"</g>\n",
"<!-- 219 -->\n",
"<g id=\"node220\" class=\"node\">\n",
"<title>219</title>\n",
"<polygon fill=\"#39e54d\" stroke=\"#000000\" points=\"8964,-298.5 8801,-298.5 8801,-230.5 8964,-230.5 8964,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"8853.5\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #219</text>\n",
"<text text-anchor=\"start\" x=\"8849\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 6</text>\n",
"<text text-anchor=\"start\" x=\"8809\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 6, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"8844.5\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 211&#45;&gt;219 -->\n",
"<g id=\"edge219\" class=\"edge\">\n",
"<title>211&#45;&gt;219</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8775.8592,-341.8796C8792.4561,-329.8368 8810.5375,-316.7167 8827.0176,-304.7586\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8829.4351,-307.3288 8835.4733,-298.623 8825.324,-301.6632 8829.4351,-307.3288\"/>\n",
"</g>\n",
"<!-- 213 -->\n",
"<g id=\"node214\" class=\"node\">\n",
"<title>213</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.168627\" stroke=\"#000000\" points=\"8770.5,-187 8594.5,-187 8594.5,-104 8770.5,-104 8770.5,-187\"/>\n",
"<text text-anchor=\"start\" x=\"8653.5\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #213</text>\n",
"<text text-anchor=\"start\" x=\"8655\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">lard ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"8645.5\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 48</text>\n",
"<text text-anchor=\"start\" x=\"8602.5\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [18, 1, 23, 0, 0, 4, 2]</text>\n",
"<text text-anchor=\"start\" x=\"8644.5\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 212&#45;&gt;213 -->\n",
"<g id=\"edge213\" class=\"edge\">\n",
"<title>212&#45;&gt;213</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8690.303,-222.8796C8689.4765,-214.6838 8688.5997,-205.9891 8687.7438,-197.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8691.2007,-196.8964 8686.7149,-187.2981 8684.236,-197.5988 8691.2007,-196.8964\"/>\n",
"</g>\n",
"<!-- 216 -->\n",
"<g id=\"node217\" class=\"node\">\n",
"<title>216</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.858824\" stroke=\"#000000\" points=\"8952,-187 8789,-187 8789,-104 8952,-104 8952,-187\"/>\n",
"<text text-anchor=\"start\" x=\"8841.5\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #216</text>\n",
"<text text-anchor=\"start\" x=\"8822\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">bell_pepper ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"8837\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 8</text>\n",
"<text text-anchor=\"start\" x=\"8797\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 7, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"8832.5\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 212&#45;&gt;216 -->\n",
"<g id=\"edge216\" class=\"edge\">\n",
"<title>212&#45;&gt;216</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8756.0563,-222.8796C8770.3918,-213.1868 8785.7595,-202.7961 8800.4325,-192.8752\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8802.6548,-195.5976 8808.9785,-187.0969 8798.7339,-189.7987 8802.6548,-195.5976\"/>\n",
"</g>\n",
"<!-- 214 -->\n",
"<g id=\"node215\" class=\"node\">\n",
"<title>214</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.298039\" stroke=\"#000000\" points=\"8588.5,-68 8412.5,-68 8412.5,0 8588.5,0 8588.5,-68\"/>\n",
"<text text-anchor=\"start\" x=\"8471.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #214</text>\n",
"<text text-anchor=\"start\" x=\"8463.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 44</text>\n",
"<text text-anchor=\"start\" x=\"8420.5\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [14, 1, 23, 0, 0, 4, 2]</text>\n",
"<text text-anchor=\"start\" x=\"8462.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 213&#45;&gt;214 -->\n",
"<g id=\"edge214\" class=\"edge\">\n",
"<title>213&#45;&gt;214</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8614.7299,-103.9815C8598.4427,-94.0034 8581.0915,-83.3733 8564.9597,-73.4904\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8566.493,-70.3252 8556.1375,-68.0856 8562.8362,-76.2941 8566.493,-70.3252\"/>\n",
"</g>\n",
"<!-- 215 -->\n",
"<g id=\"node216\" class=\"node\">\n",
"<title>215</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"8770,-68 8607,-68 8607,0 8770,0 8770,-68\"/>\n",
"<text text-anchor=\"start\" x=\"8659.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #215</text>\n",
"<text text-anchor=\"start\" x=\"8655\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 4</text>\n",
"<text text-anchor=\"start\" x=\"8615\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [4, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"8650\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 213&#45;&gt;215 -->\n",
"<g id=\"edge215\" class=\"edge\">\n",
"<title>213&#45;&gt;215</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8684.7342,-103.9815C8685.1842,-95.618 8685.6589,-86.7965 8686.1139,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8689.6137,-78.4373 8686.6562,-68.2637 8682.6238,-78.0611 8689.6137,-78.4373\"/>\n",
"</g>\n",
"<!-- 217 -->\n",
"<g id=\"node218\" class=\"node\">\n",
"<title>217</title>\n",
"<polygon fill=\"#39e54d\" stroke=\"#000000\" points=\"8952,-68 8789,-68 8789,0 8952,0 8952,-68\"/>\n",
"<text text-anchor=\"start\" x=\"8841.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #217</text>\n",
"<text text-anchor=\"start\" x=\"8837\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 7</text>\n",
"<text text-anchor=\"start\" x=\"8797\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 7, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"8832.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 216&#45;&gt;217 -->\n",
"<g id=\"edge217\" class=\"edge\">\n",
"<title>216&#45;&gt;217</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8870.5,-103.9815C8870.5,-95.618 8870.5,-86.7965 8870.5,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8874.0001,-78.2636 8870.5,-68.2637 8867.0001,-78.2637 8874.0001,-78.2636\"/>\n",
"</g>\n",
"<!-- 218 -->\n",
"<g id=\"node219\" class=\"node\">\n",
"<title>218</title>\n",
"<polygon fill=\"#b139e5\" stroke=\"#000000\" points=\"9135,-68 8970,-68 8970,0 9135,0 9135,-68\"/>\n",
"<text text-anchor=\"start\" x=\"9023.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #218</text>\n",
"<text text-anchor=\"start\" x=\"9019\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"8979\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"8978\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 216&#45;&gt;218 -->\n",
"<g id=\"edge218\" class=\"edge\">\n",
"<title>216&#45;&gt;218</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8938.2701,-103.9815C8954.5573,-94.0034 8971.9085,-83.3733 8988.0403,-73.4904\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8990.1638,-76.2941 8996.8625,-68.0856 8986.507,-70.3252 8990.1638,-76.2941\"/>\n",
"</g>\n",
"<!-- 222 -->\n",
"<g id=\"node223\" class=\"node\">\n",
"<title>222</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"9169,-417.5 9006,-417.5 9006,-349.5 9169,-349.5 9169,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"9058.5\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #222</text>\n",
"<text text-anchor=\"start\" x=\"9054\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 5</text>\n",
"<text text-anchor=\"start\" x=\"9014\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [5, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"9049\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 221&#45;&gt;222 -->\n",
"<g id=\"edge222\" class=\"edge\">\n",
"<title>221&#45;&gt;222</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9179.8353,-460.8796C9165.6642,-449.0038 9150.243,-436.0804 9136.1342,-424.2568\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9138.3598,-421.5554 9128.4472,-417.8149 9133.8637,-426.9206 9138.3598,-421.5554\"/>\n",
"</g>\n",
"<!-- 223 -->\n",
"<g id=\"node224\" class=\"node\">\n",
"<title>223</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"9350,-417.5 9187,-417.5 9187,-349.5 9350,-349.5 9350,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"9239.5\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #223</text>\n",
"<text text-anchor=\"start\" x=\"9235\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"9195\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 1, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"9212\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = scandinavian</text>\n",
"</g>\n",
"<!-- 221&#45;&gt;223 -->\n",
"<g id=\"edge223\" class=\"edge\">\n",
"<title>221&#45;&gt;223</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9243.1403,-460.8796C9246.672,-450.1034 9250.4864,-438.4647 9254.0576,-427.5677\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9257.4655,-428.4077 9257.2539,-417.8149 9250.8136,-426.2276 9257.4655,-428.4077\"/>\n",
"</g>\n",
"<!-- 225 -->\n",
"<g id=\"node226\" class=\"node\">\n",
"<title>225</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.847059\" stroke=\"#000000\" points=\"9538.5,-544 9368.5,-544 9368.5,-461 9538.5,-461 9538.5,-544\"/>\n",
"<text text-anchor=\"start\" x=\"9424.5\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #225</text>\n",
"<text text-anchor=\"start\" x=\"9429\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">tea ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"9416.5\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 14</text>\n",
"<text text-anchor=\"start\" x=\"9376.5\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [12, 0, 1, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"9415\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 224&#45;&gt;225 -->\n",
"<g id=\"edge225\" class=\"edge\">\n",
"<title>224&#45;&gt;225</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9453.5,-579.8796C9453.5,-571.6838 9453.5,-562.9891 9453.5,-554.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9457.0001,-554.298 9453.5,-544.2981 9450.0001,-554.2981 9457.0001,-554.298\"/>\n",
"</g>\n",
"<!-- 230 -->\n",
"<g id=\"node231\" class=\"node\">\n",
"<title>230</title>\n",
"<polygon fill=\"#39e54d\" stroke=\"#000000\" points=\"9720,-536.5 9557,-536.5 9557,-468.5 9720,-468.5 9720,-536.5\"/>\n",
"<text text-anchor=\"start\" x=\"9609.5\" y=\"-521.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #230</text>\n",
"<text text-anchor=\"start\" x=\"9605\" y=\"-506.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"9565\" y=\"-491.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 2, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"9600.5\" y=\"-476.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 224&#45;&gt;230 -->\n",
"<g id=\"edge230\" class=\"edge\">\n",
"<title>224&#45;&gt;230</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9518.204,-579.8796C9537.2696,-567.6158 9558.0719,-554.2348 9576.9346,-542.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9578.9347,-544.9766 9585.4516,-536.623 9575.1478,-539.0893 9578.9347,-544.9766\"/>\n",
"</g>\n",
"<!-- 226 -->\n",
"<g id=\"node227\" class=\"node\">\n",
"<title>226</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.917647\" stroke=\"#000000\" points=\"9538.5,-425 9368.5,-425 9368.5,-342 9538.5,-342 9538.5,-425\"/>\n",
"<text text-anchor=\"start\" x=\"9424.5\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #226</text>\n",
"<text text-anchor=\"start\" x=\"9417\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">parsley ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"9416.5\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 13</text>\n",
"<text text-anchor=\"start\" x=\"9376.5\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [12, 0, 1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"9415\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 225&#45;&gt;226 -->\n",
"<g id=\"edge226\" class=\"edge\">\n",
"<title>225&#45;&gt;226</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9453.5,-460.8796C9453.5,-452.6838 9453.5,-443.9891 9453.5,-435.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9457.0001,-435.298 9453.5,-425.2981 9450.0001,-435.2981 9457.0001,-435.298\"/>\n",
"</g>\n",
"<!-- 229 -->\n",
"<g id=\"node230\" class=\"node\">\n",
"<title>229</title>\n",
"<polygon fill=\"#3956e5\" stroke=\"#000000\" points=\"9720,-417.5 9557,-417.5 9557,-349.5 9720,-349.5 9720,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"9609.5\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #229</text>\n",
"<text text-anchor=\"start\" x=\"9605\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"9565\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"9582\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = scandinavian</text>\n",
"</g>\n",
"<!-- 225&#45;&gt;229 -->\n",
"<g id=\"edge229\" class=\"edge\">\n",
"<title>225&#45;&gt;229</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9518.204,-460.8796C9537.2696,-448.6158 9558.0719,-435.2348 9576.9346,-423.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9578.9347,-425.9766 9585.4516,-417.623 9575.1478,-420.0893 9578.9347,-425.9766\"/>\n",
"</g>\n",
"<!-- 227 -->\n",
"<g id=\"node228\" class=\"node\">\n",
"<title>227</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"9446.5,-298.5 9276.5,-298.5 9276.5,-230.5 9446.5,-230.5 9446.5,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"9332.5\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #227</text>\n",
"<text text-anchor=\"start\" x=\"9324.5\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 12</text>\n",
"<text text-anchor=\"start\" x=\"9284.5\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [12, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"9323\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 226&#45;&gt;227 -->\n",
"<g id=\"edge227\" class=\"edge\">\n",
"<title>226&#45;&gt;227</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9421.3229,-341.8796C9412.5667,-330.5536 9403.0738,-318.2748 9394.2844,-306.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9396.9146,-304.5856 9388.0292,-298.8149 9391.3766,-308.8671 9396.9146,-304.5856\"/>\n",
"</g>\n",
"<!-- 228 -->\n",
"<g id=\"node229\" class=\"node\">\n",
"<title>228</title>\n",
"<polygon fill=\"#39e54d\" stroke=\"#000000\" points=\"9628,-298.5 9465,-298.5 9465,-230.5 9628,-230.5 9628,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"9517.5\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #228</text>\n",
"<text text-anchor=\"start\" x=\"9513\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"9473\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"9508.5\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 226&#45;&gt;228 -->\n",
"<g id=\"edge228\" class=\"edge\">\n",
"<title>226&#45;&gt;228</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9486.0269,-341.8796C9494.8783,-330.5536 9504.4743,-318.2748 9513.3593,-306.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9516.2824,-308.8494 9519.6824,-298.8149 9510.7669,-304.539 9516.2824,-308.8494\"/>\n",
"</g>\n",
"<!-- 234 -->\n",
"<g id=\"node235\" class=\"node\">\n",
"<title>234</title>\n",
"<polygon fill=\"#39e54d\" stroke=\"#000000\" points=\"9764.5,-893.5 9594.5,-893.5 9594.5,-825.5 9764.5,-825.5 9764.5,-893.5\"/>\n",
"<text text-anchor=\"start\" x=\"9650.5\" y=\"-878.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #234</text>\n",
"<text text-anchor=\"start\" x=\"9642.5\" y=\"-863.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 22</text>\n",
"<text text-anchor=\"start\" x=\"9602.5\" y=\"-848.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 22, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"9641.5\" y=\"-833.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 233&#45;&gt;234 -->\n",
"<g id=\"edge234\" class=\"edge\">\n",
"<title>233&#45;&gt;234</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9739.3229,-936.8796C9730.5667,-925.5536 9721.0738,-913.2748 9712.2844,-901.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9714.9146,-899.5856 9706.0292,-893.8149 9709.3766,-903.8671 9714.9146,-899.5856\"/>\n",
"</g>\n",
"<!-- 235 -->\n",
"<g id=\"node236\" class=\"node\">\n",
"<title>235</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"9946,-893.5 9783,-893.5 9783,-825.5 9946,-825.5 9946,-893.5\"/>\n",
"<text text-anchor=\"start\" x=\"9835.5\" y=\"-878.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #235</text>\n",
"<text text-anchor=\"start\" x=\"9831\" y=\"-863.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"9791\" y=\"-848.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"9826\" y=\"-833.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 233&#45;&gt;235 -->\n",
"<g id=\"edge235\" class=\"edge\">\n",
"<title>233&#45;&gt;235</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9804.0269,-936.8796C9812.8783,-925.5536 9822.4743,-913.2748 9831.3593,-901.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9834.2824,-903.8494 9837.6824,-893.8149 9828.7669,-899.539 9834.2824,-903.8494\"/>\n",
"</g>\n",
"<!-- 237 -->\n",
"<g id=\"node238\" class=\"node\">\n",
"<title>237</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.925490\" stroke=\"#000000\" points=\"10134.5,-1020 9964.5,-1020 9964.5,-937 10134.5,-937 10134.5,-1020\"/>\n",
"<text text-anchor=\"start\" x=\"10020.5\" y=\"-1004.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #237</text>\n",
"<text text-anchor=\"start\" x=\"9993.5\" y=\"-989.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cherry_brandy ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"10012.5\" y=\"-974.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 57</text>\n",
"<text text-anchor=\"start\" x=\"9972.5\" y=\"-959.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [4, 0, 53, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"10011.5\" y=\"-944.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 236&#45;&gt;237 -->\n",
"<g id=\"edge237\" class=\"edge\">\n",
"<title>236&#45;&gt;237</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10049.5,-1055.8796C10049.5,-1047.6838 10049.5,-1038.9891 10049.5,-1030.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10053.0001,-1030.298 10049.5,-1020.2981 10046.0001,-1030.2981 10053.0001,-1030.298\"/>\n",
"</g>\n",
"<!-- 242 -->\n",
"<g id=\"node243\" class=\"node\">\n",
"<title>242</title>\n",
"<polygon fill=\"#39e5e2\" stroke=\"#000000\" points=\"10316,-1012.5 10153,-1012.5 10153,-944.5 10316,-944.5 10316,-1012.5\"/>\n",
"<text text-anchor=\"start\" x=\"10205.5\" y=\"-997.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #242</text>\n",
"<text text-anchor=\"start\" x=\"10201\" y=\"-982.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"10161\" y=\"-967.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 2, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"10195.5\" y=\"-952.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = jewish</text>\n",
"</g>\n",
"<!-- 236&#45;&gt;242 -->\n",
"<g id=\"edge242\" class=\"edge\">\n",
"<title>236&#45;&gt;242</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10114.204,-1055.8796C10133.2696,-1043.6158 10154.0719,-1030.2348 10172.9346,-1018.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10174.9347,-1020.9766 10181.4516,-1012.623 10171.1478,-1015.0893 10174.9347,-1020.9766\"/>\n",
"</g>\n",
"<!-- 238 -->\n",
"<g id=\"node239\" class=\"node\">\n",
"<title>238</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.960784\" stroke=\"#000000\" points=\"10134.5,-901 9964.5,-901 9964.5,-818 10134.5,-818 10134.5,-901\"/>\n",
"<text text-anchor=\"start\" x=\"10020.5\" y=\"-885.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #238</text>\n",
"<text text-anchor=\"start\" x=\"10020\" y=\"-870.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">mint ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"10012.5\" y=\"-855.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 55</text>\n",
"<text text-anchor=\"start\" x=\"9972.5\" y=\"-840.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 53, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"10011.5\" y=\"-825.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 237&#45;&gt;238 -->\n",
"<g id=\"edge238\" class=\"edge\">\n",
"<title>237&#45;&gt;238</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10049.5,-936.8796C10049.5,-928.6838 10049.5,-919.9891 10049.5,-911.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10053.0001,-911.298 10049.5,-901.2981 10046.0001,-911.2981 10053.0001,-911.298\"/>\n",
"</g>\n",
"<!-- 241 -->\n",
"<g id=\"node242\" class=\"node\">\n",
"<title>241</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"10316,-893.5 10153,-893.5 10153,-825.5 10316,-825.5 10316,-893.5\"/>\n",
"<text text-anchor=\"start\" x=\"10205.5\" y=\"-878.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #241</text>\n",
"<text text-anchor=\"start\" x=\"10201\" y=\"-863.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"10161\" y=\"-848.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"10196\" y=\"-833.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 237&#45;&gt;241 -->\n",
"<g id=\"edge241\" class=\"edge\">\n",
"<title>237&#45;&gt;241</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10114.204,-936.8796C10133.2696,-924.6158 10154.0719,-911.2348 10172.9346,-899.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10174.9347,-901.9766 10181.4516,-893.623 10171.1478,-896.0893 10174.9347,-901.9766\"/>\n",
"</g>\n",
"<!-- 239 -->\n",
"<g id=\"node240\" class=\"node\">\n",
"<title>239</title>\n",
"<polygon fill=\"#39e54d\" stroke=\"#000000\" points=\"9949.5,-774.5 9779.5,-774.5 9779.5,-706.5 9949.5,-706.5 9949.5,-774.5\"/>\n",
"<text text-anchor=\"start\" x=\"9835.5\" y=\"-759.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #239</text>\n",
"<text text-anchor=\"start\" x=\"9827.5\" y=\"-744.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 53</text>\n",
"<text text-anchor=\"start\" x=\"9787.5\" y=\"-729.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 53, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"9826.5\" y=\"-714.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 238&#45;&gt;239 -->\n",
"<g id=\"edge239\" class=\"edge\">\n",
"<title>238&#45;&gt;239</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9984.796,-817.8796C9965.7304,-805.6158 9944.9281,-792.2348 9926.0654,-780.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9927.8522,-777.0893 9917.5484,-774.623 9924.0653,-782.9766 9927.8522,-777.0893\"/>\n",
"</g>\n",
"<!-- 240 -->\n",
"<g id=\"node241\" class=\"node\">\n",
"<title>240</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"10131,-774.5 9968,-774.5 9968,-706.5 10131,-706.5 10131,-774.5\"/>\n",
"<text text-anchor=\"start\" x=\"10020.5\" y=\"-759.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #240</text>\n",
"<text text-anchor=\"start\" x=\"10016\" y=\"-744.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"9976\" y=\"-729.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"10011\" y=\"-714.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 238&#45;&gt;240 -->\n",
"<g id=\"edge240\" class=\"edge\">\n",
"<title>238&#45;&gt;240</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10049.5,-817.8796C10049.5,-807.2134 10049.5,-795.7021 10049.5,-784.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10053.0001,-784.8149 10049.5,-774.8149 10046.0001,-784.815 10053.0001,-784.8149\"/>\n",
"</g>\n",
"<!-- 244 -->\n",
"<g id=\"node245\" class=\"node\">\n",
"<title>244</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.882353\" stroke=\"#000000\" points=\"10781.5,-1258 10611.5,-1258 10611.5,-1175 10781.5,-1175 10781.5,-1258\"/>\n",
"<text text-anchor=\"start\" x=\"10667.5\" y=\"-1242.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #244</text>\n",
"<text text-anchor=\"start\" x=\"10668.5\" y=\"-1227.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">veal ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"10659.5\" y=\"-1212.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 94</text>\n",
"<text text-anchor=\"start\" x=\"10619.5\" y=\"-1197.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [8, 0, 84, 0, 0, 2, 0]</text>\n",
"<text text-anchor=\"start\" x=\"10658.5\" y=\"-1182.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 243&#45;&gt;244 -->\n",
"<g id=\"edge244\" class=\"edge\">\n",
"<title>243&#45;&gt;244</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10756.9731,-1293.8796C10750.0049,-1284.9633 10742.5753,-1275.4565 10735.3944,-1266.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10738.0812,-1264.0221 10729.1657,-1258.2981 10732.5657,-1268.3326 10738.0812,-1264.0221\"/>\n",
"</g>\n",
"<!-- 259 -->\n",
"<g id=\"node260\" class=\"node\">\n",
"<title>259</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"10963,-1250.5 10800,-1250.5 10800,-1182.5 10963,-1182.5 10963,-1250.5\"/>\n",
"<text text-anchor=\"start\" x=\"10852.5\" y=\"-1235.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #259</text>\n",
"<text text-anchor=\"start\" x=\"10848\" y=\"-1220.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 4</text>\n",
"<text text-anchor=\"start\" x=\"10808\" y=\"-1205.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [4, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"10843\" y=\"-1190.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 243&#45;&gt;259 -->\n",
"<g id=\"edge259\" class=\"edge\">\n",
"<title>243&#45;&gt;259</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10821.6771,-1293.8796C10830.4333,-1282.5536 10839.9262,-1270.2748 10848.7156,-1258.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10851.6234,-1260.8671 10854.9708,-1250.8149 10846.0854,-1256.5856 10851.6234,-1260.8671\"/>\n",
"</g>\n",
"<!-- 245 -->\n",
"<g id=\"node246\" class=\"node\">\n",
"<title>245</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.917647\" stroke=\"#000000\" points=\"10689.5,-1139 10519.5,-1139 10519.5,-1056 10689.5,-1056 10689.5,-1139\"/>\n",
"<text text-anchor=\"start\" x=\"10575.5\" y=\"-1123.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #245</text>\n",
"<text text-anchor=\"start\" x=\"10571\" y=\"-1108.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">honey ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"10567.5\" y=\"-1093.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 91</text>\n",
"<text text-anchor=\"start\" x=\"10527.5\" y=\"-1078.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [5, 0, 84, 0, 0, 2, 0]</text>\n",
"<text text-anchor=\"start\" x=\"10566.5\" y=\"-1063.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 244&#45;&gt;245 -->\n",
"<g id=\"edge245\" class=\"edge\">\n",
"<title>244&#45;&gt;245</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10664.3229,-1174.8796C10657.4296,-1165.9633 10650.0798,-1156.4565 10642.9761,-1147.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10645.6999,-1145.0687 10636.8145,-1139.2981 10640.1619,-1149.3502 10645.6999,-1145.0687\"/>\n",
"</g>\n",
"<!-- 258 -->\n",
"<g id=\"node259\" class=\"node\">\n",
"<title>258</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"10871,-1131.5 10708,-1131.5 10708,-1063.5 10871,-1063.5 10871,-1131.5\"/>\n",
"<text text-anchor=\"start\" x=\"10760.5\" y=\"-1116.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #258</text>\n",
"<text text-anchor=\"start\" x=\"10756\" y=\"-1101.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"10716\" y=\"-1086.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"10751\" y=\"-1071.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 244&#45;&gt;258 -->\n",
"<g id=\"edge258\" class=\"edge\">\n",
"<title>244&#45;&gt;258</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10729.0269,-1174.8796C10737.8783,-1163.5536 10747.4743,-1151.2748 10756.3593,-1139.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10759.2824,-1141.8494 10762.6824,-1131.8149 10753.7669,-1137.539 10759.2824,-1141.8494\"/>\n",
"</g>\n",
"<!-- 246 -->\n",
"<g id=\"node247\" class=\"node\">\n",
"<title>246</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.941176\" stroke=\"#000000\" points=\"10597.5,-1020 10427.5,-1020 10427.5,-937 10597.5,-937 10597.5,-1020\"/>\n",
"<text text-anchor=\"start\" x=\"10483.5\" y=\"-1004.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #246</text>\n",
"<text text-anchor=\"start\" x=\"10473\" y=\"-989.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">tarragon ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"10475.5\" y=\"-974.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 89</text>\n",
"<text text-anchor=\"start\" x=\"10435.5\" y=\"-959.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [4, 0, 84, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"10474.5\" y=\"-944.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 245&#45;&gt;246 -->\n",
"<g id=\"edge246\" class=\"edge\">\n",
"<title>245&#45;&gt;246</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10572.3229,-1055.8796C10565.4296,-1046.9633 10558.0798,-1037.4565 10550.9761,-1028.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10553.6999,-1026.0687 10544.8145,-1020.2981 10548.1619,-1030.3502 10553.6999,-1026.0687\"/>\n",
"</g>\n",
"<!-- 257 -->\n",
"<g id=\"node258\" class=\"node\">\n",
"<title>257</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"10779,-1012.5 10616,-1012.5 10616,-944.5 10779,-944.5 10779,-1012.5\"/>\n",
"<text text-anchor=\"start\" x=\"10668.5\" y=\"-997.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #257</text>\n",
"<text text-anchor=\"start\" x=\"10664\" y=\"-982.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"10624\" y=\"-967.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"10659\" y=\"-952.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 245&#45;&gt;257 -->\n",
"<g id=\"edge257\" class=\"edge\">\n",
"<title>245&#45;&gt;257</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10637.0269,-1055.8796C10645.8783,-1044.5536 10655.4743,-1032.2748 10664.3593,-1020.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10667.2824,-1022.8494 10670.6824,-1012.8149 10661.7669,-1018.539 10667.2824,-1022.8494\"/>\n",
"</g>\n",
"<!-- 247 -->\n",
"<g id=\"node248\" class=\"node\">\n",
"<title>247</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.952941\" stroke=\"#000000\" points=\"10504.5,-901 10334.5,-901 10334.5,-818 10504.5,-818 10504.5,-901\"/>\n",
"<text text-anchor=\"start\" x=\"10390.5\" y=\"-885.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #247</text>\n",
"<text text-anchor=\"start\" x=\"10384.5\" y=\"-870.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">orange ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"10382.5\" y=\"-855.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 88</text>\n",
"<text text-anchor=\"start\" x=\"10342.5\" y=\"-840.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [4, 0, 84, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"10381.5\" y=\"-825.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 246&#45;&gt;247 -->\n",
"<g id=\"edge247\" class=\"edge\">\n",
"<title>246&#45;&gt;247</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10479.9731,-936.8796C10473.0049,-927.9633 10465.5753,-918.4565 10458.3944,-909.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10461.0812,-907.0221 10452.1657,-901.2981 10455.5657,-911.3326 10461.0812,-907.0221\"/>\n",
"</g>\n",
"<!-- 256 -->\n",
"<g id=\"node257\" class=\"node\">\n",
"<title>256</title>\n",
"<polygon fill=\"#b139e5\" stroke=\"#000000\" points=\"10688,-893.5 10523,-893.5 10523,-825.5 10688,-825.5 10688,-893.5\"/>\n",
"<text text-anchor=\"start\" x=\"10576.5\" y=\"-878.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #256</text>\n",
"<text text-anchor=\"start\" x=\"10572\" y=\"-863.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"10532\" y=\"-848.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"10531\" y=\"-833.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 246&#45;&gt;256 -->\n",
"<g id=\"edge256\" class=\"edge\">\n",
"<title>246&#45;&gt;256</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10545.0269,-936.8796C10553.8783,-925.5536 10563.4743,-913.2748 10572.3593,-901.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10575.2824,-903.8494 10578.6824,-893.8149 10569.7669,-899.539 10575.2824,-903.8494\"/>\n",
"</g>\n",
"<!-- 248 -->\n",
"<g id=\"node249\" class=\"node\">\n",
"<title>248</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.964706\" stroke=\"#000000\" points=\"10319.5,-782 10149.5,-782 10149.5,-699 10319.5,-699 10319.5,-782\"/>\n",
"<text text-anchor=\"start\" x=\"10205.5\" y=\"-766.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #248</text>\n",
"<text text-anchor=\"start\" x=\"10175.5\" y=\"-751.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">gruyere_cheese ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"10197.5\" y=\"-736.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 87</text>\n",
"<text text-anchor=\"start\" x=\"10157.5\" y=\"-721.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 84, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"10196.5\" y=\"-706.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 247&#45;&gt;248 -->\n",
"<g id=\"edge248\" class=\"edge\">\n",
"<title>247&#45;&gt;248</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10354.796,-817.8796C10339.5865,-808.0962 10323.2718,-797.6019 10307.7182,-787.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10309.4713,-784.5632 10299.1675,-782.0969 10305.6843,-790.4505 10309.4713,-784.5632\"/>\n",
"</g>\n",
"<!-- 255 -->\n",
"<g id=\"node256\" class=\"node\">\n",
"<title>255</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"10501,-774.5 10338,-774.5 10338,-706.5 10501,-706.5 10501,-774.5\"/>\n",
"<text text-anchor=\"start\" x=\"10390.5\" y=\"-759.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #255</text>\n",
"<text text-anchor=\"start\" x=\"10386\" y=\"-744.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"10346\" y=\"-729.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"10381\" y=\"-714.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 247&#45;&gt;255 -->\n",
"<g id=\"edge255\" class=\"edge\">\n",
"<title>247&#45;&gt;255</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10419.5,-817.8796C10419.5,-807.2134 10419.5,-795.7021 10419.5,-784.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10423.0001,-784.8149 10419.5,-774.8149 10416.0001,-784.815 10423.0001,-784.8149\"/>\n",
"</g>\n",
"<!-- 249 -->\n",
"<g id=\"node250\" class=\"node\">\n",
"<title>249</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.976471\" stroke=\"#000000\" points=\"10131.5,-663 9961.5,-663 9961.5,-580 10131.5,-580 10131.5,-663\"/>\n",
"<text text-anchor=\"start\" x=\"10017.5\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #249</text>\n",
"<text text-anchor=\"start\" x=\"10019.5\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">fish ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"10009.5\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 86</text>\n",
"<text text-anchor=\"start\" x=\"9969.5\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 84, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"10008.5\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 248&#45;&gt;249 -->\n",
"<g id=\"edge249\" class=\"edge\">\n",
"<title>248&#45;&gt;249</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10168.7467,-698.8796C10153.2906,-689.0962 10136.7113,-678.6019 10120.9055,-668.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10122.5377,-665.488 10112.2162,-663.0969 10118.7938,-671.4027 10122.5377,-665.488\"/>\n",
"</g>\n",
"<!-- 254 -->\n",
"<g id=\"node255\" class=\"node\">\n",
"<title>254</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"10316,-655.5 10153,-655.5 10153,-587.5 10316,-587.5 10316,-655.5\"/>\n",
"<text text-anchor=\"start\" x=\"10205.5\" y=\"-640.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #254</text>\n",
"<text text-anchor=\"start\" x=\"10201\" y=\"-625.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"10161\" y=\"-610.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"10196\" y=\"-595.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 248&#45;&gt;254 -->\n",
"<g id=\"edge254\" class=\"edge\">\n",
"<title>248&#45;&gt;254</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10234.5,-698.8796C10234.5,-688.2134 10234.5,-676.7021 10234.5,-665.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10238.0001,-665.8149 10234.5,-655.8149 10231.0001,-665.815 10238.0001,-665.8149\"/>\n",
"</g>\n",
"<!-- 250 -->\n",
"<g id=\"node251\" class=\"node\">\n",
"<title>250</title>\n",
"<polygon fill=\"#39e54d\" stroke=\"#000000\" points=\"9946.5,-536.5 9776.5,-536.5 9776.5,-468.5 9946.5,-468.5 9946.5,-536.5\"/>\n",
"<text text-anchor=\"start\" x=\"9832.5\" y=\"-521.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #250</text>\n",
"<text text-anchor=\"start\" x=\"9824.5\" y=\"-506.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 81</text>\n",
"<text text-anchor=\"start\" x=\"9784.5\" y=\"-491.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 81, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"9823.5\" y=\"-476.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 249&#45;&gt;250 -->\n",
"<g id=\"edge250\" class=\"edge\">\n",
"<title>249&#45;&gt;250</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9981.796,-579.8796C9962.7304,-567.6158 9941.9281,-554.2348 9923.0654,-542.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9924.8522,-539.0893 9914.5484,-536.623 9921.0653,-544.9766 9924.8522,-539.0893\"/>\n",
"</g>\n",
"<!-- 251 -->\n",
"<g id=\"node252\" class=\"node\">\n",
"<title>251</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.333333\" stroke=\"#000000\" points=\"10128,-544 9965,-544 9965,-461 10128,-461 10128,-544\"/>\n",
"<text text-anchor=\"start\" x=\"10017.5\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #251</text>\n",
"<text text-anchor=\"start\" x=\"10011.5\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">pepper ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"10013\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 5</text>\n",
"<text text-anchor=\"start\" x=\"9973\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 3, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"10008.5\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 249&#45;&gt;251 -->\n",
"<g id=\"edge251\" class=\"edge\">\n",
"<title>249&#45;&gt;251</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10046.5,-579.8796C10046.5,-571.6838 10046.5,-562.9891 10046.5,-554.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10050.0001,-554.298 10046.5,-544.2981 10043.0001,-554.2981 10050.0001,-554.298\"/>\n",
"</g>\n",
"<!-- 252 -->\n",
"<g id=\"node253\" class=\"node\">\n",
"<title>252</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.498039\" stroke=\"#000000\" points=\"9947,-417.5 9784,-417.5 9784,-349.5 9947,-349.5 9947,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"9836.5\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #252</text>\n",
"<text text-anchor=\"start\" x=\"9832\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"9792\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"9827\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 251&#45;&gt;252 -->\n",
"<g id=\"edge252\" class=\"edge\">\n",
"<title>251&#45;&gt;252</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9983.195,-460.8796C9964.7097,-448.7263 9944.5557,-435.4759 9926.2335,-423.4297\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9927.6801,-420.1921 9917.4014,-417.623 9923.8345,-426.0412 9927.6801,-420.1921\"/>\n",
"</g>\n",
"<!-- 253 -->\n",
"<g id=\"node254\" class=\"node\">\n",
"<title>253</title>\n",
"<polygon fill=\"#39e54d\" stroke=\"#000000\" points=\"10128,-417.5 9965,-417.5 9965,-349.5 10128,-349.5 10128,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"10017.5\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #253</text>\n",
"<text text-anchor=\"start\" x=\"10013\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"9973\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 2, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"10008.5\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 251&#45;&gt;253 -->\n",
"<g id=\"edge253\" class=\"edge\">\n",
"<title>251&#45;&gt;253</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10046.5,-460.8796C10046.5,-450.2134 10046.5,-438.7021 10046.5,-427.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10050.0001,-427.8149 10046.5,-417.8149 10043.0001,-427.815 10050.0001,-427.8149\"/>\n",
"</g>\n",
"<!-- 261 -->\n",
"<g id=\"node262\" class=\"node\">\n",
"<title>261</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.823529\" stroke=\"#000000\" points=\"11643,-1377 11460,-1377 11460,-1294 11643,-1294 11643,-1377\"/>\n",
"<text text-anchor=\"start\" x=\"11522.5\" y=\"-1361.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #261</text>\n",
"<text text-anchor=\"start\" x=\"11522\" y=\"-1346.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">basil ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"11511\" y=\"-1331.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 206</text>\n",
"<text text-anchor=\"start\" x=\"11468\" y=\"-1316.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [26, 1, 174, 2, 0, 0, 3]</text>\n",
"<text text-anchor=\"start\" x=\"11513.5\" y=\"-1301.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 260&#45;&gt;261 -->\n",
"<g id=\"edge261\" class=\"edge\">\n",
"<title>260&#45;&gt;261</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11613.9239,-1412.8796C11606.7309,-1403.9633 11599.0616,-1394.4565 11591.649,-1385.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11594.2224,-1382.8836 11585.2195,-1377.2981 11588.7742,-1387.2788 11594.2224,-1382.8836\"/>\n",
"</g>\n",
"<!-- 298 -->\n",
"<g id=\"node299\" class=\"node\">\n",
"<title>298</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.200000\" stroke=\"#000000\" points=\"11824,-1377 11661,-1377 11661,-1294 11824,-1294 11824,-1377\"/>\n",
"<text text-anchor=\"start\" x=\"11713.5\" y=\"-1361.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #298</text>\n",
"<text text-anchor=\"start\" x=\"11716\" y=\"-1346.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">egg ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"11709\" y=\"-1331.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 9</text>\n",
"<text text-anchor=\"start\" x=\"11669\" y=\"-1316.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [5, 0, 4, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"11704\" y=\"-1301.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 260&#45;&gt;298 -->\n",
"<g id=\"edge298\" class=\"edge\">\n",
"<title>260&#45;&gt;298</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11680.7264,-1412.8796C11687.8444,-1403.9633 11695.4339,-1394.4565 11702.7692,-1385.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11705.6281,-1387.2968 11709.1318,-1377.2981 11700.1575,-1382.9295 11705.6281,-1387.2968\"/>\n",
"</g>\n",
"<!-- 262 -->\n",
"<g id=\"node263\" class=\"node\">\n",
"<title>262</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.768627\" stroke=\"#000000\" points=\"11451,-1258 11268,-1258 11268,-1175 11451,-1175 11451,-1258\"/>\n",
"<text text-anchor=\"start\" x=\"11330.5\" y=\"-1242.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #262</text>\n",
"<text text-anchor=\"start\" x=\"11320\" y=\"-1227.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">zucchini ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"11319\" y=\"-1212.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 159</text>\n",
"<text text-anchor=\"start\" x=\"11276\" y=\"-1197.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [25, 1, 128, 2, 0, 0, 3]</text>\n",
"<text text-anchor=\"start\" x=\"11321.5\" y=\"-1182.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 261&#45;&gt;262 -->\n",
"<g id=\"edge262\" class=\"edge\">\n",
"<title>261&#45;&gt;262</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11484.3477,-1293.8796C11468.5628,-1284.0962 11451.6307,-1273.6019 11435.4886,-1263.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11436.9581,-1260.3901 11426.6144,-1258.0969 11433.2703,-1266.34 11436.9581,-1260.3901\"/>\n",
"</g>\n",
"<!-- 295 -->\n",
"<g id=\"node296\" class=\"node\">\n",
"<title>295</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.976471\" stroke=\"#000000\" points=\"11639.5,-1258 11469.5,-1258 11469.5,-1175 11639.5,-1175 11639.5,-1258\"/>\n",
"<text text-anchor=\"start\" x=\"11525.5\" y=\"-1242.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #295</text>\n",
"<text text-anchor=\"start\" x=\"11528.5\" y=\"-1227.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">dill ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"11517.5\" y=\"-1212.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 47</text>\n",
"<text text-anchor=\"start\" x=\"11477.5\" y=\"-1197.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 46, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"11516.5\" y=\"-1182.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 261&#45;&gt;295 -->\n",
"<g id=\"edge295\" class=\"edge\">\n",
"<title>261&#45;&gt;295</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11552.5493,-1293.8796C11552.7559,-1285.6838 11552.9751,-1276.9891 11553.189,-1268.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11556.693,-1268.3831 11553.4463,-1258.2981 11549.6953,-1268.2067 11556.693,-1268.3831\"/>\n",
"</g>\n",
"<!-- 263 -->\n",
"<g id=\"node264\" class=\"node\">\n",
"<title>263</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.800000\" stroke=\"#000000\" points=\"11265,-1139 11082,-1139 11082,-1056 11265,-1056 11265,-1139\"/>\n",
"<text text-anchor=\"start\" x=\"11144.5\" y=\"-1123.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #263</text>\n",
"<text text-anchor=\"start\" x=\"11120.5\" y=\"-1108.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">swiss_cheese ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"11133\" y=\"-1093.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 152</text>\n",
"<text text-anchor=\"start\" x=\"11090\" y=\"-1078.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [21, 1, 126, 1, 0, 0, 3]</text>\n",
"<text text-anchor=\"start\" x=\"11135.5\" y=\"-1063.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 262&#45;&gt;263 -->\n",
"<g id=\"edge263\" class=\"edge\">\n",
"<title>262&#45;&gt;263</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11294.4462,-1174.8796C11279.1546,-1165.0962 11262.7516,-1154.6019 11247.114,-1144.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11248.8268,-1141.538 11238.517,-1139.0969 11245.0543,-1147.4345 11248.8268,-1141.538\"/>\n",
"</g>\n",
"<!-- 292 -->\n",
"<g id=\"node293\" class=\"node\">\n",
"<title>292</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.400000\" stroke=\"#000000\" points=\"11446,-1139 11283,-1139 11283,-1056 11446,-1056 11446,-1139\"/>\n",
"<text text-anchor=\"start\" x=\"11335.5\" y=\"-1123.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #292</text>\n",
"<text text-anchor=\"start\" x=\"11332.5\" y=\"-1108.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">garlic ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"11331\" y=\"-1093.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 7</text>\n",
"<text text-anchor=\"start\" x=\"11291\" y=\"-1078.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [4, 0, 2, 1, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"11326\" y=\"-1063.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 262&#45;&gt;292 -->\n",
"<g id=\"edge292\" class=\"edge\">\n",
"<title>262&#45;&gt;292</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11361.2488,-1174.8796C11361.5931,-1166.6838 11361.9584,-1157.9891 11362.3151,-1149.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11365.8208,-1149.4362 11362.7438,-1139.2981 11358.827,-1149.1423 11365.8208,-1149.4362\"/>\n",
"</g>\n",
"<!-- 264 -->\n",
"<g id=\"node265\" class=\"node\">\n",
"<title>264</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.823529\" stroke=\"#000000\" points=\"11079,-1020 10896,-1020 10896,-937 11079,-937 11079,-1020\"/>\n",
"<text text-anchor=\"start\" x=\"10958.5\" y=\"-1004.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #264</text>\n",
"<text text-anchor=\"start\" x=\"10928\" y=\"-989.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cheddar_cheese ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"10947\" y=\"-974.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 147</text>\n",
"<text text-anchor=\"start\" x=\"10904\" y=\"-959.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [18, 1, 124, 1, 0, 0, 3]</text>\n",
"<text text-anchor=\"start\" x=\"10949.5\" y=\"-944.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 263&#45;&gt;264 -->\n",
"<g id=\"edge264\" class=\"edge\">\n",
"<title>263&#45;&gt;264</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11108.4462,-1055.8796C11093.1546,-1046.0962 11076.7516,-1035.6019 11061.114,-1025.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11062.8268,-1022.538 11052.517,-1020.0969 11059.0543,-1028.4345 11062.8268,-1022.538\"/>\n",
"</g>\n",
"<!-- 289 -->\n",
"<g id=\"node290\" class=\"node\">\n",
"<title>289</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.333333\" stroke=\"#000000\" points=\"11260,-1020 11097,-1020 11097,-937 11260,-937 11260,-1020\"/>\n",
"<text text-anchor=\"start\" x=\"11149.5\" y=\"-1004.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #289</text>\n",
"<text text-anchor=\"start\" x=\"11145\" y=\"-989.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cream ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"11145\" y=\"-974.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 5</text>\n",
"<text text-anchor=\"start\" x=\"11105\" y=\"-959.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 2, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"11140\" y=\"-944.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 263&#45;&gt;289 -->\n",
"<g id=\"edge289\" class=\"edge\">\n",
"<title>263&#45;&gt;289</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11175.2488,-1055.8796C11175.5931,-1047.6838 11175.9584,-1038.9891 11176.3151,-1030.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11179.8208,-1030.4362 11176.7438,-1020.2981 11172.827,-1030.1423 11179.8208,-1030.4362\"/>\n",
"</g>\n",
"<!-- 265 -->\n",
"<g id=\"node266\" class=\"node\">\n",
"<title>265</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.847059\" stroke=\"#000000\" points=\"10893,-901 10710,-901 10710,-818 10893,-818 10893,-901\"/>\n",
"<text text-anchor=\"start\" x=\"10772.5\" y=\"-885.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #265</text>\n",
"<text text-anchor=\"start\" x=\"10757.5\" y=\"-870.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">fenugreek ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"10761\" y=\"-855.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 140</text>\n",
"<text text-anchor=\"start\" x=\"10718\" y=\"-840.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [16, 0, 121, 1, 0, 0, 2]</text>\n",
"<text text-anchor=\"start\" x=\"10763.5\" y=\"-825.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 264&#45;&gt;265 -->\n",
"<g id=\"edge265\" class=\"edge\">\n",
"<title>264&#45;&gt;265</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10922.4462,-936.8796C10907.1546,-927.0962 10890.7516,-916.6019 10875.114,-906.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10876.8268,-903.538 10866.517,-901.0969 10873.0543,-909.4345 10876.8268,-903.538\"/>\n",
"</g>\n",
"<!-- 284 -->\n",
"<g id=\"node285\" class=\"node\">\n",
"<title>284</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.200000\" stroke=\"#000000\" points=\"11074,-901 10911,-901 10911,-818 11074,-818 11074,-901\"/>\n",
"<text text-anchor=\"start\" x=\"10963.5\" y=\"-885.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #284</text>\n",
"<text text-anchor=\"start\" x=\"10954\" y=\"-870.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">oregano ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"10959\" y=\"-855.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 7</text>\n",
"<text text-anchor=\"start\" x=\"10919\" y=\"-840.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 1, 3, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"10954.5\" y=\"-825.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 264&#45;&gt;284 -->\n",
"<g id=\"edge284\" class=\"edge\">\n",
"<title>264&#45;&gt;284</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10989.2488,-936.8796C10989.5931,-928.6838 10989.9584,-919.9891 10990.3151,-911.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10993.8208,-911.4362 10990.7438,-901.2981 10986.827,-911.1423 10993.8208,-911.4362\"/>\n",
"</g>\n",
"<!-- 266 -->\n",
"<g id=\"node267\" class=\"node\">\n",
"<title>266</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.854902\" stroke=\"#000000\" points=\"10707,-782 10524,-782 10524,-699 10707,-699 10707,-782\"/>\n",
"<text text-anchor=\"start\" x=\"10586.5\" y=\"-766.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #266</text>\n",
"<text text-anchor=\"start\" x=\"10576.5\" y=\"-751.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cabbage ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"10575\" y=\"-736.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 139</text>\n",
"<text text-anchor=\"start\" x=\"10532\" y=\"-721.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [16, 0, 121, 1, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"10577.5\" y=\"-706.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 265&#45;&gt;266 -->\n",
"<g id=\"edge266\" class=\"edge\">\n",
"<title>265&#45;&gt;266</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10736.4462,-817.8796C10721.1546,-808.0962 10704.7516,-797.6019 10689.114,-787.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10690.8268,-784.538 10680.517,-782.0969 10687.0543,-790.4345 10690.8268,-784.538\"/>\n",
"</g>\n",
"<!-- 283 -->\n",
"<g id=\"node284\" class=\"node\">\n",
"<title>283</title>\n",
"<polygon fill=\"#e53986\" stroke=\"#000000\" points=\"10888,-774.5 10725,-774.5 10725,-706.5 10888,-706.5 10888,-774.5\"/>\n",
"<text text-anchor=\"start\" x=\"10777.5\" y=\"-759.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #283</text>\n",
"<text text-anchor=\"start\" x=\"10773\" y=\"-744.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"10733\" y=\"-729.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"10752\" y=\"-714.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = uk&#45;and&#45;irish</text>\n",
"</g>\n",
"<!-- 265&#45;&gt;283 -->\n",
"<g id=\"edge283\" class=\"edge\">\n",
"<title>265&#45;&gt;283</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10803.2488,-817.8796C10803.6969,-807.2134 10804.1806,-795.7021 10804.6344,-784.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10808.1352,-784.9531 10805.0582,-774.8149 10801.1414,-784.6592 10808.1352,-784.9531\"/>\n",
"</g>\n",
"<!-- 267 -->\n",
"<g id=\"node268\" class=\"node\">\n",
"<title>267</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.858824\" stroke=\"#000000\" points=\"10518,-663 10335,-663 10335,-580 10518,-580 10518,-663\"/>\n",
"<text text-anchor=\"start\" x=\"10397.5\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #267</text>\n",
"<text text-anchor=\"start\" x=\"10390\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">salmon ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"10386\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 138</text>\n",
"<text text-anchor=\"start\" x=\"10343\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [16, 0, 121, 1, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"10388.5\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 266&#45;&gt;267 -->\n",
"<g id=\"edge267\" class=\"edge\">\n",
"<title>266&#45;&gt;267</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10549.397,-698.8796C10533.8587,-689.0962 10517.1912,-678.6019 10501.3013,-668.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10502.8929,-665.4633 10492.5657,-663.0969 10499.1632,-671.3869 10502.8929,-665.4633\"/>\n",
"</g>\n",
"<!-- 282 -->\n",
"<g id=\"node283\" class=\"node\">\n",
"<title>282</title>\n",
"<polygon fill=\"#e53986\" stroke=\"#000000\" points=\"10699,-655.5 10536,-655.5 10536,-587.5 10699,-587.5 10699,-655.5\"/>\n",
"<text text-anchor=\"start\" x=\"10588.5\" y=\"-640.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #282</text>\n",
"<text text-anchor=\"start\" x=\"10584\" y=\"-625.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"10544\" y=\"-610.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"10563\" y=\"-595.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = uk&#45;and&#45;irish</text>\n",
"</g>\n",
"<!-- 266&#45;&gt;282 -->\n",
"<g id=\"edge282\" class=\"edge\">\n",
"<title>266&#45;&gt;282</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10616.1995,-698.8796C10616.3788,-688.2134 10616.5722,-676.7021 10616.7538,-665.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10620.2546,-665.8724 10616.9233,-655.8149 10613.2556,-665.7547 10620.2546,-665.8724\"/>\n",
"</g>\n",
"<!-- 268 -->\n",
"<g id=\"node269\" class=\"node\">\n",
"<title>268</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.870588\" stroke=\"#000000\" points=\"10423,-544 10240,-544 10240,-461 10423,-461 10423,-544\"/>\n",
"<text text-anchor=\"start\" x=\"10302.5\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #268</text>\n",
"<text text-anchor=\"start\" x=\"10293.5\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">scallion ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"10291\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 137</text>\n",
"<text text-anchor=\"start\" x=\"10248\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [15, 0, 121, 1, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"10293.5\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 267&#45;&gt;268 -->\n",
"<g id=\"edge268\" class=\"edge\">\n",
"<title>267&#45;&gt;268</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10393.2736,-579.8796C10386.1556,-570.9633 10378.5661,-561.4565 10371.2308,-552.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10373.8425,-549.9295 10364.8682,-544.2981 10368.3719,-554.2968 10373.8425,-549.9295\"/>\n",
"</g>\n",
"<!-- 281 -->\n",
"<g id=\"node282\" class=\"node\">\n",
"<title>281</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"10604,-536.5 10441,-536.5 10441,-468.5 10604,-468.5 10604,-536.5\"/>\n",
"<text text-anchor=\"start\" x=\"10493.5\" y=\"-521.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #281</text>\n",
"<text text-anchor=\"start\" x=\"10489\" y=\"-506.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"10449\" y=\"-491.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"10484\" y=\"-476.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 267&#45;&gt;281 -->\n",
"<g id=\"edge281\" class=\"edge\">\n",
"<title>267&#45;&gt;281</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10460.0761,-579.8796C10469.2131,-568.5536 10479.1187,-556.2748 10488.2902,-544.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10491.2626,-546.7957 10494.8174,-536.8149 10485.8144,-542.4005 10491.2626,-546.7957\"/>\n",
"</g>\n",
"<!-- 269 -->\n",
"<g id=\"node270\" class=\"node\">\n",
"<title>269</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.882353\" stroke=\"#000000\" points=\"10329,-425 10146,-425 10146,-342 10329,-342 10329,-425\"/>\n",
"<text text-anchor=\"start\" x=\"10208.5\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #269</text>\n",
"<text text-anchor=\"start\" x=\"10210\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">lard ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"10197\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 133</text>\n",
"<text text-anchor=\"start\" x=\"10154\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [13, 0, 119, 1, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"10199.5\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 268&#45;&gt;269 -->\n",
"<g id=\"edge269\" class=\"edge\">\n",
"<title>268&#45;&gt;269</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10298.6234,-460.8796C10291.5803,-451.9633 10284.0707,-442.4565 10276.8126,-433.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10279.4621,-430.9757 10270.517,-425.2981 10273.9691,-435.3147 10279.4621,-430.9757\"/>\n",
"</g>\n",
"<!-- 280 -->\n",
"<g id=\"node281\" class=\"node\">\n",
"<title>280</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"10510,-417.5 10347,-417.5 10347,-349.5 10510,-349.5 10510,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"10399.5\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #280</text>\n",
"<text text-anchor=\"start\" x=\"10395\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 4</text>\n",
"<text text-anchor=\"start\" x=\"10355\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 2, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"10390\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 268&#45;&gt;280 -->\n",
"<g id=\"edge280\" class=\"edge\">\n",
"<title>268&#45;&gt;280</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10365.4259,-460.8796C10374.7476,-449.4436 10384.8612,-437.0363 10394.2036,-425.575\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10396.9237,-427.7775 10400.529,-417.8149 10391.4979,-423.3548 10396.9237,-427.7775\"/>\n",
"</g>\n",
"<!-- 270 -->\n",
"<g id=\"node271\" class=\"node\">\n",
"<title>270</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.898039\" stroke=\"#000000\" points=\"10044,-306 9861,-306 9861,-223 10044,-223 10044,-306\"/>\n",
"<text text-anchor=\"start\" x=\"9923.5\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #270</text>\n",
"<text text-anchor=\"start\" x=\"9917.5\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cheese ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"9912\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 128</text>\n",
"<text text-anchor=\"start\" x=\"9869\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [11, 0, 116, 1, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"9914.5\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 269&#45;&gt;270 -->\n",
"<g id=\"edge270\" class=\"edge\">\n",
"<title>269&#45;&gt;270</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10145.7554,-345.1926C10116.2618,-332.8777 10083.4313,-319.1696 10053.3226,-306.5979\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10054.6492,-303.3589 10044.0727,-302.7356 10051.952,-309.8185 10054.6492,-303.3589\"/>\n",
"</g>\n",
"<!-- 277 -->\n",
"<g id=\"node278\" class=\"node\">\n",
"<title>277</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.333333\" stroke=\"#000000\" points=\"10319,-306 10156,-306 10156,-223 10319,-223 10319,-306\"/>\n",
"<text text-anchor=\"start\" x=\"10208.5\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #277</text>\n",
"<text text-anchor=\"start\" x=\"10203.5\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">thyme ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"10204\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 5</text>\n",
"<text text-anchor=\"start\" x=\"10164\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 3, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"10199.5\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 269&#45;&gt;277 -->\n",
"<g id=\"edge277\" class=\"edge\">\n",
"<title>269&#45;&gt;277</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10237.5,-341.8796C10237.5,-333.6838 10237.5,-324.9891 10237.5,-316.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10241.0001,-316.298 10237.5,-306.2981 10234.0001,-316.2981 10241.0001,-316.298\"/>\n",
"</g>\n",
"<!-- 271 -->\n",
"<g id=\"node272\" class=\"node\">\n",
"<title>271</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.929412\" stroke=\"#000000\" points=\"9843.5,-187 9673.5,-187 9673.5,-104 9843.5,-104 9843.5,-187\"/>\n",
"<text text-anchor=\"start\" x=\"9729.5\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #271</text>\n",
"<text text-anchor=\"start\" x=\"9725\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cream ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"9718\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 105</text>\n",
"<text text-anchor=\"start\" x=\"9681.5\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [6, 0, 98, 1, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"9720.5\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 270&#45;&gt;271 -->\n",
"<g id=\"edge271\" class=\"edge\">\n",
"<title>270&#45;&gt;271</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9884.6482,-222.8796C9868.6989,-213.0962 9851.5904,-202.6019 9835.2802,-192.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9836.6677,-189.3422 9826.3135,-187.0969 9833.0075,-195.3091 9836.6677,-189.3422\"/>\n",
"</g>\n",
"<!-- 274 -->\n",
"<g id=\"node275\" class=\"node\">\n",
"<title>274</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.721569\" stroke=\"#000000\" points=\"10037.5,-187 9867.5,-187 9867.5,-104 10037.5,-104 10037.5,-187\"/>\n",
"<text text-anchor=\"start\" x=\"9923.5\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #274</text>\n",
"<text text-anchor=\"start\" x=\"9920.5\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">onion ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"9915.5\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 23</text>\n",
"<text text-anchor=\"start\" x=\"9875.5\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [5, 0, 18, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"9914.5\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 270&#45;&gt;274 -->\n",
"<g id=\"edge274\" class=\"edge\">\n",
"<title>270&#45;&gt;274</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9952.5,-222.8796C9952.5,-214.6838 9952.5,-205.9891 9952.5,-197.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9956.0001,-197.298 9952.5,-187.2981 9949.0001,-197.2981 9956.0001,-197.298\"/>\n",
"</g>\n",
"<!-- 272 -->\n",
"<g id=\"node273\" class=\"node\">\n",
"<title>272</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.964706\" stroke=\"#000000\" points=\"9655.5,-68 9485.5,-68 9485.5,0 9655.5,0 9655.5,-68\"/>\n",
"<text text-anchor=\"start\" x=\"9541.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #272</text>\n",
"<text text-anchor=\"start\" x=\"9533.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 84</text>\n",
"<text text-anchor=\"start\" x=\"9493.5\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 81, 1, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"9532.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 271&#45;&gt;272 -->\n",
"<g id=\"edge272\" class=\"edge\">\n",
"<title>271&#45;&gt;272</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9688.4957,-103.9815C9671.5158,-93.911 9653.4163,-83.1764 9636.6222,-73.2161\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9638.3582,-70.1765 9627.9717,-68.0856 9634.7874,-76.1972 9638.3582,-70.1765\"/>\n",
"</g>\n",
"<!-- 273 -->\n",
"<g id=\"node274\" class=\"node\">\n",
"<title>273</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.764706\" stroke=\"#000000\" points=\"9843.5,-68 9673.5,-68 9673.5,0 9843.5,0 9843.5,-68\"/>\n",
"<text text-anchor=\"start\" x=\"9729.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #273</text>\n",
"<text text-anchor=\"start\" x=\"9721.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 21</text>\n",
"<text text-anchor=\"start\" x=\"9681.5\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [4, 0, 17, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"9720.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 271&#45;&gt;273 -->\n",
"<g id=\"edge273\" class=\"edge\">\n",
"<title>271&#45;&gt;273</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9758.5,-103.9815C9758.5,-95.618 9758.5,-86.7965 9758.5,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9762.0001,-78.2636 9758.5,-68.2637 9755.0001,-78.2637 9762.0001,-78.2636\"/>\n",
"</g>\n",
"<!-- 275 -->\n",
"<g id=\"node276\" class=\"node\">\n",
"<title>275</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.874510\" stroke=\"#000000\" points=\"10031.5,-68 9861.5,-68 9861.5,0 10031.5,0 10031.5,-68\"/>\n",
"<text text-anchor=\"start\" x=\"9917.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #275</text>\n",
"<text text-anchor=\"start\" x=\"9909.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 18</text>\n",
"<text text-anchor=\"start\" x=\"9869.5\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 16, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"9908.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 274&#45;&gt;275 -->\n",
"<g id=\"edge275\" class=\"edge\">\n",
"<title>274&#45;&gt;275</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9950.2658,-103.9815C9949.8158,-95.618 9949.3411,-86.7965 9948.8861,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9952.3762,-78.0611 9948.3438,-68.2637 9945.3863,-78.4373 9952.3762,-78.0611\"/>\n",
"</g>\n",
"<!-- 276 -->\n",
"<g id=\"node277\" class=\"node\">\n",
"<title>276</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.333333\" stroke=\"#000000\" points=\"10213,-68 10050,-68 10050,0 10213,0 10213,-68\"/>\n",
"<text text-anchor=\"start\" x=\"10102.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #276</text>\n",
"<text text-anchor=\"start\" x=\"10098\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 5</text>\n",
"<text text-anchor=\"start\" x=\"10058\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 2, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"10093\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 274&#45;&gt;276 -->\n",
"<g id=\"edge276\" class=\"edge\">\n",
"<title>274&#45;&gt;276</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10019.153,-103.9815C10035.1717,-94.0034 10052.237,-83.3733 10068.1028,-73.4904\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10070.1421,-76.3437 10076.7796,-68.0856 10066.4411,-70.4021 10070.1421,-76.3437\"/>\n",
"</g>\n",
"<!-- 278 -->\n",
"<g id=\"node279\" class=\"node\">\n",
"<title>278</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.498039\" stroke=\"#000000\" points=\"10225,-179.5 10062,-179.5 10062,-111.5 10225,-111.5 10225,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"10114.5\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #278</text>\n",
"<text text-anchor=\"start\" x=\"10110\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"10070\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"10105\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 277&#45;&gt;278 -->\n",
"<g id=\"edge278\" class=\"edge\">\n",
"<title>277&#45;&gt;278</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10204.6234,-222.8796C10195.6768,-211.5536 10185.9776,-199.2748 10176.9971,-187.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10179.551,-185.4926 10170.6059,-179.8149 10174.058,-189.8316 10179.551,-185.4926\"/>\n",
"</g>\n",
"<!-- 279 -->\n",
"<g id=\"node280\" class=\"node\">\n",
"<title>279</title>\n",
"<polygon fill=\"#39e54d\" stroke=\"#000000\" points=\"10406,-179.5 10243,-179.5 10243,-111.5 10406,-111.5 10406,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"10295.5\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #279</text>\n",
"<text text-anchor=\"start\" x=\"10291\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"10251\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 2, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"10286.5\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 277&#45;&gt;279 -->\n",
"<g id=\"edge279\" class=\"edge\">\n",
"<title>277&#45;&gt;279</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10267.9284,-222.8796C10276.2087,-211.5536 10285.1857,-199.2748 10293.4974,-187.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10296.3361,-189.9533 10299.4126,-179.8149 10290.6853,-185.822 10296.3361,-189.9533\"/>\n",
"</g>\n",
"<!-- 285 -->\n",
"<g id=\"node286\" class=\"node\">\n",
"<title>285</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.250980\" stroke=\"#000000\" points=\"11072,-782 10909,-782 10909,-699 11072,-699 11072,-782\"/>\n",
"<text text-anchor=\"start\" x=\"10961.5\" y=\"-766.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #285</text>\n",
"<text text-anchor=\"start\" x=\"10960\" y=\"-751.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">yeast ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"10957\" y=\"-736.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 5</text>\n",
"<text text-anchor=\"start\" x=\"10917\" y=\"-721.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 1, 1, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"10952\" y=\"-706.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 284&#45;&gt;285 -->\n",
"<g id=\"edge285\" class=\"edge\">\n",
"<title>284&#45;&gt;285</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10991.8005,-817.8796C10991.6628,-809.6838 10991.5166,-800.9891 10991.374,-792.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10994.8701,-792.2378 10991.2025,-782.2981 10987.8711,-792.3555 10994.8701,-792.2378\"/>\n",
"</g>\n",
"<!-- 288 -->\n",
"<g id=\"node289\" class=\"node\">\n",
"<title>288</title>\n",
"<polygon fill=\"#39e54d\" stroke=\"#000000\" points=\"11253,-774.5 11090,-774.5 11090,-706.5 11253,-706.5 11253,-774.5\"/>\n",
"<text text-anchor=\"start\" x=\"11142.5\" y=\"-759.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #288</text>\n",
"<text text-anchor=\"start\" x=\"11138\" y=\"-744.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"11098\" y=\"-729.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 2, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"11133.5\" y=\"-714.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 284&#45;&gt;288 -->\n",
"<g id=\"edge288\" class=\"edge\">\n",
"<title>284&#45;&gt;288</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11055.1055,-817.8796C11073.3865,-805.7263 11093.3178,-792.4759 11111.4376,-780.4297\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11113.7821,-783.074 11120.1721,-774.623 11109.9067,-777.2447 11113.7821,-783.074\"/>\n",
"</g>\n",
"<!-- 286 -->\n",
"<g id=\"node287\" class=\"node\">\n",
"<title>286</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.333333\" stroke=\"#000000\" points=\"10982,-655.5 10819,-655.5 10819,-587.5 10982,-587.5 10982,-655.5\"/>\n",
"<text text-anchor=\"start\" x=\"10871.5\" y=\"-640.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #286</text>\n",
"<text text-anchor=\"start\" x=\"10867\" y=\"-625.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 4</text>\n",
"<text text-anchor=\"start\" x=\"10827\" y=\"-610.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 1, 0, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"10862\" y=\"-595.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 285&#45;&gt;286 -->\n",
"<g id=\"edge286\" class=\"edge\">\n",
"<title>285&#45;&gt;286</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10959.0224,-698.8796C10950.4565,-687.5536 10941.17,-675.2748 10932.5717,-663.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10935.2762,-661.6795 10926.4525,-655.8149 10929.6931,-665.902 10935.2762,-661.6795\"/>\n",
"</g>\n",
"<!-- 287 -->\n",
"<g id=\"node288\" class=\"node\">\n",
"<title>287</title>\n",
"<polygon fill=\"#39e54d\" stroke=\"#000000\" points=\"11163,-655.5 11000,-655.5 11000,-587.5 11163,-587.5 11163,-655.5\"/>\n",
"<text text-anchor=\"start\" x=\"11052.5\" y=\"-640.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #287</text>\n",
"<text text-anchor=\"start\" x=\"11048\" y=\"-625.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"11008\" y=\"-610.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"11043.5\" y=\"-595.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 285&#45;&gt;287 -->\n",
"<g id=\"edge287\" class=\"edge\">\n",
"<title>285&#45;&gt;287</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11022.3274,-698.8796C11030.9884,-687.5536 11040.3781,-675.2748 11049.072,-663.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11051.9649,-665.8846 11055.2592,-655.8149 11046.4044,-661.6324 11051.9649,-665.8846\"/>\n",
"</g>\n",
"<!-- 290 -->\n",
"<g id=\"node291\" class=\"node\">\n",
"<title>290</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"11258,-893.5 11095,-893.5 11095,-825.5 11258,-825.5 11258,-893.5\"/>\n",
"<text text-anchor=\"start\" x=\"11147.5\" y=\"-878.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #290</text>\n",
"<text text-anchor=\"start\" x=\"11143\" y=\"-863.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"11103\" y=\"-848.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"11138\" y=\"-833.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 289&#45;&gt;290 -->\n",
"<g id=\"edge290\" class=\"edge\">\n",
"<title>289&#45;&gt;290</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11177.8005,-936.8796C11177.6212,-926.2134 11177.4278,-914.7021 11177.2462,-903.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11180.7444,-903.7547 11177.0767,-893.8149 11173.7454,-903.8724 11180.7444,-903.7547\"/>\n",
"</g>\n",
"<!-- 291 -->\n",
"<g id=\"node292\" class=\"node\">\n",
"<title>291</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.498039\" stroke=\"#000000\" points=\"11439,-893.5 11276,-893.5 11276,-825.5 11439,-825.5 11439,-893.5\"/>\n",
"<text text-anchor=\"start\" x=\"11328.5\" y=\"-878.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #291</text>\n",
"<text text-anchor=\"start\" x=\"11324\" y=\"-863.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"11284\" y=\"-848.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 2, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"11319.5\" y=\"-833.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 289&#45;&gt;291 -->\n",
"<g id=\"edge291\" class=\"edge\">\n",
"<title>289&#45;&gt;291</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11241.1055,-936.8796C11259.3865,-924.7263 11279.3178,-911.4759 11297.4376,-899.4297\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11299.7821,-902.074 11306.1721,-893.623 11295.9067,-896.2447 11299.7821,-902.074\"/>\n",
"</g>\n",
"<!-- 293 -->\n",
"<g id=\"node294\" class=\"node\">\n",
"<title>293</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"11444,-1012.5 11281,-1012.5 11281,-944.5 11444,-944.5 11444,-1012.5\"/>\n",
"<text text-anchor=\"start\" x=\"11333.5\" y=\"-997.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #293</text>\n",
"<text text-anchor=\"start\" x=\"11329\" y=\"-982.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 4</text>\n",
"<text text-anchor=\"start\" x=\"11289\" y=\"-967.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [4, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"11324\" y=\"-952.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 292&#45;&gt;293 -->\n",
"<g id=\"edge293\" class=\"edge\">\n",
"<title>292&#45;&gt;293</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11363.8005,-1055.8796C11363.6212,-1045.2134 11363.4278,-1033.7021 11363.2462,-1022.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11366.7444,-1022.7547 11363.0767,-1012.8149 11359.7454,-1022.8724 11366.7444,-1022.7547\"/>\n",
"</g>\n",
"<!-- 294 -->\n",
"<g id=\"node295\" class=\"node\">\n",
"<title>294</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.498039\" stroke=\"#000000\" points=\"11625,-1012.5 11462,-1012.5 11462,-944.5 11625,-944.5 11625,-1012.5\"/>\n",
"<text text-anchor=\"start\" x=\"11514.5\" y=\"-997.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #294</text>\n",
"<text text-anchor=\"start\" x=\"11510\" y=\"-982.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"11470\" y=\"-967.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 2, 1, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"11505.5\" y=\"-952.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 292&#45;&gt;294 -->\n",
"<g id=\"edge294\" class=\"edge\">\n",
"<title>292&#45;&gt;294</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11427.1055,-1055.8796C11445.3865,-1043.7263 11465.3178,-1030.4759 11483.4376,-1018.4297\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11485.7821,-1021.074 11492.1721,-1012.623 11481.9067,-1015.2447 11485.7821,-1021.074\"/>\n",
"</g>\n",
"<!-- 296 -->\n",
"<g id=\"node297\" class=\"node\">\n",
"<title>296</title>\n",
"<polygon fill=\"#39e54d\" stroke=\"#000000\" points=\"11637.5,-1131.5 11467.5,-1131.5 11467.5,-1063.5 11637.5,-1063.5 11637.5,-1131.5\"/>\n",
"<text text-anchor=\"start\" x=\"11523.5\" y=\"-1116.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #296</text>\n",
"<text text-anchor=\"start\" x=\"11515.5\" y=\"-1101.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 46</text>\n",
"<text text-anchor=\"start\" x=\"11475.5\" y=\"-1086.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 46, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"11514.5\" y=\"-1071.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 295&#45;&gt;296 -->\n",
"<g id=\"edge296\" class=\"edge\">\n",
"<title>295&#45;&gt;296</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11553.8005,-1174.8796C11553.6212,-1164.2134 11553.4278,-1152.7021 11553.2462,-1141.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11556.7444,-1141.7547 11553.0767,-1131.8149 11549.7454,-1141.8724 11556.7444,-1141.7547\"/>\n",
"</g>\n",
"<!-- 297 -->\n",
"<g id=\"node298\" class=\"node\">\n",
"<title>297</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"11819,-1131.5 11656,-1131.5 11656,-1063.5 11819,-1063.5 11819,-1131.5\"/>\n",
"<text text-anchor=\"start\" x=\"11708.5\" y=\"-1116.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #297</text>\n",
"<text text-anchor=\"start\" x=\"11704\" y=\"-1101.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"11664\" y=\"-1086.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"11699\" y=\"-1071.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 295&#45;&gt;297 -->\n",
"<g id=\"edge297\" class=\"edge\">\n",
"<title>295&#45;&gt;297</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11618.5045,-1174.8796C11637.3639,-1162.6158 11657.9414,-1149.2348 11676.6002,-1137.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11678.5497,-1140.0088 11685.0251,-1131.623 11674.7336,-1134.1404 11678.5497,-1140.0088\"/>\n",
"</g>\n",
"<!-- 299 -->\n",
"<g id=\"node300\" class=\"node\">\n",
"<title>299</title>\n",
"<polygon fill=\"#39e54d\" stroke=\"#000000\" points=\"11823,-1250.5 11660,-1250.5 11660,-1182.5 11823,-1182.5 11823,-1250.5\"/>\n",
"<text text-anchor=\"start\" x=\"11712.5\" y=\"-1235.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #299</text>\n",
"<text text-anchor=\"start\" x=\"11708\" y=\"-1220.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 4</text>\n",
"<text text-anchor=\"start\" x=\"11668\" y=\"-1205.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 4, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"11703.5\" y=\"-1190.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 298&#45;&gt;299 -->\n",
"<g id=\"edge299\" class=\"edge\">\n",
"<title>298&#45;&gt;299</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11742.1502,-1293.8796C11742.0606,-1283.2134 11741.9639,-1271.7021 11741.8731,-1260.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11745.3724,-1260.7851 11741.7884,-1250.8149 11738.3726,-1260.844 11745.3724,-1260.7851\"/>\n",
"</g>\n",
"<!-- 300 -->\n",
"<g id=\"node301\" class=\"node\">\n",
"<title>300</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"12004,-1250.5 11841,-1250.5 11841,-1182.5 12004,-1182.5 12004,-1250.5\"/>\n",
"<text text-anchor=\"start\" x=\"11893.5\" y=\"-1235.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #300</text>\n",
"<text text-anchor=\"start\" x=\"11889\" y=\"-1220.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 5</text>\n",
"<text text-anchor=\"start\" x=\"11849\" y=\"-1205.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [5, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"11884\" y=\"-1190.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 298&#45;&gt;300 -->\n",
"<g id=\"edge300\" class=\"edge\">\n",
"<title>298&#45;&gt;300</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11805.4553,-1293.8796C11823.8384,-1281.7263 11843.8811,-1268.4759 11862.1021,-1256.4297\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11864.4737,-1259.0576 11870.8853,-1250.623 11860.6133,-1253.2183 11864.4737,-1259.0576\"/>\n",
"</g>\n",
"<!-- 302 -->\n",
"<g id=\"node303\" class=\"node\">\n",
"<title>302</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.521569\" stroke=\"#000000\" points=\"17711,-1496 17494,-1496 17494,-1413 17711,-1413 17711,-1496\"/>\n",
"<text text-anchor=\"start\" x=\"17573.5\" y=\"-1480.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #302</text>\n",
"<text text-anchor=\"start\" x=\"17538\" y=\"-1465.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">parmesan_cheese ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"17558.5\" y=\"-1450.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1354</text>\n",
"<text text-anchor=\"start\" x=\"17502\" y=\"-1435.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [267, 6, 833, 58, 6, 174, 10]</text>\n",
"<text text-anchor=\"start\" x=\"17564.5\" y=\"-1420.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 301&#45;&gt;302 -->\n",
"<g id=\"edge302\" class=\"edge\">\n",
"<title>301&#45;&gt;302</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17973.4761,-1545.8999C17897.7113,-1527.2332 17797.8079,-1502.6193 17720.7638,-1483.6375\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17721.5544,-1480.2277 17711.0075,-1481.2337 17719.8798,-1487.0244 17721.5544,-1480.2277\"/>\n",
"</g>\n",
"<!-- 499 -->\n",
"<g id=\"node500\" class=\"node\">\n",
"<title>499</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.858824\" stroke=\"#000000\" points=\"18767,-1496 18584,-1496 18584,-1413 18767,-1413 18767,-1496\"/>\n",
"<text text-anchor=\"start\" x=\"18646.5\" y=\"-1480.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #499</text>\n",
"<text text-anchor=\"start\" x=\"18640.5\" y=\"-1465.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">savory ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"18635\" y=\"-1450.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 514</text>\n",
"<text text-anchor=\"start\" x=\"18592\" y=\"-1435.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [55, 0, 450, 2, 0, 5, 2]</text>\n",
"<text text-anchor=\"start\" x=\"18637.5\" y=\"-1420.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 301&#45;&gt;499 -->\n",
"<g id=\"edge499\" class=\"edge\">\n",
"<title>301&#45;&gt;499</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M18197.5155,-1550.907C18305.977,-1529.0309 18468.9798,-1496.1541 18573.8056,-1475.0112\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"18574.6541,-1478.4107 18583.7647,-1473.0025 18573.2701,-1471.5488 18574.6541,-1478.4107\"/>\n",
"</g>\n",
"<!-- 303 -->\n",
"<g id=\"node304\" class=\"node\">\n",
"<title>303</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.443137\" stroke=\"#000000\" points=\"17414,-1377 17197,-1377 17197,-1294 17414,-1294 17414,-1377\"/>\n",
"<text text-anchor=\"start\" x=\"17276.5\" y=\"-1361.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #303</text>\n",
"<text text-anchor=\"start\" x=\"17272\" y=\"-1346.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">sherry ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"17261.5\" y=\"-1331.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1152</text>\n",
"<text text-anchor=\"start\" x=\"17205\" y=\"-1316.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [250, 6, 649, 57, 6, 174, 10]</text>\n",
"<text text-anchor=\"start\" x=\"17267.5\" y=\"-1301.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 302&#45;&gt;303 -->\n",
"<g id=\"edge303\" class=\"edge\">\n",
"<title>302&#45;&gt;303</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17498.6238,-1412.8796C17472.85,-1402.5527 17445.099,-1391.4336 17418.8951,-1380.9344\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17419.9019,-1377.5674 17409.3175,-1377.0969 17417.2984,-1384.0652 17419.9019,-1377.5674\"/>\n",
"</g>\n",
"<!-- 466 -->\n",
"<g id=\"node467\" class=\"node\">\n",
"<title>466</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.901961\" stroke=\"#000000\" points=\"17694,-1377 17511,-1377 17511,-1294 17694,-1294 17694,-1377\"/>\n",
"<text text-anchor=\"start\" x=\"17573.5\" y=\"-1361.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #466</text>\n",
"<text text-anchor=\"start\" x=\"17554\" y=\"-1346.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">feta_cheese ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"17562\" y=\"-1331.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 202</text>\n",
"<text text-anchor=\"start\" x=\"17519\" y=\"-1316.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [17, 0, 184, 1, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17564.5\" y=\"-1301.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 302&#45;&gt;466 -->\n",
"<g id=\"edge466\" class=\"edge\">\n",
"<title>302&#45;&gt;466</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17602.5,-1412.8796C17602.5,-1404.6838 17602.5,-1395.9891 17602.5,-1387.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17606.0001,-1387.298 17602.5,-1377.2981 17599.0001,-1387.2981 17606.0001,-1387.298\"/>\n",
"</g>\n",
"<!-- 304 -->\n",
"<g id=\"node305\" class=\"node\">\n",
"<title>304</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.470588\" stroke=\"#000000\" points=\"16108,-1258 15891,-1258 15891,-1175 16108,-1175 16108,-1258\"/>\n",
"<text text-anchor=\"start\" x=\"15970.5\" y=\"-1242.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #304</text>\n",
"<text text-anchor=\"start\" x=\"15963.5\" y=\"-1227.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">saffron ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"15955.5\" y=\"-1212.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1097</text>\n",
"<text text-anchor=\"start\" x=\"15899\" y=\"-1197.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [237, 6, 642, 56, 6, 140, 10]</text>\n",
"<text text-anchor=\"start\" x=\"15961.5\" y=\"-1182.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 303&#45;&gt;304 -->\n",
"<g id=\"edge304\" class=\"edge\">\n",
"<title>303&#45;&gt;304</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17196.9561,-1325.6097C16954.5593,-1303.523 16370.7665,-1250.329 16118.6999,-1227.3612\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16118.6873,-1223.8457 16108.4109,-1226.4237 16118.052,-1230.8168 16118.6873,-1223.8457\"/>\n",
"</g>\n",
"<!-- 443 -->\n",
"<g id=\"node444\" class=\"node\">\n",
"<title>443</title>\n",
"<polygon fill=\"#b139e5\" fill-opacity=\"0.501961\" stroke=\"#000000\" points=\"17393.5,-1258 17217.5,-1258 17217.5,-1175 17393.5,-1175 17393.5,-1258\"/>\n",
"<text text-anchor=\"start\" x=\"17276.5\" y=\"-1242.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #443</text>\n",
"<text text-anchor=\"start\" x=\"17266.5\" y=\"-1227.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">mustard ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"17268.5\" y=\"-1212.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 55</text>\n",
"<text text-anchor=\"start\" x=\"17225.5\" y=\"-1197.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [13, 0, 7, 1, 0, 34, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17231\" y=\"-1182.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 303&#45;&gt;443 -->\n",
"<g id=\"edge443\" class=\"edge\">\n",
"<title>303&#45;&gt;443</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17305.5,-1293.8796C17305.5,-1285.6838 17305.5,-1276.9891 17305.5,-1268.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17309.0001,-1268.298 17305.5,-1258.2981 17302.0001,-1268.2981 17309.0001,-1268.298\"/>\n",
"</g>\n",
"<!-- 305 -->\n",
"<g id=\"node306\" class=\"node\">\n",
"<title>305</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.501961\" stroke=\"#000000\" points=\"15808,-1139 15591,-1139 15591,-1056 15808,-1056 15808,-1139\"/>\n",
"<text text-anchor=\"start\" x=\"15670.5\" y=\"-1123.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #305</text>\n",
"<text text-anchor=\"start\" x=\"15665.5\" y=\"-1108.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cumin ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"15655.5\" y=\"-1093.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1058</text>\n",
"<text text-anchor=\"start\" x=\"15599\" y=\"-1078.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [222, 6, 641, 56, 6, 117, 10]</text>\n",
"<text text-anchor=\"start\" x=\"15661.5\" y=\"-1063.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 304&#45;&gt;305 -->\n",
"<g id=\"edge305\" class=\"edge\">\n",
"<title>304&#45;&gt;305</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M15894.5746,-1174.8796C15868.4262,-1164.5074 15840.2632,-1153.3361 15813.6923,-1142.7963\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"15814.9522,-1139.5308 15804.3662,-1139.0969 15812.3711,-1146.0376 15814.9522,-1139.5308\"/>\n",
"</g>\n",
"<!-- 426 -->\n",
"<g id=\"node427\" class=\"node\">\n",
"<title>426</title>\n",
"<polygon fill=\"#b139e5\" fill-opacity=\"0.333333\" stroke=\"#000000\" points=\"16087.5,-1139 15911.5,-1139 15911.5,-1056 16087.5,-1056 16087.5,-1139\"/>\n",
"<text text-anchor=\"start\" x=\"15970.5\" y=\"-1123.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #426</text>\n",
"<text text-anchor=\"start\" x=\"15973.5\" y=\"-1108.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">pea ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"15962.5\" y=\"-1093.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 39</text>\n",
"<text text-anchor=\"start\" x=\"15919.5\" y=\"-1078.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [15, 0, 1, 0, 0, 23, 0]</text>\n",
"<text text-anchor=\"start\" x=\"15925\" y=\"-1063.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 304&#45;&gt;426 -->\n",
"<g id=\"edge426\" class=\"edge\">\n",
"<title>304&#45;&gt;426</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M15999.5,-1174.8796C15999.5,-1166.6838 15999.5,-1157.9891 15999.5,-1149.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16003.0001,-1149.298 15999.5,-1139.2981 15996.0001,-1149.2981 16003.0001,-1149.298\"/>\n",
"</g>\n",
"<!-- 306 -->\n",
"<g id=\"node307\" class=\"node\">\n",
"<title>306</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.521569\" stroke=\"#000000\" points=\"14978,-1020 14761,-1020 14761,-937 14978,-937 14978,-1020\"/>\n",
"<text text-anchor=\"start\" x=\"14840.5\" y=\"-1004.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #306</text>\n",
"<text text-anchor=\"start\" x=\"14834.5\" y=\"-989.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">shallot ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"14825.5\" y=\"-974.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1027</text>\n",
"<text text-anchor=\"start\" x=\"14769\" y=\"-959.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [218, 6, 639, 43, 6, 105, 10]</text>\n",
"<text text-anchor=\"start\" x=\"14831.5\" y=\"-944.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 305&#45;&gt;306 -->\n",
"<g id=\"edge306\" class=\"edge\">\n",
"<title>305&#45;&gt;306</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M15590.992,-1081.9428C15435.1853,-1059.6043 15149.1532,-1018.5948 14987.9909,-995.4885\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14988.4302,-992.0157 14978.0346,-994.061 14987.4367,-998.9449 14988.4302,-992.0157\"/>\n",
"</g>\n",
"<!-- 407 -->\n",
"<g id=\"node408\" class=\"node\">\n",
"<title>407</title>\n",
"<polygon fill=\"#39e5e2\" fill-opacity=\"0.050980\" stroke=\"#000000\" points=\"15787.5,-1020 15611.5,-1020 15611.5,-937 15787.5,-937 15787.5,-1020\"/>\n",
"<text text-anchor=\"start\" x=\"15670.5\" y=\"-1004.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #407</text>\n",
"<text text-anchor=\"start\" x=\"15661\" y=\"-989.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">oregano ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"15662.5\" y=\"-974.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 31</text>\n",
"<text text-anchor=\"start\" x=\"15619.5\" y=\"-959.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [4, 0, 2, 13, 0, 12, 0]</text>\n",
"<text text-anchor=\"start\" x=\"15660.5\" y=\"-944.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = jewish</text>\n",
"</g>\n",
"<!-- 305&#45;&gt;407 -->\n",
"<g id=\"edge407\" class=\"edge\">\n",
"<title>305&#45;&gt;407</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M15699.5,-1055.8796C15699.5,-1047.6838 15699.5,-1038.9891 15699.5,-1030.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"15703.0001,-1030.298 15699.5,-1020.2981 15696.0001,-1030.2981 15703.0001,-1030.298\"/>\n",
"</g>\n",
"<!-- 307 -->\n",
"<g id=\"node308\" class=\"node\">\n",
"<title>307</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.560784\" stroke=\"#000000\" points=\"13975,-901 13758,-901 13758,-818 13975,-818 13975,-901\"/>\n",
"<text text-anchor=\"start\" x=\"13837.5\" y=\"-885.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #307</text>\n",
"<text text-anchor=\"start\" x=\"13832.5\" y=\"-870.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">thyme ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"13826\" y=\"-855.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 948</text>\n",
"<text text-anchor=\"start\" x=\"13766\" y=\"-840.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [173, 6, 609, 42, 5, 103, 10]</text>\n",
"<text text-anchor=\"start\" x=\"13828.5\" y=\"-825.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 306&#45;&gt;307 -->\n",
"<g id=\"edge307\" class=\"edge\">\n",
"<title>306&#45;&gt;307</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14760.7307,-965.5952C14571.1866,-943.1069 14181.8565,-896.9152 13985.425,-873.6097\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13985.6987,-870.1178 13975.3559,-872.4151 13984.8739,-877.069 13985.6987,-870.1178\"/>\n",
"</g>\n",
"<!-- 384 -->\n",
"<g id=\"node385\" class=\"node\">\n",
"<title>384</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.305882\" stroke=\"#000000\" points=\"14957.5,-901 14781.5,-901 14781.5,-818 14957.5,-818 14957.5,-901\"/>\n",
"<text text-anchor=\"start\" x=\"14840.5\" y=\"-885.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #384</text>\n",
"<text text-anchor=\"start\" x=\"14834.5\" y=\"-870.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cheese ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"14832.5\" y=\"-855.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 79</text>\n",
"<text text-anchor=\"start\" x=\"14789.5\" y=\"-840.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [45, 0, 30, 1, 1, 2, 0]</text>\n",
"<text text-anchor=\"start\" x=\"14831\" y=\"-825.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 306&#45;&gt;384 -->\n",
"<g id=\"edge384\" class=\"edge\">\n",
"<title>306&#45;&gt;384</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14869.5,-936.8796C14869.5,-928.6838 14869.5,-919.9891 14869.5,-911.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14873.0001,-911.298 14869.5,-901.2981 14866.0001,-911.2981 14873.0001,-911.298\"/>\n",
"</g>\n",
"<!-- 308 -->\n",
"<g id=\"node309\" class=\"node\">\n",
"<title>308</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.615686\" stroke=\"#000000\" points=\"12932,-782 12729,-782 12729,-699 12932,-699 12932,-782\"/>\n",
"<text text-anchor=\"start\" x=\"12801.5\" y=\"-766.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #308</text>\n",
"<text text-anchor=\"start\" x=\"12793\" y=\"-751.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cilantro ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"12790\" y=\"-736.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 821</text>\n",
"<text text-anchor=\"start\" x=\"12737\" y=\"-721.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [122, 5, 551, 38, 5, 91, 9]</text>\n",
"<text text-anchor=\"start\" x=\"12792.5\" y=\"-706.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 307&#45;&gt;308 -->\n",
"<g id=\"edge308\" class=\"edge\">\n",
"<title>307&#45;&gt;308</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M13757.5879,-846.9898C13559.4922,-824.2356 13142.2469,-776.3088 12942.1507,-753.3247\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12942.5386,-749.8464 12932.2045,-752.1823 12941.7398,-756.8006 12942.5386,-749.8464\"/>\n",
"</g>\n",
"<!-- 353 -->\n",
"<g id=\"node354\" class=\"node\">\n",
"<title>353</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.090196\" stroke=\"#000000\" points=\"13958,-782 13775,-782 13775,-699 13958,-699 13958,-782\"/>\n",
"<text text-anchor=\"start\" x=\"13837.5\" y=\"-766.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #353</text>\n",
"<text text-anchor=\"start\" x=\"13799.5\" y=\"-751.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">green_bell_pepper ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"13826\" y=\"-736.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 127</text>\n",
"<text text-anchor=\"start\" x=\"13783\" y=\"-721.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [51, 1, 58, 4, 0, 12, 1]</text>\n",
"<text text-anchor=\"start\" x=\"13828.5\" y=\"-706.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 307&#45;&gt;353 -->\n",
"<g id=\"edge353\" class=\"edge\">\n",
"<title>307&#45;&gt;353</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M13866.5,-817.8796C13866.5,-809.6838 13866.5,-800.9891 13866.5,-792.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13870.0001,-792.298 13866.5,-782.2981 13863.0001,-792.2981 13870.0001,-792.298\"/>\n",
"</g>\n",
"<!-- 309 -->\n",
"<g id=\"node310\" class=\"node\">\n",
"<title>309</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.631373\" stroke=\"#000000\" points=\"12199,-663 11996,-663 11996,-580 12199,-580 12199,-663\"/>\n",
"<text text-anchor=\"start\" x=\"12068.5\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #309</text>\n",
"<text text-anchor=\"start\" x=\"12058.5\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">mustard ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"12057\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 797</text>\n",
"<text text-anchor=\"start\" x=\"12004\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [119, 5, 547, 34, 5, 78, 9]</text>\n",
"<text text-anchor=\"start\" x=\"12059.5\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 308&#45;&gt;309 -->\n",
"<g id=\"edge309\" class=\"edge\">\n",
"<title>308&#45;&gt;309</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M12728.9646,-724.0161C12592.5078,-701.8628 12350.7758,-662.6184 12209.2735,-639.646\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12209.693,-636.1684 12199.2614,-638.0206 12208.5712,-643.0779 12209.693,-636.1684\"/>\n",
"</g>\n",
"<!-- 342 -->\n",
"<g id=\"node343\" class=\"node\">\n",
"<title>342</title>\n",
"<polygon fill=\"#b139e5\" fill-opacity=\"0.450980\" stroke=\"#000000\" points=\"12915.5,-663 12745.5,-663 12745.5,-580 12915.5,-580 12915.5,-663\"/>\n",
"<text text-anchor=\"start\" x=\"12801.5\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #342</text>\n",
"<text text-anchor=\"start\" x=\"12796.5\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">ginger ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"12793.5\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 24</text>\n",
"<text text-anchor=\"start\" x=\"12753.5\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 4, 4, 0, 13, 0]</text>\n",
"<text text-anchor=\"start\" x=\"12756\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 308&#45;&gt;342 -->\n",
"<g id=\"edge342\" class=\"edge\">\n",
"<title>308&#45;&gt;342</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M12830.5,-698.8796C12830.5,-690.6838 12830.5,-681.9891 12830.5,-673.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12834.0001,-673.298 12830.5,-663.2981 12827.0001,-673.2981 12834.0001,-673.298\"/>\n",
"</g>\n",
"<!-- 310 -->\n",
"<g id=\"node311\" class=\"node\">\n",
"<title>310</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.658824\" stroke=\"#000000\" points=\"11647,-544 11444,-544 11444,-461 11647,-461 11647,-544\"/>\n",
"<text text-anchor=\"start\" x=\"11516.5\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #310</text>\n",
"<text text-anchor=\"start\" x=\"11478.5\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">green_bell_pepper ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"11505\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 761</text>\n",
"<text text-anchor=\"start\" x=\"11452\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [103, 3, 536, 33, 2, 75, 9]</text>\n",
"<text text-anchor=\"start\" x=\"11507.5\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 309&#45;&gt;310 -->\n",
"<g id=\"edge310\" class=\"edge\">\n",
"<title>309&#45;&gt;310</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11995.9332,-599.6043C11900.0509,-578.934 11756.5768,-548.0039 11657.4365,-526.6312\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11657.8957,-523.1499 11647.3826,-524.4638 11656.4204,-529.9927 11657.8957,-523.1499\"/>\n",
"</g>\n",
"<!-- 331 -->\n",
"<g id=\"node332\" class=\"node\">\n",
"<title>331</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.200000\" stroke=\"#000000\" points=\"12185.5,-544 12009.5,-544 12009.5,-461 12185.5,-461 12185.5,-544\"/>\n",
"<text text-anchor=\"start\" x=\"12068.5\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #331</text>\n",
"<text text-anchor=\"start\" x=\"12070.5\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">fish ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"12060.5\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 36</text>\n",
"<text text-anchor=\"start\" x=\"12017.5\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [16, 2, 11, 1, 3, 3, 0]</text>\n",
"<text text-anchor=\"start\" x=\"12059\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 309&#45;&gt;331 -->\n",
"<g id=\"edge331\" class=\"edge\">\n",
"<title>309&#45;&gt;331</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M12097.5,-579.8796C12097.5,-571.6838 12097.5,-562.9891 12097.5,-554.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12101.0001,-554.298 12097.5,-544.2981 12094.0001,-554.2981 12101.0001,-554.298\"/>\n",
"</g>\n",
"<!-- 311 -->\n",
"<g id=\"node312\" class=\"node\">\n",
"<title>311</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.670588\" stroke=\"#000000\" points=\"11283,-425 11080,-425 11080,-342 11283,-342 11283,-425\"/>\n",
"<text text-anchor=\"start\" x=\"11152.5\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #311</text>\n",
"<text text-anchor=\"start\" x=\"11144\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">almond ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"11141\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 737</text>\n",
"<text text-anchor=\"start\" x=\"11088\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [101, 3, 528, 32, 2, 62, 9]</text>\n",
"<text text-anchor=\"start\" x=\"11143.5\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 310&#45;&gt;311 -->\n",
"<g id=\"edge311\" class=\"edge\">\n",
"<title>310&#45;&gt;311</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11443.6217,-469.1936C11396.5954,-453.8196 11340.6525,-435.5306 11292.5495,-419.8046\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11293.631,-416.476 11283.0384,-416.6952 11291.4557,-423.1294 11293.631,-416.476\"/>\n",
"</g>\n",
"<!-- 324 -->\n",
"<g id=\"node325\" class=\"node\">\n",
"<title>324</title>\n",
"<polygon fill=\"#b139e5\" fill-opacity=\"0.313725\" stroke=\"#000000\" points=\"11630.5,-425 11460.5,-425 11460.5,-342 11630.5,-342 11630.5,-425\"/>\n",
"<text text-anchor=\"start\" x=\"11516.5\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #324</text>\n",
"<text text-anchor=\"start\" x=\"11508.5\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">vinegar ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"11508.5\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 24</text>\n",
"<text text-anchor=\"start\" x=\"11468.5\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 8, 1, 0, 13, 0]</text>\n",
"<text text-anchor=\"start\" x=\"11471\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 310&#45;&gt;324 -->\n",
"<g id=\"edge324\" class=\"edge\">\n",
"<title>310&#45;&gt;324</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11545.5,-460.8796C11545.5,-452.6838 11545.5,-443.9891 11545.5,-435.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11549.0001,-435.298 11545.5,-425.2981 11542.0001,-435.2981 11549.0001,-435.298\"/>\n",
"</g>\n",
"<!-- 312 -->\n",
"<g id=\"node313\" class=\"node\">\n",
"<title>312</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.686275\" stroke=\"#000000\" points=\"10914,-306 10717,-306 10717,-223 10914,-223 10914,-306\"/>\n",
"<text text-anchor=\"start\" x=\"10786.5\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #312</text>\n",
"<text text-anchor=\"start\" x=\"10782\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cream ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"10775\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 723</text>\n",
"<text text-anchor=\"start\" x=\"10725\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [95, 3, 526, 29, 2, 59, 9]</text>\n",
"<text text-anchor=\"start\" x=\"10777.5\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 311&#45;&gt;312 -->\n",
"<g id=\"edge312\" class=\"edge\">\n",
"<title>311&#45;&gt;312</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11079.5486,-350.3519C11031.0651,-334.5881 10973.07,-315.7318 10923.7974,-299.7115\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10924.6568,-296.3106 10914.0646,-296.547 10922.4924,-302.9676 10924.6568,-296.3106\"/>\n",
"</g>\n",
"<!-- 319 -->\n",
"<g id=\"node320\" class=\"node\">\n",
"<title>319</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.274510\" stroke=\"#000000\" points=\"11263,-306 11100,-306 11100,-223 11263,-223 11263,-306\"/>\n",
"<text text-anchor=\"start\" x=\"11152.5\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #319</text>\n",
"<text text-anchor=\"start\" x=\"11149.5\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">garlic ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"11144.5\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 14</text>\n",
"<text text-anchor=\"start\" x=\"11108\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [6, 0, 2, 3, 0, 3, 0]</text>\n",
"<text text-anchor=\"start\" x=\"11143\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 311&#45;&gt;319 -->\n",
"<g id=\"edge319\" class=\"edge\">\n",
"<title>311&#45;&gt;319</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11181.5,-341.8796C11181.5,-333.6838 11181.5,-324.9891 11181.5,-316.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11185.0001,-316.298 11181.5,-306.2981 11178.0001,-316.2981 11185.0001,-316.298\"/>\n",
"</g>\n",
"<!-- 313 -->\n",
"<g id=\"node314\" class=\"node\">\n",
"<title>313</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.705882\" stroke=\"#000000\" points=\"10633,-187 10436,-187 10436,-104 10633,-104 10633,-187\"/>\n",
"<text text-anchor=\"start\" x=\"10505.5\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #313</text>\n",
"<text text-anchor=\"start\" x=\"10501\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">potato ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"10494\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 692</text>\n",
"<text text-anchor=\"start\" x=\"10444\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [83, 2, 512, 28, 2, 57, 8]</text>\n",
"<text text-anchor=\"start\" x=\"10496.5\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 312&#45;&gt;313 -->\n",
"<g id=\"edge313\" class=\"edge\">\n",
"<title>312&#45;&gt;313</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10717.2198,-222.8796C10692.9414,-212.598 10666.8088,-201.5311 10642.1126,-191.0726\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10643.2979,-187.7737 10632.7247,-187.0969 10640.5681,-194.2195 10643.2979,-187.7737\"/>\n",
"</g>\n",
"<!-- 316 -->\n",
"<g id=\"node317\" class=\"node\">\n",
"<title>316</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.105882\" stroke=\"#000000\" points=\"10903.5,-187 10727.5,-187 10727.5,-104 10903.5,-104 10903.5,-187\"/>\n",
"<text text-anchor=\"start\" x=\"10786.5\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #316</text>\n",
"<text text-anchor=\"start\" x=\"10781.5\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">lemon ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"10778.5\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 31</text>\n",
"<text text-anchor=\"start\" x=\"10735.5\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [12, 1, 14, 1, 0, 2, 1]</text>\n",
"<text text-anchor=\"start\" x=\"10777.5\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 312&#45;&gt;316 -->\n",
"<g id=\"edge316\" class=\"edge\">\n",
"<title>312&#45;&gt;316</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10815.5,-222.8796C10815.5,-214.6838 10815.5,-205.9891 10815.5,-197.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10819.0001,-197.298 10815.5,-187.2981 10812.0001,-197.2981 10819.0001,-197.298\"/>\n",
"</g>\n",
"<!-- 314 -->\n",
"<g id=\"node315\" class=\"node\">\n",
"<title>314</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.725490\" stroke=\"#000000\" points=\"10428,-68 10231,-68 10231,0 10428,0 10428,-68\"/>\n",
"<text text-anchor=\"start\" x=\"10300.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #314</text>\n",
"<text text-anchor=\"start\" x=\"10289\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 630</text>\n",
"<text text-anchor=\"start\" x=\"10239\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [76, 1, 478, 22, 2, 46, 5]</text>\n",
"<text text-anchor=\"start\" x=\"10291.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 313&#45;&gt;314 -->\n",
"<g id=\"edge314\" class=\"edge\">\n",
"<title>313&#45;&gt;314</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10458.1656,-103.9815C10439.4803,-93.8186 10419.5518,-82.9794 10401.0976,-72.9421\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10402.6257,-69.789 10392.1686,-68.0856 10399.281,-75.9383 10402.6257,-69.789\"/>\n",
"</g>\n",
"<!-- 315 -->\n",
"<g id=\"node316\" class=\"node\">\n",
"<title>315</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.450980\" stroke=\"#000000\" points=\"10622.5,-68 10446.5,-68 10446.5,0 10622.5,0 10622.5,-68\"/>\n",
"<text text-anchor=\"start\" x=\"10505.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #315</text>\n",
"<text text-anchor=\"start\" x=\"10497.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 62</text>\n",
"<text text-anchor=\"start\" x=\"10454.5\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [7, 1, 34, 6, 0, 11, 3]</text>\n",
"<text text-anchor=\"start\" x=\"10496.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 313&#45;&gt;315 -->\n",
"<g id=\"edge315\" class=\"edge\">\n",
"<title>313&#45;&gt;315</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10534.5,-103.9815C10534.5,-95.618 10534.5,-86.7965 10534.5,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10538.0001,-78.2636 10534.5,-68.2637 10531.0001,-78.2637 10538.0001,-78.2636\"/>\n",
"</g>\n",
"<!-- 317 -->\n",
"<g id=\"node318\" class=\"node\">\n",
"<title>317</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.317647\" stroke=\"#000000\" points=\"10810.5,-68 10640.5,-68 10640.5,0 10810.5,0 10810.5,-68\"/>\n",
"<text text-anchor=\"start\" x=\"10696.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #317</text>\n",
"<text text-anchor=\"start\" x=\"10688.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 27</text>\n",
"<text text-anchor=\"start\" x=\"10648.5\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [8, 1, 14, 1, 0, 2, 1]</text>\n",
"<text text-anchor=\"start\" x=\"10687.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 316&#45;&gt;317 -->\n",
"<g id=\"edge317\" class=\"edge\">\n",
"<title>316&#45;&gt;317</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10781.9873,-103.9815C10774.643,-94.8828 10766.8612,-85.242 10759.4981,-76.1199\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10762.1612,-73.8467 10753.1568,-68.2637 10756.7143,-78.2434 10762.1612,-73.8467\"/>\n",
"</g>\n",
"<!-- 318 -->\n",
"<g id=\"node319\" class=\"node\">\n",
"<title>318</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"10992,-68 10829,-68 10829,0 10992,0 10992,-68\"/>\n",
"<text text-anchor=\"start\" x=\"10881.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #318</text>\n",
"<text text-anchor=\"start\" x=\"10877\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 4</text>\n",
"<text text-anchor=\"start\" x=\"10837\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [4, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"10872\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 316&#45;&gt;318 -->\n",
"<g id=\"edge318\" class=\"edge\">\n",
"<title>316&#45;&gt;318</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10850.8745,-103.9815C10858.6268,-94.8828 10866.8409,-85.242 10874.6131,-76.1199\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10877.4854,-78.1454 10881.3067,-68.2637 10872.1572,-73.6056 10877.4854,-78.1454\"/>\n",
"</g>\n",
"<!-- 320 -->\n",
"<g id=\"node321\" class=\"node\">\n",
"<title>320</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.376471\" stroke=\"#000000\" points=\"11172,-187 11009,-187 11009,-104 11172,-104 11172,-187\"/>\n",
"<text text-anchor=\"start\" x=\"11061.5\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #320</text>\n",
"<text text-anchor=\"start\" x=\"11037.5\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">black_pepper ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"11053.5\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 11</text>\n",
"<text text-anchor=\"start\" x=\"11017\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [6, 0, 2, 3, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"11052\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 319&#45;&gt;320 -->\n",
"<g id=\"edge320\" class=\"edge\">\n",
"<title>319&#45;&gt;320</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11149.6726,-222.8796C11142.8543,-213.9633 11135.5844,-204.4565 11128.5579,-195.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11131.318,-193.1156 11122.4632,-187.2981 11125.7575,-197.3678 11131.318,-193.1156\"/>\n",
"</g>\n",
"<!-- 323 -->\n",
"<g id=\"node324\" class=\"node\">\n",
"<title>323</title>\n",
"<polygon fill=\"#b139e5\" stroke=\"#000000\" points=\"11355,-179.5 11190,-179.5 11190,-111.5 11355,-111.5 11355,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"11243.5\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #323</text>\n",
"<text text-anchor=\"start\" x=\"11239\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"11199\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 0, 3, 0]</text>\n",
"<text text-anchor=\"start\" x=\"11198\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 319&#45;&gt;323 -->\n",
"<g id=\"edge323\" class=\"edge\">\n",
"<title>319&#45;&gt;323</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11213.3274,-222.8796C11221.9884,-211.5536 11231.3781,-199.2748 11240.072,-187.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11242.9649,-189.8846 11246.2592,-179.8149 11237.4044,-185.6324 11242.9649,-189.8846\"/>\n",
"</g>\n",
"<!-- 321 -->\n",
"<g id=\"node322\" class=\"node\">\n",
"<title>321</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.666667\" stroke=\"#000000\" points=\"11173,-68 11010,-68 11010,0 11173,0 11173,-68\"/>\n",
"<text text-anchor=\"start\" x=\"11062.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #321</text>\n",
"<text text-anchor=\"start\" x=\"11058\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 8</text>\n",
"<text text-anchor=\"start\" x=\"11018\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [6, 0, 0, 2, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"11053\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 320&#45;&gt;321 -->\n",
"<g id=\"edge321\" class=\"edge\">\n",
"<title>320&#45;&gt;321</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11090.8724,-103.9815C11090.9474,-95.618 11091.0265,-86.7965 11091.1023,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11094.6028,-78.2947 11091.1927,-68.2637 11087.6031,-78.2318 11094.6028,-78.2947\"/>\n",
"</g>\n",
"<!-- 322 -->\n",
"<g id=\"node323\" class=\"node\">\n",
"<title>322</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.498039\" stroke=\"#000000\" points=\"11354,-68 11191,-68 11191,0 11354,0 11354,-68\"/>\n",
"<text text-anchor=\"start\" x=\"11243.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #322</text>\n",
"<text text-anchor=\"start\" x=\"11239\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"11199\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 2, 1, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"11234.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 320&#45;&gt;322 -->\n",
"<g id=\"edge322\" class=\"edge\">\n",
"<title>320&#45;&gt;322</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11158.2701,-103.9815C11174.5573,-94.0034 11191.9085,-83.3733 11208.0403,-73.4904\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11210.1638,-76.2941 11216.8625,-68.0856 11206.507,-70.3252 11210.1638,-76.2941\"/>\n",
"</g>\n",
"<!-- 325 -->\n",
"<g id=\"node326\" class=\"node\">\n",
"<title>325</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"11536,-306 11373,-306 11373,-223 11536,-223 11536,-306\"/>\n",
"<text text-anchor=\"start\" x=\"11425.5\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #325</text>\n",
"<text text-anchor=\"start\" x=\"11428\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">bay ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"11417.5\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 19</text>\n",
"<text text-anchor=\"start\" x=\"11381\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 8, 1, 0, 8, 0]</text>\n",
"<text text-anchor=\"start\" x=\"11416.5\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 324&#45;&gt;325 -->\n",
"<g id=\"edge325\" class=\"edge\">\n",
"<title>324&#45;&gt;325</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11513.6726,-341.8796C11506.8543,-332.9633 11499.5844,-323.4565 11492.5579,-314.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11495.318,-312.1156 11486.4632,-306.2981 11489.7575,-316.3678 11495.318,-312.1156\"/>\n",
"</g>\n",
"<!-- 330 -->\n",
"<g id=\"node331\" class=\"node\">\n",
"<title>330</title>\n",
"<polygon fill=\"#b139e5\" stroke=\"#000000\" points=\"11719,-298.5 11554,-298.5 11554,-230.5 11719,-230.5 11719,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"11607.5\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #330</text>\n",
"<text text-anchor=\"start\" x=\"11603\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 5</text>\n",
"<text text-anchor=\"start\" x=\"11563\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 0, 5, 0]</text>\n",
"<text text-anchor=\"start\" x=\"11562\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 324&#45;&gt;330 -->\n",
"<g id=\"edge330\" class=\"edge\">\n",
"<title>324&#45;&gt;330</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11577.3274,-341.8796C11585.9884,-330.5536 11595.3781,-318.2748 11604.072,-306.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11606.9649,-308.8846 11610.2592,-298.8149 11601.4044,-304.6324 11606.9649,-308.8846\"/>\n",
"</g>\n",
"<!-- 326 -->\n",
"<g id=\"node327\" class=\"node\">\n",
"<title>326</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.274510\" stroke=\"#000000\" points=\"11536,-187 11373,-187 11373,-104 11536,-104 11536,-187\"/>\n",
"<text text-anchor=\"start\" x=\"11425.5\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #326</text>\n",
"<text text-anchor=\"start\" x=\"11415.5\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cayenne ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"11417.5\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 16</text>\n",
"<text text-anchor=\"start\" x=\"11381\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 8, 1, 0, 5, 0]</text>\n",
"<text text-anchor=\"start\" x=\"11416.5\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 325&#45;&gt;326 -->\n",
"<g id=\"edge326\" class=\"edge\">\n",
"<title>325&#45;&gt;326</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11454.5,-222.8796C11454.5,-214.6838 11454.5,-205.9891 11454.5,-197.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11458.0001,-197.298 11454.5,-187.2981 11451.0001,-197.2981 11458.0001,-197.298\"/>\n",
"</g>\n",
"<!-- 329 -->\n",
"<g id=\"node330\" class=\"node\">\n",
"<title>329</title>\n",
"<polygon fill=\"#b139e5\" stroke=\"#000000\" points=\"11719,-179.5 11554,-179.5 11554,-111.5 11719,-111.5 11719,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"11607.5\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #329</text>\n",
"<text text-anchor=\"start\" x=\"11603\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"11563\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 0, 3, 0]</text>\n",
"<text text-anchor=\"start\" x=\"11562\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 325&#45;&gt;329 -->\n",
"<g id=\"edge329\" class=\"edge\">\n",
"<title>325&#45;&gt;329</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11518.1548,-222.8796C11536.9111,-210.6158 11557.3761,-197.2348 11575.933,-185.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11577.8575,-188.025 11584.3118,-179.623 11574.0267,-182.1662 11577.8575,-188.025\"/>\n",
"</g>\n",
"<!-- 327 -->\n",
"<g id=\"node328\" class=\"node\">\n",
"<title>327</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.600000\" stroke=\"#000000\" points=\"11536,-68 11373,-68 11373,0 11536,0 11536,-68\"/>\n",
"<text text-anchor=\"start\" x=\"11425.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #327</text>\n",
"<text text-anchor=\"start\" x=\"11417.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 12</text>\n",
"<text text-anchor=\"start\" x=\"11381\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 8, 1, 0, 2, 0]</text>\n",
"<text text-anchor=\"start\" x=\"11416.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 326&#45;&gt;327 -->\n",
"<g id=\"edge327\" class=\"edge\">\n",
"<title>326&#45;&gt;327</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11454.5,-103.9815C11454.5,-95.618 11454.5,-86.7965 11454.5,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11458.0001,-78.2636 11454.5,-68.2637 11451.0001,-78.2637 11458.0001,-78.2636\"/>\n",
"</g>\n",
"<!-- 328 -->\n",
"<g id=\"node329\" class=\"node\">\n",
"<title>328</title>\n",
"<polygon fill=\"#b139e5\" fill-opacity=\"0.666667\" stroke=\"#000000\" points=\"11719,-68 11554,-68 11554,0 11719,0 11719,-68\"/>\n",
"<text text-anchor=\"start\" x=\"11607.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #328</text>\n",
"<text text-anchor=\"start\" x=\"11603\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 4</text>\n",
"<text text-anchor=\"start\" x=\"11563\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0, 3, 0]</text>\n",
"<text text-anchor=\"start\" x=\"11562\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 326&#45;&gt;328 -->\n",
"<g id=\"edge328\" class=\"edge\">\n",
"<title>326&#45;&gt;328</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11522.2701,-103.9815C11538.5573,-94.0034 11555.9085,-83.3733 11572.0403,-73.4904\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11574.1638,-76.2941 11580.8625,-68.0856 11570.507,-70.3252 11574.1638,-76.2941\"/>\n",
"</g>\n",
"<!-- 332 -->\n",
"<g id=\"node333\" class=\"node\">\n",
"<title>332</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.435294\" stroke=\"#000000\" points=\"12090.5,-425 11920.5,-425 11920.5,-342 12090.5,-342 12090.5,-425\"/>\n",
"<text text-anchor=\"start\" x=\"11976.5\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #332</text>\n",
"<text text-anchor=\"start\" x=\"11973.5\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">bread ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"11968.5\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 28</text>\n",
"<text text-anchor=\"start\" x=\"11928.5\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [15, 2, 5, 1, 3, 2, 0]</text>\n",
"<text text-anchor=\"start\" x=\"11967\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 331&#45;&gt;332 -->\n",
"<g id=\"edge332\" class=\"edge\">\n",
"<title>331&#45;&gt;332</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M12065.3229,-460.8796C12058.4296,-451.9633 12051.0798,-442.4565 12043.9761,-433.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12046.6999,-431.0687 12037.8145,-425.2981 12041.1619,-435.3502 12046.6999,-431.0687\"/>\n",
"</g>\n",
"<!-- 339 -->\n",
"<g id=\"node340\" class=\"node\">\n",
"<title>339</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.713725\" stroke=\"#000000\" points=\"12272,-425 12109,-425 12109,-342 12272,-342 12272,-425\"/>\n",
"<text text-anchor=\"start\" x=\"12161.5\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #339</text>\n",
"<text text-anchor=\"start\" x=\"12154.5\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">tomato ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"12157\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 8</text>\n",
"<text text-anchor=\"start\" x=\"12117\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 6, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"12152.5\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 331&#45;&gt;339 -->\n",
"<g id=\"edge339\" class=\"edge\">\n",
"<title>331&#45;&gt;339</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M12130.0269,-460.8796C12136.9951,-451.9633 12144.4247,-442.4565 12151.6056,-433.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12154.4343,-435.3326 12157.8343,-425.2981 12148.9188,-431.0221 12154.4343,-435.3326\"/>\n",
"</g>\n",
"<!-- 333 -->\n",
"<g id=\"node334\" class=\"node\">\n",
"<title>333</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.572549\" stroke=\"#000000\" points=\"11907.5,-306 11737.5,-306 11737.5,-223 11907.5,-223 11907.5,-306\"/>\n",
"<text text-anchor=\"start\" x=\"11793.5\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #333</text>\n",
"<text text-anchor=\"start\" x=\"11776.5\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cardamom ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"11785.5\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 24</text>\n",
"<text text-anchor=\"start\" x=\"11745.5\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [15, 1, 2, 1, 3, 2, 0]</text>\n",
"<text text-anchor=\"start\" x=\"11784\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 332&#45;&gt;333 -->\n",
"<g id=\"edge333\" class=\"edge\">\n",
"<title>332&#45;&gt;333</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11941.4955,-341.8796C11926.4505,-332.0962 11910.3121,-321.6019 11894.9267,-311.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11896.7598,-308.6143 11886.4684,-306.0969 11892.9437,-314.4827 11896.7598,-308.6143\"/>\n",
"</g>\n",
"<!-- 338 -->\n",
"<g id=\"node339\" class=\"node\">\n",
"<title>338</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.666667\" stroke=\"#000000\" points=\"12089,-298.5 11926,-298.5 11926,-230.5 12089,-230.5 12089,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"11978.5\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #338</text>\n",
"<text text-anchor=\"start\" x=\"11974\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 4</text>\n",
"<text text-anchor=\"start\" x=\"11934\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 1, 3, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"11969.5\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 332&#45;&gt;338 -->\n",
"<g id=\"edge338\" class=\"edge\">\n",
"<title>332&#45;&gt;338</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M12006.1995,-341.8796C12006.3788,-331.2134 12006.5722,-319.7021 12006.7538,-308.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12010.2546,-308.8724 12006.9233,-298.8149 12003.2556,-308.7547 12010.2546,-308.8724\"/>\n",
"</g>\n",
"<!-- 334 -->\n",
"<g id=\"node335\" class=\"node\">\n",
"<title>334</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.650980\" stroke=\"#000000\" points=\"11907.5,-187 11737.5,-187 11737.5,-104 11907.5,-104 11907.5,-187\"/>\n",
"<text text-anchor=\"start\" x=\"11793.5\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #334</text>\n",
"<text text-anchor=\"start\" x=\"11769.5\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">black_pepper ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"11785.5\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 22</text>\n",
"<text text-anchor=\"start\" x=\"11745.5\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [15, 1, 2, 1, 1, 2, 0]</text>\n",
"<text text-anchor=\"start\" x=\"11784\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 333&#45;&gt;334 -->\n",
"<g id=\"edge334\" class=\"edge\">\n",
"<title>333&#45;&gt;334</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11822.5,-222.8796C11822.5,-214.6838 11822.5,-205.9891 11822.5,-197.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11826.0001,-197.298 11822.5,-187.2981 11819.0001,-197.2981 11826.0001,-197.298\"/>\n",
"</g>\n",
"<!-- 337 -->\n",
"<g id=\"node338\" class=\"node\">\n",
"<title>337</title>\n",
"<polygon fill=\"#3956e5\" stroke=\"#000000\" points=\"12089,-179.5 11926,-179.5 11926,-111.5 12089,-111.5 12089,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"11978.5\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #337</text>\n",
"<text text-anchor=\"start\" x=\"11974\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"11934\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 2, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"11951\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = scandinavian</text>\n",
"</g>\n",
"<!-- 333&#45;&gt;337 -->\n",
"<g id=\"edge337\" class=\"edge\">\n",
"<title>333&#45;&gt;337</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11887.204,-222.8796C11906.2696,-210.6158 11927.0719,-197.2348 11945.9346,-185.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11947.9347,-187.9766 11954.4516,-179.623 11944.1478,-182.0893 11947.9347,-187.9766\"/>\n",
"</g>\n",
"<!-- 335 -->\n",
"<g id=\"node336\" class=\"node\">\n",
"<title>335</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.858824\" stroke=\"#000000\" points=\"11907.5,-68 11737.5,-68 11737.5,0 11907.5,0 11907.5,-68\"/>\n",
"<text text-anchor=\"start\" x=\"11793.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #335</text>\n",
"<text text-anchor=\"start\" x=\"11785.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 15</text>\n",
"<text text-anchor=\"start\" x=\"11745.5\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [13, 0, 0, 0, 1, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"11784\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 334&#45;&gt;335 -->\n",
"<g id=\"edge335\" class=\"edge\">\n",
"<title>334&#45;&gt;335</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11822.5,-103.9815C11822.5,-95.618 11822.5,-86.7965 11822.5,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11826.0001,-78.2636 11822.5,-68.2637 11819.0001,-78.2637 11826.0001,-78.2636\"/>\n",
"</g>\n",
"<!-- 336 -->\n",
"<g id=\"node337\" class=\"node\">\n",
"<title>336</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"12089,-68 11926,-68 11926,0 12089,0 12089,-68\"/>\n",
"<text text-anchor=\"start\" x=\"11978.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #336</text>\n",
"<text text-anchor=\"start\" x=\"11974\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 7</text>\n",
"<text text-anchor=\"start\" x=\"11934\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 1, 2, 1, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"11969\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 334&#45;&gt;336 -->\n",
"<g id=\"edge336\" class=\"edge\">\n",
"<title>334&#45;&gt;336</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11891.3872,-103.9815C11907.9429,-94.0034 11925.5801,-83.3733 11941.9778,-73.4904\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11944.1874,-76.2453 11950.9454,-68.0856 11940.574,-70.25 11944.1874,-76.2453\"/>\n",
"</g>\n",
"<!-- 340 -->\n",
"<g id=\"node341\" class=\"node\">\n",
"<title>340</title>\n",
"<polygon fill=\"#39e54d\" stroke=\"#000000\" points=\"12270,-298.5 12107,-298.5 12107,-230.5 12270,-230.5 12270,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"12159.5\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #340</text>\n",
"<text text-anchor=\"start\" x=\"12155\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 6</text>\n",
"<text text-anchor=\"start\" x=\"12115\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 6, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"12150.5\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 339&#45;&gt;340 -->\n",
"<g id=\"edge340\" class=\"edge\">\n",
"<title>339&#45;&gt;340</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M12189.8005,-341.8796C12189.6212,-331.2134 12189.4278,-319.7021 12189.2462,-308.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12192.7444,-308.7547 12189.0767,-298.8149 12185.7454,-308.8724 12192.7444,-308.7547\"/>\n",
"</g>\n",
"<!-- 341 -->\n",
"<g id=\"node342\" class=\"node\">\n",
"<title>341</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"12451,-298.5 12288,-298.5 12288,-230.5 12451,-230.5 12451,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"12340.5\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #341</text>\n",
"<text text-anchor=\"start\" x=\"12336\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"12296\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"12331\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 339&#45;&gt;341 -->\n",
"<g id=\"edge341\" class=\"edge\">\n",
"<title>339&#45;&gt;341</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M12253.1055,-341.8796C12271.3865,-329.7263 12291.3178,-316.4759 12309.4376,-304.4297\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12311.7821,-307.074 12318.1721,-298.623 12307.9067,-301.2447 12311.7821,-307.074\"/>\n",
"</g>\n",
"<!-- 343 -->\n",
"<g id=\"node344\" class=\"node\">\n",
"<title>343</title>\n",
"<polygon fill=\"#b139e5\" fill-opacity=\"0.501961\" stroke=\"#000000\" points=\"12823.5,-544 12653.5,-544 12653.5,-461 12823.5,-461 12823.5,-544\"/>\n",
"<text text-anchor=\"start\" x=\"12709.5\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #343</text>\n",
"<text text-anchor=\"start\" x=\"12699\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">zucchini ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"12701.5\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 22</text>\n",
"<text text-anchor=\"start\" x=\"12661.5\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 4, 4, 0, 13, 0]</text>\n",
"<text text-anchor=\"start\" x=\"12664\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 342&#45;&gt;343 -->\n",
"<g id=\"edge343\" class=\"edge\">\n",
"<title>342&#45;&gt;343</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M12798.3229,-579.8796C12791.4296,-570.9633 12784.0798,-561.4565 12776.9761,-552.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12779.6999,-550.0687 12770.8145,-544.2981 12774.1619,-554.3502 12779.6999,-550.0687\"/>\n",
"</g>\n",
"<!-- 352 -->\n",
"<g id=\"node353\" class=\"node\">\n",
"<title>352</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"13005,-536.5 12842,-536.5 12842,-468.5 13005,-468.5 13005,-536.5\"/>\n",
"<text text-anchor=\"start\" x=\"12894.5\" y=\"-521.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #352</text>\n",
"<text text-anchor=\"start\" x=\"12890\" y=\"-506.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"12850\" y=\"-491.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"12885\" y=\"-476.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 342&#45;&gt;352 -->\n",
"<g id=\"edge352\" class=\"edge\">\n",
"<title>342&#45;&gt;352</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M12863.0269,-579.8796C12871.8783,-568.5536 12881.4743,-556.2748 12890.3593,-544.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12893.2824,-546.8494 12896.6824,-536.8149 12887.7669,-542.539 12893.2824,-546.8494\"/>\n",
"</g>\n",
"<!-- 344 -->\n",
"<g id=\"node345\" class=\"node\">\n",
"<title>344</title>\n",
"<polygon fill=\"#b139e5\" fill-opacity=\"0.560784\" stroke=\"#000000\" points=\"12731.5,-425 12561.5,-425 12561.5,-342 12731.5,-342 12731.5,-425\"/>\n",
"<text text-anchor=\"start\" x=\"12617.5\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #344</text>\n",
"<text text-anchor=\"start\" x=\"12613\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">honey ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"12609.5\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 20</text>\n",
"<text text-anchor=\"start\" x=\"12569.5\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 4, 2, 0, 13, 0]</text>\n",
"<text text-anchor=\"start\" x=\"12572\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 343&#45;&gt;344 -->\n",
"<g id=\"edge344\" class=\"edge\">\n",
"<title>343&#45;&gt;344</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M12706.3229,-460.8796C12699.4296,-451.9633 12692.0798,-442.4565 12684.9761,-433.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12687.6999,-431.0687 12678.8145,-425.2981 12682.1619,-435.3502 12687.6999,-431.0687\"/>\n",
"</g>\n",
"<!-- 351 -->\n",
"<g id=\"node352\" class=\"node\">\n",
"<title>351</title>\n",
"<polygon fill=\"#39e5e2\" stroke=\"#000000\" points=\"12913,-417.5 12750,-417.5 12750,-349.5 12913,-349.5 12913,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"12802.5\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #351</text>\n",
"<text text-anchor=\"start\" x=\"12798\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"12758\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 2, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"12792.5\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = jewish</text>\n",
"</g>\n",
"<!-- 343&#45;&gt;351 -->\n",
"<g id=\"edge351\" class=\"edge\">\n",
"<title>343&#45;&gt;351</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M12771.0269,-460.8796C12779.8783,-449.5536 12789.4743,-437.2748 12798.3593,-425.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12801.2824,-427.8494 12804.6824,-417.8149 12795.7669,-423.539 12801.2824,-427.8494\"/>\n",
"</g>\n",
"<!-- 345 -->\n",
"<g id=\"node346\" class=\"node\">\n",
"<title>345</title>\n",
"<polygon fill=\"#b139e5\" fill-opacity=\"0.643137\" stroke=\"#000000\" points=\"12639.5,-306 12469.5,-306 12469.5,-223 12639.5,-223 12639.5,-306\"/>\n",
"<text text-anchor=\"start\" x=\"12525.5\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #345</text>\n",
"<text text-anchor=\"start\" x=\"12526.5\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">kale ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"12517.5\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 18</text>\n",
"<text text-anchor=\"start\" x=\"12477.5\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 4, 1, 0, 13, 0]</text>\n",
"<text text-anchor=\"start\" x=\"12480\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 344&#45;&gt;345 -->\n",
"<g id=\"edge345\" class=\"edge\">\n",
"<title>344&#45;&gt;345</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M12614.3229,-341.8796C12607.4296,-332.9633 12600.0798,-323.4565 12592.9761,-314.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12595.6999,-312.0687 12586.8145,-306.2981 12590.1619,-316.3502 12595.6999,-312.0687\"/>\n",
"</g>\n",
"<!-- 350 -->\n",
"<g id=\"node351\" class=\"node\">\n",
"<title>350</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"12821,-298.5 12658,-298.5 12658,-230.5 12821,-230.5 12821,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"12710.5\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #350</text>\n",
"<text text-anchor=\"start\" x=\"12706\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"12666\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 1, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"12701\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 344&#45;&gt;350 -->\n",
"<g id=\"edge350\" class=\"edge\">\n",
"<title>344&#45;&gt;350</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M12679.0269,-341.8796C12687.8783,-330.5536 12697.4743,-318.2748 12706.3593,-306.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12709.2824,-308.8494 12712.6824,-298.8149 12703.7669,-304.539 12709.2824,-308.8494\"/>\n",
"</g>\n",
"<!-- 346 -->\n",
"<g id=\"node347\" class=\"node\">\n",
"<title>346</title>\n",
"<polygon fill=\"#b139e5\" fill-opacity=\"0.713725\" stroke=\"#000000\" points=\"12452.5,-187 12282.5,-187 12282.5,-104 12452.5,-104 12452.5,-187\"/>\n",
"<text text-anchor=\"start\" x=\"12338.5\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #346</text>\n",
"<text text-anchor=\"start\" x=\"12332.5\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">squash ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"12330.5\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 17</text>\n",
"<text text-anchor=\"start\" x=\"12290.5\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 3, 1, 0, 13, 0]</text>\n",
"<text text-anchor=\"start\" x=\"12293\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 345&#45;&gt;346 -->\n",
"<g id=\"edge346\" class=\"edge\">\n",
"<title>345&#45;&gt;346</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M12489.0965,-222.8796C12473.7226,-213.0962 12457.2315,-202.6019 12441.5098,-192.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12443.1823,-189.5129 12432.8666,-187.0969 12439.4241,-195.4185 12443.1823,-189.5129\"/>\n",
"</g>\n",
"<!-- 349 -->\n",
"<g id=\"node350\" class=\"node\">\n",
"<title>349</title>\n",
"<polygon fill=\"#39e54d\" stroke=\"#000000\" points=\"12634,-179.5 12471,-179.5 12471,-111.5 12634,-111.5 12634,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"12523.5\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #349</text>\n",
"<text text-anchor=\"start\" x=\"12519\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"12479\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"12514.5\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 345&#45;&gt;349 -->\n",
"<g id=\"edge349\" class=\"edge\">\n",
"<title>345&#45;&gt;349</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M12553.8005,-222.8796C12553.6212,-212.2134 12553.4278,-200.7021 12553.2462,-189.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12556.7444,-189.7547 12553.0767,-179.8149 12549.7454,-189.8724 12556.7444,-189.7547\"/>\n",
"</g>\n",
"<!-- 347 -->\n",
"<g id=\"node348\" class=\"node\">\n",
"<title>347</title>\n",
"<polygon fill=\"#b139e5\" fill-opacity=\"0.784314\" stroke=\"#000000\" points=\"12279.5,-68 12109.5,-68 12109.5,0 12279.5,0 12279.5,-68\"/>\n",
"<text text-anchor=\"start\" x=\"12165.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #347</text>\n",
"<text text-anchor=\"start\" x=\"12157.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 16</text>\n",
"<text text-anchor=\"start\" x=\"12117.5\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 2, 1, 0, 13, 0]</text>\n",
"<text text-anchor=\"start\" x=\"12120\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 346&#45;&gt;347 -->\n",
"<g id=\"edge347\" class=\"edge\">\n",
"<title>346&#45;&gt;347</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M12303.0812,-103.9815C12287.7427,-94.0957 12271.4115,-83.5701 12256.1984,-73.7651\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12257.6878,-70.5611 12247.3862,-68.0856 12253.8956,-76.445 12257.6878,-70.5611\"/>\n",
"</g>\n",
"<!-- 348 -->\n",
"<g id=\"node349\" class=\"node\">\n",
"<title>348</title>\n",
"<polygon fill=\"#39e54d\" stroke=\"#000000\" points=\"12461,-68 12298,-68 12298,0 12461,0 12461,-68\"/>\n",
"<text text-anchor=\"start\" x=\"12350.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #348</text>\n",
"<text text-anchor=\"start\" x=\"12346\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"12306\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"12341.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 346&#45;&gt;348 -->\n",
"<g id=\"edge348\" class=\"edge\">\n",
"<title>346&#45;&gt;348</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M12371.9684,-103.9815C12372.8685,-95.618 12373.8179,-86.7965 12374.7279,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12378.2222,-78.5808 12375.8124,-68.2637 12371.2624,-77.8317 12378.2222,-78.5808\"/>\n",
"</g>\n",
"<!-- 354 -->\n",
"<g id=\"node355\" class=\"node\">\n",
"<title>354</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.098039\" stroke=\"#000000\" points=\"13859.5,-663 13683.5,-663 13683.5,-580 13859.5,-580 13859.5,-663\"/>\n",
"<text text-anchor=\"start\" x=\"13742.5\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #354</text>\n",
"<text text-anchor=\"start\" x=\"13739.5\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">bread ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"13731\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 123</text>\n",
"<text text-anchor=\"start\" x=\"13691.5\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [51, 1, 58, 4, 0, 8, 1]</text>\n",
"<text text-anchor=\"start\" x=\"13733.5\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 353&#45;&gt;354 -->\n",
"<g id=\"edge354\" class=\"edge\">\n",
"<title>353&#45;&gt;354</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M13833.2736,-698.8796C13826.1556,-689.9633 13818.5661,-680.4565 13811.2308,-671.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13813.8425,-668.9295 13804.8682,-663.2981 13808.3719,-673.2968 13813.8425,-668.9295\"/>\n",
"</g>\n",
"<!-- 383 -->\n",
"<g id=\"node384\" class=\"node\">\n",
"<title>383</title>\n",
"<polygon fill=\"#b139e5\" stroke=\"#000000\" points=\"14043,-655.5 13878,-655.5 13878,-587.5 14043,-587.5 14043,-655.5\"/>\n",
"<text text-anchor=\"start\" x=\"13931.5\" y=\"-640.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #383</text>\n",
"<text text-anchor=\"start\" x=\"13927\" y=\"-625.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 4</text>\n",
"<text text-anchor=\"start\" x=\"13887\" y=\"-610.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 0, 4, 0]</text>\n",
"<text text-anchor=\"start\" x=\"13886\" y=\"-595.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 353&#45;&gt;383 -->\n",
"<g id=\"edge383\" class=\"edge\">\n",
"<title>353&#45;&gt;383</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M13899.3766,-698.8796C13908.3232,-687.5536 13918.0224,-675.2748 13927.0029,-663.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13929.942,-665.8316 13933.3941,-655.8149 13924.449,-661.4926 13929.942,-665.8316\"/>\n",
"</g>\n",
"<!-- 355 -->\n",
"<g id=\"node356\" class=\"node\">\n",
"<title>355</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.250980\" stroke=\"#000000\" points=\"13761.5,-544 13585.5,-544 13585.5,-461 13761.5,-461 13761.5,-544\"/>\n",
"<text text-anchor=\"start\" x=\"13644.5\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #355</text>\n",
"<text text-anchor=\"start\" x=\"13637.5\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">tomato ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"13633\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 105</text>\n",
"<text text-anchor=\"start\" x=\"13593.5\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [37, 1, 54, 4, 0, 8, 1]</text>\n",
"<text text-anchor=\"start\" x=\"13635.5\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 354&#45;&gt;355 -->\n",
"<g id=\"edge355\" class=\"edge\">\n",
"<title>354&#45;&gt;355</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M13737.2244,-579.8796C13729.8816,-570.9633 13722.0524,-561.4565 13714.4854,-552.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13716.9808,-549.7924 13707.9219,-544.2981 13711.5773,-554.2424 13716.9808,-549.7924\"/>\n",
"</g>\n",
"<!-- 376 -->\n",
"<g id=\"node377\" class=\"node\">\n",
"<title>376</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.713725\" stroke=\"#000000\" points=\"13955.5,-544 13785.5,-544 13785.5,-461 13955.5,-461 13955.5,-544\"/>\n",
"<text text-anchor=\"start\" x=\"13841.5\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #376</text>\n",
"<text text-anchor=\"start\" x=\"13832.5\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">chicken ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"13833.5\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 18</text>\n",
"<text text-anchor=\"start\" x=\"13793.5\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [14, 0, 4, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"13832\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 354&#45;&gt;376 -->\n",
"<g id=\"edge376\" class=\"edge\">\n",
"<title>354&#45;&gt;376</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M13806.1254,-579.8796C13813.618,-570.8733 13821.6119,-561.2644 13829.3279,-551.9897\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13832.0219,-554.224 13835.7268,-544.2981 13826.6407,-549.7472 13832.0219,-554.224\"/>\n",
"</g>\n",
"<!-- 356 -->\n",
"<g id=\"node357\" class=\"node\">\n",
"<title>356</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.047059\" stroke=\"#000000\" points=\"13297.5,-425 13121.5,-425 13121.5,-342 13297.5,-342 13297.5,-425\"/>\n",
"<text text-anchor=\"start\" x=\"13180.5\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #356</text>\n",
"<text text-anchor=\"start\" x=\"13183\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">bay ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"13172.5\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 72</text>\n",
"<text text-anchor=\"start\" x=\"13129.5\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [33, 1, 31, 1, 0, 5, 1]</text>\n",
"<text text-anchor=\"start\" x=\"13171\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 355&#45;&gt;356 -->\n",
"<g id=\"edge356\" class=\"edge\">\n",
"<title>355&#45;&gt;356</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M13585.4065,-479.907C13506.0997,-459.5676 13389.7141,-429.7187 13307.4961,-408.6326\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13308.1997,-405.1999 13297.6437,-406.1058 13306.4607,-411.9804 13308.1997,-405.1999\"/>\n",
"</g>\n",
"<!-- 367 -->\n",
"<g id=\"node368\" class=\"node\">\n",
"<title>367</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.654902\" stroke=\"#000000\" points=\"13758.5,-425 13588.5,-425 13588.5,-342 13758.5,-342 13758.5,-425\"/>\n",
"<text text-anchor=\"start\" x=\"13644.5\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #367</text>\n",
"<text text-anchor=\"start\" x=\"13625\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">grape_juice ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"13636.5\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 33</text>\n",
"<text text-anchor=\"start\" x=\"13596.5\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [4, 0, 23, 3, 0, 3, 0]</text>\n",
"<text text-anchor=\"start\" x=\"13635.5\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 355&#45;&gt;367 -->\n",
"<g id=\"edge367\" class=\"edge\">\n",
"<title>355&#45;&gt;367</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M13673.5,-460.8796C13673.5,-452.6838 13673.5,-443.9891 13673.5,-435.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13677.0001,-435.298 13673.5,-425.2981 13670.0001,-435.2981 13677.0001,-435.298\"/>\n",
"</g>\n",
"<!-- 357 -->\n",
"<g id=\"node358\" class=\"node\">\n",
"<title>357</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.211765\" stroke=\"#000000\" points=\"13016.5,-306 12840.5,-306 12840.5,-223 13016.5,-223 13016.5,-306\"/>\n",
"<text text-anchor=\"start\" x=\"12899.5\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #357</text>\n",
"<text text-anchor=\"start\" x=\"12890\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">oregano ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"12891.5\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 53</text>\n",
"<text text-anchor=\"start\" x=\"12848.5\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [20, 1, 27, 0, 0, 4, 1]</text>\n",
"<text text-anchor=\"start\" x=\"12890.5\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 356&#45;&gt;357 -->\n",
"<g id=\"edge357\" class=\"edge\">\n",
"<title>356&#45;&gt;357</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M13121.3608,-346.1742C13091.167,-333.3874 13057.2083,-319.0064 13026.297,-305.9158\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13027.3824,-302.5746 13016.8092,-301.8978 13024.6526,-309.0204 13027.3824,-302.5746\"/>\n",
"</g>\n",
"<!-- 362 -->\n",
"<g id=\"node363\" class=\"node\">\n",
"<title>362</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.600000\" stroke=\"#000000\" points=\"13294.5,-306 13124.5,-306 13124.5,-223 13294.5,-223 13294.5,-306\"/>\n",
"<text text-anchor=\"start\" x=\"13180.5\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #362</text>\n",
"<text text-anchor=\"start\" x=\"13161\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">bell_pepper ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"13172.5\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 19</text>\n",
"<text text-anchor=\"start\" x=\"13132.5\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [13, 0, 4, 1, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"13171\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 356&#45;&gt;362 -->\n",
"<g id=\"edge362\" class=\"edge\">\n",
"<title>356&#45;&gt;362</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M13209.5,-341.8796C13209.5,-333.6838 13209.5,-324.9891 13209.5,-316.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13213.0001,-316.298 13209.5,-306.2981 13206.0001,-316.2981 13213.0001,-316.298\"/>\n",
"</g>\n",
"<!-- 358 -->\n",
"<g id=\"node359\" class=\"node\">\n",
"<title>358</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.101961\" stroke=\"#000000\" points=\"12828.5,-187 12652.5,-187 12652.5,-104 12828.5,-104 12828.5,-187\"/>\n",
"<text text-anchor=\"start\" x=\"12711.5\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #358</text>\n",
"<text text-anchor=\"start\" x=\"12708.5\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">garlic ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"12703.5\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 49</text>\n",
"<text text-anchor=\"start\" x=\"12660.5\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [20, 1, 23, 0, 0, 4, 1]</text>\n",
"<text text-anchor=\"start\" x=\"12702.5\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 357&#45;&gt;358 -->\n",
"<g id=\"edge358\" class=\"edge\">\n",
"<title>357&#45;&gt;358</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M12862.7467,-222.8796C12847.2906,-213.0962 12830.7113,-202.6019 12814.9055,-192.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12816.5377,-189.488 12806.2162,-187.0969 12812.7938,-195.4027 12816.5377,-189.488\"/>\n",
"</g>\n",
"<!-- 361 -->\n",
"<g id=\"node362\" class=\"node\">\n",
"<title>361</title>\n",
"<polygon fill=\"#39e54d\" stroke=\"#000000\" points=\"13010,-179.5 12847,-179.5 12847,-111.5 13010,-111.5 13010,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"12899.5\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #361</text>\n",
"<text text-anchor=\"start\" x=\"12895\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 4</text>\n",
"<text text-anchor=\"start\" x=\"12855\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 4, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"12890.5\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 357&#45;&gt;361 -->\n",
"<g id=\"edge361\" class=\"edge\">\n",
"<title>357&#45;&gt;361</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M12928.5,-222.8796C12928.5,-212.2134 12928.5,-200.7021 12928.5,-189.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12932.0001,-189.8149 12928.5,-179.8149 12925.0001,-189.815 12932.0001,-189.8149\"/>\n",
"</g>\n",
"<!-- 359 -->\n",
"<g id=\"node360\" class=\"node\">\n",
"<title>359</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.439216\" stroke=\"#000000\" points=\"12650.5,-68 12480.5,-68 12480.5,0 12650.5,0 12650.5,-68\"/>\n",
"<text text-anchor=\"start\" x=\"12536.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #359</text>\n",
"<text text-anchor=\"start\" x=\"12528.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 23</text>\n",
"<text text-anchor=\"start\" x=\"12488.5\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [7, 1, 14, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"12527.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 358&#45;&gt;359 -->\n",
"<g id=\"edge359\" class=\"edge\">\n",
"<title>358&#45;&gt;359</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M12675.3365,-103.9815C12659.6757,-94.0034 12642.9918,-83.3733 12627.4805,-73.4904\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12629.312,-70.5073 12618.9976,-68.0856 12625.5506,-76.4109 12629.312,-70.5073\"/>\n",
"</g>\n",
"<!-- 360 -->\n",
"<g id=\"node361\" class=\"node\">\n",
"<title>360</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.235294\" stroke=\"#000000\" points=\"12838.5,-68 12668.5,-68 12668.5,0 12838.5,0 12838.5,-68\"/>\n",
"<text text-anchor=\"start\" x=\"12724.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #360</text>\n",
"<text text-anchor=\"start\" x=\"12716.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 26</text>\n",
"<text text-anchor=\"start\" x=\"12676.5\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [13, 0, 9, 0, 0, 3, 1]</text>\n",
"<text text-anchor=\"start\" x=\"12715\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 358&#45;&gt;360 -->\n",
"<g id=\"edge360\" class=\"edge\">\n",
"<title>358&#45;&gt;360</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M12745.3407,-103.9815C12746.3158,-95.618 12747.3443,-86.7965 12748.3302,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12751.8234,-78.6017 12749.5051,-68.2637 12744.8705,-77.791 12751.8234,-78.6017\"/>\n",
"</g>\n",
"<!-- 363 -->\n",
"<g id=\"node364\" class=\"node\">\n",
"<title>363</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.643137\" stroke=\"#000000\" points=\"13198.5,-187 13028.5,-187 13028.5,-104 13198.5,-104 13198.5,-187\"/>\n",
"<text text-anchor=\"start\" x=\"13084.5\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #363</text>\n",
"<text text-anchor=\"start\" x=\"13078.5\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">pepper ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"13076.5\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 18</text>\n",
"<text text-anchor=\"start\" x=\"13036.5\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [13, 0, 4, 1, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"13075\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 362&#45;&gt;363 -->\n",
"<g id=\"edge363\" class=\"edge\">\n",
"<title>362&#45;&gt;363</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M13175.9239,-222.8796C13168.7309,-213.9633 13161.0616,-204.4565 13153.649,-195.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13156.2224,-192.8836 13147.2195,-187.2981 13150.7742,-197.2788 13156.2224,-192.8836\"/>\n",
"</g>\n",
"<!-- 366 -->\n",
"<g id=\"node367\" class=\"node\">\n",
"<title>366</title>\n",
"<polygon fill=\"#b139e5\" stroke=\"#000000\" points=\"13382,-179.5 13217,-179.5 13217,-111.5 13382,-111.5 13382,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"13270.5\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #366</text>\n",
"<text text-anchor=\"start\" x=\"13266\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"13226\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"13225\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 362&#45;&gt;366 -->\n",
"<g id=\"edge366\" class=\"edge\">\n",
"<title>362&#45;&gt;366</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M13240.9776,-222.8796C13249.5435,-211.5536 13258.83,-199.2748 13267.4283,-187.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13270.3069,-189.902 13273.5475,-179.8149 13264.7238,-185.6795 13270.3069,-189.902\"/>\n",
"</g>\n",
"<!-- 364 -->\n",
"<g id=\"node365\" class=\"node\">\n",
"<title>364</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.768627\" stroke=\"#000000\" points=\"13027.5,-68 12857.5,-68 12857.5,0 13027.5,0 13027.5,-68\"/>\n",
"<text text-anchor=\"start\" x=\"12913.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #364</text>\n",
"<text text-anchor=\"start\" x=\"12905.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 15</text>\n",
"<text text-anchor=\"start\" x=\"12865.5\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [12, 0, 2, 1, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"12904\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 363&#45;&gt;364 -->\n",
"<g id=\"edge364\" class=\"edge\">\n",
"<title>363&#45;&gt;364</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M13049.8259,-103.9815C13034.6648,-94.0957 13018.5224,-83.5701 13003.4851,-73.7651\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13005.0631,-70.6158 12994.7748,-68.0856 13001.2397,-76.4794 13005.0631,-70.6158\"/>\n",
"</g>\n",
"<!-- 365 -->\n",
"<g id=\"node366\" class=\"node\">\n",
"<title>365</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.498039\" stroke=\"#000000\" points=\"13209,-68 13046,-68 13046,0 13209,0 13209,-68\"/>\n",
"<text text-anchor=\"start\" x=\"13098.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #365</text>\n",
"<text text-anchor=\"start\" x=\"13094\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"13054\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 2, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"13089.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 363&#45;&gt;365 -->\n",
"<g id=\"edge365\" class=\"edge\">\n",
"<title>363&#45;&gt;365</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M13118.7131,-103.9815C13119.7632,-95.618 13120.8708,-86.7965 13121.9325,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13125.4247,-78.6218 13123.1978,-68.2637 13118.4792,-77.7497 13125.4247,-78.6218\"/>\n",
"</g>\n",
"<!-- 368 -->\n",
"<g id=\"node369\" class=\"node\">\n",
"<title>368</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.701961\" stroke=\"#000000\" points=\"13579.5,-306 13409.5,-306 13409.5,-223 13579.5,-223 13579.5,-306\"/>\n",
"<text text-anchor=\"start\" x=\"13465.5\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #368</text>\n",
"<text text-anchor=\"start\" x=\"13441.5\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">black_pepper ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"13457.5\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 31</text>\n",
"<text text-anchor=\"start\" x=\"13417.5\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [4, 0, 23, 1, 0, 3, 0]</text>\n",
"<text text-anchor=\"start\" x=\"13456.5\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 367&#45;&gt;368 -->\n",
"<g id=\"edge368\" class=\"edge\">\n",
"<title>367&#45;&gt;368</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M13610.8945,-341.8796C13596.3146,-332.1868 13580.6849,-321.7961 13565.7618,-311.8752\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13567.3355,-308.7185 13557.0702,-306.0969 13563.4601,-314.5479 13567.3355,-308.7185\"/>\n",
"</g>\n",
"<!-- 375 -->\n",
"<g id=\"node376\" class=\"node\">\n",
"<title>375</title>\n",
"<polygon fill=\"#39e5e2\" stroke=\"#000000\" points=\"13761,-298.5 13598,-298.5 13598,-230.5 13761,-230.5 13761,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"13650.5\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #375</text>\n",
"<text text-anchor=\"start\" x=\"13646\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"13606\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 2, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"13640.5\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = jewish</text>\n",
"</g>\n",
"<!-- 367&#45;&gt;375 -->\n",
"<g id=\"edge375\" class=\"edge\">\n",
"<title>367&#45;&gt;375</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M13675.5985,-341.8796C13676.1363,-331.2134 13676.7167,-319.7021 13677.2613,-308.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13680.7617,-308.9785 13677.7698,-298.8149 13673.7706,-308.626 13680.7617,-308.9785\"/>\n",
"</g>\n",
"<!-- 369 -->\n",
"<g id=\"node370\" class=\"node\">\n",
"<title>369</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.462745\" stroke=\"#000000\" points=\"13563,-187 13400,-187 13400,-104 13563,-104 13563,-187\"/>\n",
"<text text-anchor=\"start\" x=\"13452.5\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #369</text>\n",
"<text text-anchor=\"start\" x=\"13448\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">fennel ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"13444.5\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 16</text>\n",
"<text text-anchor=\"start\" x=\"13408\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 9, 1, 0, 3, 0]</text>\n",
"<text text-anchor=\"start\" x=\"13443.5\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 368&#45;&gt;369 -->\n",
"<g id=\"edge369\" class=\"edge\">\n",
"<title>368&#45;&gt;369</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M13489.9532,-222.8796C13489.0579,-214.6838 13488.1081,-205.9891 13487.1808,-197.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13490.6315,-196.8588 13486.0662,-187.2981 13483.6729,-197.6191 13490.6315,-196.8588\"/>\n",
"</g>\n",
"<!-- 372 -->\n",
"<g id=\"node373\" class=\"node\">\n",
"<title>372</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.929412\" stroke=\"#000000\" points=\"13770,-187 13581,-187 13581,-104 13770,-104 13770,-187\"/>\n",
"<text text-anchor=\"start\" x=\"13646.5\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #372</text>\n",
"<text text-anchor=\"start\" x=\"13589\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">whole_grain_wheat_flour ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"13638.5\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 15</text>\n",
"<text text-anchor=\"start\" x=\"13598.5\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 14, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"13637.5\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 368&#45;&gt;372 -->\n",
"<g id=\"edge372\" class=\"edge\">\n",
"<title>368&#45;&gt;372</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M13557.805,-222.8796C13572.6856,-213.0962 13588.6476,-202.6019 13603.8649,-192.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13605.7977,-195.5151 13612.2307,-187.0969 13601.9521,-189.666 13605.7977,-195.5151\"/>\n",
"</g>\n",
"<!-- 370 -->\n",
"<g id=\"node371\" class=\"node\">\n",
"<title>370</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.545098\" stroke=\"#000000\" points=\"13390,-68 13227,-68 13227,0 13390,0 13390,-68\"/>\n",
"<text text-anchor=\"start\" x=\"13279.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #370</text>\n",
"<text text-anchor=\"start\" x=\"13271.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 14</text>\n",
"<text text-anchor=\"start\" x=\"13235\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 9, 0, 0, 3, 0]</text>\n",
"<text text-anchor=\"start\" x=\"13270.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 369&#45;&gt;370 -->\n",
"<g id=\"edge370\" class=\"edge\">\n",
"<title>369&#45;&gt;370</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M13417.0812,-103.9815C13401.7427,-94.0957 13385.4115,-83.5701 13370.1984,-73.7651\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13371.6878,-70.5611 13361.3862,-68.0856 13367.8956,-76.445 13371.6878,-70.5611\"/>\n",
"</g>\n",
"<!-- 371 -->\n",
"<g id=\"node372\" class=\"node\">\n",
"<title>371</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"13571,-68 13408,-68 13408,0 13571,0 13571,-68\"/>\n",
"<text text-anchor=\"start\" x=\"13460.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #371</text>\n",
"<text text-anchor=\"start\" x=\"13456\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"13416\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 1, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"13451\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 369&#45;&gt;371 -->\n",
"<g id=\"edge371\" class=\"edge\">\n",
"<title>369&#45;&gt;371</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M13484.4789,-103.9815C13485.079,-95.618 13485.7119,-86.7965 13486.3186,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13489.8169,-78.4885 13487.0416,-68.2637 13482.8349,-77.9875 13489.8169,-78.4885\"/>\n",
"</g>\n",
"<!-- 373 -->\n",
"<g id=\"node374\" class=\"node\">\n",
"<title>373</title>\n",
"<polygon fill=\"#39e54d\" stroke=\"#000000\" points=\"13760.5,-68 13590.5,-68 13590.5,0 13760.5,0 13760.5,-68\"/>\n",
"<text text-anchor=\"start\" x=\"13646.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #373</text>\n",
"<text text-anchor=\"start\" x=\"13638.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 14</text>\n",
"<text text-anchor=\"start\" x=\"13598.5\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 14, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"13637.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 372&#45;&gt;373 -->\n",
"<g id=\"edge373\" class=\"edge\">\n",
"<title>372&#45;&gt;373</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M13675.5,-103.9815C13675.5,-95.618 13675.5,-86.7965 13675.5,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13679.0001,-78.2636 13675.5,-68.2637 13672.0001,-78.2637 13679.0001,-78.2636\"/>\n",
"</g>\n",
"<!-- 374 -->\n",
"<g id=\"node375\" class=\"node\">\n",
"<title>374</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"13942,-68 13779,-68 13779,0 13942,0 13942,-68\"/>\n",
"<text text-anchor=\"start\" x=\"13831.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #374</text>\n",
"<text text-anchor=\"start\" x=\"13827\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"13787\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"13822\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 372&#45;&gt;374 -->\n",
"<g id=\"edge374\" class=\"edge\">\n",
"<title>372&#45;&gt;374</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M13744.3872,-103.9815C13760.9429,-94.0034 13778.5801,-83.3733 13794.9778,-73.4904\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13797.1874,-76.2453 13803.9454,-68.0856 13793.574,-70.25 13797.1874,-76.2453\"/>\n",
"</g>\n",
"<!-- 377 -->\n",
"<g id=\"node378\" class=\"node\">\n",
"<title>377</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.858824\" stroke=\"#000000\" points=\"13955.5,-425 13785.5,-425 13785.5,-342 13955.5,-342 13955.5,-425\"/>\n",
"<text text-anchor=\"start\" x=\"13841.5\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #377</text>\n",
"<text text-anchor=\"start\" x=\"13840\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">clam ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"13833.5\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 16</text>\n",
"<text text-anchor=\"start\" x=\"13793.5\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [14, 0, 2, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"13832\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 376&#45;&gt;377 -->\n",
"<g id=\"edge377\" class=\"edge\">\n",
"<title>376&#45;&gt;377</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M13870.5,-460.8796C13870.5,-452.6838 13870.5,-443.9891 13870.5,-435.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13874.0001,-435.298 13870.5,-425.2981 13867.0001,-435.2981 13874.0001,-435.298\"/>\n",
"</g>\n",
"<!-- 382 -->\n",
"<g id=\"node383\" class=\"node\">\n",
"<title>382</title>\n",
"<polygon fill=\"#39e54d\" stroke=\"#000000\" points=\"14137,-417.5 13974,-417.5 13974,-349.5 14137,-349.5 14137,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"14026.5\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #382</text>\n",
"<text text-anchor=\"start\" x=\"14022\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"13982\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 2, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"14017.5\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 376&#45;&gt;382 -->\n",
"<g id=\"edge382\" class=\"edge\">\n",
"<title>376&#45;&gt;382</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M13935.204,-460.8796C13954.2696,-448.6158 13975.0719,-435.2348 13993.9346,-423.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13995.9347,-425.9766 14002.4516,-417.623 13992.1478,-420.0893 13995.9347,-425.9766\"/>\n",
"</g>\n",
"<!-- 378 -->\n",
"<g id=\"node379\" class=\"node\">\n",
"<title>378</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.929412\" stroke=\"#000000\" points=\"13955.5,-306 13785.5,-306 13785.5,-223 13955.5,-223 13955.5,-306\"/>\n",
"<text text-anchor=\"start\" x=\"13841.5\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #378</text>\n",
"<text text-anchor=\"start\" x=\"13817.5\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">vegetable_oil ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"13833.5\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 15</text>\n",
"<text text-anchor=\"start\" x=\"13793.5\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [14, 0, 1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"13832\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 377&#45;&gt;378 -->\n",
"<g id=\"edge378\" class=\"edge\">\n",
"<title>377&#45;&gt;378</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M13870.5,-341.8796C13870.5,-333.6838 13870.5,-324.9891 13870.5,-316.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13874.0001,-316.298 13870.5,-306.2981 13867.0001,-316.2981 13874.0001,-316.298\"/>\n",
"</g>\n",
"<!-- 381 -->\n",
"<g id=\"node382\" class=\"node\">\n",
"<title>381</title>\n",
"<polygon fill=\"#39e54d\" stroke=\"#000000\" points=\"14137,-298.5 13974,-298.5 13974,-230.5 14137,-230.5 14137,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"14026.5\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #381</text>\n",
"<text text-anchor=\"start\" x=\"14022\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"13982\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"14017.5\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 377&#45;&gt;381 -->\n",
"<g id=\"edge381\" class=\"edge\">\n",
"<title>377&#45;&gt;381</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M13935.204,-341.8796C13954.2696,-329.6158 13975.0719,-316.2348 13993.9346,-304.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13995.9347,-306.9766 14002.4516,-298.623 13992.1478,-301.0893 13995.9347,-306.9766\"/>\n",
"</g>\n",
"<!-- 379 -->\n",
"<g id=\"node380\" class=\"node\">\n",
"<title>379</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"13958.5,-179.5 13788.5,-179.5 13788.5,-111.5 13958.5,-111.5 13958.5,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"13844.5\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #379</text>\n",
"<text text-anchor=\"start\" x=\"13836.5\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 14</text>\n",
"<text text-anchor=\"start\" x=\"13796.5\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [14, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"13835\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 378&#45;&gt;379 -->\n",
"<g id=\"edge379\" class=\"edge\">\n",
"<title>378&#45;&gt;379</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M13871.5493,-222.8796C13871.8182,-212.2134 13872.1084,-200.7021 13872.3806,-189.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13875.8817,-189.9 13872.6349,-179.8149 13868.8839,-189.7235 13875.8817,-189.9\"/>\n",
"</g>\n",
"<!-- 380 -->\n",
"<g id=\"node381\" class=\"node\">\n",
"<title>380</title>\n",
"<polygon fill=\"#39e54d\" stroke=\"#000000\" points=\"14140,-179.5 13977,-179.5 13977,-111.5 14140,-111.5 14140,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"14029.5\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #380</text>\n",
"<text text-anchor=\"start\" x=\"14025\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"13985\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"14020.5\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 378&#45;&gt;380 -->\n",
"<g id=\"edge380\" class=\"edge\">\n",
"<title>378&#45;&gt;380</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M13936.2533,-222.8796C13955.628,-210.6158 13976.7676,-197.2348 13995.9363,-185.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13998.0137,-187.9288 14004.5913,-179.623 13994.2698,-182.0141 13998.0137,-187.9288\"/>\n",
"</g>\n",
"<!-- 385 -->\n",
"<g id=\"node386\" class=\"node\">\n",
"<title>385</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.439216\" stroke=\"#000000\" points=\"14863.5,-782 14687.5,-782 14687.5,-699 14863.5,-699 14863.5,-782\"/>\n",
"<text text-anchor=\"start\" x=\"14746.5\" y=\"-766.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #385</text>\n",
"<text text-anchor=\"start\" x=\"14742\" y=\"-751.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">fennel ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"14738.5\" y=\"-736.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 71</text>\n",
"<text text-anchor=\"start\" x=\"14695.5\" y=\"-721.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [44, 0, 23, 1, 1, 2, 0]</text>\n",
"<text text-anchor=\"start\" x=\"14737\" y=\"-706.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 384&#45;&gt;385 -->\n",
"<g id=\"edge385\" class=\"edge\">\n",
"<title>384&#45;&gt;385</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14836.6234,-817.8796C14829.5803,-808.9633 14822.0707,-799.4565 14814.8126,-790.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14817.4621,-787.9757 14808.517,-782.2981 14811.9691,-792.3147 14817.4621,-787.9757\"/>\n",
"</g>\n",
"<!-- 404 -->\n",
"<g id=\"node405\" class=\"node\">\n",
"<title>404</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.858824\" stroke=\"#000000\" points=\"15045,-782 14882,-782 14882,-699 15045,-699 15045,-782\"/>\n",
"<text text-anchor=\"start\" x=\"14934.5\" y=\"-766.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #404</text>\n",
"<text text-anchor=\"start\" x=\"14921\" y=\"-751.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">vegetable ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"14930\" y=\"-736.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 8</text>\n",
"<text text-anchor=\"start\" x=\"14890\" y=\"-721.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 7, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"14925.5\" y=\"-706.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 384&#45;&gt;404 -->\n",
"<g id=\"edge404\" class=\"edge\">\n",
"<title>384&#45;&gt;404</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14902.3766,-817.8796C14909.4197,-808.9633 14916.9293,-799.4565 14924.1874,-790.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14927.0309,-792.3147 14930.483,-782.2981 14921.5379,-787.9757 14927.0309,-792.3147\"/>\n",
"</g>\n",
"<!-- 386 -->\n",
"<g id=\"node387\" class=\"node\">\n",
"<title>386</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.552941\" stroke=\"#000000\" points=\"14678.5,-663 14502.5,-663 14502.5,-580 14678.5,-580 14678.5,-663\"/>\n",
"<text text-anchor=\"start\" x=\"14561.5\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #386</text>\n",
"<text text-anchor=\"start\" x=\"14542\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">bell_pepper ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"14553.5\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 64</text>\n",
"<text text-anchor=\"start\" x=\"14510.5\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [43, 0, 17, 1, 1, 2, 0]</text>\n",
"<text text-anchor=\"start\" x=\"14552\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 385&#45;&gt;386 -->\n",
"<g id=\"edge386\" class=\"edge\">\n",
"<title>385&#45;&gt;386</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14710.796,-698.8796C14695.5865,-689.0962 14679.2718,-678.6019 14663.7182,-668.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14665.4713,-665.5632 14655.1675,-663.0969 14661.6843,-671.4505 14665.4713,-665.5632\"/>\n",
"</g>\n",
"<!-- 401 -->\n",
"<g id=\"node402\" class=\"node\">\n",
"<title>401</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.831373\" stroke=\"#000000\" points=\"14860,-663 14697,-663 14697,-580 14860,-580 14860,-663\"/>\n",
"<text text-anchor=\"start\" x=\"14749.5\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #401</text>\n",
"<text text-anchor=\"start\" x=\"14730.5\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">lemongrass ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"14745\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 7</text>\n",
"<text text-anchor=\"start\" x=\"14705\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 6, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"14740.5\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 385&#45;&gt;401 -->\n",
"<g id=\"edge401\" class=\"edge\">\n",
"<title>385&#45;&gt;401</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14776.5493,-698.8796C14776.7559,-690.6838 14776.9751,-681.9891 14777.189,-673.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14780.693,-673.3831 14777.4463,-663.2981 14773.6953,-673.2067 14780.693,-673.3831\"/>\n",
"</g>\n",
"<!-- 387 -->\n",
"<g id=\"node388\" class=\"node\">\n",
"<title>387</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.631373\" stroke=\"#000000\" points=\"14505.5,-544 14329.5,-544 14329.5,-461 14505.5,-461 14505.5,-544\"/>\n",
"<text text-anchor=\"start\" x=\"14388.5\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #387</text>\n",
"<text text-anchor=\"start\" x=\"14383.5\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">thyme ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"14380.5\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 59</text>\n",
"<text text-anchor=\"start\" x=\"14337.5\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [42, 0, 13, 1, 1, 2, 0]</text>\n",
"<text text-anchor=\"start\" x=\"14379\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 386&#45;&gt;387 -->\n",
"<g id=\"edge387\" class=\"edge\">\n",
"<title>386&#45;&gt;387</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14529.993,-579.8796C14515.9018,-570.1868 14500.7961,-559.7961 14486.3731,-549.8752\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14488.1955,-546.8806 14477.9728,-544.0969 14484.2283,-552.6479 14488.1955,-546.8806\"/>\n",
"</g>\n",
"<!-- 398 -->\n",
"<g id=\"node399\" class=\"node\">\n",
"<title>398</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.749020\" stroke=\"#000000\" points=\"14687,-544 14524,-544 14524,-461 14687,-461 14687,-544\"/>\n",
"<text text-anchor=\"start\" x=\"14576.5\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #398</text>\n",
"<text text-anchor=\"start\" x=\"14561\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">soy_sauce ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"14572\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 5</text>\n",
"<text text-anchor=\"start\" x=\"14532\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 4, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"14567.5\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 386&#45;&gt;398 -->\n",
"<g id=\"edge398\" class=\"edge\">\n",
"<title>386&#45;&gt;398</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14595.7463,-579.8796C14596.7907,-571.5938 14597.8994,-562.798 14598.9805,-554.2216\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14602.4532,-554.6573 14600.2313,-544.2981 14595.5081,-553.7818 14602.4532,-554.6573\"/>\n",
"</g>\n",
"<!-- 388 -->\n",
"<g id=\"node389\" class=\"node\">\n",
"<title>388</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.529412\" stroke=\"#000000\" points=\"14331.5,-425 14155.5,-425 14155.5,-342 14331.5,-342 14331.5,-425\"/>\n",
"<text text-anchor=\"start\" x=\"14214.5\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #388</text>\n",
"<text text-anchor=\"start\" x=\"14210\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cream ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"14206.5\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 49</text>\n",
"<text text-anchor=\"start\" x=\"14163.5\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [32, 0, 13, 1, 1, 2, 0]</text>\n",
"<text text-anchor=\"start\" x=\"14205\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 387&#45;&gt;388 -->\n",
"<g id=\"edge388\" class=\"edge\">\n",
"<title>387&#45;&gt;388</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14356.6432,-460.8796C14342.4706,-451.1868 14327.2775,-440.7961 14312.7712,-430.8752\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14314.5525,-427.8531 14304.3224,-425.0969 14310.6008,-433.6311 14314.5525,-427.8531\"/>\n",
"</g>\n",
"<!-- 397 -->\n",
"<g id=\"node398\" class=\"node\">\n",
"<title>397</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"14519.5,-417.5 14349.5,-417.5 14349.5,-349.5 14519.5,-349.5 14519.5,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"14405.5\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #397</text>\n",
"<text text-anchor=\"start\" x=\"14397.5\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 10</text>\n",
"<text text-anchor=\"start\" x=\"14357.5\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [10, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"14396\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 387&#45;&gt;397 -->\n",
"<g id=\"edge397\" class=\"edge\">\n",
"<title>387&#45;&gt;397</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14423.4458,-460.8796C14424.9695,-450.2134 14426.614,-438.7021 14428.1569,-427.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14431.6484,-428.2094 14429.5979,-417.8149 14424.7187,-427.2194 14431.6484,-428.2094\"/>\n",
"</g>\n",
"<!-- 389 -->\n",
"<g id=\"node390\" class=\"node\">\n",
"<title>389</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.584314\" stroke=\"#000000\" points=\"14331.5,-306 14155.5,-306 14155.5,-223 14331.5,-223 14331.5,-306\"/>\n",
"<text text-anchor=\"start\" x=\"14214.5\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #389</text>\n",
"<text text-anchor=\"start\" x=\"14211.5\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">garlic ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"14206.5\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 47</text>\n",
"<text text-anchor=\"start\" x=\"14163.5\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [32, 0, 11, 1, 1, 2, 0]</text>\n",
"<text text-anchor=\"start\" x=\"14205\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 388&#45;&gt;389 -->\n",
"<g id=\"edge389\" class=\"edge\">\n",
"<title>388&#45;&gt;389</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14243.5,-341.8796C14243.5,-333.6838 14243.5,-324.9891 14243.5,-316.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14247.0001,-316.298 14243.5,-306.2981 14240.0001,-316.2981 14247.0001,-316.298\"/>\n",
"</g>\n",
"<!-- 396 -->\n",
"<g id=\"node397\" class=\"node\">\n",
"<title>396</title>\n",
"<polygon fill=\"#39e54d\" stroke=\"#000000\" points=\"14513,-298.5 14350,-298.5 14350,-230.5 14513,-230.5 14513,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"14402.5\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #396</text>\n",
"<text text-anchor=\"start\" x=\"14398\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"14358\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 2, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"14393.5\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 388&#45;&gt;396 -->\n",
"<g id=\"edge396\" class=\"edge\">\n",
"<title>388&#45;&gt;396</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14309.2533,-341.8796C14328.628,-329.6158 14349.7676,-316.2348 14368.9363,-304.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14371.0137,-306.9288 14377.5913,-298.623 14367.2698,-301.0141 14371.0137,-306.9288\"/>\n",
"</g>\n",
"<!-- 390 -->\n",
"<g id=\"node391\" class=\"node\">\n",
"<title>390</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.776471\" stroke=\"#000000\" points=\"14328.5,-187 14158.5,-187 14158.5,-104 14328.5,-104 14328.5,-187\"/>\n",
"<text text-anchor=\"start\" x=\"14214.5\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #390</text>\n",
"<text text-anchor=\"start\" x=\"14211\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">peach ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"14206.5\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 31</text>\n",
"<text text-anchor=\"start\" x=\"14166.5\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [25, 0, 4, 0, 1, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"14205\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 389&#45;&gt;390 -->\n",
"<g id=\"edge390\" class=\"edge\">\n",
"<title>389&#45;&gt;390</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14243.5,-222.8796C14243.5,-214.6838 14243.5,-205.9891 14243.5,-197.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14247.0001,-197.298 14243.5,-187.2981 14240.0001,-197.2981 14247.0001,-197.298\"/>\n",
"</g>\n",
"<!-- 393 -->\n",
"<g id=\"node394\" class=\"node\">\n",
"<title>393</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"14510,-187 14347,-187 14347,-104 14510,-104 14510,-187\"/>\n",
"<text text-anchor=\"start\" x=\"14399.5\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #393</text>\n",
"<text text-anchor=\"start\" x=\"14397\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">chive ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"14391.5\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 16</text>\n",
"<text text-anchor=\"start\" x=\"14355\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [7, 0, 7, 1, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"14390\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 389&#45;&gt;393 -->\n",
"<g id=\"edge393\" class=\"edge\">\n",
"<title>389&#45;&gt;393</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14308.204,-222.8796C14323.4135,-213.0962 14339.7282,-202.6019 14355.2818,-192.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14357.3157,-195.4505 14363.8325,-187.0969 14353.5287,-189.5632 14357.3157,-195.4505\"/>\n",
"</g>\n",
"<!-- 391 -->\n",
"<g id=\"node392\" class=\"node\">\n",
"<title>391</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.807843\" stroke=\"#000000\" points=\"14143.5,-68 13973.5,-68 13973.5,0 14143.5,0 14143.5,-68\"/>\n",
"<text text-anchor=\"start\" x=\"14029.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #391</text>\n",
"<text text-anchor=\"start\" x=\"14021.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 30</text>\n",
"<text text-anchor=\"start\" x=\"13981.5\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [25, 0, 4, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"14020\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 390&#45;&gt;391 -->\n",
"<g id=\"edge391\" class=\"edge\">\n",
"<title>390&#45;&gt;391</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14174.6128,-103.9815C14158.0571,-94.0034 14140.4199,-83.3733 14124.0222,-73.4904\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14125.426,-70.25 14115.0546,-68.0856 14121.8126,-76.2453 14125.426,-70.25\"/>\n",
"</g>\n",
"<!-- 392 -->\n",
"<g id=\"node393\" class=\"node\">\n",
"<title>392</title>\n",
"<polygon fill=\"#b139e5\" stroke=\"#000000\" points=\"14327,-68 14162,-68 14162,0 14327,0 14327,-68\"/>\n",
"<text text-anchor=\"start\" x=\"14215.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #392</text>\n",
"<text text-anchor=\"start\" x=\"14211\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"14171\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"14170\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 390&#45;&gt;392 -->\n",
"<g id=\"edge392\" class=\"edge\">\n",
"<title>390&#45;&gt;392</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14243.8724,-103.9815C14243.9474,-95.618 14244.0265,-86.7965 14244.1023,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14247.6028,-78.2947 14244.1927,-68.2637 14240.6031,-78.2318 14247.6028,-78.2947\"/>\n",
"</g>\n",
"<!-- 394 -->\n",
"<g id=\"node395\" class=\"node\">\n",
"<title>394</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.443137\" stroke=\"#000000\" points=\"14509,-68 14346,-68 14346,0 14509,0 14509,-68\"/>\n",
"<text text-anchor=\"start\" x=\"14398.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #394</text>\n",
"<text text-anchor=\"start\" x=\"14390.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 12</text>\n",
"<text text-anchor=\"start\" x=\"14354\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 7, 1, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"14389.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 393&#45;&gt;394 -->\n",
"<g id=\"edge394\" class=\"edge\">\n",
"<title>393&#45;&gt;394</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14428.1276,-103.9815C14428.0526,-95.618 14427.9735,-86.7965 14427.8977,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14431.3969,-78.2318 14427.8073,-68.2637 14424.3972,-78.2947 14431.3969,-78.2318\"/>\n",
"</g>\n",
"<!-- 395 -->\n",
"<g id=\"node396\" class=\"node\">\n",
"<title>395</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"14690,-68 14527,-68 14527,0 14690,0 14690,-68\"/>\n",
"<text text-anchor=\"start\" x=\"14579.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #395</text>\n",
"<text text-anchor=\"start\" x=\"14575\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 4</text>\n",
"<text text-anchor=\"start\" x=\"14535\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [4, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"14570\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 393&#45;&gt;395 -->\n",
"<g id=\"edge395\" class=\"edge\">\n",
"<title>393&#45;&gt;395</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14495.5254,-103.9815C14511.6336,-94.0034 14528.7941,-83.3733 14544.7487,-73.4904\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14546.8158,-76.3271 14553.4739,-68.0856 14543.1296,-70.3763 14546.8158,-76.3271\"/>\n",
"</g>\n",
"<!-- 399 -->\n",
"<g id=\"node400\" class=\"node\">\n",
"<title>399</title>\n",
"<polygon fill=\"#39e54d\" stroke=\"#000000\" points=\"14701,-417.5 14538,-417.5 14538,-349.5 14701,-349.5 14701,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"14590.5\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #399</text>\n",
"<text text-anchor=\"start\" x=\"14586\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 4</text>\n",
"<text text-anchor=\"start\" x=\"14546\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 4, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"14581.5\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 398&#45;&gt;399 -->\n",
"<g id=\"edge399\" class=\"edge\">\n",
"<title>398&#45;&gt;399</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14610.3965,-460.8796C14611.6514,-450.2134 14613.0056,-438.7021 14614.2763,-427.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14617.7705,-428.1554 14615.4629,-417.8149 14610.8184,-427.3375 14617.7705,-428.1554\"/>\n",
"</g>\n",
"<!-- 400 -->\n",
"<g id=\"node401\" class=\"node\">\n",
"<title>400</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"14882,-417.5 14719,-417.5 14719,-349.5 14882,-349.5 14882,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"14771.5\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #400</text>\n",
"<text text-anchor=\"start\" x=\"14767\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"14727\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"14762\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 398&#45;&gt;400 -->\n",
"<g id=\"edge400\" class=\"edge\">\n",
"<title>398&#45;&gt;400</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14673.7015,-460.8796C14693.8882,-448.5606 14715.922,-435.1143 14735.8753,-422.9376\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14737.8713,-425.8199 14744.5841,-417.623 14734.2248,-419.8446 14737.8713,-425.8199\"/>\n",
"</g>\n",
"<!-- 402 -->\n",
"<g id=\"node403\" class=\"node\">\n",
"<title>402</title>\n",
"<polygon fill=\"#39e54d\" stroke=\"#000000\" points=\"14868,-536.5 14705,-536.5 14705,-468.5 14868,-468.5 14868,-536.5\"/>\n",
"<text text-anchor=\"start\" x=\"14757.5\" y=\"-521.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #402</text>\n",
"<text text-anchor=\"start\" x=\"14753\" y=\"-506.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 6</text>\n",
"<text text-anchor=\"start\" x=\"14713\" y=\"-491.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 6, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"14748.5\" y=\"-476.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 401&#45;&gt;402 -->\n",
"<g id=\"edge402\" class=\"edge\">\n",
"<title>401&#45;&gt;402</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14781.298,-579.8796C14782.0151,-569.2134 14782.7889,-557.7021 14783.515,-546.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14787.0144,-547.0272 14784.1931,-536.8149 14780.0301,-546.5576 14787.0144,-547.0272\"/>\n",
"</g>\n",
"<!-- 403 -->\n",
"<g id=\"node404\" class=\"node\">\n",
"<title>403</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"15049,-536.5 14886,-536.5 14886,-468.5 15049,-468.5 15049,-536.5\"/>\n",
"<text text-anchor=\"start\" x=\"14938.5\" y=\"-521.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #403</text>\n",
"<text text-anchor=\"start\" x=\"14934\" y=\"-506.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"14894\" y=\"-491.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"14929\" y=\"-476.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 401&#45;&gt;403 -->\n",
"<g id=\"edge403\" class=\"edge\">\n",
"<title>401&#45;&gt;403</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14844.603,-579.8796C14864.0808,-567.6158 14885.3329,-554.2348 14904.6035,-542.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14906.7071,-544.913 14913.3046,-536.623 14902.9774,-538.9894 14906.7071,-544.913\"/>\n",
"</g>\n",
"<!-- 405 -->\n",
"<g id=\"node406\" class=\"node\">\n",
"<title>405</title>\n",
"<polygon fill=\"#39e54d\" stroke=\"#000000\" points=\"15041,-655.5 14878,-655.5 14878,-587.5 15041,-587.5 15041,-655.5\"/>\n",
"<text text-anchor=\"start\" x=\"14930.5\" y=\"-640.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #405</text>\n",
"<text text-anchor=\"start\" x=\"14926\" y=\"-625.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 7</text>\n",
"<text text-anchor=\"start\" x=\"14886\" y=\"-610.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 7, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"14921.5\" y=\"-595.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 404&#45;&gt;405 -->\n",
"<g id=\"edge405\" class=\"edge\">\n",
"<title>404&#45;&gt;405</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14962.101,-698.8796C14961.7425,-688.2134 14961.3555,-676.7021 14960.9925,-665.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14964.4875,-665.6917 14960.6534,-655.8149 14957.4915,-665.9269 14964.4875,-665.6917\"/>\n",
"</g>\n",
"<!-- 406 -->\n",
"<g id=\"node407\" class=\"node\">\n",
"<title>406</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"15222,-655.5 15059,-655.5 15059,-587.5 15222,-587.5 15222,-655.5\"/>\n",
"<text text-anchor=\"start\" x=\"15111.5\" y=\"-640.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #406</text>\n",
"<text text-anchor=\"start\" x=\"15107\" y=\"-625.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"15067\" y=\"-610.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"15102\" y=\"-595.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 404&#45;&gt;406 -->\n",
"<g id=\"edge406\" class=\"edge\">\n",
"<title>404&#45;&gt;406</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M15025.406,-698.8796C15043.4828,-686.7263 15063.1914,-673.4759 15081.1087,-661.4297\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"15083.3996,-664.1071 15089.7456,-655.623 15079.4939,-658.2979 15083.3996,-664.1071\"/>\n",
"</g>\n",
"<!-- 408 -->\n",
"<g id=\"node409\" class=\"node\">\n",
"<title>408</title>\n",
"<polygon fill=\"#39e5e2\" fill-opacity=\"0.368627\" stroke=\"#000000\" points=\"15624.5,-901 15454.5,-901 15454.5,-818 15624.5,-818 15624.5,-901\"/>\n",
"<text text-anchor=\"start\" x=\"15510.5\" y=\"-885.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #408</text>\n",
"<text text-anchor=\"start\" x=\"15507.5\" y=\"-870.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">bread ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"15502.5\" y=\"-855.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 25</text>\n",
"<text text-anchor=\"start\" x=\"15462.5\" y=\"-840.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [4, 0, 2, 13, 0, 6, 0]</text>\n",
"<text text-anchor=\"start\" x=\"15500.5\" y=\"-825.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = jewish</text>\n",
"</g>\n",
"<!-- 407&#45;&gt;408 -->\n",
"<g id=\"edge408\" class=\"edge\">\n",
"<title>407&#45;&gt;408</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M15643.5398,-936.8796C15630.6292,-927.2774 15616.7979,-916.9903 15603.5718,-907.1534\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"15605.5414,-904.2564 15595.4286,-901.0969 15601.3639,-909.8732 15605.5414,-904.2564\"/>\n",
"</g>\n",
"<!-- 425 -->\n",
"<g id=\"node426\" class=\"node\">\n",
"<title>425</title>\n",
"<polygon fill=\"#b139e5\" stroke=\"#000000\" points=\"15808,-893.5 15643,-893.5 15643,-825.5 15808,-825.5 15808,-893.5\"/>\n",
"<text text-anchor=\"start\" x=\"15696.5\" y=\"-878.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #425</text>\n",
"<text text-anchor=\"start\" x=\"15692\" y=\"-863.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 6</text>\n",
"<text text-anchor=\"start\" x=\"15652\" y=\"-848.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 0, 6, 0]</text>\n",
"<text text-anchor=\"start\" x=\"15651\" y=\"-833.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 407&#45;&gt;425 -->\n",
"<g id=\"edge425\" class=\"edge\">\n",
"<title>407&#45;&gt;425</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M15708.5935,-936.8796C15710.924,-926.2134 15713.439,-914.7021 15715.7988,-903.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"15719.2874,-904.3316 15718.0026,-893.8149 15712.4487,-902.8374 15719.2874,-904.3316\"/>\n",
"</g>\n",
"<!-- 409 -->\n",
"<g id=\"node410\" class=\"node\">\n",
"<title>409</title>\n",
"<polygon fill=\"#39e5e2\" fill-opacity=\"0.470588\" stroke=\"#000000\" points=\"15491.5,-782 15321.5,-782 15321.5,-699 15491.5,-699 15491.5,-782\"/>\n",
"<text text-anchor=\"start\" x=\"15377.5\" y=\"-766.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #409</text>\n",
"<text text-anchor=\"start\" x=\"15371.5\" y=\"-751.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cheese ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"15369.5\" y=\"-736.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 22</text>\n",
"<text text-anchor=\"start\" x=\"15329.5\" y=\"-721.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 1, 13, 0, 5, 0]</text>\n",
"<text text-anchor=\"start\" x=\"15367.5\" y=\"-706.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = jewish</text>\n",
"</g>\n",
"<!-- 408&#45;&gt;409 -->\n",
"<g id=\"edge409\" class=\"edge\">\n",
"<title>408&#45;&gt;409</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M15492.9831,-817.8796C15482.6152,-808.6031 15471.5329,-798.6874 15460.8801,-789.1559\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"15463.0017,-786.3577 15453.2155,-782.2981 15458.3341,-791.5744 15463.0017,-786.3577\"/>\n",
"</g>\n",
"<!-- 424 -->\n",
"<g id=\"node425\" class=\"node\">\n",
"<title>424</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"15673,-774.5 15510,-774.5 15510,-706.5 15673,-706.5 15673,-774.5\"/>\n",
"<text text-anchor=\"start\" x=\"15562.5\" y=\"-759.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #424</text>\n",
"<text text-anchor=\"start\" x=\"15558\" y=\"-744.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"15518\" y=\"-729.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 1, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"15553\" y=\"-714.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 408&#45;&gt;424 -->\n",
"<g id=\"edge424\" class=\"edge\">\n",
"<title>408&#45;&gt;424</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M15557.6871,-817.8796C15562.444,-806.9935 15567.5857,-795.227 15572.3892,-784.2344\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"15575.7082,-785.3798 15576.5052,-774.8149 15569.2939,-782.5768 15575.7082,-785.3798\"/>\n",
"</g>\n",
"<!-- 410 -->\n",
"<g id=\"node411\" class=\"node\">\n",
"<title>410</title>\n",
"<polygon fill=\"#39e5e2\" fill-opacity=\"0.501961\" stroke=\"#000000\" points=\"15410.5,-663 15240.5,-663 15240.5,-580 15410.5,-580 15410.5,-663\"/>\n",
"<text text-anchor=\"start\" x=\"15296.5\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #410</text>\n",
"<text text-anchor=\"start\" x=\"15286.5\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cayenne ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"15288.5\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 21</text>\n",
"<text text-anchor=\"start\" x=\"15248.5\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 0, 13, 0, 5, 0]</text>\n",
"<text text-anchor=\"start\" x=\"15286.5\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = jewish</text>\n",
"</g>\n",
"<!-- 409&#45;&gt;410 -->\n",
"<g id=\"edge410\" class=\"edge\">\n",
"<title>409&#45;&gt;410</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M15378.1701,-698.8796C15372.2237,-690.1434 15365.8914,-680.8404 15359.755,-671.8253\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"15362.4711,-669.5953 15353.9508,-663.2981 15356.6844,-673.5342 15362.4711,-669.5953\"/>\n",
"</g>\n",
"<!-- 423 -->\n",
"<g id=\"node424\" class=\"node\">\n",
"<title>423</title>\n",
"<polygon fill=\"#39e54d\" stroke=\"#000000\" points=\"15592,-655.5 15429,-655.5 15429,-587.5 15592,-587.5 15592,-655.5\"/>\n",
"<text text-anchor=\"start\" x=\"15481.5\" y=\"-640.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #423</text>\n",
"<text text-anchor=\"start\" x=\"15477\" y=\"-625.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"15437\" y=\"-610.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"15472.5\" y=\"-595.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 409&#45;&gt;423 -->\n",
"<g id=\"edge423\" class=\"edge\">\n",
"<title>409&#45;&gt;423</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M15442.8742,-698.8796C15452.8686,-687.4436 15463.712,-675.0363 15473.7286,-663.575\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"15476.5653,-665.6479 15480.5105,-655.8149 15471.2945,-661.0414 15476.5653,-665.6479\"/>\n",
"</g>\n",
"<!-- 411 -->\n",
"<g id=\"node412\" class=\"node\">\n",
"<title>411</title>\n",
"<polygon fill=\"#39e5e2\" fill-opacity=\"0.274510\" stroke=\"#000000\" points=\"15238,-544 15075,-544 15075,-461 15238,-461 15238,-544\"/>\n",
"<text text-anchor=\"start\" x=\"15127.5\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #411</text>\n",
"<text text-anchor=\"start\" x=\"15123.5\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">wheat ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"15119.5\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 16</text>\n",
"<text text-anchor=\"start\" x=\"15083\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 0, 8, 0, 5, 0]</text>\n",
"<text text-anchor=\"start\" x=\"15117.5\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = jewish</text>\n",
"</g>\n",
"<!-- 410&#45;&gt;411 -->\n",
"<g id=\"edge411\" class=\"edge\">\n",
"<title>410&#45;&gt;411</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M15266.392,-579.8796C15252.6266,-570.1868 15237.8701,-559.7961 15223.7807,-549.8752\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"15225.7661,-546.9926 15215.5746,-544.0969 15221.7359,-552.716 15225.7661,-546.9926\"/>\n",
"</g>\n",
"<!-- 422 -->\n",
"<g id=\"node423\" class=\"node\">\n",
"<title>422</title>\n",
"<polygon fill=\"#39e5e2\" stroke=\"#000000\" points=\"15419,-536.5 15256,-536.5 15256,-468.5 15419,-468.5 15419,-536.5\"/>\n",
"<text text-anchor=\"start\" x=\"15308.5\" y=\"-521.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #422</text>\n",
"<text text-anchor=\"start\" x=\"15304\" y=\"-506.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 5</text>\n",
"<text text-anchor=\"start\" x=\"15264\" y=\"-491.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 5, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"15298.5\" y=\"-476.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = jewish</text>\n",
"</g>\n",
"<!-- 410&#45;&gt;422 -->\n",
"<g id=\"edge422\" class=\"edge\">\n",
"<title>410&#45;&gt;422</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M15329.697,-579.8796C15330.7726,-569.2134 15331.9334,-557.7021 15333.0225,-546.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"15336.5186,-547.1157 15334.0397,-536.8149 15329.5539,-546.4133 15336.5186,-547.1157\"/>\n",
"</g>\n",
"<!-- 412 -->\n",
"<g id=\"node413\" class=\"node\">\n",
"<title>412</title>\n",
"<polygon fill=\"#b139e5\" fill-opacity=\"0.164706\" stroke=\"#000000\" points=\"15149,-425 14984,-425 14984,-342 15149,-342 15149,-425\"/>\n",
"<text text-anchor=\"start\" x=\"15037.5\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #412</text>\n",
"<text text-anchor=\"start\" x=\"15024.5\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">red_wine ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"15033\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 9</text>\n",
"<text text-anchor=\"start\" x=\"14993\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 0, 2, 0, 4, 0]</text>\n",
"<text text-anchor=\"start\" x=\"14992\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 411&#45;&gt;412 -->\n",
"<g id=\"edge412\" class=\"edge\">\n",
"<title>411&#45;&gt;412</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M15125.0224,-460.8796C15118.3471,-452.0534 15111.2342,-442.6485 15104.3504,-433.5466\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"15106.9357,-431.1626 15098.112,-425.2981 15101.3526,-435.3852 15106.9357,-431.1626\"/>\n",
"</g>\n",
"<!-- 419 -->\n",
"<g id=\"node420\" class=\"node\">\n",
"<title>419</title>\n",
"<polygon fill=\"#39e5e2\" fill-opacity=\"0.831373\" stroke=\"#000000\" points=\"15330,-425 15167,-425 15167,-342 15330,-342 15330,-425\"/>\n",
"<text text-anchor=\"start\" x=\"15219.5\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #419</text>\n",
"<text text-anchor=\"start\" x=\"15221\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">lard ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"15215\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 7</text>\n",
"<text text-anchor=\"start\" x=\"15175\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 6, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"15209.5\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = jewish</text>\n",
"</g>\n",
"<!-- 411&#45;&gt;419 -->\n",
"<g id=\"edge419\" class=\"edge\">\n",
"<title>411&#45;&gt;419</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M15188.6771,-460.8796C15195.5704,-451.9633 15202.9202,-442.4565 15210.0239,-433.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"15212.8381,-435.3502 15216.1855,-425.2981 15207.3001,-431.0687 15212.8381,-435.3502\"/>\n",
"</g>\n",
"<!-- 413 -->\n",
"<g id=\"node414\" class=\"node\">\n",
"<title>413</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.200000\" stroke=\"#000000\" points=\"14966,-306 14803,-306 14803,-223 14966,-223 14966,-306\"/>\n",
"<text text-anchor=\"start\" x=\"14855.5\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #413</text>\n",
"<text text-anchor=\"start\" x=\"14848.5\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">tomato ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"14851\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 7</text>\n",
"<text text-anchor=\"start\" x=\"14811\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 0, 2, 0, 2, 0]</text>\n",
"<text text-anchor=\"start\" x=\"14846\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 412&#45;&gt;413 -->\n",
"<g id=\"edge413\" class=\"edge\">\n",
"<title>412&#45;&gt;413</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M15002.8452,-341.8796C14987.8824,-332.0962 14971.8323,-321.6019 14956.5309,-311.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14958.4039,-308.6401 14948.1188,-306.0969 14954.5731,-314.4989 14958.4039,-308.6401\"/>\n",
"</g>\n",
"<!-- 418 -->\n",
"<g id=\"node419\" class=\"node\">\n",
"<title>418</title>\n",
"<polygon fill=\"#b139e5\" stroke=\"#000000\" points=\"15149,-298.5 14984,-298.5 14984,-230.5 15149,-230.5 15149,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"15037.5\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #418</text>\n",
"<text text-anchor=\"start\" x=\"15033\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"14993\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 0, 2, 0]</text>\n",
"<text text-anchor=\"start\" x=\"14992\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 412&#45;&gt;418 -->\n",
"<g id=\"edge418\" class=\"edge\">\n",
"<title>412&#45;&gt;418</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M15066.5,-341.8796C15066.5,-331.2134 15066.5,-319.7021 15066.5,-308.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"15070.0001,-308.8149 15066.5,-298.8149 15063.0001,-308.815 15070.0001,-308.8149\"/>\n",
"</g>\n",
"<!-- 414 -->\n",
"<g id=\"node415\" class=\"node\">\n",
"<title>414</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.250980\" stroke=\"#000000\" points=\"14942,-187 14779,-187 14779,-104 14942,-104 14942,-187\"/>\n",
"<text text-anchor=\"start\" x=\"14831.5\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #414</text>\n",
"<text text-anchor=\"start\" x=\"14819.5\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">chickpea ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"14827\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 6</text>\n",
"<text text-anchor=\"start\" x=\"14787\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 0, 2, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"14822\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 413&#45;&gt;414 -->\n",
"<g id=\"edge414\" class=\"edge\">\n",
"<title>413&#45;&gt;414</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14876.106,-222.8796C14874.4349,-214.5938 14872.6609,-205.798 14870.9312,-197.2216\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14874.3379,-196.4087 14868.9299,-187.2981 14867.476,-197.7927 14874.3379,-196.4087\"/>\n",
"</g>\n",
"<!-- 417 -->\n",
"<g id=\"node418\" class=\"node\">\n",
"<title>417</title>\n",
"<polygon fill=\"#b139e5\" stroke=\"#000000\" points=\"15125,-179.5 14960,-179.5 14960,-111.5 15125,-111.5 15125,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"15013.5\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #417</text>\n",
"<text text-anchor=\"start\" x=\"15009\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"14969\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"14968\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 413&#45;&gt;417 -->\n",
"<g id=\"edge417\" class=\"edge\">\n",
"<title>413&#45;&gt;417</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14939.7607,-222.8796C14955.7503,-210.8368 14973.1703,-197.7167 14989.0474,-185.7586\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14991.3116,-188.435 14997.1938,-179.623 14987.1002,-182.8435 14991.3116,-188.435\"/>\n",
"</g>\n",
"<!-- 415 -->\n",
"<g id=\"node416\" class=\"node\">\n",
"<title>415</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.666667\" stroke=\"#000000\" points=\"14919,-68 14756,-68 14756,0 14919,0 14919,-68\"/>\n",
"<text text-anchor=\"start\" x=\"14808.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #415</text>\n",
"<text text-anchor=\"start\" x=\"14804\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 4</text>\n",
"<text text-anchor=\"start\" x=\"14764\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 0, 1, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"14799\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 414&#45;&gt;415 -->\n",
"<g id=\"edge415\" class=\"edge\">\n",
"<title>414&#45;&gt;415</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14851.9356,-103.9815C14850.1915,-95.5261 14848.3508,-86.6026 14846.5891,-78.0623\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14850.016,-77.3504 14844.5678,-68.2637 14843.1603,-78.7646 14850.016,-77.3504\"/>\n",
"</g>\n",
"<!-- 416 -->\n",
"<g id=\"node417\" class=\"node\">\n",
"<title>416</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"15100,-68 14937,-68 14937,0 15100,0 15100,-68\"/>\n",
"<text text-anchor=\"start\" x=\"14989.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #416</text>\n",
"<text text-anchor=\"start\" x=\"14985\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"14945\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 1, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"14979.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = jewish</text>\n",
"</g>\n",
"<!-- 414&#45;&gt;416 -->\n",
"<g id=\"edge416\" class=\"edge\">\n",
"<title>414&#45;&gt;416</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14919.3334,-103.9815C14933.211,-94.1881 14947.9784,-83.7668 14961.7614,-74.0402\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14964.0469,-76.7111 14970.1993,-68.0856 14960.0108,-70.9918 14964.0469,-76.7111\"/>\n",
"</g>\n",
"<!-- 420 -->\n",
"<g id=\"node421\" class=\"node\">\n",
"<title>420</title>\n",
"<polygon fill=\"#39e5e2\" stroke=\"#000000\" points=\"15330,-298.5 15167,-298.5 15167,-230.5 15330,-230.5 15330,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"15219.5\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #420</text>\n",
"<text text-anchor=\"start\" x=\"15215\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 6</text>\n",
"<text text-anchor=\"start\" x=\"15175\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 6, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"15209.5\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = jewish</text>\n",
"</g>\n",
"<!-- 419&#45;&gt;420 -->\n",
"<g id=\"edge420\" class=\"edge\">\n",
"<title>419&#45;&gt;420</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M15248.5,-341.8796C15248.5,-331.2134 15248.5,-319.7021 15248.5,-308.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"15252.0001,-308.8149 15248.5,-298.8149 15245.0001,-308.815 15252.0001,-308.8149\"/>\n",
"</g>\n",
"<!-- 421 -->\n",
"<g id=\"node422\" class=\"node\">\n",
"<title>421</title>\n",
"<polygon fill=\"#b139e5\" stroke=\"#000000\" points=\"15513,-298.5 15348,-298.5 15348,-230.5 15513,-230.5 15513,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"15401.5\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #421</text>\n",
"<text text-anchor=\"start\" x=\"15397\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"15357\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"15356\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 419&#45;&gt;421 -->\n",
"<g id=\"edge421\" class=\"edge\">\n",
"<title>419&#45;&gt;421</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M15312.1548,-341.8796C15330.9111,-329.6158 15351.3761,-316.2348 15369.933,-304.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"15371.8575,-307.025 15378.3118,-298.623 15368.0267,-301.1662 15371.8575,-307.025\"/>\n",
"</g>\n",
"<!-- 427 -->\n",
"<g id=\"node428\" class=\"node\">\n",
"<title>427</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.376471\" stroke=\"#000000\" points=\"16034.5,-1020 15864.5,-1020 15864.5,-937 16034.5,-937 16034.5,-1020\"/>\n",
"<text text-anchor=\"start\" x=\"15920.5\" y=\"-1004.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #427</text>\n",
"<text text-anchor=\"start\" x=\"15921.5\" y=\"-989.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">leek ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"15912.5\" y=\"-974.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 25</text>\n",
"<text text-anchor=\"start\" x=\"15872.5\" y=\"-959.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [15, 0, 1, 0, 0, 9, 0]</text>\n",
"<text text-anchor=\"start\" x=\"15911\" y=\"-944.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 426&#45;&gt;427 -->\n",
"<g id=\"edge427\" class=\"edge\">\n",
"<title>426&#45;&gt;427</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M15982.0124,-1055.8796C15978.4553,-1047.4136 15974.6745,-1038.4153 15970.9969,-1029.6626\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"15974.1627,-1028.1616 15967.0622,-1020.2981 15967.7092,-1030.8731 15974.1627,-1028.1616\"/>\n",
"</g>\n",
"<!-- 442 -->\n",
"<g id=\"node443\" class=\"node\">\n",
"<title>442</title>\n",
"<polygon fill=\"#b139e5\" stroke=\"#000000\" points=\"16222.5,-1012.5 16052.5,-1012.5 16052.5,-944.5 16222.5,-944.5 16222.5,-1012.5\"/>\n",
"<text text-anchor=\"start\" x=\"16108.5\" y=\"-997.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #442</text>\n",
"<text text-anchor=\"start\" x=\"16100.5\" y=\"-982.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 14</text>\n",
"<text text-anchor=\"start\" x=\"16060.5\" y=\"-967.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 0, 14, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16063\" y=\"-952.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 426&#45;&gt;442 -->\n",
"<g id=\"edge442\" class=\"edge\">\n",
"<title>426&#45;&gt;442</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16047.7657,-1055.8796C16061.4101,-1044.1138 16076.2469,-1031.3197 16089.8546,-1019.5855\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16092.4187,-1021.9961 16097.7062,-1012.8149 16087.8473,-1016.6948 16092.4187,-1021.9961\"/>\n",
"</g>\n",
"<!-- 428 -->\n",
"<g id=\"node429\" class=\"node\">\n",
"<title>428</title>\n",
"<polygon fill=\"#b139e5\" fill-opacity=\"0.101961\" stroke=\"#000000\" points=\"16007,-901 15842,-901 15842,-818 16007,-818 16007,-901\"/>\n",
"<text text-anchor=\"start\" x=\"15895.5\" y=\"-885.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #428</text>\n",
"<text text-anchor=\"start\" x=\"15869\" y=\"-870.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">chicken_broth ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"15887.5\" y=\"-855.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 18</text>\n",
"<text text-anchor=\"start\" x=\"15851\" y=\"-840.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [8, 0, 1, 0, 0, 9, 0]</text>\n",
"<text text-anchor=\"start\" x=\"15850\" y=\"-825.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 427&#45;&gt;428 -->\n",
"<g id=\"edge428\" class=\"edge\">\n",
"<title>427&#45;&gt;428</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M15940.7562,-936.8796C15939.0155,-928.5938 15937.1676,-919.798 15935.3659,-911.2216\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"15938.7624,-910.3648 15933.2811,-901.2981 15931.9119,-911.8041 15938.7624,-910.3648\"/>\n",
"</g>\n",
"<!-- 441 -->\n",
"<g id=\"node442\" class=\"node\">\n",
"<title>441</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"16188,-893.5 16025,-893.5 16025,-825.5 16188,-825.5 16188,-893.5\"/>\n",
"<text text-anchor=\"start\" x=\"16077.5\" y=\"-878.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #441</text>\n",
"<text text-anchor=\"start\" x=\"16073\" y=\"-863.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 7</text>\n",
"<text text-anchor=\"start\" x=\"16033\" y=\"-848.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [7, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16068\" y=\"-833.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 427&#45;&gt;441 -->\n",
"<g id=\"edge441\" class=\"edge\">\n",
"<title>427&#45;&gt;441</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16004.411,-936.8796C16020.2994,-924.8368 16037.6091,-911.7167 16053.3857,-899.7586\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16055.6253,-902.4529 16061.4805,-893.623 16051.3969,-896.8743 16055.6253,-902.4529\"/>\n",
"</g>\n",
"<!-- 429 -->\n",
"<g id=\"node430\" class=\"node\">\n",
"<title>429</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.376471\" stroke=\"#000000\" points=\"15954,-782 15791,-782 15791,-699 15954,-699 15954,-782\"/>\n",
"<text text-anchor=\"start\" x=\"15843.5\" y=\"-766.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #429</text>\n",
"<text text-anchor=\"start\" x=\"15842\" y=\"-751.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">lamb ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"15835.5\" y=\"-736.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 12</text>\n",
"<text text-anchor=\"start\" x=\"15799\" y=\"-721.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [7, 0, 1, 0, 0, 4, 0]</text>\n",
"<text text-anchor=\"start\" x=\"15834\" y=\"-706.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 428&#45;&gt;429 -->\n",
"<g id=\"edge429\" class=\"edge\">\n",
"<title>428&#45;&gt;429</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M15906.3129,-817.8796C15902.6135,-809.4136 15898.6815,-800.4153 15894.8567,-791.6626\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"15897.9761,-790.0599 15890.7647,-782.2981 15891.5617,-792.8629 15897.9761,-790.0599\"/>\n",
"</g>\n",
"<!-- 438 -->\n",
"<g id=\"node439\" class=\"node\">\n",
"<title>438</title>\n",
"<polygon fill=\"#b139e5\" fill-opacity=\"0.800000\" stroke=\"#000000\" points=\"16137,-782 15972,-782 15972,-699 16137,-699 16137,-782\"/>\n",
"<text text-anchor=\"start\" x=\"16025.5\" y=\"-766.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #438</text>\n",
"<text text-anchor=\"start\" x=\"16020.5\" y=\"-751.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">thyme ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"16021\" y=\"-736.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 6</text>\n",
"<text text-anchor=\"start\" x=\"15981\" y=\"-721.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0, 5, 0]</text>\n",
"<text text-anchor=\"start\" x=\"15980\" y=\"-706.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 428&#45;&gt;438 -->\n",
"<g id=\"edge438\" class=\"edge\">\n",
"<title>428&#45;&gt;438</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M15969.9677,-817.8796C15980.1017,-808.6031 15990.934,-798.6874 16001.3465,-789.1559\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16003.8252,-791.6319 16008.8382,-782.2981 15999.0987,-786.4685 16003.8252,-791.6319\"/>\n",
"</g>\n",
"<!-- 430 -->\n",
"<g id=\"node431\" class=\"node\">\n",
"<title>430</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.427451\" stroke=\"#000000\" points=\"15773,-663 15610,-663 15610,-580 15773,-580 15773,-663\"/>\n",
"<text text-anchor=\"start\" x=\"15662.5\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #430</text>\n",
"<text text-anchor=\"start\" x=\"15652.5\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">mustard ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"15654.5\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 11</text>\n",
"<text text-anchor=\"start\" x=\"15618\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [7, 0, 0, 0, 0, 4, 0]</text>\n",
"<text text-anchor=\"start\" x=\"15653\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 429&#45;&gt;430 -->\n",
"<g id=\"edge430\" class=\"edge\">\n",
"<title>429&#45;&gt;430</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M15809.195,-698.8796C15794.3144,-689.0962 15778.3524,-678.6019 15763.1351,-668.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"15765.0479,-665.666 15754.7693,-663.0969 15761.2023,-671.5151 15765.0479,-665.666\"/>\n",
"</g>\n",
"<!-- 437 -->\n",
"<g id=\"node438\" class=\"node\">\n",
"<title>437</title>\n",
"<polygon fill=\"#39e54d\" stroke=\"#000000\" points=\"15954,-655.5 15791,-655.5 15791,-587.5 15954,-587.5 15954,-655.5\"/>\n",
"<text text-anchor=\"start\" x=\"15843.5\" y=\"-640.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #437</text>\n",
"<text text-anchor=\"start\" x=\"15839\" y=\"-625.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"15799\" y=\"-610.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"15834.5\" y=\"-595.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 429&#45;&gt;437 -->\n",
"<g id=\"edge437\" class=\"edge\">\n",
"<title>429&#45;&gt;437</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M15872.5,-698.8796C15872.5,-688.2134 15872.5,-676.7021 15872.5,-665.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"15876.0001,-665.8149 15872.5,-655.8149 15869.0001,-665.815 15876.0001,-665.8149\"/>\n",
"</g>\n",
"<!-- 431 -->\n",
"<g id=\"node432\" class=\"node\">\n",
"<title>431</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.572549\" stroke=\"#000000\" points=\"15728,-544 15565,-544 15565,-461 15728,-461 15728,-544\"/>\n",
"<text text-anchor=\"start\" x=\"15617.5\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #431</text>\n",
"<text text-anchor=\"start\" x=\"15619.5\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">rice ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"15609.5\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 10</text>\n",
"<text text-anchor=\"start\" x=\"15573\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [7, 0, 0, 0, 0, 3, 0]</text>\n",
"<text text-anchor=\"start\" x=\"15608\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 430&#45;&gt;431 -->\n",
"<g id=\"edge431\" class=\"edge\">\n",
"<title>430&#45;&gt;431</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M15675.7612,-579.8796C15672.5598,-571.4136 15669.1571,-562.4153 15665.8472,-553.6626\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"15669.1169,-552.4136 15662.306,-544.2981 15662.5694,-554.8896 15669.1169,-552.4136\"/>\n",
"</g>\n",
"<!-- 436 -->\n",
"<g id=\"node437\" class=\"node\">\n",
"<title>436</title>\n",
"<polygon fill=\"#b139e5\" stroke=\"#000000\" points=\"15911,-536.5 15746,-536.5 15746,-468.5 15911,-468.5 15911,-536.5\"/>\n",
"<text text-anchor=\"start\" x=\"15799.5\" y=\"-521.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #436</text>\n",
"<text text-anchor=\"start\" x=\"15795\" y=\"-506.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"15755\" y=\"-491.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"15754\" y=\"-476.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 430&#45;&gt;436 -->\n",
"<g id=\"edge436\" class=\"edge\">\n",
"<title>430&#45;&gt;436</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M15739.416,-579.8796C15752.9615,-568.1138 15767.6908,-555.3197 15781.1998,-543.5855\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"15783.7401,-546.015 15788.9946,-536.8149 15779.1497,-540.7303 15783.7401,-546.015\"/>\n",
"</g>\n",
"<!-- 432 -->\n",
"<g id=\"node433\" class=\"node\">\n",
"<title>432</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.831373\" stroke=\"#000000\" points=\"15705,-425 15542,-425 15542,-342 15705,-342 15705,-425\"/>\n",
"<text text-anchor=\"start\" x=\"15594.5\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #432</text>\n",
"<text text-anchor=\"start\" x=\"15584\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">tarragon ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"15590\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 7</text>\n",
"<text text-anchor=\"start\" x=\"15550\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [6, 0, 0, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"15585\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 431&#45;&gt;432 -->\n",
"<g id=\"edge432\" class=\"edge\">\n",
"<title>431&#45;&gt;432</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M15638.4557,-460.8796C15636.8543,-452.5938 15635.1542,-443.798 15633.4966,-435.2216\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"15636.9128,-434.4522 15631.5786,-425.2981 15630.0399,-435.7806 15636.9128,-434.4522\"/>\n",
"</g>\n",
"<!-- 435 -->\n",
"<g id=\"node436\" class=\"node\">\n",
"<title>435</title>\n",
"<polygon fill=\"#b139e5\" fill-opacity=\"0.498039\" stroke=\"#000000\" points=\"15888,-417.5 15723,-417.5 15723,-349.5 15888,-349.5 15888,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"15776.5\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #435</text>\n",
"<text text-anchor=\"start\" x=\"15772\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"15732\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0, 2, 0]</text>\n",
"<text text-anchor=\"start\" x=\"15731\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 431&#45;&gt;435 -->\n",
"<g id=\"edge435\" class=\"edge\">\n",
"<title>431&#45;&gt;435</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M15702.1105,-460.8796C15718.2013,-448.8368 15735.7315,-435.7167 15751.7091,-423.7586\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"15753.9982,-426.4171 15759.907,-417.623 15749.8038,-420.8129 15753.9982,-426.4171\"/>\n",
"</g>\n",
"<!-- 433 -->\n",
"<g id=\"node434\" class=\"node\">\n",
"<title>433</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"15694,-298.5 15531,-298.5 15531,-230.5 15694,-230.5 15694,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"15583.5\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #433</text>\n",
"<text text-anchor=\"start\" x=\"15579\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 6</text>\n",
"<text text-anchor=\"start\" x=\"15539\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [6, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"15574\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 432&#45;&gt;433 -->\n",
"<g id=\"edge433\" class=\"edge\">\n",
"<title>432&#45;&gt;433</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M15619.6527,-341.8796C15618.6668,-331.2134 15617.6027,-319.7021 15616.6043,-308.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"15620.0776,-308.4503 15615.672,-298.8149 15613.1074,-309.0947 15620.0776,-308.4503\"/>\n",
"</g>\n",
"<!-- 434 -->\n",
"<g id=\"node435\" class=\"node\">\n",
"<title>434</title>\n",
"<polygon fill=\"#b139e5\" stroke=\"#000000\" points=\"15877,-298.5 15712,-298.5 15712,-230.5 15877,-230.5 15877,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"15765.5\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #434</text>\n",
"<text text-anchor=\"start\" x=\"15761\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"15721\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"15720\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 432&#45;&gt;434 -->\n",
"<g id=\"edge434\" class=\"edge\">\n",
"<title>432&#45;&gt;434</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M15683.3075,-341.8796C15700.7715,-329.7263 15719.812,-316.4759 15737.122,-304.4297\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"15739.2572,-307.208 15745.4661,-298.623 15735.2587,-301.4623 15739.2572,-307.208\"/>\n",
"</g>\n",
"<!-- 439 -->\n",
"<g id=\"node440\" class=\"node\">\n",
"<title>439</title>\n",
"<polygon fill=\"#b139e5\" stroke=\"#000000\" points=\"16137,-655.5 15972,-655.5 15972,-587.5 16137,-587.5 16137,-655.5\"/>\n",
"<text text-anchor=\"start\" x=\"16025.5\" y=\"-640.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #439</text>\n",
"<text text-anchor=\"start\" x=\"16021\" y=\"-625.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 5</text>\n",
"<text text-anchor=\"start\" x=\"15981\" y=\"-610.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 0, 5, 0]</text>\n",
"<text text-anchor=\"start\" x=\"15980\" y=\"-595.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 438&#45;&gt;439 -->\n",
"<g id=\"edge439\" class=\"edge\">\n",
"<title>438&#45;&gt;439</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16054.5,-698.8796C16054.5,-688.2134 16054.5,-676.7021 16054.5,-665.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16058.0001,-665.8149 16054.5,-655.8149 16051.0001,-665.815 16058.0001,-665.8149\"/>\n",
"</g>\n",
"<!-- 440 -->\n",
"<g id=\"node441\" class=\"node\">\n",
"<title>440</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"16318,-655.5 16155,-655.5 16155,-587.5 16318,-587.5 16318,-655.5\"/>\n",
"<text text-anchor=\"start\" x=\"16207.5\" y=\"-640.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #440</text>\n",
"<text text-anchor=\"start\" x=\"16203\" y=\"-625.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"16163\" y=\"-610.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16198\" y=\"-595.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 438&#45;&gt;440 -->\n",
"<g id=\"edge440\" class=\"edge\">\n",
"<title>438&#45;&gt;440</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16118.1548,-698.8796C16136.9111,-686.6158 16157.3761,-673.2348 16175.933,-661.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16177.8575,-664.025 16184.3118,-655.623 16174.0267,-658.1662 16177.8575,-664.025\"/>\n",
"</g>\n",
"<!-- 444 -->\n",
"<g id=\"node445\" class=\"node\">\n",
"<title>444</title>\n",
"<polygon fill=\"#b139e5\" fill-opacity=\"0.643137\" stroke=\"#000000\" points=\"17220.5,-1139 17050.5,-1139 17050.5,-1056 17220.5,-1056 17220.5,-1139\"/>\n",
"<text text-anchor=\"start\" x=\"17106.5\" y=\"-1123.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #444</text>\n",
"<text text-anchor=\"start\" x=\"17100.5\" y=\"-1108.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">shallot ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"17098.5\" y=\"-1093.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 49</text>\n",
"<text text-anchor=\"start\" x=\"17058.5\" y=\"-1078.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [7, 0, 7, 1, 0, 34, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17061\" y=\"-1063.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 443&#45;&gt;444 -->\n",
"<g id=\"edge444\" class=\"edge\">\n",
"<title>443&#45;&gt;444</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17246.0422,-1174.8796C17232.1954,-1165.1868 17217.3516,-1154.7961 17203.1788,-1144.8752\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17205.1236,-1141.9643 17194.9242,-1139.0969 17201.1094,-1147.6989 17205.1236,-1141.9643\"/>\n",
"</g>\n",
"<!-- 465 -->\n",
"<g id=\"node466\" class=\"node\">\n",
"<title>465</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"17402,-1131.5 17239,-1131.5 17239,-1063.5 17402,-1063.5 17402,-1131.5\"/>\n",
"<text text-anchor=\"start\" x=\"17291.5\" y=\"-1116.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #465</text>\n",
"<text text-anchor=\"start\" x=\"17287\" y=\"-1101.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 6</text>\n",
"<text text-anchor=\"start\" x=\"17247\" y=\"-1086.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [6, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17282\" y=\"-1071.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 443&#45;&gt;465 -->\n",
"<g id=\"edge465\" class=\"edge\">\n",
"<title>443&#45;&gt;465</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17310.7463,-1174.8796C17312.0908,-1164.2134 17313.5418,-1152.7021 17314.9032,-1141.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17318.3964,-1142.1742 17316.1746,-1131.8149 17311.4514,-1141.2987 17318.3964,-1142.1742\"/>\n",
"</g>\n",
"<!-- 445 -->\n",
"<g id=\"node446\" class=\"node\">\n",
"<title>445</title>\n",
"<polygon fill=\"#b139e5\" fill-opacity=\"0.764706\" stroke=\"#000000\" points=\"16960.5,-1020 16790.5,-1020 16790.5,-937 16960.5,-937 16960.5,-1020\"/>\n",
"<text text-anchor=\"start\" x=\"16846.5\" y=\"-1004.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #445</text>\n",
"<text text-anchor=\"start\" x=\"16843.5\" y=\"-989.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">garlic ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"16838.5\" y=\"-974.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 42</text>\n",
"<text text-anchor=\"start\" x=\"16798.5\" y=\"-959.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [4, 0, 4, 1, 0, 33, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16801\" y=\"-944.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 444&#45;&gt;445 -->\n",
"<g id=\"edge445\" class=\"edge\">\n",
"<title>444&#45;&gt;445</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17050.3663,-1058.5349C17024.6652,-1046.7718 16996.2975,-1033.7881 16970.0233,-1021.7626\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16971.3745,-1018.5319 16960.825,-1017.5526 16968.4612,-1024.8969 16971.3745,-1018.5319\"/>\n",
"</g>\n",
"<!-- 460 -->\n",
"<g id=\"node461\" class=\"node\">\n",
"<title>460</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"17232,-1020 17069,-1020 17069,-937 17232,-937 17232,-1020\"/>\n",
"<text text-anchor=\"start\" x=\"17121.5\" y=\"-1004.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #460</text>\n",
"<text text-anchor=\"start\" x=\"17118\" y=\"-989.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">carrot ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"17117\" y=\"-974.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 7</text>\n",
"<text text-anchor=\"start\" x=\"17077\" y=\"-959.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 3, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17112\" y=\"-944.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 444&#45;&gt;460 -->\n",
"<g id=\"edge460\" class=\"edge\">\n",
"<title>444&#45;&gt;460</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17140.7463,-1055.8796C17141.7907,-1047.5938 17142.8994,-1038.798 17143.9805,-1030.2216\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17147.4532,-1030.6573 17145.2313,-1020.2981 17140.5081,-1029.7818 17147.4532,-1030.6573\"/>\n",
"</g>\n",
"<!-- 446 -->\n",
"<g id=\"node447\" class=\"node\">\n",
"<title>446</title>\n",
"<polygon fill=\"#b139e5\" fill-opacity=\"0.125490\" stroke=\"#000000\" points=\"16682,-901 16517,-901 16517,-818 16682,-818 16682,-901\"/>\n",
"<text text-anchor=\"start\" x=\"16570.5\" y=\"-885.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #446</text>\n",
"<text text-anchor=\"start\" x=\"16567.5\" y=\"-870.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">onion ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"16562.5\" y=\"-855.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 11</text>\n",
"<text text-anchor=\"start\" x=\"16526\" y=\"-840.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 3, 1, 0, 4, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16525\" y=\"-825.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 445&#45;&gt;446 -->\n",
"<g id=\"edge446\" class=\"edge\">\n",
"<title>445&#45;&gt;446</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16790.4388,-941.8251C16759.1563,-928.3373 16723.596,-913.0052 16691.7131,-899.2586\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16692.9551,-895.9826 16682.3866,-895.2373 16690.1836,-902.4106 16692.9551,-895.9826\"/>\n",
"</g>\n",
"<!-- 455 -->\n",
"<g id=\"node456\" class=\"node\">\n",
"<title>455</title>\n",
"<polygon fill=\"#b139e5\" fill-opacity=\"0.933333\" stroke=\"#000000\" points=\"16960.5,-901 16790.5,-901 16790.5,-818 16960.5,-818 16960.5,-901\"/>\n",
"<text text-anchor=\"start\" x=\"16846.5\" y=\"-885.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #455</text>\n",
"<text text-anchor=\"start\" x=\"16842\" y=\"-870.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">celery ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"16838.5\" y=\"-855.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 31</text>\n",
"<text text-anchor=\"start\" x=\"16798.5\" y=\"-840.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 1, 0, 0, 29, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16801\" y=\"-825.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 445&#45;&gt;455 -->\n",
"<g id=\"edge455\" class=\"edge\">\n",
"<title>445&#45;&gt;455</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16875.5,-936.8796C16875.5,-928.6838 16875.5,-919.9891 16875.5,-911.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16879.0001,-911.298 16875.5,-901.2981 16872.0001,-911.2981 16879.0001,-911.298\"/>\n",
"</g>\n",
"<!-- 447 -->\n",
"<g id=\"node448\" class=\"node\">\n",
"<title>447</title>\n",
"<polygon fill=\"#b139e5\" fill-opacity=\"0.164706\" stroke=\"#000000\" points=\"16500,-782 16335,-782 16335,-699 16500,-699 16500,-782\"/>\n",
"<text text-anchor=\"start\" x=\"16388.5\" y=\"-766.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #447</text>\n",
"<text text-anchor=\"start\" x=\"16380.5\" y=\"-751.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">vinegar ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"16384\" y=\"-736.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 9</text>\n",
"<text text-anchor=\"start\" x=\"16344\" y=\"-721.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 3, 1, 0, 4, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16343\" y=\"-706.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 446&#45;&gt;447 -->\n",
"<g id=\"edge447\" class=\"edge\">\n",
"<title>446&#45;&gt;447</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16535.8452,-817.8796C16520.8824,-808.0962 16504.8323,-797.6019 16489.5309,-787.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16491.4039,-784.6401 16481.1188,-782.0969 16487.5731,-790.4989 16491.4039,-784.6401\"/>\n",
"</g>\n",
"<!-- 454 -->\n",
"<g id=\"node455\" class=\"node\">\n",
"<title>454</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"16681,-774.5 16518,-774.5 16518,-706.5 16681,-706.5 16681,-774.5\"/>\n",
"<text text-anchor=\"start\" x=\"16570.5\" y=\"-759.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #454</text>\n",
"<text text-anchor=\"start\" x=\"16566\" y=\"-744.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"16526\" y=\"-729.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16561\" y=\"-714.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 446&#45;&gt;454 -->\n",
"<g id=\"edge454\" class=\"edge\">\n",
"<title>446&#45;&gt;454</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16599.5,-817.8796C16599.5,-807.2134 16599.5,-795.7021 16599.5,-784.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16603.0001,-784.8149 16599.5,-774.8149 16596.0001,-784.815 16603.0001,-784.8149\"/>\n",
"</g>\n",
"<!-- 448 -->\n",
"<g id=\"node449\" class=\"node\">\n",
"<title>448</title>\n",
"<polygon fill=\"#39e54d\" stroke=\"#000000\" points=\"16499,-655.5 16336,-655.5 16336,-587.5 16499,-587.5 16499,-655.5\"/>\n",
"<text text-anchor=\"start\" x=\"16388.5\" y=\"-640.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #448</text>\n",
"<text text-anchor=\"start\" x=\"16384\" y=\"-625.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"16344\" y=\"-610.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 2, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16379.5\" y=\"-595.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 447&#45;&gt;448 -->\n",
"<g id=\"edge448\" class=\"edge\">\n",
"<title>447&#45;&gt;448</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16417.5,-698.8796C16417.5,-688.2134 16417.5,-676.7021 16417.5,-665.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16421.0001,-665.8149 16417.5,-655.8149 16414.0001,-665.815 16421.0001,-665.8149\"/>\n",
"</g>\n",
"<!-- 449 -->\n",
"<g id=\"node450\" class=\"node\">\n",
"<title>449</title>\n",
"<polygon fill=\"#b139e5\" fill-opacity=\"0.498039\" stroke=\"#000000\" points=\"16682,-663 16517,-663 16517,-580 16682,-580 16682,-663\"/>\n",
"<text text-anchor=\"start\" x=\"16570.5\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #449</text>\n",
"<text text-anchor=\"start\" x=\"16570\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">mint ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"16566\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 7</text>\n",
"<text text-anchor=\"start\" x=\"16526\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 1, 1, 0, 4, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16525\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 447&#45;&gt;449 -->\n",
"<g id=\"edge449\" class=\"edge\">\n",
"<title>447&#45;&gt;449</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16481.1548,-698.8796C16496.1176,-689.0962 16512.1677,-678.6019 16527.4691,-668.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16529.4269,-671.4989 16535.8812,-663.0969 16525.5961,-665.6401 16529.4269,-671.4989\"/>\n",
"</g>\n",
"<!-- 450 -->\n",
"<g id=\"node451\" class=\"node\">\n",
"<title>450</title>\n",
"<polygon fill=\"#b139e5\" fill-opacity=\"0.749020\" stroke=\"#000000\" points=\"16534,-544 16369,-544 16369,-461 16534,-461 16534,-544\"/>\n",
"<text text-anchor=\"start\" x=\"16422.5\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #450</text>\n",
"<text text-anchor=\"start\" x=\"16423.5\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">veal ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"16418\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 5</text>\n",
"<text text-anchor=\"start\" x=\"16378\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 1, 0, 4, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16377\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 449&#45;&gt;450 -->\n",
"<g id=\"edge450\" class=\"edge\">\n",
"<title>449&#45;&gt;450</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16547.7368,-579.8796C16535.9072,-570.368 16523.2419,-560.1843 16511.1129,-550.432\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16513.2204,-547.6355 16503.234,-544.0969 16508.8341,-553.0908 16513.2204,-547.6355\"/>\n",
"</g>\n",
"<!-- 453 -->\n",
"<g id=\"node454\" class=\"node\">\n",
"<title>453</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"16715,-536.5 16552,-536.5 16552,-468.5 16715,-468.5 16715,-536.5\"/>\n",
"<text text-anchor=\"start\" x=\"16604.5\" y=\"-521.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #453</text>\n",
"<text text-anchor=\"start\" x=\"16600\" y=\"-506.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"16560\" y=\"-491.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16595\" y=\"-476.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 449&#45;&gt;453 -->\n",
"<g id=\"edge453\" class=\"edge\">\n",
"<title>449&#45;&gt;453</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16611.3916,-579.8796C16614.4705,-569.1034 16617.7958,-557.4647 16620.9092,-546.5677\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16624.3138,-547.3917 16623.6957,-536.8149 16617.5831,-545.4686 16624.3138,-547.3917\"/>\n",
"</g>\n",
"<!-- 451 -->\n",
"<g id=\"node452\" class=\"node\">\n",
"<title>451</title>\n",
"<polygon fill=\"#b139e5\" stroke=\"#000000\" points=\"16421,-417.5 16256,-417.5 16256,-349.5 16421,-349.5 16421,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"16309.5\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #451</text>\n",
"<text text-anchor=\"start\" x=\"16305\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 4</text>\n",
"<text text-anchor=\"start\" x=\"16265\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 0, 4, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16264\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 450&#45;&gt;451 -->\n",
"<g id=\"edge451\" class=\"edge\">\n",
"<title>450&#45;&gt;451</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16411.9781,-460.8796C16401.0143,-449.3337 16389.1103,-436.7976 16378.1399,-425.2446\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16380.5087,-422.6564 16371.0848,-417.8149 16375.4327,-427.4766 16380.5087,-422.6564\"/>\n",
"</g>\n",
"<!-- 452 -->\n",
"<g id=\"node453\" class=\"node\">\n",
"<title>452</title>\n",
"<polygon fill=\"#39e5e2\" stroke=\"#000000\" points=\"16602,-417.5 16439,-417.5 16439,-349.5 16602,-349.5 16602,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"16491.5\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #452</text>\n",
"<text text-anchor=\"start\" x=\"16487\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"16447\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 1, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16481.5\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = jewish</text>\n",
"</g>\n",
"<!-- 450&#45;&gt;452 -->\n",
"<g id=\"edge452\" class=\"edge\">\n",
"<title>450&#45;&gt;452</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16475.6329,-460.8796C16482.0725,-449.7735 16489.0434,-437.7513 16495.5271,-426.5691\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16498.6148,-428.2215 16500.6031,-417.8149 16492.5591,-424.7102 16498.6148,-428.2215\"/>\n",
"</g>\n",
"<!-- 456 -->\n",
"<g id=\"node457\" class=\"node\">\n",
"<title>456</title>\n",
"<polygon fill=\"#b139e5\" fill-opacity=\"0.964706\" stroke=\"#000000\" points=\"16869.5,-782 16699.5,-782 16699.5,-699 16869.5,-699 16869.5,-782\"/>\n",
"<text text-anchor=\"start\" x=\"16755.5\" y=\"-766.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #456</text>\n",
"<text text-anchor=\"start\" x=\"16734\" y=\"-751.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">lemon_juice ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"16747.5\" y=\"-736.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 30</text>\n",
"<text text-anchor=\"start\" x=\"16707.5\" y=\"-721.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0, 29, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16710\" y=\"-706.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 455&#45;&gt;456 -->\n",
"<g id=\"edge456\" class=\"edge\">\n",
"<title>455&#45;&gt;456</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16843.6726,-817.8796C16836.8543,-808.9633 16829.5844,-799.4565 16822.5579,-790.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16825.318,-788.1156 16816.4632,-782.2981 16819.7575,-792.3678 16825.318,-788.1156\"/>\n",
"</g>\n",
"<!-- 459 -->\n",
"<g id=\"node460\" class=\"node\">\n",
"<title>459</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"17051,-774.5 16888,-774.5 16888,-706.5 17051,-706.5 17051,-774.5\"/>\n",
"<text text-anchor=\"start\" x=\"16940.5\" y=\"-759.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #459</text>\n",
"<text text-anchor=\"start\" x=\"16936\" y=\"-744.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"16896\" y=\"-729.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16931\" y=\"-714.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 455&#45;&gt;459 -->\n",
"<g id=\"edge459\" class=\"edge\">\n",
"<title>455&#45;&gt;459</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16908.3766,-817.8796C16917.3232,-806.5536 16927.0224,-794.2748 16936.0029,-782.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16938.942,-784.8316 16942.3941,-774.8149 16933.449,-780.4926 16938.942,-784.8316\"/>\n",
"</g>\n",
"<!-- 457 -->\n",
"<g id=\"node458\" class=\"node\">\n",
"<title>457</title>\n",
"<polygon fill=\"#b139e5\" stroke=\"#000000\" points=\"16870.5,-655.5 16700.5,-655.5 16700.5,-587.5 16870.5,-587.5 16870.5,-655.5\"/>\n",
"<text text-anchor=\"start\" x=\"16756.5\" y=\"-640.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #457</text>\n",
"<text text-anchor=\"start\" x=\"16748.5\" y=\"-625.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 28</text>\n",
"<text text-anchor=\"start\" x=\"16708.5\" y=\"-610.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 0, 28, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16711\" y=\"-595.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 456&#45;&gt;457 -->\n",
"<g id=\"edge457\" class=\"edge\">\n",
"<title>456&#45;&gt;457</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16784.8498,-698.8796C16784.9394,-688.2134 16785.0361,-676.7021 16785.1269,-665.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16788.6274,-665.844 16785.2116,-655.8149 16781.6276,-665.7851 16788.6274,-665.844\"/>\n",
"</g>\n",
"<!-- 458 -->\n",
"<g id=\"node459\" class=\"node\">\n",
"<title>458</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"17052,-655.5 16889,-655.5 16889,-587.5 17052,-587.5 17052,-655.5\"/>\n",
"<text text-anchor=\"start\" x=\"16941.5\" y=\"-640.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #458</text>\n",
"<text text-anchor=\"start\" x=\"16937\" y=\"-625.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"16897\" y=\"-610.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16932.5\" y=\"-595.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 456&#45;&gt;458 -->\n",
"<g id=\"edge458\" class=\"edge\">\n",
"<title>456&#45;&gt;458</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16849.5538,-698.8796C16868.7224,-686.6158 16889.6371,-673.2348 16908.6018,-661.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16910.6275,-663.9606 16917.1648,-655.623 16906.855,-658.0641 16910.6275,-663.9606\"/>\n",
"</g>\n",
"<!-- 461 -->\n",
"<g id=\"node462\" class=\"node\">\n",
"<title>461</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.498039\" stroke=\"#000000\" points=\"17232,-901 17069,-901 17069,-818 17232,-818 17232,-901\"/>\n",
"<text text-anchor=\"start\" x=\"17121.5\" y=\"-885.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #461</text>\n",
"<text text-anchor=\"start\" x=\"17115.5\" y=\"-870.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">smoke ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"17117\" y=\"-855.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 5</text>\n",
"<text text-anchor=\"start\" x=\"17077\" y=\"-840.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 3, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17112.5\" y=\"-825.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 460&#45;&gt;461 -->\n",
"<g id=\"edge461\" class=\"edge\">\n",
"<title>460&#45;&gt;461</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17150.5,-936.8796C17150.5,-928.6838 17150.5,-919.9891 17150.5,-911.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17154.0001,-911.298 17150.5,-901.2981 17147.0001,-911.2981 17154.0001,-911.298\"/>\n",
"</g>\n",
"<!-- 464 -->\n",
"<g id=\"node465\" class=\"node\">\n",
"<title>464</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"17413,-893.5 17250,-893.5 17250,-825.5 17413,-825.5 17413,-893.5\"/>\n",
"<text text-anchor=\"start\" x=\"17302.5\" y=\"-878.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #464</text>\n",
"<text text-anchor=\"start\" x=\"17298\" y=\"-863.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"17258\" y=\"-848.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17293\" y=\"-833.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 460&#45;&gt;464 -->\n",
"<g id=\"edge464\" class=\"edge\">\n",
"<title>460&#45;&gt;464</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17213.805,-936.8796C17232.2903,-924.7263 17252.4443,-911.4759 17270.7665,-899.4297\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17273.1655,-902.0412 17279.5986,-893.623 17269.3199,-896.1921 17273.1655,-902.0412\"/>\n",
"</g>\n",
"<!-- 462 -->\n",
"<g id=\"node463\" class=\"node\">\n",
"<title>462</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.666667\" stroke=\"#000000\" points=\"17232,-774.5 17069,-774.5 17069,-706.5 17232,-706.5 17232,-774.5\"/>\n",
"<text text-anchor=\"start\" x=\"17121.5\" y=\"-759.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #462</text>\n",
"<text text-anchor=\"start\" x=\"17117\" y=\"-744.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 4</text>\n",
"<text text-anchor=\"start\" x=\"17077\" y=\"-729.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 3, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17112.5\" y=\"-714.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 461&#45;&gt;462 -->\n",
"<g id=\"edge462\" class=\"edge\">\n",
"<title>461&#45;&gt;462</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17150.5,-817.8796C17150.5,-807.2134 17150.5,-795.7021 17150.5,-784.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17154.0001,-784.8149 17150.5,-774.8149 17147.0001,-784.815 17154.0001,-784.8149\"/>\n",
"</g>\n",
"<!-- 463 -->\n",
"<g id=\"node464\" class=\"node\">\n",
"<title>463</title>\n",
"<polygon fill=\"#b139e5\" stroke=\"#000000\" points=\"17415,-774.5 17250,-774.5 17250,-706.5 17415,-706.5 17415,-774.5\"/>\n",
"<text text-anchor=\"start\" x=\"17303.5\" y=\"-759.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #463</text>\n",
"<text text-anchor=\"start\" x=\"17299\" y=\"-744.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"17259\" y=\"-729.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17258\" y=\"-714.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 461&#45;&gt;463 -->\n",
"<g id=\"edge463\" class=\"edge\">\n",
"<title>461&#45;&gt;463</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17214.1548,-817.8796C17232.9111,-805.6158 17253.3761,-792.2348 17271.933,-780.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17273.8575,-783.025 17280.3118,-774.623 17270.0267,-777.1662 17273.8575,-783.025\"/>\n",
"</g>\n",
"<!-- 467 -->\n",
"<g id=\"node468\" class=\"node\">\n",
"<title>467</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.905882\" stroke=\"#000000\" points=\"17645,-1258 17462,-1258 17462,-1175 17645,-1175 17645,-1258\"/>\n",
"<text text-anchor=\"start\" x=\"17524.5\" y=\"-1242.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #467</text>\n",
"<text text-anchor=\"start\" x=\"17509.5\" y=\"-1227.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">star_anise ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"17513\" y=\"-1212.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 201</text>\n",
"<text text-anchor=\"start\" x=\"17470\" y=\"-1197.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [17, 0, 184, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17515.5\" y=\"-1182.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 466&#45;&gt;467 -->\n",
"<g id=\"edge467\" class=\"edge\">\n",
"<title>466&#45;&gt;467</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17585.3622,-1293.8796C17581.8762,-1285.4136 17578.171,-1276.4153 17574.5669,-1267.6626\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17577.7549,-1266.2122 17570.711,-1258.2981 17571.2822,-1268.8775 17577.7549,-1266.2122\"/>\n",
"</g>\n",
"<!-- 498 -->\n",
"<g id=\"node499\" class=\"node\">\n",
"<title>498</title>\n",
"<polygon fill=\"#39e5e2\" stroke=\"#000000\" points=\"17826,-1250.5 17663,-1250.5 17663,-1182.5 17826,-1182.5 17826,-1250.5\"/>\n",
"<text text-anchor=\"start\" x=\"17715.5\" y=\"-1235.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #498</text>\n",
"<text text-anchor=\"start\" x=\"17711\" y=\"-1220.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"17671\" y=\"-1205.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 1, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17705.5\" y=\"-1190.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = jewish</text>\n",
"</g>\n",
"<!-- 466&#45;&gt;498 -->\n",
"<g id=\"edge498\" class=\"edge\">\n",
"<title>466&#45;&gt;498</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17652.1647,-1293.8796C17666.3358,-1282.0038 17681.757,-1269.0804 17695.8658,-1257.2568\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17698.1363,-1259.9206 17703.5528,-1250.8149 17693.6402,-1254.5554 17698.1363,-1259.9206\"/>\n",
"</g>\n",
"<!-- 468 -->\n",
"<g id=\"node469\" class=\"node\">\n",
"<title>468</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.913725\" stroke=\"#000000\" points=\"17631,-1139 17448,-1139 17448,-1056 17631,-1056 17631,-1139\"/>\n",
"<text text-anchor=\"start\" x=\"17510.5\" y=\"-1123.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #468</text>\n",
"<text text-anchor=\"start\" x=\"17486.5\" y=\"-1108.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">swiss_cheese ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"17499\" y=\"-1093.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 200</text>\n",
"<text text-anchor=\"start\" x=\"17456\" y=\"-1078.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [16, 0, 184, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17501.5\" y=\"-1063.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 467&#45;&gt;468 -->\n",
"<g id=\"edge468\" class=\"edge\">\n",
"<title>467&#45;&gt;468</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17548.6035,-1174.8796C17547.6393,-1166.6838 17546.6164,-1157.9891 17545.6178,-1149.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17549.0619,-1148.8206 17544.4174,-1139.2981 17542.1099,-1149.6386 17549.0619,-1148.8206\"/>\n",
"</g>\n",
"<!-- 497 -->\n",
"<g id=\"node498\" class=\"node\">\n",
"<title>497</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"17812,-1131.5 17649,-1131.5 17649,-1063.5 17812,-1063.5 17812,-1131.5\"/>\n",
"<text text-anchor=\"start\" x=\"17701.5\" y=\"-1116.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #497</text>\n",
"<text text-anchor=\"start\" x=\"17697\" y=\"-1101.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"17657\" y=\"-1086.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17692\" y=\"-1071.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 467&#45;&gt;497 -->\n",
"<g id=\"edge497\" class=\"edge\">\n",
"<title>467&#45;&gt;497</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17615.406,-1174.8796C17633.4828,-1162.7263 17653.1914,-1149.4759 17671.1087,-1137.4297\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17673.3996,-1140.1071 17679.7456,-1131.623 17669.4939,-1134.2979 17673.3996,-1140.1071\"/>\n",
"</g>\n",
"<!-- 469 -->\n",
"<g id=\"node470\" class=\"node\">\n",
"<title>469</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.917647\" stroke=\"#000000\" points=\"17630,-1020 17447,-1020 17447,-937 17630,-937 17630,-1020\"/>\n",
"<text text-anchor=\"start\" x=\"17509.5\" y=\"-1004.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #469</text>\n",
"<text text-anchor=\"start\" x=\"17497.5\" y=\"-989.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">pumpkin ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"17498\" y=\"-974.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 199</text>\n",
"<text text-anchor=\"start\" x=\"17455\" y=\"-959.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [15, 0, 184, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17500.5\" y=\"-944.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 468&#45;&gt;469 -->\n",
"<g id=\"edge469\" class=\"edge\">\n",
"<title>468&#45;&gt;469</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17539.1502,-1055.8796C17539.0814,-1047.6838 17539.0083,-1038.9891 17538.937,-1030.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17542.4352,-1030.2683 17538.8512,-1020.2981 17535.4355,-1030.3272 17542.4352,-1030.2683\"/>\n",
"</g>\n",
"<!-- 496 -->\n",
"<g id=\"node497\" class=\"node\">\n",
"<title>496</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"17811,-1012.5 17648,-1012.5 17648,-944.5 17811,-944.5 17811,-1012.5\"/>\n",
"<text text-anchor=\"start\" x=\"17700.5\" y=\"-997.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #496</text>\n",
"<text text-anchor=\"start\" x=\"17696\" y=\"-982.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"17656\" y=\"-967.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17691\" y=\"-952.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 468&#45;&gt;496 -->\n",
"<g id=\"edge496\" class=\"edge\">\n",
"<title>468&#45;&gt;496</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17605.9528,-1055.8796C17625.6218,-1043.5606 17647.0907,-1030.1143 17666.5324,-1017.9376\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17668.4007,-1020.8973 17675.0178,-1012.623 17664.685,-1014.9648 17668.4007,-1020.8973\"/>\n",
"</g>\n",
"<!-- 470 -->\n",
"<g id=\"node471\" class=\"node\">\n",
"<title>470</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.925490\" stroke=\"#000000\" points=\"17616,-901 17433,-901 17433,-818 17616,-818 17616,-901\"/>\n",
"<text text-anchor=\"start\" x=\"17495.5\" y=\"-885.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #470</text>\n",
"<text text-anchor=\"start\" x=\"17465.5\" y=\"-870.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">gruyere_cheese ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"17484\" y=\"-855.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 198</text>\n",
"<text text-anchor=\"start\" x=\"17441\" y=\"-840.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [14, 0, 184, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17486.5\" y=\"-825.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 469&#45;&gt;470 -->\n",
"<g id=\"edge470\" class=\"edge\">\n",
"<title>469&#45;&gt;470</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17533.6035,-936.8796C17532.6393,-928.6838 17531.6164,-919.9891 17530.6178,-911.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17534.0619,-910.8206 17529.4174,-901.2981 17527.1099,-911.6386 17534.0619,-910.8206\"/>\n",
"</g>\n",
"<!-- 495 -->\n",
"<g id=\"node496\" class=\"node\">\n",
"<title>495</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"17797,-893.5 17634,-893.5 17634,-825.5 17797,-825.5 17797,-893.5\"/>\n",
"<text text-anchor=\"start\" x=\"17686.5\" y=\"-878.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #495</text>\n",
"<text text-anchor=\"start\" x=\"17682\" y=\"-863.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"17642\" y=\"-848.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17677\" y=\"-833.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 469&#45;&gt;495 -->\n",
"<g id=\"edge495\" class=\"edge\">\n",
"<title>469&#45;&gt;495</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17600.406,-936.8796C17618.4828,-924.7263 17638.1914,-911.4759 17656.1087,-899.4297\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17658.3996,-902.1071 17664.7456,-893.623 17654.4939,-896.2979 17658.3996,-902.1071\"/>\n",
"</g>\n",
"<!-- 471 -->\n",
"<g id=\"node472\" class=\"node\">\n",
"<title>471</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.929412\" stroke=\"#000000\" points=\"17616,-782 17433,-782 17433,-699 17616,-699 17616,-782\"/>\n",
"<text text-anchor=\"start\" x=\"17495.5\" y=\"-766.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #471</text>\n",
"<text text-anchor=\"start\" x=\"17479\" y=\"-751.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">lima_bean ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"17484\" y=\"-736.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 197</text>\n",
"<text text-anchor=\"start\" x=\"17441\" y=\"-721.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [13, 0, 184, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17486.5\" y=\"-706.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 470&#45;&gt;471 -->\n",
"<g id=\"edge471\" class=\"edge\">\n",
"<title>470&#45;&gt;471</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17524.5,-817.8796C17524.5,-809.6838 17524.5,-800.9891 17524.5,-792.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17528.0001,-792.298 17524.5,-782.2981 17521.0001,-792.2981 17528.0001,-792.298\"/>\n",
"</g>\n",
"<!-- 494 -->\n",
"<g id=\"node495\" class=\"node\">\n",
"<title>494</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"17797,-774.5 17634,-774.5 17634,-706.5 17797,-706.5 17797,-774.5\"/>\n",
"<text text-anchor=\"start\" x=\"17686.5\" y=\"-759.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #494</text>\n",
"<text text-anchor=\"start\" x=\"17682\" y=\"-744.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"17642\" y=\"-729.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17677\" y=\"-714.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 470&#45;&gt;494 -->\n",
"<g id=\"edge494\" class=\"edge\">\n",
"<title>470&#45;&gt;494</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17591.3025,-817.8796C17611.0751,-805.5606 17632.6569,-792.1143 17652.2009,-779.9376\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17654.0944,-782.8817 17660.7311,-774.623 17650.3928,-776.9405 17654.0944,-782.8817\"/>\n",
"</g>\n",
"<!-- 472 -->\n",
"<g id=\"node473\" class=\"node\">\n",
"<title>472</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.933333\" stroke=\"#000000\" points=\"17319,-663 17136,-663 17136,-580 17319,-580 17319,-663\"/>\n",
"<text text-anchor=\"start\" x=\"17198.5\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #472</text>\n",
"<text text-anchor=\"start\" x=\"17188\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">zucchini ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"17187\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 196</text>\n",
"<text text-anchor=\"start\" x=\"17144\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [12, 0, 184, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17189.5\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 471&#45;&gt;472 -->\n",
"<g id=\"edge472\" class=\"edge\">\n",
"<title>471&#45;&gt;472</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17432.8632,-702.7851C17429.7051,-701.5051 17426.5769,-700.2404 17423.5,-699 17392.7442,-686.6015 17359.2013,-673.269 17328.6988,-661.2176\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17329.9232,-657.9381 17319.3366,-657.521 17327.3525,-664.449 17329.9232,-657.9381\"/>\n",
"</g>\n",
"<!-- 493 -->\n",
"<g id=\"node494\" class=\"node\">\n",
"<title>493</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"17586,-655.5 17423,-655.5 17423,-587.5 17586,-587.5 17586,-655.5\"/>\n",
"<text text-anchor=\"start\" x=\"17475.5\" y=\"-640.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #493</text>\n",
"<text text-anchor=\"start\" x=\"17471\" y=\"-625.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"17431\" y=\"-610.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17466\" y=\"-595.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 471&#45;&gt;493 -->\n",
"<g id=\"edge493\" class=\"edge\">\n",
"<title>471&#45;&gt;493</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17517.505,-698.8796C17515.7123,-688.2134 17513.7777,-676.7021 17511.9624,-665.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17515.3763,-665.0965 17510.2672,-655.8149 17508.4731,-666.2568 17515.3763,-665.0965\"/>\n",
"</g>\n",
"<!-- 473 -->\n",
"<g id=\"node474\" class=\"node\">\n",
"<title>473</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.949020\" stroke=\"#000000\" points=\"17019.5,-544 16843.5,-544 16843.5,-461 17019.5,-461 17019.5,-544\"/>\n",
"<text text-anchor=\"start\" x=\"16902.5\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #473</text>\n",
"<text text-anchor=\"start\" x=\"16869\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">smoked_sausage ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"16891\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 186</text>\n",
"<text text-anchor=\"start\" x=\"16851.5\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [9, 0, 177, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16893.5\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 472&#45;&gt;473 -->\n",
"<g id=\"edge473\" class=\"edge\">\n",
"<title>472&#45;&gt;473</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17135.8709,-584.6626C17102.0377,-571.0608 17063.5837,-555.6012 17029.2303,-541.7902\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17030.2407,-538.4242 17019.6569,-537.9415 17027.6296,-544.919 17030.2407,-538.4242\"/>\n",
"</g>\n",
"<!-- 486 -->\n",
"<g id=\"node487\" class=\"node\">\n",
"<title>486</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.572549\" stroke=\"#000000\" points=\"17309,-544 17146,-544 17146,-461 17309,-461 17309,-544\"/>\n",
"<text text-anchor=\"start\" x=\"17198.5\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #486</text>\n",
"<text text-anchor=\"start\" x=\"17179\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">lemon_peel ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"17190.5\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 10</text>\n",
"<text text-anchor=\"start\" x=\"17154\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 7, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17189.5\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 472&#45;&gt;486 -->\n",
"<g id=\"edge486\" class=\"edge\">\n",
"<title>472&#45;&gt;486</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17227.5,-579.8796C17227.5,-571.6838 17227.5,-562.9891 17227.5,-554.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17231.0001,-554.298 17227.5,-544.2981 17224.0001,-554.2981 17231.0001,-554.298\"/>\n",
"</g>\n",
"<!-- 474 -->\n",
"<g id=\"node475\" class=\"node\">\n",
"<title>474</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.952941\" stroke=\"#000000\" points=\"16831.5,-425 16655.5,-425 16655.5,-342 16831.5,-342 16831.5,-425\"/>\n",
"<text text-anchor=\"start\" x=\"16714.5\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #474</text>\n",
"<text text-anchor=\"start\" x=\"16714\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">milk ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"16703\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 185</text>\n",
"<text text-anchor=\"start\" x=\"16663.5\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [8, 0, 177, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16705.5\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 473&#45;&gt;474 -->\n",
"<g id=\"edge474\" class=\"edge\">\n",
"<title>473&#45;&gt;474</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16865.7467,-460.8796C16850.2906,-451.0962 16833.7113,-440.6019 16817.9055,-430.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16819.5377,-427.488 16809.2162,-425.0969 16815.7938,-433.4027 16819.5377,-427.488\"/>\n",
"</g>\n",
"<!-- 485 -->\n",
"<g id=\"node486\" class=\"node\">\n",
"<title>485</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"17013,-417.5 16850,-417.5 16850,-349.5 17013,-349.5 17013,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"16902.5\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #485</text>\n",
"<text text-anchor=\"start\" x=\"16898\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"16858\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16893\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 473&#45;&gt;485 -->\n",
"<g id=\"edge485\" class=\"edge\">\n",
"<title>473&#45;&gt;485</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16931.5,-460.8796C16931.5,-450.2134 16931.5,-438.7021 16931.5,-427.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16935.0001,-427.8149 16931.5,-417.8149 16928.0001,-427.815 16935.0001,-427.8149\"/>\n",
"</g>\n",
"<!-- 475 -->\n",
"<g id=\"node476\" class=\"node\">\n",
"<title>475</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.976471\" stroke=\"#000000\" points=\"16640.5,-306 16464.5,-306 16464.5,-223 16640.5,-223 16640.5,-306\"/>\n",
"<text text-anchor=\"start\" x=\"16523.5\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #475</text>\n",
"<text text-anchor=\"start\" x=\"16524\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">fruit ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"16512\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 163</text>\n",
"<text text-anchor=\"start\" x=\"16472.5\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [4, 0, 159, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16514.5\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 474&#45;&gt;475 -->\n",
"<g id=\"edge475\" class=\"edge\">\n",
"<title>474&#45;&gt;475</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16676.6975,-341.8796C16660.9947,-332.0962 16644.1509,-321.6019 16628.0929,-311.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16629.6031,-308.4144 16619.2648,-306.0969 16625.9015,-314.3556 16629.6031,-308.4144\"/>\n",
"</g>\n",
"<!-- 480 -->\n",
"<g id=\"node481\" class=\"node\">\n",
"<title>480</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.776471\" stroke=\"#000000\" points=\"16828.5,-306 16658.5,-306 16658.5,-223 16828.5,-223 16828.5,-306\"/>\n",
"<text text-anchor=\"start\" x=\"16714.5\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #480</text>\n",
"<text text-anchor=\"start\" x=\"16708.5\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">smoke ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"16706.5\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 22</text>\n",
"<text text-anchor=\"start\" x=\"16666.5\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [4, 0, 18, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16705.5\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 474&#45;&gt;480 -->\n",
"<g id=\"edge480\" class=\"edge\">\n",
"<title>474&#45;&gt;480</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16743.5,-341.8796C16743.5,-333.6838 16743.5,-324.9891 16743.5,-316.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16747.0001,-316.298 16743.5,-306.2981 16740.0001,-316.2981 16747.0001,-316.298\"/>\n",
"</g>\n",
"<!-- 476 -->\n",
"<g id=\"node477\" class=\"node\">\n",
"<title>476</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.980392\" stroke=\"#000000\" points=\"16452.5,-187 16276.5,-187 16276.5,-104 16452.5,-104 16452.5,-187\"/>\n",
"<text text-anchor=\"start\" x=\"16335.5\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #476</text>\n",
"<text text-anchor=\"start\" x=\"16325.5\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">mustard ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"16324\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 161</text>\n",
"<text text-anchor=\"start\" x=\"16284.5\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 158, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16326.5\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 475&#45;&gt;476 -->\n",
"<g id=\"edge476\" class=\"edge\">\n",
"<title>475&#45;&gt;476</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16486.7467,-222.8796C16471.2906,-213.0962 16454.7113,-202.6019 16438.9055,-192.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16440.5377,-189.488 16430.2162,-187.0969 16436.7938,-195.4027 16440.5377,-189.488\"/>\n",
"</g>\n",
"<!-- 479 -->\n",
"<g id=\"node480\" class=\"node\">\n",
"<title>479</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"16634,-179.5 16471,-179.5 16471,-111.5 16634,-111.5 16634,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"16523.5\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #479</text>\n",
"<text text-anchor=\"start\" x=\"16519\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"16479\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16514\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 475&#45;&gt;479 -->\n",
"<g id=\"edge479\" class=\"edge\">\n",
"<title>475&#45;&gt;479</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16552.5,-222.8796C16552.5,-212.2134 16552.5,-200.7021 16552.5,-189.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16556.0001,-189.8149 16552.5,-179.8149 16549.0001,-189.815 16556.0001,-189.8149\"/>\n",
"</g>\n",
"<!-- 477 -->\n",
"<g id=\"node478\" class=\"node\">\n",
"<title>477</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.988235\" stroke=\"#000000\" points=\"16358.5,-68 16182.5,-68 16182.5,0 16358.5,0 16358.5,-68\"/>\n",
"<text text-anchor=\"start\" x=\"16241.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #477</text>\n",
"<text text-anchor=\"start\" x=\"16230\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 157</text>\n",
"<text text-anchor=\"start\" x=\"16190.5\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 155, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16232.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 476&#45;&gt;477 -->\n",
"<g id=\"edge477\" class=\"edge\">\n",
"<title>476&#45;&gt;477</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16329.4979,-103.9815C16321.8272,-94.8828 16313.6995,-85.242 16306.0091,-76.1199\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16308.5075,-73.6533 16299.386,-68.2637 16303.1556,-78.1652 16308.5075,-73.6533\"/>\n",
"</g>\n",
"<!-- 478 -->\n",
"<g id=\"node479\" class=\"node\">\n",
"<title>478</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.666667\" stroke=\"#000000\" points=\"16540,-68 16377,-68 16377,0 16540,0 16540,-68\"/>\n",
"<text text-anchor=\"start\" x=\"16429.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #478</text>\n",
"<text text-anchor=\"start\" x=\"16425\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 4</text>\n",
"<text text-anchor=\"start\" x=\"16385\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 3, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16420.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 476&#45;&gt;478 -->\n",
"<g id=\"edge478\" class=\"edge\">\n",
"<title>476&#45;&gt;478</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16399.5021,-103.9815C16407.1728,-94.8828 16415.3005,-85.242 16422.9909,-76.1199\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16425.8444,-78.1652 16429.614,-68.2637 16420.4925,-73.6533 16425.8444,-78.1652\"/>\n",
"</g>\n",
"<!-- 481 -->\n",
"<g id=\"node482\" class=\"node\">\n",
"<title>481</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.831373\" stroke=\"#000000\" points=\"16822.5,-187 16652.5,-187 16652.5,-104 16822.5,-104 16822.5,-187\"/>\n",
"<text text-anchor=\"start\" x=\"16708.5\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #481</text>\n",
"<text text-anchor=\"start\" x=\"16707\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">olive ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"16700.5\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 21</text>\n",
"<text text-anchor=\"start\" x=\"16660.5\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 18, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16699.5\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 480&#45;&gt;481 -->\n",
"<g id=\"edge481\" class=\"edge\">\n",
"<title>480&#45;&gt;481</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16741.4015,-222.8796C16740.9883,-214.6838 16740.5499,-205.9891 16740.1219,-197.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16743.6067,-197.1091 16739.6075,-187.2981 16736.6156,-197.4617 16743.6067,-197.1091\"/>\n",
"</g>\n",
"<!-- 484 -->\n",
"<g id=\"node485\" class=\"node\">\n",
"<title>484</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"17004,-179.5 16841,-179.5 16841,-111.5 17004,-111.5 17004,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"16893.5\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #484</text>\n",
"<text text-anchor=\"start\" x=\"16889\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"16849\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16884\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 480&#45;&gt;484 -->\n",
"<g id=\"edge484\" class=\"edge\">\n",
"<title>480&#45;&gt;484</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16806.1055,-222.8796C16824.3865,-210.7263 16844.3178,-197.4759 16862.4376,-185.4297\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16864.7821,-188.074 16871.1721,-179.623 16860.9067,-182.2447 16864.7821,-188.074\"/>\n",
"</g>\n",
"<!-- 482 -->\n",
"<g id=\"node483\" class=\"node\">\n",
"<title>482</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.890196\" stroke=\"#000000\" points=\"16775.5,-68 16605.5,-68 16605.5,0 16775.5,0 16775.5,-68\"/>\n",
"<text text-anchor=\"start\" x=\"16661.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #482</text>\n",
"<text text-anchor=\"start\" x=\"16653.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 20</text>\n",
"<text text-anchor=\"start\" x=\"16613.5\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 18, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16652.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 481&#45;&gt;482 -->\n",
"<g id=\"edge482\" class=\"edge\">\n",
"<title>481&#45;&gt;482</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16719.9989,-103.9815C16716.3573,-95.3423 16712.5097,-86.2144 16708.8388,-77.5059\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16712.0525,-76.119 16704.943,-68.2637 16705.6021,-78.838 16712.0525,-76.119\"/>\n",
"</g>\n",
"<!-- 483 -->\n",
"<g id=\"node484\" class=\"node\">\n",
"<title>483</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"16957,-68 16794,-68 16794,0 16957,0 16957,-68\"/>\n",
"<text text-anchor=\"start\" x=\"16846.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #483</text>\n",
"<text text-anchor=\"start\" x=\"16842\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"16802\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16837\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 481&#45;&gt;483 -->\n",
"<g id=\"edge483\" class=\"edge\">\n",
"<title>481&#45;&gt;483</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16788.8861,-103.9815C16800.7161,-94.4232 16813.2864,-84.2668 16825.0751,-74.7419\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16827.5142,-77.2708 16833.0929,-68.2637 16823.1149,-71.826 16827.5142,-77.2708\"/>\n",
"</g>\n",
"<!-- 487 -->\n",
"<g id=\"node488\" class=\"node\">\n",
"<title>487</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.713725\" stroke=\"#000000\" points=\"17194,-425 17031,-425 17031,-342 17194,-342 17194,-425\"/>\n",
"<text text-anchor=\"start\" x=\"17083.5\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #487</text>\n",
"<text text-anchor=\"start\" x=\"17059.5\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">black_pepper ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"17079\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 9</text>\n",
"<text text-anchor=\"start\" x=\"17039\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 7, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17074.5\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 486&#45;&gt;487 -->\n",
"<g id=\"edge487\" class=\"edge\">\n",
"<title>486&#45;&gt;487</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17187.2786,-460.8796C17178.488,-451.7832 17169.1034,-442.0722 17160.0574,-432.7116\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17162.3591,-430.0568 17152.8931,-425.2981 17157.3255,-434.9212 17162.3591,-430.0568\"/>\n",
"</g>\n",
"<!-- 492 -->\n",
"<g id=\"node493\" class=\"node\">\n",
"<title>492</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"17375,-417.5 17212,-417.5 17212,-349.5 17375,-349.5 17375,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"17264.5\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #492</text>\n",
"<text text-anchor=\"start\" x=\"17260\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"17220\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17255\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 486&#45;&gt;492 -->\n",
"<g id=\"edge492\" class=\"edge\">\n",
"<title>486&#45;&gt;492</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17250.5836,-460.8796C17256.7433,-449.7735 17263.4111,-437.7513 17269.6129,-426.5691\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17272.6787,-428.2576 17274.4682,-417.8149 17266.5572,-424.8624 17272.6787,-428.2576\"/>\n",
"</g>\n",
"<!-- 488 -->\n",
"<g id=\"node489\" class=\"node\">\n",
"<title>488</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.498039\" stroke=\"#000000\" points=\"17188,-306 17025,-306 17025,-223 17188,-223 17188,-306\"/>\n",
"<text text-anchor=\"start\" x=\"17077.5\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #488</text>\n",
"<text text-anchor=\"start\" x=\"17058\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">bell_pepper ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"17073\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 6</text>\n",
"<text text-anchor=\"start\" x=\"17033\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 4, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17068.5\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 487&#45;&gt;488 -->\n",
"<g id=\"edge488\" class=\"edge\">\n",
"<title>487&#45;&gt;488</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17110.4015,-341.8796C17109.9883,-333.6838 17109.5499,-324.9891 17109.1219,-316.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17112.6067,-316.1091 17108.6075,-306.2981 17105.6156,-316.4617 17112.6067,-316.1091\"/>\n",
"</g>\n",
"<!-- 491 -->\n",
"<g id=\"node492\" class=\"node\">\n",
"<title>491</title>\n",
"<polygon fill=\"#39e54d\" stroke=\"#000000\" points=\"17369,-298.5 17206,-298.5 17206,-230.5 17369,-230.5 17369,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"17258.5\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #491</text>\n",
"<text text-anchor=\"start\" x=\"17254\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"17214\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 3, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17249.5\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 487&#45;&gt;491 -->\n",
"<g id=\"edge491\" class=\"edge\">\n",
"<title>487&#45;&gt;491</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17173.7065,-341.8796C17191.579,-329.7263 17211.0649,-316.4759 17228.7798,-304.4297\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17231.0179,-307.1404 17237.3191,-298.623 17227.0817,-301.3519 17231.0179,-307.1404\"/>\n",
"</g>\n",
"<!-- 489 -->\n",
"<g id=\"node490\" class=\"node\">\n",
"<title>489</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"17185,-179.5 17022,-179.5 17022,-111.5 17185,-111.5 17185,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"17074.5\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #489</text>\n",
"<text text-anchor=\"start\" x=\"17070\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 4</text>\n",
"<text text-anchor=\"start\" x=\"17030\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 2, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17065\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 488&#45;&gt;489 -->\n",
"<g id=\"edge489\" class=\"edge\">\n",
"<title>488&#45;&gt;489</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17105.4507,-222.8796C17105.1818,-212.2134 17104.8916,-200.7021 17104.6194,-189.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17108.1161,-189.7235 17104.3651,-179.8149 17101.1183,-189.9 17108.1161,-189.7235\"/>\n",
"</g>\n",
"<!-- 490 -->\n",
"<g id=\"node491\" class=\"node\">\n",
"<title>490</title>\n",
"<polygon fill=\"#39e54d\" stroke=\"#000000\" points=\"17366,-179.5 17203,-179.5 17203,-111.5 17366,-111.5 17366,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"17255.5\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #490</text>\n",
"<text text-anchor=\"start\" x=\"17251\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"17211\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 2, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17246.5\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 488&#45;&gt;490 -->\n",
"<g id=\"edge490\" class=\"edge\">\n",
"<title>488&#45;&gt;490</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17168.7558,-222.8796C17186.9346,-210.7263 17206.7546,-197.4759 17224.7731,-185.4297\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17227.0907,-188.0905 17233.4588,-179.623 17223.2003,-182.2712 17227.0907,-188.0905\"/>\n",
"</g>\n",
"<!-- 500 -->\n",
"<g id=\"node501\" class=\"node\">\n",
"<title>500</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.882353\" stroke=\"#000000\" points=\"18767,-1377 18584,-1377 18584,-1294 18767,-1294 18767,-1377\"/>\n",
"<text text-anchor=\"start\" x=\"18646.5\" y=\"-1361.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #500</text>\n",
"<text text-anchor=\"start\" x=\"18640.5\" y=\"-1346.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">shallot ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"18635\" y=\"-1331.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 501</text>\n",
"<text text-anchor=\"start\" x=\"18592\" y=\"-1316.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [44, 0, 448, 2, 0, 5, 2]</text>\n",
"<text text-anchor=\"start\" x=\"18637.5\" y=\"-1301.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 499&#45;&gt;500 -->\n",
"<g id=\"edge500\" class=\"edge\">\n",
"<title>499&#45;&gt;500</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M18675.5,-1412.8796C18675.5,-1404.6838 18675.5,-1395.9891 18675.5,-1387.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"18679.0001,-1387.298 18675.5,-1377.2981 18672.0001,-1387.2981 18679.0001,-1387.298\"/>\n",
"</g>\n",
"<!-- 555 -->\n",
"<g id=\"node556\" class=\"node\">\n",
"<title>555</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.819608\" stroke=\"#000000\" points=\"19045.5,-1377 18875.5,-1377 18875.5,-1294 19045.5,-1294 19045.5,-1377\"/>\n",
"<text text-anchor=\"start\" x=\"18931.5\" y=\"-1361.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #555</text>\n",
"<text text-anchor=\"start\" x=\"18912\" y=\"-1346.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">white_wine ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"18923.5\" y=\"-1331.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 13</text>\n",
"<text text-anchor=\"start\" x=\"18883.5\" y=\"-1316.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [11, 0, 2, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"18922\" y=\"-1301.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 499&#45;&gt;555 -->\n",
"<g id=\"edge555\" class=\"edge\">\n",
"<title>499&#45;&gt;555</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M18767.2446,-1416.1926C18798.7907,-1403.0207 18834.1542,-1388.2549 18865.9216,-1374.9906\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"18867.3375,-1378.1923 18875.2169,-1371.1095 18864.6404,-1371.7328 18867.3375,-1378.1923\"/>\n",
"</g>\n",
"<!-- 501 -->\n",
"<g id=\"node502\" class=\"node\">\n",
"<title>501</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.898039\" stroke=\"#000000\" points=\"18676,-1258 18493,-1258 18493,-1175 18676,-1175 18676,-1258\"/>\n",
"<text text-anchor=\"start\" x=\"18555.5\" y=\"-1242.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #501</text>\n",
"<text text-anchor=\"start\" x=\"18557\" y=\"-1227.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">lard ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"18544\" y=\"-1212.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 485</text>\n",
"<text text-anchor=\"start\" x=\"18501\" y=\"-1197.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [36, 0, 440, 2, 0, 5, 2]</text>\n",
"<text text-anchor=\"start\" x=\"18546.5\" y=\"-1182.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 500&#45;&gt;501 -->\n",
"<g id=\"edge501\" class=\"edge\">\n",
"<title>500&#45;&gt;501</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M18643.6726,-1293.8796C18636.8543,-1284.9633 18629.5844,-1275.4565 18622.5579,-1266.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"18625.318,-1264.1156 18616.4632,-1258.2981 18619.7575,-1268.3678 18625.318,-1264.1156\"/>\n",
"</g>\n",
"<!-- 546 -->\n",
"<g id=\"node547\" class=\"node\">\n",
"<title>546</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"18857,-1258 18694,-1258 18694,-1175 18857,-1175 18857,-1258\"/>\n",
"<text text-anchor=\"start\" x=\"18746.5\" y=\"-1242.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #546</text>\n",
"<text text-anchor=\"start\" x=\"18746\" y=\"-1227.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">bean ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"18738.5\" y=\"-1212.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 16</text>\n",
"<text text-anchor=\"start\" x=\"18702\" y=\"-1197.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [8, 0, 8, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"18737\" y=\"-1182.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 500&#45;&gt;546 -->\n",
"<g id=\"edge546\" class=\"edge\">\n",
"<title>500&#45;&gt;546</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M18710.4751,-1293.8796C18718.0435,-1284.8733 18726.1181,-1275.2644 18733.912,-1265.9897\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"18736.6216,-1268.2056 18740.3756,-1258.2981 18731.2626,-1263.7022 18736.6216,-1268.2056\"/>\n",
"</g>\n",
"<!-- 502 -->\n",
"<g id=\"node503\" class=\"node\">\n",
"<title>502</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.905882\" stroke=\"#000000\" points=\"18490,-1139 18307,-1139 18307,-1056 18490,-1056 18490,-1139\"/>\n",
"<text text-anchor=\"start\" x=\"18369.5\" y=\"-1123.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #502</text>\n",
"<text text-anchor=\"start\" x=\"18347\" y=\"-1108.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">orange_juice ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"18358\" y=\"-1093.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 482</text>\n",
"<text text-anchor=\"start\" x=\"18315\" y=\"-1078.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [34, 0, 440, 2, 0, 5, 1]</text>\n",
"<text text-anchor=\"start\" x=\"18360.5\" y=\"-1063.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 501&#45;&gt;502 -->\n",
"<g id=\"edge502\" class=\"edge\">\n",
"<title>501&#45;&gt;502</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M18519.4462,-1174.8796C18504.1546,-1165.0962 18487.7516,-1154.6019 18472.114,-1144.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"18473.8268,-1141.538 18463.517,-1139.0969 18470.0543,-1147.4345 18473.8268,-1141.538\"/>\n",
"</g>\n",
"<!-- 545 -->\n",
"<g id=\"node546\" class=\"node\">\n",
"<title>545</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.498039\" stroke=\"#000000\" points=\"18671,-1131.5 18508,-1131.5 18508,-1063.5 18671,-1063.5 18671,-1131.5\"/>\n",
"<text text-anchor=\"start\" x=\"18560.5\" y=\"-1116.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #545</text>\n",
"<text text-anchor=\"start\" x=\"18556\" y=\"-1101.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"18516\" y=\"-1086.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 0, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"18551\" y=\"-1071.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 501&#45;&gt;545 -->\n",
"<g id=\"edge545\" class=\"edge\">\n",
"<title>501&#45;&gt;545</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M18586.2488,-1174.8796C18586.6969,-1164.2134 18587.1806,-1152.7021 18587.6344,-1141.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"18591.1352,-1141.9531 18588.0582,-1131.8149 18584.1414,-1141.6592 18591.1352,-1141.9531\"/>\n",
"</g>\n",
"<!-- 503 -->\n",
"<g id=\"node504\" class=\"node\">\n",
"<title>503</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.909804\" stroke=\"#000000\" points=\"18489,-1020 18306,-1020 18306,-937 18489,-937 18489,-1020\"/>\n",
"<text text-anchor=\"start\" x=\"18368.5\" y=\"-1004.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #503</text>\n",
"<text text-anchor=\"start\" x=\"18364\" y=\"-989.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">sherry ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"18357\" y=\"-974.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 480</text>\n",
"<text text-anchor=\"start\" x=\"18314\" y=\"-959.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [34, 0, 440, 2, 0, 3, 1]</text>\n",
"<text text-anchor=\"start\" x=\"18359.5\" y=\"-944.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 502&#45;&gt;503 -->\n",
"<g id=\"edge503\" class=\"edge\">\n",
"<title>502&#45;&gt;503</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M18398.1502,-1055.8796C18398.0814,-1047.6838 18398.0083,-1038.9891 18397.937,-1030.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"18401.4352,-1030.2683 18397.8512,-1020.2981 18394.4355,-1030.3272 18401.4352,-1030.2683\"/>\n",
"</g>\n",
"<!-- 544 -->\n",
"<g id=\"node545\" class=\"node\">\n",
"<title>544</title>\n",
"<polygon fill=\"#b139e5\" stroke=\"#000000\" points=\"18672,-1012.5 18507,-1012.5 18507,-944.5 18672,-944.5 18672,-1012.5\"/>\n",
"<text text-anchor=\"start\" x=\"18560.5\" y=\"-997.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #544</text>\n",
"<text text-anchor=\"start\" x=\"18556\" y=\"-982.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"18516\" y=\"-967.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 0, 2, 0]</text>\n",
"<text text-anchor=\"start\" x=\"18515\" y=\"-952.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = spanish_portuguese</text>\n",
"</g>\n",
"<!-- 502&#45;&gt;544 -->\n",
"<g id=\"edge544\" class=\"edge\">\n",
"<title>502&#45;&gt;544</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M18465.3025,-1055.8796C18485.0751,-1043.5606 18506.6569,-1030.1143 18526.2009,-1017.9376\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"18528.0944,-1020.8817 18534.7311,-1012.623 18524.3928,-1014.9405 18528.0944,-1020.8817\"/>\n",
"</g>\n",
"<!-- 504 -->\n",
"<g id=\"node505\" class=\"node\">\n",
"<title>504</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.921569\" stroke=\"#000000\" points=\"18313,-901 18130,-901 18130,-818 18313,-818 18313,-901\"/>\n",
"<text text-anchor=\"start\" x=\"18192.5\" y=\"-885.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #504</text>\n",
"<text text-anchor=\"start\" x=\"18187.5\" y=\"-870.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">thyme ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"18181\" y=\"-855.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 472</text>\n",
"<text text-anchor=\"start\" x=\"18138\" y=\"-840.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [31, 0, 437, 2, 0, 1, 1]</text>\n",
"<text text-anchor=\"start\" x=\"18183.5\" y=\"-825.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 503&#45;&gt;504 -->\n",
"<g id=\"edge504\" class=\"edge\">\n",
"<title>503&#45;&gt;504</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M18335.9437,-936.8796C18321.6082,-927.1868 18306.2405,-916.7961 18291.5675,-906.8752\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"18293.2661,-903.7987 18283.0215,-901.0969 18289.3452,-909.5976 18293.2661,-903.7987\"/>\n",
"</g>\n",
"<!-- 539 -->\n",
"<g id=\"node540\" class=\"node\">\n",
"<title>539</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"18494,-901 18331,-901 18331,-818 18494,-818 18494,-901\"/>\n",
"<text text-anchor=\"start\" x=\"18383.5\" y=\"-885.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #539</text>\n",
"<text text-anchor=\"start\" x=\"18377.5\" y=\"-870.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">pepper ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"18379\" y=\"-855.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 8</text>\n",
"<text text-anchor=\"start\" x=\"18339\" y=\"-840.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 3, 0, 0, 2, 0]</text>\n",
"<text text-anchor=\"start\" x=\"18374\" y=\"-825.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 503&#45;&gt;539 -->\n",
"<g id=\"edge539\" class=\"edge\">\n",
"<title>503&#45;&gt;539</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M18402.7463,-936.8796C18403.7907,-928.5938 18404.8994,-919.798 18405.9805,-911.2216\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"18409.4532,-911.6573 18407.2313,-901.2981 18402.5081,-910.7818 18409.4532,-911.6573\"/>\n",
"</g>\n",
"<!-- 505 -->\n",
"<g id=\"node506\" class=\"node\">\n",
"<title>505</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.949020\" stroke=\"#000000\" points=\"18077,-782 17894,-782 17894,-699 18077,-699 18077,-782\"/>\n",
"<text text-anchor=\"start\" x=\"17956.5\" y=\"-766.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #505</text>\n",
"<text text-anchor=\"start\" x=\"17946.5\" y=\"-751.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">mustard ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"17945\" y=\"-736.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 399</text>\n",
"<text text-anchor=\"start\" x=\"17902\" y=\"-721.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [17, 0, 379, 1, 0, 1, 1]</text>\n",
"<text text-anchor=\"start\" x=\"17947.5\" y=\"-706.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 504&#45;&gt;505 -->\n",
"<g id=\"edge505\" class=\"edge\">\n",
"<title>504&#45;&gt;505</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M18138.9587,-817.8796C18118.9276,-807.7791 18097.3936,-796.9209 18076.9768,-786.626\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"18078.4997,-783.4742 18067.9947,-782.0969 18075.348,-789.7245 18078.4997,-783.4742\"/>\n",
"</g>\n",
"<!-- 522 -->\n",
"<g id=\"node523\" class=\"node\">\n",
"<title>522</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.745098\" stroke=\"#000000\" points=\"18310.5,-782 18134.5,-782 18134.5,-699 18310.5,-699 18310.5,-782\"/>\n",
"<text text-anchor=\"start\" x=\"18193.5\" y=\"-766.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #522</text>\n",
"<text text-anchor=\"start\" x=\"18184\" y=\"-751.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">oregano ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"18185.5\" y=\"-736.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 73</text>\n",
"<text text-anchor=\"start\" x=\"18142.5\" y=\"-721.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [14, 0, 58, 1, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"18184.5\" y=\"-706.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 504&#45;&gt;522 -->\n",
"<g id=\"edge522\" class=\"edge\">\n",
"<title>504&#45;&gt;522</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M18221.8498,-817.8796C18221.9186,-809.6838 18221.9917,-800.9891 18222.063,-792.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"18225.5645,-792.3272 18222.1488,-782.2981 18218.5648,-792.2683 18225.5645,-792.3272\"/>\n",
"</g>\n",
"<!-- 506 -->\n",
"<g id=\"node507\" class=\"node\">\n",
"<title>506</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.956863\" stroke=\"#000000\" points=\"17787,-663 17604,-663 17604,-580 17787,-580 17787,-663\"/>\n",
"<text text-anchor=\"start\" x=\"17666.5\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #506</text>\n",
"<text text-anchor=\"start\" x=\"17665\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">lamb ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"17655\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 394</text>\n",
"<text text-anchor=\"start\" x=\"17612\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [14, 0, 377, 1, 0, 1, 1]</text>\n",
"<text text-anchor=\"start\" x=\"17657.5\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 505&#45;&gt;506 -->\n",
"<g id=\"edge506\" class=\"edge\">\n",
"<title>505&#45;&gt;506</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17893.7422,-702.8477C17862.7809,-690.1428 17828.0586,-675.8948 17796.4282,-662.9154\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17797.7384,-659.6698 17787.1583,-659.1115 17795.081,-666.1458 17797.7384,-659.6698\"/>\n",
"</g>\n",
"<!-- 519 -->\n",
"<g id=\"node520\" class=\"node\">\n",
"<title>519</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.333333\" stroke=\"#000000\" points=\"18067,-663 17904,-663 17904,-580 18067,-580 18067,-663\"/>\n",
"<text text-anchor=\"start\" x=\"17956.5\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #519</text>\n",
"<text text-anchor=\"start\" x=\"17935.5\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">goat_cheese ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"17952\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 5</text>\n",
"<text text-anchor=\"start\" x=\"17912\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 2, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17947\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 505&#45;&gt;519 -->\n",
"<g id=\"edge519\" class=\"edge\">\n",
"<title>505&#45;&gt;519</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17985.5,-698.8796C17985.5,-690.6838 17985.5,-681.9891 17985.5,-673.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17989.0001,-673.298 17985.5,-663.2981 17982.0001,-673.2981 17989.0001,-673.298\"/>\n",
"</g>\n",
"<!-- 507 -->\n",
"<g id=\"node508\" class=\"node\">\n",
"<title>507</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.956863\" stroke=\"#000000\" points=\"17576,-544 17393,-544 17393,-461 17576,-461 17576,-544\"/>\n",
"<text text-anchor=\"start\" x=\"17455.5\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #507</text>\n",
"<text text-anchor=\"start\" x=\"17448.5\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">porcini ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"17444\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 393</text>\n",
"<text text-anchor=\"start\" x=\"17401\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [13, 0, 377, 1, 0, 1, 1]</text>\n",
"<text text-anchor=\"start\" x=\"17446.5\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 506&#45;&gt;507 -->\n",
"<g id=\"edge507\" class=\"edge\">\n",
"<title>506&#45;&gt;507</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17621.7024,-579.8796C17604.0342,-569.915 17585.0582,-559.2129 17567.0237,-549.0418\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17568.6855,-545.9608 17558.2559,-544.0969 17565.2468,-552.058 17568.6855,-545.9608\"/>\n",
"</g>\n",
"<!-- 518 -->\n",
"<g id=\"node519\" class=\"node\">\n",
"<title>518</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"17757,-536.5 17594,-536.5 17594,-468.5 17757,-468.5 17757,-536.5\"/>\n",
"<text text-anchor=\"start\" x=\"17646.5\" y=\"-521.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #518</text>\n",
"<text text-anchor=\"start\" x=\"17642\" y=\"-506.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"17602\" y=\"-491.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17637\" y=\"-476.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 506&#45;&gt;518 -->\n",
"<g id=\"edge518\" class=\"edge\">\n",
"<title>506&#45;&gt;518</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17688.505,-579.8796C17686.7123,-569.2134 17684.7777,-557.7021 17682.9624,-546.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17686.3763,-546.0965 17681.2672,-536.8149 17679.4731,-547.2568 17686.3763,-546.0965\"/>\n",
"</g>\n",
"<!-- 508 -->\n",
"<g id=\"node509\" class=\"node\">\n",
"<title>508</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.960784\" stroke=\"#000000\" points=\"17576,-425 17393,-425 17393,-342 17576,-342 17576,-425\"/>\n",
"<text text-anchor=\"start\" x=\"17455.5\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #508</text>\n",
"<text text-anchor=\"start\" x=\"17445\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">caraway ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"17444\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 391</text>\n",
"<text text-anchor=\"start\" x=\"17401\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [13, 0, 376, 0, 0, 1, 1]</text>\n",
"<text text-anchor=\"start\" x=\"17446.5\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 507&#45;&gt;508 -->\n",
"<g id=\"edge508\" class=\"edge\">\n",
"<title>507&#45;&gt;508</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17484.5,-460.8796C17484.5,-452.6838 17484.5,-443.9891 17484.5,-435.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17488.0001,-435.298 17484.5,-425.2981 17481.0001,-435.2981 17488.0001,-435.298\"/>\n",
"</g>\n",
"<!-- 517 -->\n",
"<g id=\"node518\" class=\"node\">\n",
"<title>517</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"17757,-417.5 17594,-417.5 17594,-349.5 17757,-349.5 17757,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"17646.5\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #517</text>\n",
"<text text-anchor=\"start\" x=\"17642\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"17602\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 1, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17637.5\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 507&#45;&gt;517 -->\n",
"<g id=\"edge517\" class=\"edge\">\n",
"<title>507&#45;&gt;517</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17551.3025,-460.8796C17571.0751,-448.5606 17592.6569,-435.1143 17612.2009,-422.9376\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17614.0944,-425.8817 17620.7311,-417.623 17610.3928,-419.9405 17614.0944,-425.8817\"/>\n",
"</g>\n",
"<!-- 509 -->\n",
"<g id=\"node510\" class=\"node\">\n",
"<title>509</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.964706\" stroke=\"#000000\" points=\"17574,-306 17391,-306 17391,-223 17574,-223 17574,-306\"/>\n",
"<text text-anchor=\"start\" x=\"17453.5\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #509</text>\n",
"<text text-anchor=\"start\" x=\"17432.5\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">goat_cheese ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"17442\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 389</text>\n",
"<text text-anchor=\"start\" x=\"17399\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [12, 0, 375, 0, 0, 1, 1]</text>\n",
"<text text-anchor=\"start\" x=\"17444.5\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 508&#45;&gt;509 -->\n",
"<g id=\"edge509\" class=\"edge\">\n",
"<title>508&#45;&gt;509</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17483.8005,-341.8796C17483.6628,-333.6838 17483.5166,-324.9891 17483.374,-316.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17486.8701,-316.2378 17483.2025,-306.2981 17479.8711,-316.3555 17486.8701,-316.2378\"/>\n",
"</g>\n",
"<!-- 516 -->\n",
"<g id=\"node517\" class=\"node\">\n",
"<title>516</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"17755,-298.5 17592,-298.5 17592,-230.5 17755,-230.5 17755,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"17644.5\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #516</text>\n",
"<text text-anchor=\"start\" x=\"17640\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"17600\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17635\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = french</text>\n",
"</g>\n",
"<!-- 508&#45;&gt;516 -->\n",
"<g id=\"edge516\" class=\"edge\">\n",
"<title>508&#45;&gt;516</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17550.603,-341.8796C17570.0808,-329.6158 17591.3329,-316.2348 17610.6035,-304.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17612.7071,-306.913 17619.3046,-298.623 17608.9774,-300.9894 17612.7071,-306.913\"/>\n",
"</g>\n",
"<!-- 510 -->\n",
"<g id=\"node511\" class=\"node\">\n",
"<title>510</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.968627\" stroke=\"#000000\" points=\"17560.5,-187 17384.5,-187 17384.5,-104 17560.5,-104 17560.5,-187\"/>\n",
"<text text-anchor=\"start\" x=\"17443.5\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #510</text>\n",
"<text text-anchor=\"start\" x=\"17444\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">tuna ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"17432\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 372</text>\n",
"<text text-anchor=\"start\" x=\"17392.5\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [9, 0, 361, 0, 0, 1, 1]</text>\n",
"<text text-anchor=\"start\" x=\"17434.5\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 509&#45;&gt;510 -->\n",
"<g id=\"edge510\" class=\"edge\">\n",
"<title>509&#45;&gt;510</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17479.0025,-222.8796C17478.3138,-214.6838 17477.5831,-205.9891 17476.8699,-197.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17480.3376,-196.9698 17476.0124,-187.2981 17473.3622,-197.5561 17480.3376,-196.9698\"/>\n",
"</g>\n",
"<!-- 513 -->\n",
"<g id=\"node514\" class=\"node\">\n",
"<title>513</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.784314\" stroke=\"#000000\" points=\"17748.5,-187 17578.5,-187 17578.5,-104 17748.5,-104 17748.5,-187\"/>\n",
"<text text-anchor=\"start\" x=\"17634.5\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #513</text>\n",
"<text text-anchor=\"start\" x=\"17621.5\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">red_wine ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"17626.5\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 17</text>\n",
"<text text-anchor=\"start\" x=\"17586.5\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 14, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17625.5\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 509&#45;&gt;513 -->\n",
"<g id=\"edge513\" class=\"edge\">\n",
"<title>509&#45;&gt;513</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17545.805,-222.8796C17560.6856,-213.0962 17576.6476,-202.6019 17591.8649,-192.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17593.7977,-195.5151 17600.2307,-187.0969 17589.9521,-189.666 17593.7977,-195.5151\"/>\n",
"</g>\n",
"<!-- 511 -->\n",
"<g id=\"node512\" class=\"node\">\n",
"<title>511</title>\n",
"<polygon fill=\"#39e54d\" fill-opacity=\"0.972549\" stroke=\"#000000\" points=\"17372.5,-68 17196.5,-68 17196.5,0 17372.5,0 17372.5,-68\"/>\n",
"<text text-anchor=\"start\" x=\"17255.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #511</text>\n",
"<text text-anchor=\"start\" x=\"17244\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 368</text>\n",
"<text text-anchor=\"start\" x=\"17204.5\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [8, 0, 358, 0, 0, 1, 1]</text>\n",
"<text text-anchor=\"start\" x=\"17246.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = italian</text>\n",
"</g>\n",
"<!-- 510&#45;&gt;511 -->\n",
"<g id=\"edge511\" class=\"edge\">\n",
"<title>510&#45;&gt;511</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17402.4957,-103.9815C17385.5158,-93.911 17367.4163,-83.1764 17350.6222,-73.2161\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17352.3582
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment