Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dubeyji10/e78c6832f481f20daeb58f4b2ec15d30 to your computer and use it in GitHub Desktop.
Save dubeyji10/e78c6832f481f20daeb58f4b2ec15d30 to your computer and use it in GitHub Desktop.
Created on Cognitive Class Labs
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"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": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"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": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"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": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"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": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"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": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"source": [
"<img src=\"https://s3-api.us-geo.objectstorage.softlayer.net/cf-courses-data/CognitiveClass/DS0103EN/labs/images/lab4_fig1_allrecipes.png\" width=500>\n",
"\n",
"www.allrecipes.com\n",
"\n",
"<img src=\"https://s3-api.us-geo.objectstorage.softlayer.net/cf-courses-data/CognitiveClass/DS0103EN/labs/images/lab4_fig2_epicurious.png\" width=500>\n",
"\n",
"www.epicurious.com\n",
"\n",
"<img src=\"https://s3-api.us-geo.objectstorage.softlayer.net/cf-courses-data/CognitiveClass/DS0103EN/labs/images/lab4_fig3_menupan.png\" width=500>\n",
"\n",
"www.menupan.com"
]
},
{
"cell_type": "markdown",
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"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": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"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": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"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": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"source": [
"Download the library and dependencies that we will need to run this lab."
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"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": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"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": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Data read into dataframe!\n"
]
}
],
"source": [
"recipes = pd.read_csv(\"https://s3-api.us-geo.objectstorage.softlayer.net/cf-courses-data/CognitiveClass/DS0103EN/labs/data/recipes.csv\")\n",
"\n",
"print(\"Data read into dataframe!\") # takes about 30 seconds"
]
},
{
"cell_type": "markdown",
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"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": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"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": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"source": [
"<hr>"
]
},
{
"cell_type": "markdown",
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"source": [
"# Data Modeling <a id=\"2\"></a>"
]
},
{
"cell_type": "markdown",
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"source": [
"<img src=\"https://s3-api.us-geo.objectstorage.softlayer.net/cf-courses-data/CognitiveClass/DS0103EN/labs/images/lab4_fig4_flowchart_data_modeling.png\" width=500>"
]
},
{
"cell_type": "markdown",
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"source": [
"Download and install more libraries and dependies to build decision trees."
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Collecting package metadata: done\n",
"Solving environment: | \n",
"The environment is inconsistent, please check the package plan carefully\n",
"The following packages are causing the inconsistency:\n",
"\n",
" - anaconda/linux-64::conda-build==3.17.8=py36_0\n",
" - anaconda/linux-64::grpcio==1.16.1=py36hf8bcb03_1\n",
" - anaconda/linux-64::keras==2.1.5=py36_0\n",
" - anaconda/linux-64::libarchive==3.3.3=h5d8350f_5\n",
" - anaconda/linux-64::python-libarchive-c==2.8=py36_6\n",
" - anaconda/linux-64::tensorboard==1.8.0=py36hf484d3e_0\n",
" - anaconda/linux-64::tensorflow==1.8.0=h57681fa_0\n",
" - anaconda/linux-64::tensorflow-base==1.8.0=py36h5f64886_0\n",
" - defaults/linux-64::anaconda==5.3.1=py37_0\n",
" - defaults/linux-64::astropy==3.0.4=py37h14c3975_0\n",
" - defaults/linux-64::bkcharts==0.2=py37_0\n",
" - defaults/linux-64::blaze==0.11.3=py37_0\n",
" - defaults/linux-64::bokeh==0.13.0=py37_0\n",
" - defaults/linux-64::bottleneck==1.2.1=py37h035aef0_1\n",
" - defaults/linux-64::dask==0.19.1=py37_0\n",
" - defaults/linux-64::datashape==0.5.4=py37_1\n",
" - defaults/linux-64::mkl-service==1.1.2=py37h90e4bf4_5\n",
" - defaults/linux-64::numba==0.39.0=py37h04863e7_0\n",
" - defaults/linux-64::numexpr==2.6.8=py37hd89afb7_0\n",
" - defaults/linux-64::odo==0.5.1=py37_0\n",
" - defaults/linux-64::pytables==3.4.4=py37ha205bf6_0\n",
" - defaults/linux-64::pytest-arraydiff==0.2=py37h39e3cac_0\n",
" - defaults/linux-64::pytest-astropy==0.4.0=py37_0\n",
" - defaults/linux-64::pytest-doctestplus==0.1.3=py37_0\n",
" - defaults/linux-64::pywavelets==1.0.0=py37hdd07704_0\n",
" - defaults/linux-64::scikit-image==0.14.0=py37hf484d3e_1\n",
"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",
" certifi-2019.6.16 | py36_0 154 KB\n",
" conda-4.7.5 | py36_0 3.0 MB\n",
" conda-package-handling-1.3.11| py36_0 260 KB\n",
" libarchive-3.3.3 | h5d8350f_5 1.5 MB\n",
" python-graphviz-0.10.1 | py_0 22 KB\n",
" python-libarchive-c-2.8 | py36_10 22 KB\n",
" ------------------------------------------------------------\n",
" Total: 4.9 MB\n",
"\n",
"The following NEW packages will be INSTALLED:\n",
"\n",
" conda-package-han~ pkgs/main/linux-64::conda-package-handling-1.3.11-py36_0\n",
" python-graphviz pkgs/main/noarch::python-graphviz-0.10.1-py_0\n",
"\n",
"The following packages will be UPDATED:\n",
"\n",
" conda anaconda::conda-4.6.14-py36_0 --> pkgs/main::conda-4.7.5-py36_0\n",
" openssl conda-forge::openssl-1.1.1b-h14c3975_1 --> pkgs/main::openssl-1.1.1c-h7b6447c_1\n",
" python-libarchive~ anaconda::python-libarchive-c-2.8-py3~ --> pkgs/main::python-libarchive-c-2.8-py36_10\n",
"\n",
"The following packages will be SUPERSEDED by a higher-priority channel:\n",
"\n",
" ca-certificates conda-forge::ca-certificates-2019.6.1~ --> pkgs/main::ca-certificates-2019.5.15-0\n",
" certifi conda-forge --> pkgs/main\n",
" libarchive anaconda --> pkgs/main\n",
" libtiff conda-forge::libtiff-4.0.10-h57b8799_~ --> pkgs/main::libtiff-4.0.10-h2733197_2\n",
" zstd conda-forge::zstd-1.4.0-h3b9ef0a_0 --> pkgs/main::zstd-1.3.7-h0b5b093_0\n",
"\n",
"\n",
"\n",
"Downloading and Extracting Packages\n",
"certifi-2019.6.16 | 154 KB | ##################################### | 100% \n",
"conda-4.7.5 | 3.0 MB | ##################################### | 100% \n",
"conda-package-handli | 260 KB | ##################################### | 100% \n",
"libarchive-3.3.3 | 1.5 MB | ##################################### | 100% \n",
"python-graphviz-0.10 | 22 KB | ##################################### | 100% \n",
"python-libarchive-c- | 22 KB | ##################################### | 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": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"source": [
"Check the data again!"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"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": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"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": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"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": 6,
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Decision tree model saved to bamboo_tree!\n"
]
}
],
"source": [
"# select subset of cuisines\n",
"asian_indian_recipes = recipes[recipes.cuisine.isin([\"korean\", \"japanese\", \"chinese\", \"thai\", \"indian\"])]\n",
"cuisines = asian_indian_recipes[\"cuisine\"]\n",
"ingredients = asian_indian_recipes.iloc[:,1:]\n",
"\n",
"bamboo_tree = tree.DecisionTreeClassifier(max_depth=3)\n",
"bamboo_tree.fit(ingredients, cuisines)\n",
"\n",
"print(\"Decision tree model saved to bamboo_tree!\")"
]
},
{
"cell_type": "markdown",
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"source": [
"Let's plot the decision tree and examine how it looks like."
]
},
{
"cell_type": "code",
"execution_count": 7,
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"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=\"1667pt\" height=\"433pt\"\n",
" viewBox=\"0.00 0.00 1667.00 433.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 429)\">\n",
"<title>Tree</title>\n",
"<polygon fill=\"#ffffff\" stroke=\"transparent\" points=\"-4,4 -4,-429 1663,-429 1663,4 -4,4\"/>\n",
"<!-- 0 -->\n",
"<g id=\"node1\" class=\"node\">\n",
"<title>0</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.109804\" stroke=\"#000000\" points=\"995,-425 738,-425 738,-342 995,-342 995,-425\"/>\n",
"<text text-anchor=\"start\" x=\"836\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #0</text>\n",
"<text text-anchor=\"start\" x=\"822.5\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cumin ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"808.5\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2448</text>\n",
"<text text-anchor=\"start\" x=\"746\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [442, 598, 320, 799, 289]</text>\n",
"<text text-anchor=\"start\" x=\"813\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 1 -->\n",
"<g id=\"node2\" class=\"node\">\n",
"<title>1</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.231373\" stroke=\"#000000\" points=\"811,-306 554,-306 554,-223 811,-223 811,-306\"/>\n",
"<text text-anchor=\"start\" x=\"652\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #1</text>\n",
"<text text-anchor=\"start\" x=\"583\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">roasted_sesame_seed ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"624.5\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1986</text>\n",
"<text text-anchor=\"start\" x=\"562\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [438, 237, 314, 796, 201]</text>\n",
"<text text-anchor=\"start\" x=\"629\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M802.1457,-341.8796C787.0185,-332.0962 770.7919,-321.6019 755.3224,-311.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"757.1156,-308.5887 746.8179,-306.0969 753.3141,-314.4665 757.1156,-308.5887\"/>\n",
"<text text-anchor=\"middle\" x=\"752.0617\" y=\"-326.8408\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">True</text>\n",
"</g>\n",
"<!-- 8 -->\n",
"<g id=\"node9\" class=\"node\">\n",
"<title>8</title>\n",
"<polygon fill=\"#7be539\" fill-opacity=\"0.729412\" stroke=\"#000000\" points=\"1183.5,-306 989.5,-306 989.5,-223 1183.5,-223 1183.5,-306\"/>\n",
"<text text-anchor=\"start\" x=\"1056\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #8</text>\n",
"<text text-anchor=\"start\" x=\"1051.5\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">fish ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"1033\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 462</text>\n",
"<text text-anchor=\"start\" x=\"997.5\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [4, 361, 6, 3, 88]</text>\n",
"<text text-anchor=\"start\" x=\"1035.5\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 0&#45;&gt;8 -->\n",
"<g id=\"edge8\" class=\"edge\">\n",
"<title>0&#45;&gt;8</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M943.4453,-341.8796C961.9509,-331.8697 981.8325,-321.1156 1000.7127,-310.9031\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"1002.4676,-313.9332 1009.5981,-306.0969 999.1372,-307.7762 1002.4676,-313.9332\"/>\n",
"<text text-anchor=\"middle\" x=\"1002.4598\" y=\"-326.3562\" 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=\"#3c39e5\" fill-opacity=\"0.098039\" stroke=\"#000000\" points=\"510,-187 253,-187 253,-104 510,-104 510,-187\"/>\n",
"<text text-anchor=\"start\" x=\"351\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #2</text>\n",
"<text text-anchor=\"start\" x=\"336.5\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">starch ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"323.5\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1738</text>\n",
"<text text-anchor=\"start\" x=\"261\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [433, 237, 309, 560, 199]</text>\n",
"<text text-anchor=\"start\" x=\"328\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M577.2248,-222.8796C550.9893,-212.5074 522.7324,-201.3361 496.073,-190.7963\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"497.3022,-187.5187 486.7158,-187.0969 494.7285,-194.0284 497.3022,-187.5187\"/>\n",
"</g>\n",
"<!-- 5 -->\n",
"<g id=\"node6\" class=\"node\">\n",
"<title>5</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.949020\" stroke=\"#000000\" points=\"775,-187 590,-187 590,-104 775,-104 775,-187\"/>\n",
"<text text-anchor=\"start\" x=\"652\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #5</text>\n",
"<text text-anchor=\"start\" x=\"632.5\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cilantro ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"629\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 248</text>\n",
"<text text-anchor=\"start\" x=\"598\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [5, 0, 5, 236, 2]</text>\n",
"<text text-anchor=\"start\" x=\"629\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 1&#45;&gt;5 -->\n",
"<g id=\"edge5\" class=\"edge\">\n",
"<title>1&#45;&gt;5</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M682.5,-222.8796C682.5,-214.6838 682.5,-205.9891 682.5,-197.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"686.0001,-197.298 682.5,-187.2981 679.0001,-197.2981 686.0001,-197.298\"/>\n",
"</g>\n",
"<!-- 3 -->\n",
"<g id=\"node4\" class=\"node\">\n",
"<title>3</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.184314\" stroke=\"#000000\" points=\"257,-68 0,-68 0,0 257,0 257,-68\"/>\n",
"<text text-anchor=\"start\" x=\"98\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #3</text>\n",
"<text text-anchor=\"start\" x=\"70.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1507</text>\n",
"<text text-anchor=\"start\" x=\"8\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [273, 235, 293, 519, 187]</text>\n",
"<text text-anchor=\"start\" x=\"75\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M287.2921,-103.9815C263.6029,-93.5414 238.2945,-82.3877 215.0027,-72.1227\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"216.4045,-68.9158 205.8423,-68.0856 213.5815,-75.3213 216.4045,-68.9158\"/>\n",
"</g>\n",
"<!-- 4 -->\n",
"<g id=\"node5\" class=\"node\">\n",
"<title>4</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.627451\" stroke=\"#000000\" points=\"487.5,-68 275.5,-68 275.5,0 487.5,0 487.5,-68\"/>\n",
"<text text-anchor=\"start\" x=\"351\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #4</text>\n",
"<text text-anchor=\"start\" x=\"328\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 231</text>\n",
"<text text-anchor=\"start\" x=\"283.5\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [160, 2, 16, 41, 12]</text>\n",
"<text text-anchor=\"start\" x=\"325.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 2&#45;&gt;4 -->\n",
"<g id=\"edge4\" class=\"edge\">\n",
"<title>2&#45;&gt;4</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M381.5,-103.9815C381.5,-95.618 381.5,-86.7965 381.5,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"385.0001,-78.2636 381.5,-68.2637 378.0001,-78.2637 385.0001,-78.2636\"/>\n",
"</g>\n",
"<!-- 6 -->\n",
"<g id=\"node7\" class=\"node\">\n",
"<title>6</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.956863\" stroke=\"#000000\" points=\"690,-68 505,-68 505,0 690,0 690,-68\"/>\n",
"<text text-anchor=\"start\" x=\"567\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #6</text>\n",
"<text text-anchor=\"start\" x=\"544\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 246</text>\n",
"<text text-anchor=\"start\" x=\"513\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [4, 0, 5, 236, 1]</text>\n",
"<text text-anchor=\"start\" x=\"544\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M650.8491,-103.9815C643.9829,-94.9747 636.7118,-85.4367 629.8202,-76.3965\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"632.4664,-74.0945 623.6203,-68.2637 626.8995,-78.3383 632.4664,-74.0945\"/>\n",
"</g>\n",
"<!-- 7 -->\n",
"<g id=\"node8\" class=\"node\">\n",
"<title>7</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"875,-68 708,-68 708,0 875,0 875,-68\"/>\n",
"<text text-anchor=\"start\" x=\"761\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #7</text>\n",
"<text text-anchor=\"start\" x=\"747\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"716\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"735.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 5&#45;&gt;7 -->\n",
"<g id=\"edge7\" class=\"edge\">\n",
"<title>5&#45;&gt;7</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M723.0876,-103.9815C732.162,-94.6989 741.7879,-84.8522 750.8643,-75.5677\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"753.5169,-77.8611 758.0046,-68.2637 748.5113,-72.9678 753.5169,-77.8611\"/>\n",
"</g>\n",
"<!-- 9 -->\n",
"<g id=\"node10\" class=\"node\">\n",
"<title>9</title>\n",
"<polygon fill=\"#7be539\" fill-opacity=\"0.854902\" stroke=\"#000000\" points=\"1183.5,-187 989.5,-187 989.5,-104 1183.5,-104 1183.5,-187\"/>\n",
"<text text-anchor=\"start\" x=\"1056\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #9</text>\n",
"<text text-anchor=\"start\" x=\"1028\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">soy_sauce ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"1033\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 405</text>\n",
"<text text-anchor=\"start\" x=\"997.5\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [4, 353, 3, 1, 44]</text>\n",
"<text text-anchor=\"start\" x=\"1035.5\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</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=\"M1086.5,-222.8796C1086.5,-214.6838 1086.5,-205.9891 1086.5,-197.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"1090.0001,-197.298 1086.5,-187.2981 1083.0001,-197.2981 1090.0001,-197.298\"/>\n",
"</g>\n",
"<!-- 12 -->\n",
"<g id=\"node13\" class=\"node\">\n",
"<title>12</title>\n",
"<polygon fill=\"#e539c0\" fill-opacity=\"0.733333\" stroke=\"#000000\" points=\"1474.5,-187 1298.5,-187 1298.5,-104 1474.5,-104 1474.5,-187\"/>\n",
"<text text-anchor=\"start\" x=\"1351.5\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #12</text>\n",
"<text text-anchor=\"start\" x=\"1341\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">yogurt ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"1337.5\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 57</text>\n",
"<text text-anchor=\"start\" x=\"1306.5\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 8, 3, 2, 44]</text>\n",
"<text text-anchor=\"start\" x=\"1344\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 8&#45;&gt;12 -->\n",
"<g id=\"edge12\" class=\"edge\">\n",
"<title>8&#45;&gt;12</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M1183.9014,-225.8641C1217.6028,-212.4959 1255.3601,-197.5188 1289.0643,-184.1495\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"1290.4515,-187.3646 1298.4564,-180.424 1287.8704,-180.8578 1290.4515,-187.3646\"/>\n",
"</g>\n",
"<!-- 10 -->\n",
"<g id=\"node11\" class=\"node\">\n",
"<title>10</title>\n",
"<polygon fill=\"#7be539\" fill-opacity=\"0.917647\" stroke=\"#000000\" points=\"1086.5,-68 892.5,-68 892.5,0 1086.5,0 1086.5,-68\"/>\n",
"<text text-anchor=\"start\" x=\"954.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #10</text>\n",
"<text text-anchor=\"start\" x=\"936\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 375</text>\n",
"<text text-anchor=\"start\" x=\"900.5\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 346, 2, 1, 25]</text>\n",
"<text text-anchor=\"start\" x=\"938.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</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=\"M1050.3808,-103.9815C1042.3853,-94.7908 1033.9087,-85.0472 1025.9021,-75.8436\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"1028.512,-73.5111 1019.3079,-68.2637 1023.2307,-78.1055 1028.512,-73.5111\"/>\n",
"</g>\n",
"<!-- 11 -->\n",
"<g id=\"node12\" class=\"node\">\n",
"<title>11</title>\n",
"<polygon fill=\"#e539c0\" fill-opacity=\"0.521569\" stroke=\"#000000\" points=\"1280.5,-68 1104.5,-68 1104.5,0 1280.5,0 1280.5,-68\"/>\n",
"<text text-anchor=\"start\" x=\"1157.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #11</text>\n",
"<text text-anchor=\"start\" x=\"1143.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 30</text>\n",
"<text text-anchor=\"start\" x=\"1112.5\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 7, 1, 0, 19]</text>\n",
"<text text-anchor=\"start\" x=\"1150\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 9&#45;&gt;11 -->\n",
"<g id=\"edge11\" class=\"edge\">\n",
"<title>9&#45;&gt;11</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M1125.9705,-103.9815C1134.7952,-94.6989 1144.1562,-84.8522 1152.9827,-75.5677\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"1155.573,-77.9228 1159.9265,-68.2637 1150.4997,-73.0997 1155.573,-77.9228\"/>\n",
"</g>\n",
"<!-- 13 -->\n",
"<g id=\"node14\" class=\"node\">\n",
"<title>13</title>\n",
"<polygon fill=\"#e539c0\" fill-opacity=\"0.835294\" stroke=\"#000000\" points=\"1474.5,-68 1298.5,-68 1298.5,0 1474.5,0 1474.5,-68\"/>\n",
"<text text-anchor=\"start\" x=\"1351.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #13</text>\n",
"<text text-anchor=\"start\" x=\"1337.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 52</text>\n",
"<text text-anchor=\"start\" x=\"1306.5\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 3, 3, 2, 44]</text>\n",
"<text text-anchor=\"start\" x=\"1344\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</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=\"M1386.5,-103.9815C1386.5,-95.618 1386.5,-86.7965 1386.5,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"1390.0001,-78.2636 1386.5,-68.2637 1383.0001,-78.2637 1390.0001,-78.2636\"/>\n",
"</g>\n",
"<!-- 14 -->\n",
"<g id=\"node15\" class=\"node\">\n",
"<title>14</title>\n",
"<polygon fill=\"#7be539\" stroke=\"#000000\" points=\"1659,-68 1492,-68 1492,0 1659,0 1659,-68\"/>\n",
"<text text-anchor=\"start\" x=\"1540.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #14</text>\n",
"<text text-anchor=\"start\" x=\"1531\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 5</text>\n",
"<text text-anchor=\"start\" x=\"1500\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 5, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"1524.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 12&#45;&gt;14 -->\n",
"<g id=\"edge14\" class=\"edge\">\n",
"<title>12&#45;&gt;14</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M1456.8766,-103.9815C1473.9469,-93.911 1492.1426,-83.1764 1509.0261,-73.2161\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"1510.8881,-76.1813 1517.7226,-68.0856 1507.3312,-70.1523 1510.8881,-76.1813\"/>\n",
"</g>\n",
"</g>\n",
"</svg>\n"
],
"text/plain": [
"<graphviz.files.Source at 0x7fafa0d35080>"
]
},
"execution_count": 7,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"export_graphviz(bamboo_tree,\n",
" feature_names=list(ingredients.columns.values),\n",
" out_file=\"bamboo_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(\"bamboo_tree.dot\") as bamboo_tree_image:\n",
" bamboo_tree_graph = bamboo_tree_image.read()\n",
"graphviz.Source(bamboo_tree_graph)"
]
},
{
"cell_type": "markdown",
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"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": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"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": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"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": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"source": [
"# Model Evaluation <a id=\"4\"></a>"
]
},
{
"cell_type": "markdown",
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"source": [
"<img src=\"https://s3-api.us-geo.objectstorage.softlayer.net/cf-courses-data/CognitiveClass/DS0103EN/labs/images/lab4_fig5_flowchart_evaluation.png\" width=500>"
]
},
{
"cell_type": "markdown",
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"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": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"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": 8,
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"outputs": [],
"source": [
"bamboo = recipes[recipes.cuisine.isin([\"korean\", \"japanese\", \"chinese\", \"thai\", \"indian\"])]"
]
},
{
"cell_type": "markdown",
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"source": [
"Let's see how many recipes exist for each cuisine."
]
},
{
"cell_type": "code",
"execution_count": 9,
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"outputs": [
{
"data": {
"text/plain": [
"korean 799\n",
"indian 598\n",
"chinese 442\n",
"japanese 320\n",
"thai 289\n",
"Name: cuisine, dtype: int64"
]
},
"execution_count": 9,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"bamboo[\"cuisine\"].value_counts()"
]
},
{
"cell_type": "markdown",
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"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": 10,
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"outputs": [],
"source": [
"# set sample size\n",
"sample_n = 30"
]
},
{
"cell_type": "markdown",
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"source": [
"Create a dataframe containing 30 recipes from each cuisine, selected randomly."
]
},
{
"cell_type": "code",
"execution_count": 11,
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"outputs": [],
"source": [
"# take 30 recipes from each cuisine\n",
"random.seed(1234) # set random seed\n",
"bamboo_test = bamboo.groupby(\"cuisine\", group_keys=False).apply(lambda x: x.sample(sample_n))\n",
"\n",
"bamboo_test_ingredients = bamboo_test.iloc[:,1:] # ingredients\n",
"bamboo_test_cuisines = bamboo_test[\"cuisine\"] # corresponding cuisines or labels"
]
},
{
"cell_type": "markdown",
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"source": [
"Check that there are 30 recipes for each cuisine."
]
},
{
"cell_type": "code",
"execution_count": 12,
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"outputs": [
{
"data": {
"text/plain": [
"thai 30\n",
"chinese 30\n",
"indian 30\n",
"japanese 30\n",
"korean 30\n",
"Name: cuisine, dtype: int64"
]
},
"execution_count": 12,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# check that we have 30 recipes from each cuisine\n",
"bamboo_test[\"cuisine\"].value_counts()"
]
},
{
"cell_type": "markdown",
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"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": 13,
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"outputs": [],
"source": [
"bamboo_test_index = bamboo.index.isin(bamboo_test.index)\n",
"bamboo_train = bamboo[~bamboo_test_index]\n",
"\n",
"bamboo_train_ingredients = bamboo_train.iloc[:,1:] # ingredients\n",
"bamboo_train_cuisines = bamboo_train[\"cuisine\"] # corresponding cuisines or labels"
]
},
{
"cell_type": "markdown",
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"source": [
"Check that there are 30 _fewer_ recipes now for each cuisine."
]
},
{
"cell_type": "code",
"execution_count": 14,
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"outputs": [
{
"data": {
"text/plain": [
"korean 769\n",
"indian 568\n",
"chinese 412\n",
"japanese 290\n",
"thai 259\n",
"Name: cuisine, dtype: int64"
]
},
"execution_count": 14,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"bamboo_train[\"cuisine\"].value_counts()"
]
},
{
"cell_type": "markdown",
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"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": 15,
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Decision tree model saved to bamboo_train_tree!\n"
]
}
],
"source": [
"bamboo_train_tree = tree.DecisionTreeClassifier(max_depth=15)\n",
"bamboo_train_tree.fit(bamboo_train_ingredients, bamboo_train_cuisines)\n",
"\n",
"print(\"Decision tree model saved to bamboo_train_tree!\")"
]
},
{
"cell_type": "markdown",
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"source": [
"Let's plot the decision tree and explore it."
]
},
{
"cell_type": "code",
"execution_count": 16,
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"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=\"20719pt\" height=\"1861pt\"\n",
" viewBox=\"0.00 0.00 20719.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 20715,-1857 20715,4 -4,4\"/>\n",
"<!-- 0 -->\n",
"<g id=\"node1\" class=\"node\">\n",
"<title>0</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.117647\" stroke=\"#000000\" points=\"18959,-1853 18702,-1853 18702,-1770 18959,-1770 18959,-1853\"/>\n",
"<text text-anchor=\"start\" x=\"18800\" y=\"-1837.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #0</text>\n",
"<text text-anchor=\"start\" x=\"18786.5\" y=\"-1822.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cumin ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"18772.5\" y=\"-1807.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2298</text>\n",
"<text text-anchor=\"start\" x=\"18710\" y=\"-1792.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [412, 568, 290, 769, 259]</text>\n",
"<text text-anchor=\"start\" x=\"18777\" y=\"-1777.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 1 -->\n",
"<g id=\"node2\" class=\"node\">\n",
"<title>1</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.247059\" stroke=\"#000000\" points=\"18204,-1734 17947,-1734 17947,-1651 18204,-1651 18204,-1734\"/>\n",
"<text text-anchor=\"start\" x=\"18045\" y=\"-1718.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #1</text>\n",
"<text text-anchor=\"start\" x=\"17976\" y=\"-1703.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">roasted_sesame_seed ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"18017.5\" y=\"-1688.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1861</text>\n",
"<text text-anchor=\"start\" x=\"17955\" y=\"-1673.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [408, 229, 284, 766, 174]</text>\n",
"<text text-anchor=\"start\" x=\"18022\" y=\"-1658.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M18701.9969,-1791.2459C18566.3424,-1769.8646 18353.2536,-1736.2784 18213.9517,-1714.3222\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"18214.4746,-1710.8615 18204.0516,-1712.7618 18213.3847,-1717.7761 18214.4746,-1710.8615\"/>\n",
"<text text-anchor=\"middle\" x=\"18218.7614\" y=\"-1729.2762\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">True</text>\n",
"</g>\n",
"<!-- 440 -->\n",
"<g id=\"node441\" class=\"node\">\n",
"<title>440</title>\n",
"<polygon fill=\"#7be539\" fill-opacity=\"0.721569\" stroke=\"#000000\" points=\"19316.5,-1734 19122.5,-1734 19122.5,-1651 19316.5,-1651 19316.5,-1734\"/>\n",
"<text text-anchor=\"start\" x=\"19180\" y=\"-1718.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #440</text>\n",
"<text text-anchor=\"start\" x=\"19184.5\" y=\"-1703.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">fish ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"19166\" y=\"-1688.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 437</text>\n",
"<text text-anchor=\"start\" x=\"19130.5\" y=\"-1673.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [4, 339, 6, 3, 85]</text>\n",
"<text text-anchor=\"start\" x=\"19168.5\" y=\"-1658.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 0&#45;&gt;440 -->\n",
"<g id=\"edge440\" class=\"edge\">\n",
"<title>0&#45;&gt;440</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M18959.2211,-1772.1226C19008.9981,-1756.8952 19065.2904,-1739.6747 19112.7588,-1725.1535\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"19113.9002,-1728.4645 19122.4389,-1722.1922 19111.8525,-1721.7707 19113.9002,-1728.4645\"/>\n",
"<text text-anchor=\"middle\" x=\"19110.7058\" y=\"-1740.5678\" 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=\"#3c39e5\" fill-opacity=\"0.113725\" stroke=\"#000000\" points=\"16874,-1615 16617,-1615 16617,-1532 16874,-1532 16874,-1615\"/>\n",
"<text text-anchor=\"start\" x=\"16715\" y=\"-1599.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #2</text>\n",
"<text text-anchor=\"start\" x=\"16700.5\" y=\"-1584.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">starch ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"16687.5\" y=\"-1569.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1626</text>\n",
"<text text-anchor=\"start\" x=\"16625\" y=\"-1554.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [404, 229, 280, 541, 172]</text>\n",
"<text text-anchor=\"start\" x=\"16692\" y=\"-1539.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M17946.7655,-1680.9817C17695.8717,-1658.5333 17143.4237,-1609.1037 16884.5233,-1585.9389\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16884.5776,-1582.4299 16874.3054,-1585.0247 16883.9537,-1589.402 16884.5776,-1582.4299\"/>\n",
"</g>\n",
"<!-- 405 -->\n",
"<g id=\"node406\" class=\"node\">\n",
"<title>405</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.956863\" stroke=\"#000000\" points=\"18168,-1615 17983,-1615 17983,-1532 18168,-1532 18168,-1615\"/>\n",
"<text text-anchor=\"start\" x=\"18036\" y=\"-1599.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #405</text>\n",
"<text text-anchor=\"start\" x=\"18025.5\" y=\"-1584.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cilantro ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"18022\" y=\"-1569.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 235</text>\n",
"<text text-anchor=\"start\" x=\"17991\" y=\"-1554.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [4, 0, 4, 225, 2]</text>\n",
"<text text-anchor=\"start\" x=\"18022\" y=\"-1539.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 1&#45;&gt;405 -->\n",
"<g id=\"edge405\" class=\"edge\">\n",
"<title>1&#45;&gt;405</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M18075.5,-1650.8796C18075.5,-1642.6838 18075.5,-1633.9891 18075.5,-1625.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"18079.0001,-1625.298 18075.5,-1615.2981 18072.0001,-1625.2981 18079.0001,-1625.298\"/>\n",
"</g>\n",
"<!-- 3 -->\n",
"<g id=\"node4\" class=\"node\">\n",
"<title>3</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.203922\" stroke=\"#000000\" points=\"13745,-1496 13488,-1496 13488,-1413 13745,-1413 13745,-1496\"/>\n",
"<text text-anchor=\"start\" x=\"13586\" y=\"-1480.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #3</text>\n",
"<text text-anchor=\"start\" x=\"13566.5\" y=\"-1465.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cilantro ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"13558.5\" y=\"-1450.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1413</text>\n",
"<text text-anchor=\"start\" x=\"13496\" y=\"-1435.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [254, 227, 268, 502, 162]</text>\n",
"<text text-anchor=\"start\" x=\"13563\" y=\"-1420.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M16616.5144,-1568.5945C16112.2697,-1549.4174 14276.5163,-1479.6013 13755.3325,-1459.78\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13755.2577,-1456.2747 13745.1319,-1459.392 13754.9916,-1463.2696 13755.2577,-1456.2747\"/>\n",
"</g>\n",
"<!-- 330 -->\n",
"<g id=\"node331\" class=\"node\">\n",
"<title>330</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.639216\" stroke=\"#000000\" points=\"16851.5,-1496 16639.5,-1496 16639.5,-1413 16851.5,-1413 16851.5,-1496\"/>\n",
"<text text-anchor=\"start\" x=\"16706\" y=\"-1480.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #330</text>\n",
"<text text-anchor=\"start\" x=\"16707\" y=\"-1465.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">pork ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"16692\" y=\"-1450.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 213</text>\n",
"<text text-anchor=\"start\" x=\"16647.5\" y=\"-1435.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [150, 2, 12, 39, 10]</text>\n",
"<text text-anchor=\"start\" x=\"16689.5\" y=\"-1420.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 2&#45;&gt;330 -->\n",
"<g id=\"edge330\" class=\"edge\">\n",
"<title>2&#45;&gt;330</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16745.5,-1531.8796C16745.5,-1523.6838 16745.5,-1514.9891 16745.5,-1506.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16749.0001,-1506.298 16745.5,-1496.2981 16742.0001,-1506.2981 16749.0001,-1506.298\"/>\n",
"</g>\n",
"<!-- 4 -->\n",
"<g id=\"node5\" class=\"node\">\n",
"<title>4</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.243137\" stroke=\"#000000\" points=\"10215,-1377 9958,-1377 9958,-1294 10215,-1294 10215,-1377\"/>\n",
"<text text-anchor=\"start\" x=\"10056\" y=\"-1361.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #4</text>\n",
"<text text-anchor=\"start\" x=\"10035\" y=\"-1346.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cayenne ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"10028.5\" y=\"-1331.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1251</text>\n",
"<text text-anchor=\"start\" x=\"9966\" y=\"-1316.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [216, 174, 260, 501, 100]</text>\n",
"<text text-anchor=\"start\" x=\"10033\" y=\"-1301.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M13487.9939,-1450.1679C12939.2414,-1431.6689 10794.5131,-1359.3679 10225.6406,-1340.1906\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10225.4516,-1336.6823 10215.3393,-1339.8433 10225.2157,-1343.6783 10225.4516,-1336.6823\"/>\n",
"</g>\n",
"<!-- 241 -->\n",
"<g id=\"node242\" class=\"node\">\n",
"<title>241</title>\n",
"<polygon fill=\"#e539c0\" fill-opacity=\"0.082353\" stroke=\"#000000\" points=\"13713.5,-1377 13519.5,-1377 13519.5,-1294 13713.5,-1294 13713.5,-1377\"/>\n",
"<text text-anchor=\"start\" x=\"13577\" y=\"-1361.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #241</text>\n",
"<text text-anchor=\"start\" x=\"13581.5\" y=\"-1346.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">fish ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"13563\" y=\"-1331.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 162</text>\n",
"<text text-anchor=\"start\" x=\"13527.5\" y=\"-1316.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [38, 53, 8, 1, 62]</text>\n",
"<text text-anchor=\"start\" x=\"13574\" y=\"-1301.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 3&#45;&gt;241 -->\n",
"<g id=\"edge241\" class=\"edge\">\n",
"<title>3&#45;&gt;241</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M13616.5,-1412.8796C13616.5,-1404.6838 13616.5,-1395.9891 13616.5,-1387.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13620.0001,-1387.298 13616.5,-1377.2981 13613.0001,-1387.2981 13620.0001,-1387.298\"/>\n",
"</g>\n",
"<!-- 5 -->\n",
"<g id=\"node6\" class=\"node\">\n",
"<title>5</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.043137\" stroke=\"#000000\" points=\"8131.5,-1258 7883.5,-1258 7883.5,-1175 8131.5,-1175 8131.5,-1258\"/>\n",
"<text text-anchor=\"start\" x=\"7977\" y=\"-1242.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #5</text>\n",
"<text text-anchor=\"start\" x=\"7947.5\" y=\"-1227.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cardamom ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"7954\" y=\"-1212.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 869</text>\n",
"<text text-anchor=\"start\" x=\"7891.5\" y=\"-1197.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [181, 121, 243, 269, 55]</text>\n",
"<text text-anchor=\"start\" x=\"7954\" y=\"-1182.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M9957.6267,-1328.1234C9586.8054,-1306.898 8519.5888,-1245.8115 8141.9203,-1224.1941\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8141.9489,-1220.6901 8131.7652,-1223.6128 8141.5489,-1227.6787 8141.9489,-1220.6901\"/>\n",
"</g>\n",
"<!-- 150 -->\n",
"<g id=\"node151\" class=\"node\">\n",
"<title>150</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.545098\" stroke=\"#000000\" points=\"10197,-1258 9976,-1258 9976,-1175 10197,-1175 10197,-1258\"/>\n",
"<text text-anchor=\"start\" x=\"10047\" y=\"-1242.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #150</text>\n",
"<text text-anchor=\"start\" x=\"10037\" y=\"-1227.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">scallion ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"10033\" y=\"-1212.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 382</text>\n",
"<text text-anchor=\"start\" x=\"9984\" y=\"-1197.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [35, 53, 17, 232, 45]</text>\n",
"<text text-anchor=\"start\" x=\"10033\" y=\"-1182.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 4&#45;&gt;150 -->\n",
"<g id=\"edge150\" class=\"edge\">\n",
"<title>4&#45;&gt;150</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10086.5,-1293.8796C10086.5,-1285.6838 10086.5,-1276.9891 10086.5,-1268.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10090.0001,-1268.298 10086.5,-1258.2981 10083.0001,-1268.2981 10090.0001,-1268.298\"/>\n",
"</g>\n",
"<!-- 6 -->\n",
"<g id=\"node7\" class=\"node\">\n",
"<title>6</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.043137\" stroke=\"#000000\" points=\"6536,-1139 6297,-1139 6297,-1056 6536,-1056 6536,-1139\"/>\n",
"<text text-anchor=\"start\" x=\"6386\" y=\"-1123.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #6</text>\n",
"<text text-anchor=\"start\" x=\"6378\" y=\"-1108.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">pork ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"6363\" y=\"-1093.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 835</text>\n",
"<text text-anchor=\"start\" x=\"6305\" y=\"-1078.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [181, 88, 243, 269, 54]</text>\n",
"<text text-anchor=\"start\" x=\"6363\" y=\"-1063.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M7883.3196,-1207.2118C7588.1087,-1185.1313 6846.6339,-1129.6722 6546.0713,-1107.1914\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"6546.2351,-1103.6939 6536.0019,-1106.4382 6545.7129,-1110.6744 6546.2351,-1103.6939\"/>\n",
"</g>\n",
"<!-- 147 -->\n",
"<g id=\"node148\" class=\"node\">\n",
"<title>147</title>\n",
"<polygon fill=\"#7be539\" fill-opacity=\"0.968627\" stroke=\"#000000\" points=\"8095.5,-1139 7919.5,-1139 7919.5,-1056 8095.5,-1056 8095.5,-1139\"/>\n",
"<text text-anchor=\"start\" x=\"7968\" y=\"-1123.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #147</text>\n",
"<text text-anchor=\"start\" x=\"7968\" y=\"-1108.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">bean ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"7958.5\" y=\"-1093.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 34</text>\n",
"<text text-anchor=\"start\" x=\"7927.5\" y=\"-1078.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 33, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"7956.5\" y=\"-1063.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 5&#45;&gt;147 -->\n",
"<g id=\"edge147\" class=\"edge\">\n",
"<title>5&#45;&gt;147</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8007.5,-1174.8796C8007.5,-1166.6838 8007.5,-1157.9891 8007.5,-1149.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8011.0001,-1149.298 8007.5,-1139.2981 8004.0001,-1149.2981 8011.0001,-1149.298\"/>\n",
"</g>\n",
"<!-- 7 -->\n",
"<g id=\"node8\" class=\"node\">\n",
"<title>7</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.058824\" stroke=\"#000000\" points=\"4802,-1020 4563,-1020 4563,-937 4802,-937 4802,-1020\"/>\n",
"<text text-anchor=\"start\" x=\"4652\" y=\"-1004.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #7</text>\n",
"<text text-anchor=\"start\" x=\"4643.5\" y=\"-989.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">wine ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"4629\" y=\"-974.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 763</text>\n",
"<text text-anchor=\"start\" x=\"4571\" y=\"-959.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [133, 88, 230, 261, 51]</text>\n",
"<text text-anchor=\"start\" x=\"4629\" y=\"-944.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M6296.9733,-1089.2972C5983.2116,-1067.7645 5137.9139,-1009.7539 4812.5788,-987.427\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4812.382,-983.9053 4802.1658,-986.7124 4811.9027,-990.8889 4812.382,-983.9053\"/>\n",
"</g>\n",
"<!-- 110 -->\n",
"<g id=\"node111\" class=\"node\">\n",
"<title>110</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.592157\" stroke=\"#000000\" points=\"6509,-1020 6324,-1020 6324,-937 6509,-937 6509,-1020\"/>\n",
"<text text-anchor=\"start\" x=\"6377\" y=\"-1004.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #110</text>\n",
"<text text-anchor=\"start\" x=\"6358\" y=\"-989.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">soy_sauce ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"6367.5\" y=\"-974.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 72</text>\n",
"<text text-anchor=\"start\" x=\"6332\" y=\"-959.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [48, 0, 13, 8, 3]</text>\n",
"<text text-anchor=\"start\" x=\"6360.5\" y=\"-944.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 6&#45;&gt;110 -->\n",
"<g id=\"edge110\" class=\"edge\">\n",
"<title>6&#45;&gt;110</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M6416.5,-1055.8796C6416.5,-1047.6838 6416.5,-1038.9891 6416.5,-1030.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"6420.0001,-1030.298 6416.5,-1020.2981 6413.0001,-1030.2981 6420.0001,-1030.298\"/>\n",
"</g>\n",
"<!-- 8 -->\n",
"<g id=\"node9\" class=\"node\">\n",
"<title>8</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.160784\" stroke=\"#000000\" points=\"3700,-901 3461,-901 3461,-818 3700,-818 3700,-901\"/>\n",
"<text text-anchor=\"start\" x=\"3550\" y=\"-885.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #8</text>\n",
"<text text-anchor=\"start\" x=\"3527.5\" y=\"-870.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">seaweed ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"3527\" y=\"-855.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 678</text>\n",
"<text text-anchor=\"start\" x=\"3469\" y=\"-840.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [110, 86, 178, 258, 46]</text>\n",
"<text text-anchor=\"start\" x=\"3527\" y=\"-825.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M4562.9947,-965.5952C4354.4315,-943.0734 3925.708,-896.7775 3710.1999,-873.5057\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3710.4184,-870.009 3700.1005,-872.4151 3709.6669,-876.9686 3710.4184,-870.009\"/>\n",
"</g>\n",
"<!-- 75 -->\n",
"<g id=\"node76\" class=\"node\">\n",
"<title>75</title>\n",
"<polygon fill=\"#39e5c5\" fill-opacity=\"0.466667\" stroke=\"#000000\" points=\"4775,-901 4590,-901 4590,-818 4775,-818 4775,-901\"/>\n",
"<text text-anchor=\"start\" x=\"4647.5\" y=\"-885.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #75</text>\n",
"<text text-anchor=\"start\" x=\"4621.5\" y=\"-870.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">sesame_oil ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"4633.5\" y=\"-855.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 85</text>\n",
"<text text-anchor=\"start\" x=\"4598\" y=\"-840.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [23, 2, 52, 3, 5]</text>\n",
"<text text-anchor=\"start\" x=\"4622\" y=\"-825.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 7&#45;&gt;75 -->\n",
"<g id=\"edge75\" class=\"edge\">\n",
"<title>7&#45;&gt;75</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M4682.5,-936.8796C4682.5,-928.6838 4682.5,-919.9891 4682.5,-911.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4686.0001,-911.298 4682.5,-901.2981 4679.0001,-911.2981 4686.0001,-911.298\"/>\n",
"</g>\n",
"<!-- 9 -->\n",
"<g id=\"node10\" class=\"node\">\n",
"<title>9</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.219608\" stroke=\"#000000\" points=\"2936,-782 2697,-782 2697,-699 2936,-699 2936,-782\"/>\n",
"<text text-anchor=\"start\" x=\"2786\" y=\"-766.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #9</text>\n",
"<text text-anchor=\"start\" x=\"2771\" y=\"-751.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">yogurt ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"2763\" y=\"-736.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 619</text>\n",
"<text text-anchor=\"start\" x=\"2705\" y=\"-721.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [110, 86, 135, 242, 46]</text>\n",
"<text text-anchor=\"start\" x=\"2763\" y=\"-706.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M3460.705,-840.8408C3320.8584,-819.0584 3090.4093,-783.1639 2946.3734,-760.729\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2946.5742,-757.2181 2936.1546,-759.1373 2945.4968,-764.1347 2946.5742,-757.2181\"/>\n",
"</g>\n",
"<!-- 58 -->\n",
"<g id=\"node59\" class=\"node\">\n",
"<title>58</title>\n",
"<polygon fill=\"#39e5c5\" fill-opacity=\"0.627451\" stroke=\"#000000\" points=\"3673,-782 3488,-782 3488,-699 3673,-699 3673,-782\"/>\n",
"<text text-anchor=\"start\" x=\"3545.5\" y=\"-766.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #58</text>\n",
"<text text-anchor=\"start\" x=\"3519.5\" y=\"-751.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">sesame_oil ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"3531.5\" y=\"-736.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 59</text>\n",
"<text text-anchor=\"start\" x=\"3496\" y=\"-721.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 43, 16, 0]</text>\n",
"<text text-anchor=\"start\" x=\"3520\" y=\"-706.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 8&#45;&gt;58 -->\n",
"<g id=\"edge58\" class=\"edge\">\n",
"<title>8&#45;&gt;58</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3580.5,-817.8796C3580.5,-809.6838 3580.5,-800.9891 3580.5,-792.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3584.0001,-792.298 3580.5,-782.2981 3577.0001,-792.2981 3584.0001,-792.298\"/>\n",
"</g>\n",
"<!-- 10 -->\n",
"<g id=\"node11\" class=\"node\">\n",
"<title>10</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.231373\" stroke=\"#000000\" points=\"2643,-663 2404,-663 2404,-580 2643,-580 2643,-663\"/>\n",
"<text text-anchor=\"start\" x=\"2488.5\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #10</text>\n",
"<text text-anchor=\"start\" x=\"2485\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">sake ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"2470\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 598</text>\n",
"<text text-anchor=\"start\" x=\"2412\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [109, 67, 134, 242, 46]</text>\n",
"<text text-anchor=\"start\" x=\"2470\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M2714.0228,-698.8796C2688.5961,-688.5527 2661.2189,-677.4336 2635.3679,-666.9344\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2636.5014,-663.6172 2625.9193,-663.0969 2633.8673,-670.1027 2636.5014,-663.6172\"/>\n",
"</g>\n",
"<!-- 53 -->\n",
"<g id=\"node54\" class=\"node\">\n",
"<title>53</title>\n",
"<polygon fill=\"#7be539\" fill-opacity=\"0.901961\" stroke=\"#000000\" points=\"2904.5,-663 2728.5,-663 2728.5,-580 2904.5,-580 2904.5,-663\"/>\n",
"<text text-anchor=\"start\" x=\"2781.5\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #53</text>\n",
"<text text-anchor=\"start\" x=\"2781.5\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">egg ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"2767.5\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 21</text>\n",
"<text text-anchor=\"start\" x=\"2736.5\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 19, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"2765.5\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 9&#45;&gt;53 -->\n",
"<g id=\"edge53\" class=\"edge\">\n",
"<title>9&#45;&gt;53</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M2816.5,-698.8796C2816.5,-690.6838 2816.5,-681.9891 2816.5,-673.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2820.0001,-673.298 2816.5,-663.2981 2813.0001,-673.2981 2820.0001,-673.298\"/>\n",
"</g>\n",
"<!-- 11 -->\n",
"<g id=\"node12\" class=\"node\">\n",
"<title>11</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.250980\" stroke=\"#000000\" points=\"1713.5,-544 1483.5,-544 1483.5,-461 1713.5,-461 1713.5,-544\"/>\n",
"<text text-anchor=\"start\" x=\"1563.5\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #11</text>\n",
"<text text-anchor=\"start\" x=\"1551.5\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">pepper ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"1545\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 514</text>\n",
"<text text-anchor=\"start\" x=\"1491.5\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [105, 67, 88, 208, 46]</text>\n",
"<text text-anchor=\"start\" x=\"1545\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M2403.9938,-606.1257C2228.4399,-583.5409 1902.3669,-541.5921 1723.6497,-518.6003\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"1724.0384,-515.1216 1713.6735,-517.3169 1723.1452,-522.0644 1724.0384,-515.1216\"/>\n",
"</g>\n",
"<!-- 32 -->\n",
"<g id=\"node33\" class=\"node\">\n",
"<title>32</title>\n",
"<polygon fill=\"#39e5c5\" fill-opacity=\"0.239216\" stroke=\"#000000\" points=\"2616,-544 2431,-544 2431,-461 2616,-461 2616,-544\"/>\n",
"<text text-anchor=\"start\" x=\"2488.5\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #32</text>\n",
"<text text-anchor=\"start\" x=\"2453\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">black_pepper ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"2474.5\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 84</text>\n",
"<text text-anchor=\"start\" x=\"2439\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [4, 0, 46, 34, 0]</text>\n",
"<text text-anchor=\"start\" x=\"2463\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 10&#45;&gt;32 -->\n",
"<g id=\"edge32\" class=\"edge\">\n",
"<title>10&#45;&gt;32</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M2523.5,-579.8796C2523.5,-571.6838 2523.5,-562.9891 2523.5,-554.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2527.0001,-554.298 2523.5,-544.2981 2520.0001,-554.2981 2527.0001,-554.298\"/>\n",
"</g>\n",
"<!-- 12 -->\n",
"<g id=\"node13\" class=\"node\">\n",
"<title>12</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.317647\" stroke=\"#000000\" points=\"1143,-425 922,-425 922,-342 1143,-342 1143,-425\"/>\n",
"<text text-anchor=\"start\" x=\"997.5\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #12</text>\n",
"<text text-anchor=\"start\" x=\"988\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">barley ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"979\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 473</text>\n",
"<text text-anchor=\"start\" x=\"930\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [83, 66, 77, 207, 40]</text>\n",
"<text text-anchor=\"start\" x=\"979\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M1483.2792,-478.2751C1387.1883,-458.0723 1250.7074,-429.3775 1153.1378,-408.8638\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"1153.7322,-405.4123 1143.226,-406.7799 1152.2919,-412.2625 1153.7322,-405.4123\"/>\n",
"</g>\n",
"<!-- 25 -->\n",
"<g id=\"node26\" class=\"node\">\n",
"<title>25</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.368627\" stroke=\"#000000\" points=\"1691,-425 1506,-425 1506,-342 1691,-342 1691,-425\"/>\n",
"<text text-anchor=\"start\" x=\"1563.5\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #25</text>\n",
"<text text-anchor=\"start\" x=\"1523.5\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">mandarin_peel ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"1549.5\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 41</text>\n",
"<text text-anchor=\"start\" x=\"1514\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [22, 1, 11, 1, 6]</text>\n",
"<text text-anchor=\"start\" x=\"1542.5\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 11&#45;&gt;25 -->\n",
"<g id=\"edge25\" class=\"edge\">\n",
"<title>11&#45;&gt;25</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M1598.5,-460.8796C1598.5,-452.6838 1598.5,-443.9891 1598.5,-435.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"1602.0001,-435.298 1598.5,-425.2981 1595.0001,-435.2981 1602.0001,-435.298\"/>\n",
"</g>\n",
"<!-- 13 -->\n",
"<g id=\"node14\" class=\"node\">\n",
"<title>13</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.325490\" stroke=\"#000000\" points=\"721,-306 500,-306 500,-223 721,-223 721,-306\"/>\n",
"<text text-anchor=\"start\" x=\"575.5\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #13</text>\n",
"<text text-anchor=\"start\" x=\"566\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">butter ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"557\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 459</text>\n",
"<text text-anchor=\"start\" x=\"508\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [83, 65, 65, 206, 40]</text>\n",
"<text text-anchor=\"start\" x=\"557\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M921.9002,-352.3119C863.2586,-335.7755 791.1257,-315.4347 731.0557,-298.4956\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"731.7145,-295.0449 721.1399,-295.6994 729.8146,-301.7822 731.7145,-295.0449\"/>\n",
"</g>\n",
"<!-- 20 -->\n",
"<g id=\"node21\" class=\"node\">\n",
"<title>20</title>\n",
"<polygon fill=\"#39e5c5\" fill-opacity=\"0.847059\" stroke=\"#000000\" points=\"1120.5,-306 944.5,-306 944.5,-223 1120.5,-223 1120.5,-306\"/>\n",
"<text text-anchor=\"start\" x=\"997.5\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #20</text>\n",
"<text text-anchor=\"start\" x=\"981\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">soybean ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"983.5\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 14</text>\n",
"<text text-anchor=\"start\" x=\"952.5\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 1, 12, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"972\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 12&#45;&gt;20 -->\n",
"<g id=\"edge20\" class=\"edge\">\n",
"<title>12&#45;&gt;20</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M1032.5,-341.8796C1032.5,-333.6838 1032.5,-324.9891 1032.5,-316.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"1036.0001,-316.298 1032.5,-306.2981 1029.0001,-316.2981 1036.0001,-316.298\"/>\n",
"</g>\n",
"<!-- 14 -->\n",
"<g id=\"node15\" class=\"node\">\n",
"<title>14</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.372549\" stroke=\"#000000\" points=\"433,-187 212,-187 212,-104 433,-104 433,-187\"/>\n",
"<text text-anchor=\"start\" x=\"287.5\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #14</text>\n",
"<text text-anchor=\"start\" x=\"264\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">lime_juice ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"269\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 411</text>\n",
"<text text-anchor=\"start\" x=\"220\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [74, 46, 53, 199, 39]</text>\n",
"<text text-anchor=\"start\" x=\"269\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M509.7716,-222.8796C484.7788,-212.5527 457.8688,-201.4336 432.4589,-190.9344\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"433.7503,-187.681 423.1715,-187.0969 431.0771,-194.1505 433.7503,-187.681\"/>\n",
"</g>\n",
"<!-- 17 -->\n",
"<g id=\"node18\" class=\"node\">\n",
"<title>17</title>\n",
"<polygon fill=\"#7be539\" fill-opacity=\"0.196078\" stroke=\"#000000\" points=\"703,-187 518,-187 518,-104 703,-104 703,-187\"/>\n",
"<text text-anchor=\"start\" x=\"575.5\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #17</text>\n",
"<text text-anchor=\"start\" x=\"575.5\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">egg ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"561.5\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 48</text>\n",
"<text text-anchor=\"start\" x=\"526\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [9, 19, 12, 7, 1]</text>\n",
"<text text-anchor=\"start\" x=\"559.5\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</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=\"M610.5,-222.8796C610.5,-214.6838 610.5,-205.9891 610.5,-197.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"614.0001,-197.298 610.5,-187.2981 607.0001,-197.2981 614.0001,-197.298\"/>\n",
"</g>\n",
"<!-- 15 -->\n",
"<g id=\"node16\" class=\"node\">\n",
"<title>15</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.388235\" stroke=\"#000000\" points=\"221,-68 0,-68 0,0 221,0 221,-68\"/>\n",
"<text text-anchor=\"start\" x=\"75.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #15</text>\n",
"<text text-anchor=\"start\" x=\"57\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 396</text>\n",
"<text text-anchor=\"start\" x=\"8\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [74, 44, 49, 199, 30]</text>\n",
"<text text-anchor=\"start\" x=\"57\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M243.559,-103.9815C224.1479,-93.7724 203.4394,-82.8809 184.2823,-72.8053\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"185.7883,-69.6429 175.3085,-68.0856 182.5299,-75.8383 185.7883,-69.6429\"/>\n",
"</g>\n",
"<!-- 16 -->\n",
"<g id=\"node17\" class=\"node\">\n",
"<title>16</title>\n",
"<polygon fill=\"#e539c0\" fill-opacity=\"0.454902\" stroke=\"#000000\" points=\"406,-68 239,-68 239,0 406,0 406,-68\"/>\n",
"<text text-anchor=\"start\" x=\"287.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #16</text>\n",
"<text text-anchor=\"start\" x=\"273.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 15</text>\n",
"<text text-anchor=\"start\" x=\"247\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 2, 4, 0, 9]</text>\n",
"<text text-anchor=\"start\" x=\"280\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</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=\"M322.5,-103.9815C322.5,-95.618 322.5,-86.7965 322.5,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"326.0001,-78.2636 322.5,-68.2637 319.0001,-78.2637 326.0001,-78.2636\"/>\n",
"</g>\n",
"<!-- 18 -->\n",
"<g id=\"node19\" class=\"node\">\n",
"<title>18</title>\n",
"<polygon fill=\"#7be539\" fill-opacity=\"0.525490\" stroke=\"#000000\" points=\"599.5,-68 423.5,-68 423.5,0 599.5,0 599.5,-68\"/>\n",
"<text text-anchor=\"start\" x=\"476.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #18</text>\n",
"<text text-anchor=\"start\" x=\"462.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 23</text>\n",
"<text text-anchor=\"start\" x=\"431.5\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 14, 2, 4, 0]</text>\n",
"<text text-anchor=\"start\" x=\"460.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</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=\"M573.6361,-103.9815C565.4757,-94.7908 556.8244,-85.0472 548.6526,-75.8436\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"551.1792,-73.4177 541.9225,-68.2637 545.9447,-78.0653 551.1792,-73.4177\"/>\n",
"</g>\n",
"<!-- 19 -->\n",
"<g id=\"node20\" class=\"node\">\n",
"<title>19</title>\n",
"<polygon fill=\"#39e5c5\" fill-opacity=\"0.211765\" stroke=\"#000000\" points=\"793.5,-68 617.5,-68 617.5,0 793.5,0 793.5,-68\"/>\n",
"<text text-anchor=\"start\" x=\"670.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #19</text>\n",
"<text text-anchor=\"start\" x=\"656.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 25</text>\n",
"<text text-anchor=\"start\" x=\"625.5\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [6, 5, 10, 3, 1]</text>\n",
"<text text-anchor=\"start\" x=\"645\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 17&#45;&gt;19 -->\n",
"<g id=\"edge19\" class=\"edge\">\n",
"<title>17&#45;&gt;19</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M645.8745,-103.9815C653.6268,-94.8828 661.8409,-85.242 669.6131,-76.1199\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"672.4854,-78.1454 676.3067,-68.2637 667.1572,-73.6056 672.4854,-78.1454\"/>\n",
"</g>\n",
"<!-- 21 -->\n",
"<g id=\"node22\" class=\"node\">\n",
"<title>21</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"1022,-187 855,-187 855,-104 1022,-104 1022,-187\"/>\n",
"<text text-anchor=\"start\" x=\"903.5\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #21</text>\n",
"<text text-anchor=\"start\" x=\"902.5\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">rice ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"894\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"863\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 1, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"887.5\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 20&#45;&gt;21 -->\n",
"<g id=\"edge21\" class=\"edge\">\n",
"<title>20&#45;&gt;21</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M999.6234,-222.8796C992.5803,-213.9633 985.0707,-204.4565 977.8126,-195.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"980.4621,-192.9757 971.517,-187.2981 974.9691,-197.3147 980.4621,-192.9757\"/>\n",
"</g>\n",
"<!-- 24 -->\n",
"<g id=\"node25\" class=\"node\">\n",
"<title>24</title>\n",
"<polygon fill=\"#39e5c5\" stroke=\"#000000\" points=\"1215.5,-179.5 1039.5,-179.5 1039.5,-111.5 1215.5,-111.5 1215.5,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"1092.5\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #24</text>\n",
"<text text-anchor=\"start\" x=\"1078.5\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 12</text>\n",
"<text text-anchor=\"start\" x=\"1047.5\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 12, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"1067\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 20&#45;&gt;24 -->\n",
"<g id=\"edge24\" class=\"edge\">\n",
"<title>20&#45;&gt;24</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M1065.7264,-222.8796C1074.7681,-211.5536 1084.5705,-199.2748 1093.6466,-187.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"1096.602,-189.8137 1100.1057,-179.8149 1091.1315,-185.4464 1096.602,-189.8137\"/>\n",
"</g>\n",
"<!-- 22 -->\n",
"<g id=\"node23\" class=\"node\">\n",
"<title>22</title>\n",
"<polygon fill=\"#7be539\" stroke=\"#000000\" points=\"978,-68 811,-68 811,0 978,0 978,-68\"/>\n",
"<text text-anchor=\"start\" x=\"859.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #22</text>\n",
"<text text-anchor=\"start\" x=\"850\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"819\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 1, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"843.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 21&#45;&gt;22 -->\n",
"<g id=\"edge22\" class=\"edge\">\n",
"<title>21&#45;&gt;22</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M922.116,-103.9815C918.7431,-95.4342 915.1814,-86.4086 911.778,-77.7839\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"914.9475,-76.2808 908.0211,-68.2637 908.4362,-78.8504 914.9475,-76.2808\"/>\n",
"</g>\n",
"<!-- 23 -->\n",
"<g id=\"node24\" class=\"node\">\n",
"<title>23</title>\n",
"<polygon fill=\"#3c39e5\" stroke=\"#000000\" points=\"1163,-68 996,-68 996,0 1163,0 1163,-68\"/>\n",
"<text text-anchor=\"start\" x=\"1044.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #23</text>\n",
"<text text-anchor=\"start\" x=\"1035\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"1004\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"1026\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 21&#45;&gt;23 -->\n",
"<g id=\"edge23\" class=\"edge\">\n",
"<title>21&#45;&gt;23</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M991.0032,-103.9815C1003.2066,-94.3313 1016.181,-84.0714 1028.3261,-74.4673\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"1030.4982,-77.2118 1036.171,-68.2637 1026.1562,-71.7211 1030.4982,-77.2118\"/>\n",
"</g>\n",
"<!-- 26 -->\n",
"<g id=\"node27\" class=\"node\">\n",
"<title>26</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.466667\" stroke=\"#000000\" points=\"1591.5,-306 1415.5,-306 1415.5,-223 1591.5,-223 1591.5,-306\"/>\n",
"<text text-anchor=\"start\" x=\"1468.5\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #26</text>\n",
"<text text-anchor=\"start\" x=\"1459\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">barley ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"1454.5\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 38</text>\n",
"<text text-anchor=\"start\" x=\"1423.5\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [22, 1, 8, 1, 6]</text>\n",
"<text text-anchor=\"start\" x=\"1447.5\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</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=\"M1565.2736,-341.8796C1558.1556,-332.9633 1550.5661,-323.4565 1543.2308,-314.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"1545.8425,-311.9295 1536.8682,-306.2981 1540.3719,-316.2968 1545.8425,-311.9295\"/>\n",
"</g>\n",
"<!-- 31 -->\n",
"<g id=\"node32\" class=\"node\">\n",
"<title>31</title>\n",
"<polygon fill=\"#39e5c5\" stroke=\"#000000\" points=\"1776,-298.5 1609,-298.5 1609,-230.5 1776,-230.5 1776,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"1657.5\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #31</text>\n",
"<text text-anchor=\"start\" x=\"1648\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"1617\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 3, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"1632\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 25&#45;&gt;31 -->\n",
"<g id=\"edge31\" class=\"edge\">\n",
"<title>25&#45;&gt;31</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M1631.3766,-341.8796C1640.3232,-330.5536 1650.0224,-318.2748 1659.0029,-306.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"1661.942,-308.8316 1665.3941,-298.8149 1656.449,-304.4926 1661.942,-308.8316\"/>\n",
"</g>\n",
"<!-- 27 -->\n",
"<g id=\"node28\" class=\"node\">\n",
"<title>27</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.552941\" stroke=\"#000000\" points=\"1497.5,-187 1321.5,-187 1321.5,-104 1497.5,-104 1497.5,-187\"/>\n",
"<text text-anchor=\"start\" x=\"1374.5\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #27</text>\n",
"<text text-anchor=\"start\" x=\"1367\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">bread ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"1360.5\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 35</text>\n",
"<text text-anchor=\"start\" x=\"1329.5\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [22, 1, 5, 1, 6]</text>\n",
"<text text-anchor=\"start\" x=\"1353.5\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</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=\"M1470.6234,-222.8796C1463.5803,-213.9633 1456.0707,-204.4565 1448.8126,-195.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"1451.4621,-192.9757 1442.517,-187.2981 1445.9691,-197.3147 1451.4621,-192.9757\"/>\n",
"</g>\n",
"<!-- 30 -->\n",
"<g id=\"node31\" class=\"node\">\n",
"<title>30</title>\n",
"<polygon fill=\"#39e5c5\" stroke=\"#000000\" points=\"1682,-179.5 1515,-179.5 1515,-111.5 1682,-111.5 1682,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"1563.5\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #30</text>\n",
"<text text-anchor=\"start\" x=\"1554\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"1523\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 3, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"1538\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 26&#45;&gt;30 -->\n",
"<g id=\"edge30\" class=\"edge\">\n",
"<title>26&#45;&gt;30</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M1536.7264,-222.8796C1545.7681,-211.5536 1555.5705,-199.2748 1564.6466,-187.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"1567.602,-189.8137 1571.1057,-179.8149 1562.1315,-185.4464 1567.602,-189.8137\"/>\n",
"</g>\n",
"<!-- 28 -->\n",
"<g id=\"node29\" class=\"node\">\n",
"<title>28</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.592157\" stroke=\"#000000\" points=\"1356.5,-68 1180.5,-68 1180.5,0 1356.5,0 1356.5,-68\"/>\n",
"<text text-anchor=\"start\" x=\"1233.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #28</text>\n",
"<text text-anchor=\"start\" x=\"1219.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 33</text>\n",
"<text text-anchor=\"start\" x=\"1188.5\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [22, 1, 3, 1, 6]</text>\n",
"<text text-anchor=\"start\" x=\"1212.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 27&#45;&gt;28 -->\n",
"<g id=\"edge28\" class=\"edge\">\n",
"<title>27&#45;&gt;28</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M1356.9968,-103.9815C1344.7934,-94.3313 1331.819,-84.0714 1319.6739,-74.4673\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"1321.8438,-71.7211 1311.829,-68.2637 1317.5018,-77.2118 1321.8438,-71.7211\"/>\n",
"</g>\n",
"<!-- 29 -->\n",
"<g id=\"node30\" class=\"node\">\n",
"<title>29</title>\n",
"<polygon fill=\"#39e5c5\" stroke=\"#000000\" points=\"1541,-68 1374,-68 1374,0 1541,0 1541,-68\"/>\n",
"<text text-anchor=\"start\" x=\"1422.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #29</text>\n",
"<text text-anchor=\"start\" x=\"1413\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"1382\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 2, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"1397\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 27&#45;&gt;29 -->\n",
"<g id=\"edge29\" class=\"edge\">\n",
"<title>27&#45;&gt;29</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M1427.3734,-103.9815C1431.0926,-95.3423 1435.022,-86.2144 1438.771,-77.5059\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"1442.0103,-78.8327 1442.7497,-68.2637 1435.5808,-76.0648 1442.0103,-78.8327\"/>\n",
"</g>\n",
"<!-- 33 -->\n",
"<g id=\"node34\" class=\"node\">\n",
"<title>33</title>\n",
"<polygon fill=\"#39e5c5\" fill-opacity=\"0.454902\" stroke=\"#000000\" points=\"2411,-425 2226,-425 2226,-342 2411,-342 2411,-425\"/>\n",
"<text text-anchor=\"start\" x=\"2283.5\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #33</text>\n",
"<text text-anchor=\"start\" x=\"2282.5\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">rice ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"2269.5\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 66</text>\n",
"<text text-anchor=\"start\" x=\"2234\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 42, 22, 0]</text>\n",
"<text text-anchor=\"start\" x=\"2258\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</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=\"M2451.8009,-460.8796C2434.7912,-451.0056 2416.5339,-440.4075 2399.1552,-430.3193\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2400.5642,-427.0903 2390.1586,-425.0969 2397.0499,-433.1443 2400.5642,-427.0903\"/>\n",
"</g>\n",
"<!-- 44 -->\n",
"<g id=\"node45\" class=\"node\">\n",
"<title>44</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.572549\" stroke=\"#000000\" points=\"2689.5,-425 2513.5,-425 2513.5,-342 2689.5,-342 2689.5,-425\"/>\n",
"<text text-anchor=\"start\" x=\"2566.5\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #44</text>\n",
"<text text-anchor=\"start\" x=\"2536\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">katsuobushi ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"2552.5\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 18</text>\n",
"<text text-anchor=\"start\" x=\"2521.5\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 4, 12, 0]</text>\n",
"<text text-anchor=\"start\" x=\"2548\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M2550.7806,-460.8796C2556.5068,-452.1434 2562.6046,-442.8404 2568.5137,-433.8253\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2571.5482,-435.5803 2574.1029,-425.2981 2565.6937,-431.7429 2571.5482,-435.5803\"/>\n",
"</g>\n",
"<!-- 34 -->\n",
"<g id=\"node35\" class=\"node\">\n",
"<title>34</title>\n",
"<polygon fill=\"#39e5c5\" fill-opacity=\"0.282353\" stroke=\"#000000\" points=\"2123,-306 1938,-306 1938,-223 2123,-223 2123,-306\"/>\n",
"<text text-anchor=\"start\" x=\"1995.5\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #34</text>\n",
"<text text-anchor=\"start\" x=\"1979\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">soybean ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"1981.5\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 53</text>\n",
"<text text-anchor=\"start\" x=\"1946\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 30, 21, 0]</text>\n",
"<text text-anchor=\"start\" x=\"1970\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</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=\"M2225.7897,-345.1926C2195.9856,-332.8777 2162.8095,-319.1696 2132.3839,-306.5979\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2133.6153,-303.3197 2123.0366,-302.7356 2130.9421,-309.7892 2133.6153,-303.3197\"/>\n",
"</g>\n",
"<!-- 41 -->\n",
"<g id=\"node42\" class=\"node\">\n",
"<title>41</title>\n",
"<polygon fill=\"#39e5c5\" fill-opacity=\"0.917647\" stroke=\"#000000\" points=\"2418.5,-306 2218.5,-306 2218.5,-223 2418.5,-223 2418.5,-306\"/>\n",
"<text text-anchor=\"start\" x=\"2283.5\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #41</text>\n",
"<text text-anchor=\"start\" x=\"2226.5\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">black_sesame_seed ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"2269.5\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 13</text>\n",
"<text text-anchor=\"start\" x=\"2238.5\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 12, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"2258\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 33&#45;&gt;41 -->\n",
"<g id=\"edge41\" class=\"edge\">\n",
"<title>33&#45;&gt;41</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M2318.5,-341.8796C2318.5,-333.6838 2318.5,-324.9891 2318.5,-316.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2322.0001,-316.298 2318.5,-306.2981 2315.0001,-316.2981 2322.0001,-316.298\"/>\n",
"</g>\n",
"<!-- 35 -->\n",
"<g id=\"node36\" class=\"node\">\n",
"<title>35</title>\n",
"<polygon fill=\"#39e5c5\" fill-opacity=\"0.501961\" stroke=\"#000000\" points=\"1929,-187 1744,-187 1744,-104 1929,-104 1929,-187\"/>\n",
"<text text-anchor=\"start\" x=\"1801.5\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #35</text>\n",
"<text text-anchor=\"start\" x=\"1784.5\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">mustard ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"1787.5\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 43</text>\n",
"<text text-anchor=\"start\" x=\"1752\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 28, 13, 0]</text>\n",
"<text text-anchor=\"start\" x=\"1776\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</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=\"M1962.6482,-222.8796C1946.6989,-213.0962 1929.5904,-202.6019 1913.2802,-192.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"1914.6677,-189.3422 1904.3135,-187.0969 1911.0075,-195.3091 1914.6677,-189.3422\"/>\n",
"</g>\n",
"<!-- 38 -->\n",
"<g id=\"node39\" class=\"node\">\n",
"<title>38</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.749020\" stroke=\"#000000\" points=\"2114,-187 1947,-187 1947,-104 2114,-104 2114,-187\"/>\n",
"<text text-anchor=\"start\" x=\"1995.5\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #38</text>\n",
"<text text-anchor=\"start\" x=\"1986\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">radish ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"1981.5\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 10</text>\n",
"<text text-anchor=\"start\" x=\"1955\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 2, 8, 0]</text>\n",
"<text text-anchor=\"start\" x=\"1977\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M2030.5,-222.8796C2030.5,-214.6838 2030.5,-205.9891 2030.5,-197.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2034.0001,-197.298 2030.5,-187.2981 2027.0001,-197.2981 2034.0001,-197.298\"/>\n",
"</g>\n",
"<!-- 36 -->\n",
"<g id=\"node37\" class=\"node\">\n",
"<title>36</title>\n",
"<polygon fill=\"#39e5c5\" fill-opacity=\"0.564706\" stroke=\"#000000\" points=\"1744,-68 1559,-68 1559,0 1744,0 1744,-68\"/>\n",
"<text text-anchor=\"start\" x=\"1616.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #36</text>\n",
"<text text-anchor=\"start\" x=\"1602.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 41</text>\n",
"<text text-anchor=\"start\" x=\"1567\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 28, 11, 0]</text>\n",
"<text text-anchor=\"start\" x=\"1591\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</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=\"M1767.6128,-103.9815C1751.0571,-94.0034 1733.4199,-83.3733 1717.0222,-73.4904\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"1718.426,-70.25 1708.0546,-68.0856 1714.8126,-76.2453 1718.426,-70.25\"/>\n",
"</g>\n",
"<!-- 37 -->\n",
"<g id=\"node38\" class=\"node\">\n",
"<title>37</title>\n",
"<polygon fill=\"#3c39e5\" stroke=\"#000000\" points=\"1929,-68 1762,-68 1762,0 1929,0 1929,-68\"/>\n",
"<text text-anchor=\"start\" x=\"1810.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #37</text>\n",
"<text text-anchor=\"start\" x=\"1801\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"1770\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 2, 0]</text>\n",
"<text text-anchor=\"start\" x=\"1792\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M1839.8513,-103.9815C1840.5263,-95.618 1841.2384,-86.7965 1841.9209,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"1845.4183,-78.5129 1842.7343,-68.2637 1838.441,-77.9496 1845.4183,-78.5129\"/>\n",
"</g>\n",
"<!-- 39 -->\n",
"<g id=\"node40\" class=\"node\">\n",
"<title>39</title>\n",
"<polygon fill=\"#3c39e5\" stroke=\"#000000\" points=\"2114,-68 1947,-68 1947,0 2114,0 2114,-68\"/>\n",
"<text text-anchor=\"start\" x=\"1995.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #39</text>\n",
"<text text-anchor=\"start\" x=\"1986\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 7</text>\n",
"<text text-anchor=\"start\" x=\"1955\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 7, 0]</text>\n",
"<text text-anchor=\"start\" x=\"1977\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 38&#45;&gt;39 -->\n",
"<g id=\"edge39\" class=\"edge\">\n",
"<title>38&#45;&gt;39</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M2030.5,-103.9815C2030.5,-95.618 2030.5,-86.7965 2030.5,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2034.0001,-78.2636 2030.5,-68.2637 2027.0001,-78.2637 2034.0001,-78.2636\"/>\n",
"</g>\n",
"<!-- 40 -->\n",
"<g id=\"node41\" class=\"node\">\n",
"<title>40</title>\n",
"<polygon fill=\"#39e5c5\" fill-opacity=\"0.498039\" stroke=\"#000000\" points=\"2299,-68 2132,-68 2132,0 2299,0 2299,-68\"/>\n",
"<text text-anchor=\"start\" x=\"2180.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #40</text>\n",
"<text text-anchor=\"start\" x=\"2171\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"2140\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 2, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"2155\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 38&#45;&gt;40 -->\n",
"<g id=\"edge40\" class=\"edge\">\n",
"<title>38&#45;&gt;40</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M2099.3872,-103.9815C2115.9429,-94.0034 2133.5801,-83.3733 2149.9778,-73.4904\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2152.1874,-76.2453 2158.9454,-68.0856 2148.574,-70.25 2152.1874,-76.2453\"/>\n",
"</g>\n",
"<!-- 42 -->\n",
"<g id=\"node43\" class=\"node\">\n",
"<title>42</title>\n",
"<polygon fill=\"#39e5c5\" stroke=\"#000000\" points=\"2307.5,-179.5 2131.5,-179.5 2131.5,-111.5 2307.5,-111.5 2307.5,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"2184.5\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #42</text>\n",
"<text text-anchor=\"start\" x=\"2170.5\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 12</text>\n",
"<text text-anchor=\"start\" x=\"2139.5\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 12, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"2159\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 41&#45;&gt;42 -->\n",
"<g id=\"edge42\" class=\"edge\">\n",
"<title>41&#45;&gt;42</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M2283.8746,-222.8796C2274.3607,-211.4436 2264.0386,-199.0363 2254.5035,-187.575\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2257.1339,-185.264 2248.0477,-179.8149 2251.7526,-189.7409 2257.1339,-185.264\"/>\n",
"</g>\n",
"<!-- 43 -->\n",
"<g id=\"node44\" class=\"node\">\n",
"<title>43</title>\n",
"<polygon fill=\"#3c39e5\" stroke=\"#000000\" points=\"2492,-179.5 2325,-179.5 2325,-111.5 2492,-111.5 2492,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"2373.5\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #43</text>\n",
"<text text-anchor=\"start\" x=\"2364\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"2333\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"2355\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 41&#45;&gt;43 -->\n",
"<g id=\"edge43\" class=\"edge\">\n",
"<title>41&#45;&gt;43</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M2349.9776,-222.8796C2358.5435,-211.5536 2367.83,-199.2748 2376.4283,-187.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2379.3069,-189.902 2382.5475,-179.8149 2373.7238,-185.6795 2379.3069,-189.902\"/>\n",
"</g>\n",
"<!-- 45 -->\n",
"<g id=\"node46\" class=\"node\">\n",
"<title>45</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.713725\" stroke=\"#000000\" points=\"2689.5,-306 2513.5,-306 2513.5,-223 2689.5,-223 2689.5,-306\"/>\n",
"<text text-anchor=\"start\" x=\"2566.5\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #45</text>\n",
"<text text-anchor=\"start\" x=\"2551.5\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">chicken ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"2552.5\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 16</text>\n",
"<text text-anchor=\"start\" x=\"2521.5\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 2, 12, 0]</text>\n",
"<text text-anchor=\"start\" x=\"2548\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M2601.5,-341.8796C2601.5,-333.6838 2601.5,-324.9891 2601.5,-316.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2605.0001,-316.298 2601.5,-306.2981 2598.0001,-316.2981 2605.0001,-316.298\"/>\n",
"</g>\n",
"<!-- 52 -->\n",
"<g id=\"node53\" class=\"node\">\n",
"<title>52</title>\n",
"<polygon fill=\"#39e5c5\" stroke=\"#000000\" points=\"2874,-298.5 2707,-298.5 2707,-230.5 2874,-230.5 2874,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"2755.5\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #52</text>\n",
"<text text-anchor=\"start\" x=\"2746\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"2715\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 2, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"2730\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 44&#45;&gt;52 -->\n",
"<g id=\"edge52\" class=\"edge\">\n",
"<title>44&#45;&gt;52</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M2667.603,-341.8796C2687.0808,-329.6158 2708.3329,-316.2348 2727.6035,-304.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2729.7071,-306.913 2736.3046,-298.623 2725.9774,-300.9894 2729.7071,-306.913\"/>\n",
"</g>\n",
"<!-- 46 -->\n",
"<g id=\"node47\" class=\"node\">\n",
"<title>46</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.819608\" stroke=\"#000000\" points=\"2692.5,-187 2510.5,-187 2510.5,-104 2692.5,-104 2692.5,-187\"/>\n",
"<text text-anchor=\"start\" x=\"2566.5\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #46</text>\n",
"<text text-anchor=\"start\" x=\"2518.5\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">chinese_cabbage ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"2552.5\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 13</text>\n",
"<text text-anchor=\"start\" x=\"2521.5\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 2, 11, 0]</text>\n",
"<text text-anchor=\"start\" x=\"2548\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M2601.5,-222.8796C2601.5,-214.6838 2601.5,-205.9891 2601.5,-197.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2605.0001,-197.298 2601.5,-187.2981 2598.0001,-197.2981 2605.0001,-197.298\"/>\n",
"</g>\n",
"<!-- 49 -->\n",
"<g id=\"node50\" class=\"node\">\n",
"<title>49</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.498039\" stroke=\"#000000\" points=\"2878,-187 2711,-187 2711,-104 2878,-104 2878,-187\"/>\n",
"<text text-anchor=\"start\" x=\"2759.5\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #49</text>\n",
"<text text-anchor=\"start\" x=\"2745.5\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">vinegar ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"2750\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"2719\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"2738.5\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</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=\"M2669.002,-222.8796C2684.8692,-213.0962 2701.8894,-202.6019 2718.1156,-192.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2720.361,-195.3245 2727.0361,-187.0969 2716.6871,-189.3661 2720.361,-195.3245\"/>\n",
"</g>\n",
"<!-- 47 -->\n",
"<g id=\"node48\" class=\"node\">\n",
"<title>47</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.909804\" stroke=\"#000000\" points=\"2500.5,-68 2324.5,-68 2324.5,0 2500.5,0 2500.5,-68\"/>\n",
"<text text-anchor=\"start\" x=\"2377.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #47</text>\n",
"<text text-anchor=\"start\" x=\"2363.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 12</text>\n",
"<text text-anchor=\"start\" x=\"2332.5\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 11, 0]</text>\n",
"<text text-anchor=\"start\" x=\"2359\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M2531.1234,-103.9815C2514.0531,-93.911 2495.8574,-83.1764 2478.9739,-73.2161\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2480.6688,-70.1523 2470.2774,-68.0856 2477.1119,-76.1813 2480.6688,-70.1523\"/>\n",
"</g>\n",
"<!-- 48 -->\n",
"<g id=\"node49\" class=\"node\">\n",
"<title>48</title>\n",
"<polygon fill=\"#39e5c5\" stroke=\"#000000\" points=\"2685,-68 2518,-68 2518,0 2685,0 2685,-68\"/>\n",
"<text text-anchor=\"start\" x=\"2566.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #48</text>\n",
"<text text-anchor=\"start\" x=\"2557\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"2526\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"2541\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</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=\"M2601.5,-103.9815C2601.5,-95.618 2601.5,-86.7965 2601.5,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2605.0001,-78.2636 2601.5,-68.2637 2598.0001,-78.2637 2605.0001,-78.2636\"/>\n",
"</g>\n",
"<!-- 50 -->\n",
"<g id=\"node51\" class=\"node\">\n",
"<title>50</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"2870,-68 2703,-68 2703,0 2870,0 2870,-68\"/>\n",
"<text text-anchor=\"start\" x=\"2751.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #50</text>\n",
"<text text-anchor=\"start\" x=\"2742\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"2711\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"2730.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 49&#45;&gt;50 -->\n",
"<g id=\"edge50\" class=\"edge\">\n",
"<title>49&#45;&gt;50</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M2791.5211,-103.9815C2790.921,-95.618 2790.2881,-86.7965 2789.6814,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2793.1651,-77.9875 2788.9584,-68.2637 2786.1831,-78.4885 2793.1651,-77.9875\"/>\n",
"</g>\n",
"<!-- 51 -->\n",
"<g id=\"node52\" class=\"node\">\n",
"<title>51</title>\n",
"<polygon fill=\"#3c39e5\" stroke=\"#000000\" points=\"3055,-68 2888,-68 2888,0 3055,0 3055,-68\"/>\n",
"<text text-anchor=\"start\" x=\"2936.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #51</text>\n",
"<text text-anchor=\"start\" x=\"2927\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"2896\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"2918\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 49&#45;&gt;51 -->\n",
"<g id=\"edge51\" class=\"edge\">\n",
"<title>49&#45;&gt;51</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M2860.4083,-103.9815C2876.248,-94.0034 2893.1226,-83.3733 2908.8112,-73.4904\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2910.7954,-76.3771 2917.391,-68.0856 2907.0643,-70.4543 2910.7954,-76.3771\"/>\n",
"</g>\n",
"<!-- 54 -->\n",
"<g id=\"node55\" class=\"node\">\n",
"<title>54</title>\n",
"<polygon fill=\"#7be539\" stroke=\"#000000\" points=\"2857.5,-536.5 2681.5,-536.5 2681.5,-468.5 2857.5,-468.5 2857.5,-536.5\"/>\n",
"<text text-anchor=\"start\" x=\"2734.5\" y=\"-521.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #54</text>\n",
"<text text-anchor=\"start\" x=\"2720.5\" y=\"-506.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 19</text>\n",
"<text text-anchor=\"start\" x=\"2689.5\" y=\"-491.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 19, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"2718.5\" y=\"-476.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 53&#45;&gt;54 -->\n",
"<g id=\"edge54\" class=\"edge\">\n",
"<title>53&#45;&gt;54</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M2800.0617,-579.8796C2795.7621,-568.9935 2791.1149,-557.227 2786.7732,-546.2344\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2789.9818,-544.8301 2783.053,-536.8149 2783.4712,-547.4015 2789.9818,-544.8301\"/>\n",
"</g>\n",
"<!-- 55 -->\n",
"<g id=\"node56\" class=\"node\">\n",
"<title>55</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"3042,-544 2875,-544 2875,-461 3042,-461 3042,-544\"/>\n",
"<text text-anchor=\"start\" x=\"2923.5\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #55</text>\n",
"<text text-anchor=\"start\" x=\"2917\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">onion ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"2914\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"2883\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"2902.5\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 53&#45;&gt;55 -->\n",
"<g id=\"edge55\" class=\"edge\">\n",
"<title>53&#45;&gt;55</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M2866.1647,-579.8796C2877.3416,-570.513 2889.2962,-560.4948 2900.7712,-550.8784\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2903.2069,-553.4037 2908.6233,-544.2981 2898.7107,-548.0386 2903.2069,-553.4037\"/>\n",
"</g>\n",
"<!-- 56 -->\n",
"<g id=\"node57\" class=\"node\">\n",
"<title>56</title>\n",
"<polygon fill=\"#39e5c5\" stroke=\"#000000\" points=\"2964,-417.5 2797,-417.5 2797,-349.5 2964,-349.5 2964,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"2845.5\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #56</text>\n",
"<text text-anchor=\"start\" x=\"2836\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"2805\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"2820\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</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=\"M2931.2194,-460.8796C2923.8677,-449.6636 2915.9036,-437.5131 2908.5126,-426.2372\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"2911.4014,-424.2598 2902.9921,-417.8149 2905.5469,-428.0972 2911.4014,-424.2598\"/>\n",
"</g>\n",
"<!-- 57 -->\n",
"<g id=\"node58\" class=\"node\">\n",
"<title>57</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"3149,-417.5 2982,-417.5 2982,-349.5 3149,-349.5 3149,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"3030.5\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #57</text>\n",
"<text text-anchor=\"start\" x=\"3021\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"2990\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"3009.5\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 55&#45;&gt;57 -->\n",
"<g id=\"edge57\" class=\"edge\">\n",
"<title>55&#45;&gt;57</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M2995.9234,-460.8796C3006.2061,-449.4436 3017.3623,-437.0363 3027.6679,-425.575\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3030.5618,-427.5912 3034.6454,-417.8149 3025.3565,-422.9108 3030.5618,-427.5912\"/>\n",
"</g>\n",
"<!-- 59 -->\n",
"<g id=\"node60\" class=\"node\">\n",
"<title>59</title>\n",
"<polygon fill=\"#39e5c5\" fill-opacity=\"0.807843\" stroke=\"#000000\" points=\"3574.5,-663 3398.5,-663 3398.5,-580 3574.5,-580 3574.5,-663\"/>\n",
"<text text-anchor=\"start\" x=\"3451.5\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #59</text>\n",
"<text text-anchor=\"start\" x=\"3449\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">beef ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"3437.5\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 50</text>\n",
"<text text-anchor=\"start\" x=\"3406.5\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 42, 8, 0]</text>\n",
"<text text-anchor=\"start\" x=\"3426\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</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=\"M3547.6234,-698.8796C3540.5803,-689.9633 3533.0707,-680.4565 3525.8126,-671.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3528.4621,-668.9757 3519.517,-663.2981 3522.9691,-673.3147 3528.4621,-668.9757\"/>\n",
"</g>\n",
"<!-- 72 -->\n",
"<g id=\"node73\" class=\"node\">\n",
"<title>72</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.874510\" stroke=\"#000000\" points=\"3759,-663 3592,-663 3592,-580 3759,-580 3759,-663\"/>\n",
"<text text-anchor=\"start\" x=\"3640.5\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #72</text>\n",
"<text text-anchor=\"start\" x=\"3631.5\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">carrot ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"3631\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 9</text>\n",
"<text text-anchor=\"start\" x=\"3600\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 8, 0]</text>\n",
"<text text-anchor=\"start\" x=\"3622\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 58&#45;&gt;72 -->\n",
"<g id=\"edge72\" class=\"edge\">\n",
"<title>58&#45;&gt;72</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3613.7264,-698.8796C3620.8444,-689.9633 3628.4339,-680.4565 3635.7692,-671.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3638.6281,-673.2968 3642.1318,-663.2981 3633.1575,-668.9295 3638.6281,-673.2968\"/>\n",
"</g>\n",
"<!-- 60 -->\n",
"<g id=\"node61\" class=\"node\">\n",
"<title>60</title>\n",
"<polygon fill=\"#39e5c5\" fill-opacity=\"0.858824\" stroke=\"#000000\" points=\"3387.5,-544 3211.5,-544 3211.5,-461 3387.5,-461 3387.5,-544\"/>\n",
"<text text-anchor=\"start\" x=\"3264.5\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #60</text>\n",
"<text text-anchor=\"start\" x=\"3237\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">black_bean ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"3250.5\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 48</text>\n",
"<text text-anchor=\"start\" x=\"3219.5\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 42, 6, 0]</text>\n",
"<text text-anchor=\"start\" x=\"3239\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</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=\"M3421.0965,-579.8796C3405.7226,-570.0962 3389.2315,-559.6019 3373.5098,-549.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3375.1823,-546.5129 3364.8666,-544.0969 3371.4241,-552.4185 3375.1823,-546.5129\"/>\n",
"</g>\n",
"<!-- 71 -->\n",
"<g id=\"node72\" class=\"node\">\n",
"<title>71</title>\n",
"<polygon fill=\"#3c39e5\" stroke=\"#000000\" points=\"3572,-536.5 3405,-536.5 3405,-468.5 3572,-468.5 3572,-536.5\"/>\n",
"<text text-anchor=\"start\" x=\"3453.5\" y=\"-521.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #71</text>\n",
"<text text-anchor=\"start\" x=\"3444\" y=\"-506.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"3413\" y=\"-491.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 2, 0]</text>\n",
"<text text-anchor=\"start\" x=\"3435\" y=\"-476.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 59&#45;&gt;71 -->\n",
"<g id=\"edge71\" class=\"edge\">\n",
"<title>59&#45;&gt;71</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3487.1995,-579.8796C3487.3788,-569.2134 3487.5722,-557.7021 3487.7538,-546.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3491.2546,-546.8724 3487.9233,-536.8149 3484.2556,-546.7547 3491.2546,-546.8724\"/>\n",
"</g>\n",
"<!-- 61 -->\n",
"<g id=\"node62\" class=\"node\">\n",
"<title>61</title>\n",
"<polygon fill=\"#39e5c5\" fill-opacity=\"0.882353\" stroke=\"#000000\" points=\"3387.5,-425 3211.5,-425 3211.5,-342 3387.5,-342 3387.5,-425\"/>\n",
"<text text-anchor=\"start\" x=\"3264.5\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #61</text>\n",
"<text text-anchor=\"start\" x=\"3229\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">black_pepper ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"3250.5\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 47</text>\n",
"<text text-anchor=\"start\" x=\"3219.5\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 42, 5, 0]</text>\n",
"<text text-anchor=\"start\" x=\"3239\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 60&#45;&gt;61 -->\n",
"<g id=\"edge61\" class=\"edge\">\n",
"<title>60&#45;&gt;61</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3299.5,-460.8796C3299.5,-452.6838 3299.5,-443.9891 3299.5,-435.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3303.0001,-435.298 3299.5,-425.2981 3296.0001,-435.2981 3303.0001,-435.298\"/>\n",
"</g>\n",
"<!-- 70 -->\n",
"<g id=\"node71\" class=\"node\">\n",
"<title>70</title>\n",
"<polygon fill=\"#3c39e5\" stroke=\"#000000\" points=\"3572,-417.5 3405,-417.5 3405,-349.5 3572,-349.5 3572,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"3453.5\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #70</text>\n",
"<text text-anchor=\"start\" x=\"3444\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"3413\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"3435\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 60&#45;&gt;70 -->\n",
"<g id=\"edge70\" class=\"edge\">\n",
"<title>60&#45;&gt;70</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3365.603,-460.8796C3385.0808,-448.6158 3406.3329,-435.2348 3425.6035,-423.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3427.7071,-425.913 3434.3046,-417.623 3423.9774,-419.9894 3427.7071,-425.913\"/>\n",
"</g>\n",
"<!-- 62 -->\n",
"<g id=\"node63\" class=\"node\">\n",
"<title>62</title>\n",
"<polygon fill=\"#39e5c5\" fill-opacity=\"0.905882\" stroke=\"#000000\" points=\"3387.5,-306 3211.5,-306 3211.5,-223 3387.5,-223 3387.5,-306\"/>\n",
"<text text-anchor=\"start\" x=\"3264.5\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #62</text>\n",
"<text text-anchor=\"start\" x=\"3255.5\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">wheat ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"3250.5\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 46</text>\n",
"<text text-anchor=\"start\" x=\"3219.5\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 42, 4, 0]</text>\n",
"<text text-anchor=\"start\" x=\"3239\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 61&#45;&gt;62 -->\n",
"<g id=\"edge62\" class=\"edge\">\n",
"<title>61&#45;&gt;62</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3299.5,-341.8796C3299.5,-333.6838 3299.5,-324.9891 3299.5,-316.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3303.0001,-316.298 3299.5,-306.2981 3296.0001,-316.2981 3303.0001,-316.298\"/>\n",
"</g>\n",
"<!-- 69 -->\n",
"<g id=\"node70\" class=\"node\">\n",
"<title>69</title>\n",
"<polygon fill=\"#3c39e5\" stroke=\"#000000\" points=\"3572,-298.5 3405,-298.5 3405,-230.5 3572,-230.5 3572,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"3453.5\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #69</text>\n",
"<text text-anchor=\"start\" x=\"3444\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"3413\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"3435\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 61&#45;&gt;69 -->\n",
"<g id=\"edge69\" class=\"edge\">\n",
"<title>61&#45;&gt;69</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3365.603,-341.8796C3385.0808,-329.6158 3406.3329,-316.2348 3425.6035,-304.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3427.7071,-306.913 3434.3046,-298.623 3423.9774,-300.9894 3427.7071,-306.913\"/>\n",
"</g>\n",
"<!-- 63 -->\n",
"<g id=\"node64\" class=\"node\">\n",
"<title>63</title>\n",
"<polygon fill=\"#39e5c5\" fill-opacity=\"0.949020\" stroke=\"#000000\" points=\"3387.5,-187 3211.5,-187 3211.5,-104 3387.5,-104 3387.5,-187\"/>\n",
"<text text-anchor=\"start\" x=\"3264.5\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #63</text>\n",
"<text text-anchor=\"start\" x=\"3242.5\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">vegetable ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"3250.5\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 42</text>\n",
"<text text-anchor=\"start\" x=\"3219.5\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 40, 2, 0]</text>\n",
"<text text-anchor=\"start\" x=\"3239\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</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=\"M3299.5,-222.8796C3299.5,-214.6838 3299.5,-205.9891 3299.5,-197.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3303.0001,-197.298 3299.5,-187.2981 3296.0001,-197.2981 3303.0001,-197.298\"/>\n",
"</g>\n",
"<!-- 66 -->\n",
"<g id=\"node67\" class=\"node\">\n",
"<title>66</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"3618,-187 3451,-187 3451,-104 3618,-104 3618,-187\"/>\n",
"<text text-anchor=\"start\" x=\"3499.5\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #66</text>\n",
"<text text-anchor=\"start\" x=\"3470.5\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">bell_pepper ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"3490\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 4</text>\n",
"<text text-anchor=\"start\" x=\"3459\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 2, 2, 0]</text>\n",
"<text text-anchor=\"start\" x=\"3474\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 62&#45;&gt;66 -->\n",
"<g id=\"edge66\" class=\"edge\">\n",
"<title>62&#45;&gt;66</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3381.6916,-222.8796C3401.6378,-212.7791 3423.0805,-201.9209 3443.4108,-191.626\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3445.0146,-194.7371 3452.3548,-187.0969 3441.8522,-188.4921 3445.0146,-194.7371\"/>\n",
"</g>\n",
"<!-- 64 -->\n",
"<g id=\"node65\" class=\"node\">\n",
"<title>64</title>\n",
"<polygon fill=\"#39e5c5\" fill-opacity=\"0.972549\" stroke=\"#000000\" points=\"3248.5,-68 3072.5,-68 3072.5,0 3248.5,0 3248.5,-68\"/>\n",
"<text text-anchor=\"start\" x=\"3125.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #64</text>\n",
"<text text-anchor=\"start\" x=\"3111.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 39</text>\n",
"<text text-anchor=\"start\" x=\"3080.5\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 38, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"3100\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 63&#45;&gt;64 -->\n",
"<g id=\"edge64\" class=\"edge\">\n",
"<title>63&#45;&gt;64</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3247.7415,-103.9815C3235.8258,-94.4232 3223.1644,-84.2668 3211.2903,-74.7419\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3213.2049,-71.7907 3203.2144,-68.2637 3208.8248,-77.2511 3213.2049,-71.7907\"/>\n",
"</g>\n",
"<!-- 65 -->\n",
"<g id=\"node66\" class=\"node\">\n",
"<title>65</title>\n",
"<polygon fill=\"#39e5c5\" fill-opacity=\"0.498039\" stroke=\"#000000\" points=\"3433,-68 3266,-68 3266,0 3433,0 3433,-68\"/>\n",
"<text text-anchor=\"start\" x=\"3314.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #65</text>\n",
"<text text-anchor=\"start\" x=\"3305\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"3274\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 2, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"3289\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 63&#45;&gt;65 -->\n",
"<g id=\"edge65\" class=\"edge\">\n",
"<title>63&#45;&gt;65</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3318.1182,-103.9815C3321.9922,-95.3423 3326.0855,-86.2144 3329.9906,-77.5059\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3333.2369,-78.8204 3334.1351,-68.2637 3326.8497,-75.9561 3333.2369,-78.8204\"/>\n",
"</g>\n",
"<!-- 67 -->\n",
"<g id=\"node68\" class=\"node\">\n",
"<title>67</title>\n",
"<polygon fill=\"#3c39e5\" stroke=\"#000000\" points=\"3618,-68 3451,-68 3451,0 3618,0 3618,-68\"/>\n",
"<text text-anchor=\"start\" x=\"3499.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #67</text>\n",
"<text text-anchor=\"start\" x=\"3490\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"3459\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 2, 0]</text>\n",
"<text text-anchor=\"start\" x=\"3481\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 66&#45;&gt;67 -->\n",
"<g id=\"edge67\" class=\"edge\">\n",
"<title>66&#45;&gt;67</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3534.5,-103.9815C3534.5,-95.618 3534.5,-86.7965 3534.5,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3538.0001,-78.2636 3534.5,-68.2637 3531.0001,-78.2637 3538.0001,-78.2636\"/>\n",
"</g>\n",
"<!-- 68 -->\n",
"<g id=\"node69\" class=\"node\">\n",
"<title>68</title>\n",
"<polygon fill=\"#39e5c5\" stroke=\"#000000\" points=\"3803,-68 3636,-68 3636,0 3803,0 3803,-68\"/>\n",
"<text text-anchor=\"start\" x=\"3684.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #68</text>\n",
"<text text-anchor=\"start\" x=\"3675\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"3644\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 2, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"3659\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 66&#45;&gt;68 -->\n",
"<g id=\"edge68\" class=\"edge\">\n",
"<title>66&#45;&gt;68</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3603.3872,-103.9815C3619.9429,-94.0034 3637.5801,-83.3733 3653.9778,-73.4904\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3656.1874,-76.2453 3662.9454,-68.0856 3652.574,-70.25 3656.1874,-76.2453\"/>\n",
"</g>\n",
"<!-- 73 -->\n",
"<g id=\"node74\" class=\"node\">\n",
"<title>73</title>\n",
"<polygon fill=\"#3c39e5\" stroke=\"#000000\" points=\"3757,-536.5 3590,-536.5 3590,-468.5 3757,-468.5 3757,-536.5\"/>\n",
"<text text-anchor=\"start\" x=\"3638.5\" y=\"-521.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #73</text>\n",
"<text text-anchor=\"start\" x=\"3629\" y=\"-506.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 8</text>\n",
"<text text-anchor=\"start\" x=\"3598\" y=\"-491.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 8, 0]</text>\n",
"<text text-anchor=\"start\" x=\"3620\" y=\"-476.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M3674.8005,-579.8796C3674.6212,-569.2134 3674.4278,-557.7021 3674.2462,-546.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3677.7444,-546.7547 3674.0767,-536.8149 3670.7454,-546.8724 3677.7444,-546.7547\"/>\n",
"</g>\n",
"<!-- 74 -->\n",
"<g id=\"node75\" class=\"node\">\n",
"<title>74</title>\n",
"<polygon fill=\"#39e5c5\" stroke=\"#000000\" points=\"3942,-536.5 3775,-536.5 3775,-468.5 3942,-468.5 3942,-536.5\"/>\n",
"<text text-anchor=\"start\" x=\"3823.5\" y=\"-521.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #74</text>\n",
"<text text-anchor=\"start\" x=\"3814\" y=\"-506.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"3783\" y=\"-491.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"3798\" y=\"-476.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</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=\"M3739.5045,-579.8796C3758.3639,-567.6158 3778.9414,-554.2348 3797.6002,-542.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3799.5497,-545.0088 3806.0251,-536.623 3795.7336,-539.1404 3799.5497,-545.0088\"/>\n",
"</g>\n",
"<!-- 76 -->\n",
"<g id=\"node77\" class=\"node\">\n",
"<title>76</title>\n",
"<polygon fill=\"#39e5c5\" fill-opacity=\"0.698039\" stroke=\"#000000\" points=\"4609,-782 4424,-782 4424,-699 4609,-699 4609,-782\"/>\n",
"<text text-anchor=\"start\" x=\"4481.5\" y=\"-766.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #76</text>\n",
"<text text-anchor=\"start\" x=\"4452.5\" y=\"-751.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">bell_pepper ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"4467.5\" y=\"-736.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 60</text>\n",
"<text text-anchor=\"start\" x=\"4432\" y=\"-721.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [10, 2, 45, 0, 3]</text>\n",
"<text text-anchor=\"start\" x=\"4456\" y=\"-706.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 75&#45;&gt;76 -->\n",
"<g id=\"edge76\" class=\"edge\">\n",
"<title>75&#45;&gt;76</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M4624.4413,-817.8796C4611.0466,-808.2774 4596.6965,-797.9903 4582.9745,-788.1534\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4584.6926,-785.0786 4574.526,-782.0969 4580.6142,-790.7678 4584.6926,-785.0786\"/>\n",
"</g>\n",
"<!-- 91 -->\n",
"<g id=\"node92\" class=\"node\">\n",
"<title>91</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.333333\" stroke=\"#000000\" points=\"5026.5,-782 4850.5,-782 4850.5,-699 5026.5,-699 5026.5,-782\"/>\n",
"<text text-anchor=\"start\" x=\"4903.5\" y=\"-766.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #91</text>\n",
"<text text-anchor=\"start\" x=\"4889.5\" y=\"-751.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">vinegar ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"4889.5\" y=\"-736.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 25</text>\n",
"<text text-anchor=\"start\" x=\"4858.5\" y=\"-721.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [13, 0, 7, 3, 2]</text>\n",
"<text text-anchor=\"start\" x=\"4882.5\" y=\"-706.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 75&#45;&gt;91 -->\n",
"<g id=\"edge91\" class=\"edge\">\n",
"<title>75&#45;&gt;91</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M4772.0364,-817.8796C4794.3401,-807.5118 4818.3614,-796.3457 4841.0267,-785.8099\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4842.7169,-788.8839 4850.3097,-781.4947 4839.7662,-782.5362 4842.7169,-788.8839\"/>\n",
"</g>\n",
"<!-- 77 -->\n",
"<g id=\"node78\" class=\"node\">\n",
"<title>77</title>\n",
"<polygon fill=\"#39e5c5\" fill-opacity=\"0.764706\" stroke=\"#000000\" points=\"4324.5,-663 4148.5,-663 4148.5,-580 4324.5,-580 4324.5,-663\"/>\n",
"<text text-anchor=\"start\" x=\"4201.5\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #77</text>\n",
"<text text-anchor=\"start\" x=\"4189.5\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">peanut ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"4187.5\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 56</text>\n",
"<text text-anchor=\"start\" x=\"4156.5\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [9, 2, 45, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"4176\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 76&#45;&gt;77 -->\n",
"<g id=\"edge77\" class=\"edge\">\n",
"<title>76&#45;&gt;77</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M4423.653,-701.04C4394.9241,-688.8302 4363.1958,-675.3457 4334.1518,-663.002\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4335.3958,-659.7278 4324.8235,-659.0375 4332.6578,-666.1701 4335.3958,-659.7278\"/>\n",
"</g>\n",
"<!-- 88 -->\n",
"<g id=\"node89\" class=\"node\">\n",
"<title>88</title>\n",
"<polygon fill=\"#e539c0\" fill-opacity=\"0.666667\" stroke=\"#000000\" points=\"4600,-663 4433,-663 4433,-580 4600,-580 4600,-663\"/>\n",
"<text text-anchor=\"start\" x=\"4481.5\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #88</text>\n",
"<text text-anchor=\"start\" x=\"4443\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">chicken_broth ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"4472\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 4</text>\n",
"<text text-anchor=\"start\" x=\"4441\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 3]</text>\n",
"<text text-anchor=\"start\" x=\"4474\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 76&#45;&gt;88 -->\n",
"<g id=\"edge88\" class=\"edge\">\n",
"<title>76&#45;&gt;88</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M4516.5,-698.8796C4516.5,-690.6838 4516.5,-681.9891 4516.5,-673.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4520.0001,-673.298 4516.5,-663.2981 4513.0001,-673.2981 4520.0001,-673.298\"/>\n",
"</g>\n",
"<!-- 78 -->\n",
"<g id=\"node79\" class=\"node\">\n",
"<title>78</title>\n",
"<polygon fill=\"#39e5c5\" fill-opacity=\"0.807843\" stroke=\"#000000\" points=\"4135.5,-544 3959.5,-544 3959.5,-461 4135.5,-461 4135.5,-544\"/>\n",
"<text text-anchor=\"start\" x=\"4012.5\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #78</text>\n",
"<text text-anchor=\"start\" x=\"3986.5\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">blackberry ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"3998.5\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 54</text>\n",
"<text text-anchor=\"start\" x=\"3967.5\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [7, 2, 45, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"3987\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 77&#45;&gt;78 -->\n",
"<g id=\"edge78\" class=\"edge\">\n",
"<title>77&#45;&gt;78</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M4170.397,-579.8796C4154.8587,-570.0962 4138.1912,-559.6019 4122.3013,-549.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4123.8929,-546.4633 4113.5657,-544.0969 4120.1632,-552.3869 4123.8929,-546.4633\"/>\n",
"</g>\n",
"<!-- 87 -->\n",
"<g id=\"node88\" class=\"node\">\n",
"<title>87</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"4320,-536.5 4153,-536.5 4153,-468.5 4320,-468.5 4320,-536.5\"/>\n",
"<text text-anchor=\"start\" x=\"4201.5\" y=\"-521.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #87</text>\n",
"<text text-anchor=\"start\" x=\"4192\" y=\"-506.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"4161\" y=\"-491.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"4180.5\" y=\"-476.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 77&#45;&gt;87 -->\n",
"<g id=\"edge87\" class=\"edge\">\n",
"<title>77&#45;&gt;87</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M4236.5,-579.8796C4236.5,-569.2134 4236.5,-557.7021 4236.5,-546.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4240.0001,-546.8149 4236.5,-536.8149 4233.0001,-546.815 4240.0001,-546.8149\"/>\n",
"</g>\n",
"<!-- 79 -->\n",
"<g id=\"node80\" class=\"node\">\n",
"<title>79</title>\n",
"<polygon fill=\"#39e5c5\" fill-opacity=\"0.827451\" stroke=\"#000000\" points=\"4100.5,-425 3924.5,-425 3924.5,-342 4100.5,-342 4100.5,-425\"/>\n",
"<text text-anchor=\"start\" x=\"3977.5\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #79</text>\n",
"<text text-anchor=\"start\" x=\"3963.5\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">currant ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"3963.5\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 53</text>\n",
"<text text-anchor=\"start\" x=\"3932.5\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [7, 1, 45, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"3952\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</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=\"M4035.2587,-460.8796C4032.7952,-452.5037 4030.1784,-443.6067 4027.63,-434.942\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4030.9731,-433.9041 4024.7936,-425.2981 4024.2575,-435.8793 4030.9731,-433.9041\"/>\n",
"</g>\n",
"<!-- 86 -->\n",
"<g id=\"node87\" class=\"node\">\n",
"<title>86</title>\n",
"<polygon fill=\"#7be539\" stroke=\"#000000\" points=\"4285,-417.5 4118,-417.5 4118,-349.5 4285,-349.5 4285,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"4166.5\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #86</text>\n",
"<text text-anchor=\"start\" x=\"4157\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"4126\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 1, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"4150.5\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 78&#45;&gt;86 -->\n",
"<g id=\"edge86\" class=\"edge\">\n",
"<title>78&#45;&gt;86</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M4101.3617,-460.8796C4116.7304,-449.0038 4133.4547,-436.0804 4148.7559,-424.2568\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4151.3196,-426.699 4157.0924,-417.8149 4147.0395,-421.1599 4151.3196,-426.699\"/>\n",
"</g>\n",
"<!-- 80 -->\n",
"<g id=\"node81\" class=\"node\">\n",
"<title>80</title>\n",
"<polygon fill=\"#39e5c5\" fill-opacity=\"0.843137\" stroke=\"#000000\" points=\"4091.5,-306 3915.5,-306 3915.5,-223 4091.5,-223 4091.5,-306\"/>\n",
"<text text-anchor=\"start\" x=\"3968.5\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #80</text>\n",
"<text text-anchor=\"start\" x=\"3947\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">coriander ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"3954.5\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 52</text>\n",
"<text text-anchor=\"start\" x=\"3923.5\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [7, 0, 45, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"3943\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</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=\"M4009.3522,-341.8796C4008.7324,-333.6838 4008.0748,-324.9891 4007.4329,-316.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4010.9055,-316.0056 4006.6612,-306.2981 4003.9254,-316.5336 4010.9055,-316.0056\"/>\n",
"</g>\n",
"<!-- 85 -->\n",
"<g id=\"node86\" class=\"node\">\n",
"<title>85</title>\n",
"<polygon fill=\"#7be539\" stroke=\"#000000\" points=\"4276,-298.5 4109,-298.5 4109,-230.5 4276,-230.5 4276,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"4157.5\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #85</text>\n",
"<text text-anchor=\"start\" x=\"4148\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"4117\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 1, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"4141.5\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 79&#45;&gt;85 -->\n",
"<g id=\"edge85\" class=\"edge\">\n",
"<title>79&#45;&gt;85</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M4075.4553,-341.8796C4093.8384,-329.7263 4113.8811,-316.4759 4132.1021,-304.4297\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4134.4737,-307.0576 4140.8853,-298.623 4130.6133,-301.2183 4134.4737,-307.0576\"/>\n",
"</g>\n",
"<!-- 81 -->\n",
"<g id=\"node82\" class=\"node\">\n",
"<title>81</title>\n",
"<polygon fill=\"#39e5c5\" fill-opacity=\"0.866667\" stroke=\"#000000\" points=\"4074.5,-187 3898.5,-187 3898.5,-104 4074.5,-104 4074.5,-187\"/>\n",
"<text text-anchor=\"start\" x=\"3951.5\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #81</text>\n",
"<text text-anchor=\"start\" x=\"3926\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">beef_broth ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"3937.5\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 51</text>\n",
"<text text-anchor=\"start\" x=\"3906.5\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [6, 0, 45, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"3926\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</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=\"M3997.5542,-222.8796C3996.3705,-214.5938 3995.114,-205.798 3993.8888,-197.2216\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3997.3503,-196.7026 3992.4712,-187.2981 3990.4206,-197.6926 3997.3503,-196.7026\"/>\n",
"</g>\n",
"<!-- 84 -->\n",
"<g id=\"node85\" class=\"node\">\n",
"<title>84</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"4259,-179.5 4092,-179.5 4092,-111.5 4259,-111.5 4259,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"4140.5\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #84</text>\n",
"<text text-anchor=\"start\" x=\"4131\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"4100\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"4119.5\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 80&#45;&gt;84 -->\n",
"<g id=\"edge84\" class=\"edge\">\n",
"<title>80&#45;&gt;84</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M4063.6573,-222.8796C4081.2234,-210.7263 4100.3752,-197.4759 4117.7864,-185.4297\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4119.947,-188.191 4126.1793,-179.623 4115.9643,-182.4344 4119.947,-188.191\"/>\n",
"</g>\n",
"<!-- 82 -->\n",
"<g id=\"node83\" class=\"node\">\n",
"<title>82</title>\n",
"<polygon fill=\"#39e5c5\" fill-opacity=\"0.890196\" stroke=\"#000000\" points=\"4065.5,-68 3889.5,-68 3889.5,0 4065.5,0 4065.5,-68\"/>\n",
"<text text-anchor=\"start\" x=\"3942.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #82</text>\n",
"<text text-anchor=\"start\" x=\"3928.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 50</text>\n",
"<text text-anchor=\"start\" x=\"3897.5\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [5, 0, 45, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"3917\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 81&#45;&gt;82 -->\n",
"<g id=\"edge82\" class=\"edge\">\n",
"<title>81&#45;&gt;82</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M3983.1487,-103.9815C3982.4737,-95.618 3981.7616,-86.7965 3981.0791,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"3984.559,-77.9496 3980.2657,-68.2637 3977.5817,-78.5129 3984.559,-77.9496\"/>\n",
"</g>\n",
"<!-- 83 -->\n",
"<g id=\"node84\" class=\"node\">\n",
"<title>83</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"4250,-68 4083,-68 4083,0 4250,0 4250,-68\"/>\n",
"<text text-anchor=\"start\" x=\"4131.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #83</text>\n",
"<text text-anchor=\"start\" x=\"4122\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"4091\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"4110.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 81&#45;&gt;83 -->\n",
"<g id=\"edge83\" class=\"edge\">\n",
"<title>81&#45;&gt;83</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M4053.5254,-103.9815C4069.6336,-94.0034 4086.7941,-83.3733 4102.7487,-73.4904\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4104.8158,-76.3271 4111.4739,-68.0856 4101.1296,-70.3763 4104.8158,-76.3271\"/>\n",
"</g>\n",
"<!-- 89 -->\n",
"<g id=\"node90\" class=\"node\">\n",
"<title>89</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"4505,-536.5 4338,-536.5 4338,-468.5 4505,-468.5 4505,-536.5\"/>\n",
"<text text-anchor=\"start\" x=\"4386.5\" y=\"-521.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #89</text>\n",
"<text text-anchor=\"start\" x=\"4377\" y=\"-506.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"4346\" y=\"-491.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 3]</text>\n",
"<text text-anchor=\"start\" x=\"4379\" y=\"-476.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 88&#45;&gt;89 -->\n",
"<g id=\"edge89\" class=\"edge\">\n",
"<title>88&#45;&gt;89</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M4483.2736,-579.8796C4474.2319,-568.5536 4464.4295,-556.2748 4455.3534,-544.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4457.8685,-542.4464 4448.8943,-536.8149 4452.398,-546.8137 4457.8685,-542.4464\"/>\n",
"</g>\n",
"<!-- 90 -->\n",
"<g id=\"node91\" class=\"node\">\n",
"<title>90</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"4690,-536.5 4523,-536.5 4523,-468.5 4690,-468.5 4690,-536.5\"/>\n",
"<text text-anchor=\"start\" x=\"4571.5\" y=\"-521.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #90</text>\n",
"<text text-anchor=\"start\" x=\"4562\" y=\"-506.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"4531\" y=\"-491.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"4550.5\" y=\"-476.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 88&#45;&gt;90 -->\n",
"<g id=\"edge90\" class=\"edge\">\n",
"<title>88&#45;&gt;90</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M4547.9776,-579.8796C4556.5435,-568.5536 4565.83,-556.2748 4574.4283,-544.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4577.3069,-546.902 4580.5475,-536.8149 4571.7238,-542.6795 4577.3069,-546.902\"/>\n",
"</g>\n",
"<!-- 92 -->\n",
"<g id=\"node93\" class=\"node\">\n",
"<title>92</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.600000\" stroke=\"#000000\" points=\"5026.5,-663 4850.5,-663 4850.5,-580 5026.5,-580 5026.5,-663\"/>\n",
"<text text-anchor=\"start\" x=\"4903.5\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #92</text>\n",
"<text text-anchor=\"start\" x=\"4901\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">beef ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"4889.5\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 18</text>\n",
"<text text-anchor=\"start\" x=\"4858.5\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [12, 0, 2, 3, 1]</text>\n",
"<text text-anchor=\"start\" x=\"4882.5\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</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=\"M4938.5,-698.8796C4938.5,-690.6838 4938.5,-681.9891 4938.5,-673.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4942.0001,-673.298 4938.5,-663.2981 4935.0001,-673.2981 4942.0001,-673.298\"/>\n",
"</g>\n",
"<!-- 105 -->\n",
"<g id=\"node106\" class=\"node\">\n",
"<title>105</title>\n",
"<polygon fill=\"#39e5c5\" fill-opacity=\"0.666667\" stroke=\"#000000\" points=\"5299,-663 5132,-663 5132,-580 5299,-580 5299,-663\"/>\n",
"<text text-anchor=\"start\" x=\"5176\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #105</text>\n",
"<text text-anchor=\"start\" x=\"5168.5\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">peanut ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"5171\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 7</text>\n",
"<text text-anchor=\"start\" x=\"5140\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 5, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"5155\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 91&#45;&gt;105 -->\n",
"<g id=\"edge105\" class=\"edge\">\n",
"<title>91&#45;&gt;105</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M5026.5251,-702.6841C5057.1046,-689.5471 5091.4871,-674.7763 5122.4585,-661.4709\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"5124.1463,-664.5552 5131.9528,-657.3921 5121.3833,-658.1236 5124.1463,-664.5552\"/>\n",
"</g>\n",
"<!-- 93 -->\n",
"<g id=\"node94\" class=\"node\">\n",
"<title>93</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.784314\" stroke=\"#000000\" points=\"4883.5,-544 4707.5,-544 4707.5,-461 4883.5,-461 4883.5,-544\"/>\n",
"<text text-anchor=\"start\" x=\"4760.5\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #93</text>\n",
"<text text-anchor=\"start\" x=\"4750\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">sherry ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"4746.5\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 15</text>\n",
"<text text-anchor=\"start\" x=\"4715.5\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [12, 0, 1, 1, 1]</text>\n",
"<text text-anchor=\"start\" x=\"4739.5\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</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=\"M4888.4855,-579.8796C4877.2299,-570.513 4865.1912,-560.4948 4853.6354,-550.8784\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4855.6534,-548.0043 4845.7279,-544.2981 4851.1758,-553.385 4855.6534,-548.0043\"/>\n",
"</g>\n",
"<!-- 102 -->\n",
"<g id=\"node103\" class=\"node\">\n",
"<title>102</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.498039\" stroke=\"#000000\" points=\"5068,-544 4901,-544 4901,-461 5068,-461 5068,-544\"/>\n",
"<text text-anchor=\"start\" x=\"4945\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #102</text>\n",
"<text text-anchor=\"start\" x=\"4933\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">soybean ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"4940\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"4909\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 2, 0]</text>\n",
"<text text-anchor=\"start\" x=\"4931\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 92&#45;&gt;102 -->\n",
"<g id=\"edge102\" class=\"edge\">\n",
"<title>92&#45;&gt;102</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M4954.5886,-579.8796C4957.8611,-571.4136 4961.3395,-562.4153 4964.7229,-553.6626\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4968.0017,-554.8874 4968.3428,-544.2981 4961.4726,-552.3635 4968.0017,-554.8874\"/>\n",
"</g>\n",
"<!-- 94 -->\n",
"<g id=\"node95\" class=\"node\">\n",
"<title>94</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.847059\" stroke=\"#000000\" points=\"4559.5,-425 4383.5,-425 4383.5,-342 4559.5,-342 4559.5,-425\"/>\n",
"<text text-anchor=\"start\" x=\"4436.5\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #94</text>\n",
"<text text-anchor=\"start\" x=\"4428\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">honey ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"4422.5\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 14</text>\n",
"<text text-anchor=\"start\" x=\"4391.5\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [12, 0, 0, 1, 1]</text>\n",
"<text text-anchor=\"start\" x=\"4415.5\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</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=\"M4707.4126,-464.211C4704.4163,-463.1013 4701.4395,-462.0274 4698.5,-461 4644.3948,-442.0902 4626.2956,-444.6889 4569.2242,-425.4664\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4570.3132,-422.1397 4559.7185,-422.1873 4568.0305,-428.757 4570.3132,-422.1397\"/>\n",
"</g>\n",
"<!-- 101 -->\n",
"<g id=\"node102\" class=\"node\">\n",
"<title>101</title>\n",
"<polygon fill=\"#39e5c5\" stroke=\"#000000\" points=\"4744,-417.5 4577,-417.5 4577,-349.5 4744,-349.5 4744,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"4621\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #101</text>\n",
"<text text-anchor=\"start\" x=\"4616\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"4585\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"4600\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</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=\"M4748.2836,-460.8796C4734.9358,-449.1138 4720.4215,-436.3197 4707.1096,-424.5855\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4709.2448,-421.8019 4699.4287,-417.8149 4704.616,-427.0531 4709.2448,-421.8019\"/>\n",
"</g>\n",
"<!-- 95 -->\n",
"<g id=\"node96\" class=\"node\">\n",
"<title>95</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.917647\" stroke=\"#000000\" points=\"4514.5,-306 4338.5,-306 4338.5,-223 4514.5,-223 4514.5,-306\"/>\n",
"<text text-anchor=\"start\" x=\"4391.5\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #95</text>\n",
"<text text-anchor=\"start\" x=\"4379.5\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">shrimp ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"4377.5\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 13</text>\n",
"<text text-anchor=\"start\" x=\"4346.5\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [12, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"4370.5\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</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=\"M4455.7612,-341.8796C4452.5598,-333.4136 4449.1571,-324.4153 4445.8472,-315.6626\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4449.1169,-314.4136 4442.306,-306.2981 4442.5694,-316.8896 4449.1169,-314.4136\"/>\n",
"</g>\n",
"<!-- 100 -->\n",
"<g id=\"node101\" class=\"node\">\n",
"<title>100</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"4699,-298.5 4532,-298.5 4532,-230.5 4699,-230.5 4699,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"4576\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #100</text>\n",
"<text text-anchor=\"start\" x=\"4571\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"4540\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"4573\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 94&#45;&gt;100 -->\n",
"<g id=\"edge100\" class=\"edge\">\n",
"<title>94&#45;&gt;100</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M4521.8642,-341.8796C4536.2349,-330.0038 4551.8733,-317.0804 4566.1808,-305.2568\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4568.4971,-307.8831 4573.976,-298.8149 4564.038,-302.4872 4568.4971,-307.8831\"/>\n",
"</g>\n",
"<!-- 96 -->\n",
"<g id=\"node97\" class=\"node\">\n",
"<title>96</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"4483.5,-179.5 4307.5,-179.5 4307.5,-111.5 4483.5,-111.5 4483.5,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"4360.5\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #96</text>\n",
"<text text-anchor=\"start\" x=\"4346.5\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 11</text>\n",
"<text text-anchor=\"start\" x=\"4315.5\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [11, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"4339.5\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</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=\"M4415.6577,-222.8796C4412.8505,-212.1034 4409.8185,-200.4647 4406.9798,-189.5677\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4410.3471,-188.6096 4404.4392,-179.8149 4403.5732,-190.3743 4410.3471,-188.6096\"/>\n",
"</g>\n",
"<!-- 97 -->\n",
"<g id=\"node98\" class=\"node\">\n",
"<title>97</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"4668,-187 4501,-187 4501,-104 4668,-104 4668,-187\"/>\n",
"<text text-anchor=\"start\" x=\"4549.5\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #97</text>\n",
"<text text-anchor=\"start\" x=\"4546.5\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">corn ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"4540\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"4509\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"4528.5\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</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=\"M4481.7607,-222.8796C4494.5099,-213.2774 4508.1683,-202.9903 4521.2291,-193.1534\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4523.3883,-195.9089 4529.2705,-187.0969 4519.1769,-190.3174 4523.3883,-195.9089\"/>\n",
"</g>\n",
"<!-- 98 -->\n",
"<g id=\"node99\" class=\"node\">\n",
"<title>98</title>\n",
"<polygon fill=\"#3c39e5\" stroke=\"#000000\" points=\"4575,-68 4408,-68 4408,0 4575,0 4575,-68\"/>\n",
"<text text-anchor=\"start\" x=\"4456.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #98</text>\n",
"<text text-anchor=\"start\" x=\"4447\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"4416\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"4438\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 97&#45;&gt;98 -->\n",
"<g id=\"edge98\" class=\"edge\">\n",
"<title>97&#45;&gt;98</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M4549.8702,-103.9815C4542.2811,-94.8828 4534.24,-85.242 4526.6314,-76.1199\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4529.1717,-73.7012 4520.0787,-68.2637 4523.7961,-78.1849 4529.1717,-73.7012\"/>\n",
"</g>\n",
"<!-- 99 -->\n",
"<g id=\"node100\" class=\"node\">\n",
"<title>99</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"4760,-68 4593,-68 4593,0 4760,0 4760,-68\"/>\n",
"<text text-anchor=\"start\" x=\"4641.5\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #99</text>\n",
"<text text-anchor=\"start\" x=\"4632\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"4601\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"4620.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 97&#45;&gt;99 -->\n",
"<g id=\"edge99\" class=\"edge\">\n",
"<title>97&#45;&gt;99</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M4618.7574,-103.9815C4626.2649,-94.8828 4634.2196,-85.242 4641.7464,-76.1199\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4644.5639,-78.2045 4648.2286,-68.2637 4639.1646,-73.7495 4644.5639,-78.2045\"/>\n",
"</g>\n",
"<!-- 103 -->\n",
"<g id=\"node104\" class=\"node\">\n",
"<title>103</title>\n",
"<polygon fill=\"#3c39e5\" stroke=\"#000000\" points=\"4929,-417.5 4762,-417.5 4762,-349.5 4929,-349.5 4929,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"4806\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #103</text>\n",
"<text text-anchor=\"start\" x=\"4801\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"4770\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 2, 0]</text>\n",
"<text text-anchor=\"start\" x=\"4792\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M4935.8845,-460.8796C4922.1413,-449.1138 4907.1969,-436.3197 4893.4907,-424.5855\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"4895.4548,-421.6596 4885.5822,-417.8149 4890.9024,-426.9771 4895.4548,-421.6596\"/>\n",
"</g>\n",
"<!-- 104 -->\n",
"<g id=\"node105\" class=\"node\">\n",
"<title>104</title>\n",
"<polygon fill=\"#39e5c5\" stroke=\"#000000\" points=\"5114,-417.5 4947,-417.5 4947,-349.5 5114,-349.5 5114,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"4991\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #104</text>\n",
"<text text-anchor=\"start\" x=\"4986\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"4955\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"4970\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</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=\"M5000.5886,-460.8796C5004.7966,-449.9935 5009.345,-438.227 5013.5943,-427.2344\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"5016.8944,-428.4043 5017.2354,-417.8149 5010.3652,-425.8804 5016.8944,-428.4043\"/>\n",
"</g>\n",
"<!-- 106 -->\n",
"<g id=\"node107\" class=\"node\">\n",
"<title>106</title>\n",
"<polygon fill=\"#39e5c5\" fill-opacity=\"0.800000\" stroke=\"#000000\" points=\"5299,-544 5132,-544 5132,-461 5299,-461 5299,-544\"/>\n",
"<text text-anchor=\"start\" x=\"5176\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #106</text>\n",
"<text text-anchor=\"start\" x=\"5177\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">seed ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"5171\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 6</text>\n",
"<text text-anchor=\"start\" x=\"5140\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 5, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"5155\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 105&#45;&gt;106 -->\n",
"<g id=\"edge106\" class=\"edge\">\n",
"<title>105&#45;&gt;106</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M5215.5,-579.8796C5215.5,-571.6838 5215.5,-562.9891 5215.5,-554.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"5219.0001,-554.298 5215.5,-544.2981 5212.0001,-554.2981 5219.0001,-554.298\"/>\n",
"</g>\n",
"<!-- 109 -->\n",
"<g id=\"node110\" class=\"node\">\n",
"<title>109</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"5484,-536.5 5317,-536.5 5317,-468.5 5484,-468.5 5484,-536.5\"/>\n",
"<text text-anchor=\"start\" x=\"5361\" y=\"-521.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #109</text>\n",
"<text text-anchor=\"start\" x=\"5356\" y=\"-506.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"5325\" y=\"-491.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"5358\" y=\"-476.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 105&#45;&gt;109 -->\n",
"<g id=\"edge109\" class=\"edge\">\n",
"<title>105&#45;&gt;109</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M5280.204,-579.8796C5299.2696,-567.6158 5320.0719,-554.2348 5338.9346,-542.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"5340.9347,-544.9766 5347.4516,-536.623 5337.1478,-539.0893 5340.9347,-544.9766\"/>\n",
"</g>\n",
"<!-- 107 -->\n",
"<g id=\"node108\" class=\"node\">\n",
"<title>107</title>\n",
"<polygon fill=\"#39e5c5\" stroke=\"#000000\" points=\"5299,-417.5 5132,-417.5 5132,-349.5 5299,-349.5 5299,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"5176\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #107</text>\n",
"<text text-anchor=\"start\" x=\"5171\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 5</text>\n",
"<text text-anchor=\"start\" x=\"5140\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 5, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"5155\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 106&#45;&gt;107 -->\n",
"<g id=\"edge107\" class=\"edge\">\n",
"<title>106&#45;&gt;107</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M5215.5,-460.8796C5215.5,-450.2134 5215.5,-438.7021 5215.5,-427.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"5219.0001,-427.8149 5215.5,-417.8149 5212.0001,-427.815 5219.0001,-427.8149\"/>\n",
"</g>\n",
"<!-- 108 -->\n",
"<g id=\"node109\" class=\"node\">\n",
"<title>108</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"5484,-417.5 5317,-417.5 5317,-349.5 5484,-349.5 5484,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"5361\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #108</text>\n",
"<text text-anchor=\"start\" x=\"5356\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"5325\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"5344.5\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 106&#45;&gt;108 -->\n",
"<g id=\"edge108\" class=\"edge\">\n",
"<title>106&#45;&gt;108</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M5280.204,-460.8796C5299.2696,-448.6158 5320.0719,-435.2348 5338.9346,-423.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"5340.9347,-425.9766 5347.4516,-417.623 5337.1478,-420.0893 5340.9347,-425.9766\"/>\n",
"</g>\n",
"<!-- 111 -->\n",
"<g id=\"node112\" class=\"node\">\n",
"<title>111</title>\n",
"<polygon fill=\"#39e5c5\" fill-opacity=\"0.090196\" stroke=\"#000000\" points=\"6406,-901 6239,-901 6239,-818 6406,-818 6406,-901\"/>\n",
"<text text-anchor=\"start\" x=\"6283\" y=\"-885.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #111</text>\n",
"<text text-anchor=\"start\" x=\"6277\" y=\"-870.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">ginger ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"6273.5\" y=\"-855.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 16</text>\n",
"<text text-anchor=\"start\" x=\"6247\" y=\"-840.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 6, 5, 2]</text>\n",
"<text text-anchor=\"start\" x=\"6262\" y=\"-825.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</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=\"M6383.6234,-936.8796C6376.5803,-927.9633 6369.0707,-918.4565 6361.8126,-909.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"6364.4621,-906.9757 6355.517,-901.2981 6358.9691,-911.3147 6364.4621,-906.9757\"/>\n",
"</g>\n",
"<!-- 124 -->\n",
"<g id=\"node125\" class=\"node\">\n",
"<title>124</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.776471\" stroke=\"#000000\" points=\"6599.5,-901 6423.5,-901 6423.5,-818 6599.5,-818 6599.5,-901\"/>\n",
"<text text-anchor=\"start\" x=\"6472\" y=\"-885.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #124</text>\n",
"<text text-anchor=\"start\" x=\"6470.5\" y=\"-870.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">yeast ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"6462.5\" y=\"-855.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 56</text>\n",
"<text text-anchor=\"start\" x=\"6431.5\" y=\"-840.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [45, 0, 7, 3, 1]</text>\n",
"<text text-anchor=\"start\" x=\"6455.5\" y=\"-825.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 110&#45;&gt;124 -->\n",
"<g id=\"edge124\" class=\"edge\">\n",
"<title>110&#45;&gt;124</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M6449.7264,-936.8796C6456.8444,-927.9633 6464.4339,-918.4565 6471.7692,-909.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"6474.6281,-911.2968 6478.1318,-901.2981 6469.1575,-906.9295 6474.6281,-911.2968\"/>\n",
"</g>\n",
"<!-- 112 -->\n",
"<g id=\"node113\" class=\"node\">\n",
"<title>112</title>\n",
"<polygon fill=\"#39e5c5\" fill-opacity=\"0.301961\" stroke=\"#000000\" points=\"6221,-782 6054,-782 6054,-699 6221,-699 6221,-782\"/>\n",
"<text text-anchor=\"start\" x=\"6098\" y=\"-766.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #112</text>\n",
"<text text-anchor=\"start\" x=\"6102.5\" y=\"-751.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">fish ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"6088.5\" y=\"-736.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 13</text>\n",
"<text text-anchor=\"start\" x=\"6062\" y=\"-721.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 6, 2, 2]</text>\n",
"<text text-anchor=\"start\" x=\"6077\" y=\"-706.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 111&#45;&gt;112 -->\n",
"<g id=\"edge112\" class=\"edge\">\n",
"<title>111&#45;&gt;112</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M6257.796,-817.8796C6242.5865,-808.0962 6226.2718,-797.6019 6210.7182,-787.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"6212.4713,-784.5632 6202.1675,-782.0969 6208.6843,-790.4505 6212.4713,-784.5632\"/>\n",
"</g>\n",
"<!-- 123 -->\n",
"<g id=\"node124\" class=\"node\">\n",
"<title>123</title>\n",
"<polygon fill=\"#3c39e5\" stroke=\"#000000\" points=\"6406,-774.5 6239,-774.5 6239,-706.5 6406,-706.5 6406,-774.5\"/>\n",
"<text text-anchor=\"start\" x=\"6283\" y=\"-759.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #123</text>\n",
"<text text-anchor=\"start\" x=\"6278\" y=\"-744.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"6247\" y=\"-729.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 3, 0]</text>\n",
"<text text-anchor=\"start\" x=\"6269\" y=\"-714.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 111&#45;&gt;123 -->\n",
"<g id=\"edge123\" class=\"edge\">\n",
"<title>111&#45;&gt;123</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M6322.5,-817.8796C6322.5,-807.2134 6322.5,-795.7021 6322.5,-784.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"6326.0001,-784.8149 6322.5,-774.8149 6319.0001,-784.815 6326.0001,-784.8149\"/>\n",
"</g>\n",
"<!-- 113 -->\n",
"<g id=\"node114\" class=\"node\">\n",
"<title>113</title>\n",
"<polygon fill=\"#39e5c5\" fill-opacity=\"0.376471\" stroke=\"#000000\" points=\"6037,-663 5870,-663 5870,-580 6037,-580 6037,-663\"/>\n",
"<text text-anchor=\"start\" x=\"5914\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #113</text>\n",
"<text text-anchor=\"start\" x=\"5883\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">black_pepper ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"5904.5\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 11</text>\n",
"<text text-anchor=\"start\" x=\"5878\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 6, 2, 0]</text>\n",
"<text text-anchor=\"start\" x=\"5893\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 112&#45;&gt;113 -->\n",
"<g id=\"edge113\" class=\"edge\">\n",
"<title>112&#45;&gt;113</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M6073.1457,-698.8796C6058.0185,-689.0962 6041.7919,-678.6019 6026.3224,-668.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"6028.1156,-665.5887 6017.8179,-663.0969 6024.3141,-671.4665 6028.1156,-665.5887\"/>\n",
"</g>\n",
"<!-- 122 -->\n",
"<g id=\"node123\" class=\"node\">\n",
"<title>122</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"6222,-655.5 6055,-655.5 6055,-587.5 6222,-587.5 6222,-655.5\"/>\n",
"<text text-anchor=\"start\" x=\"6099\" y=\"-640.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #122</text>\n",
"<text text-anchor=\"start\" x=\"6094\" y=\"-625.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"6063\" y=\"-610.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 2]</text>\n",
"<text text-anchor=\"start\" x=\"6096\" y=\"-595.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 112&#45;&gt;122 -->\n",
"<g id=\"edge122\" class=\"edge\">\n",
"<title>112&#45;&gt;122</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M6137.8498,-698.8796C6137.9394,-688.2134 6138.0361,-676.7021 6138.1269,-665.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"6141.6274,-665.844 6138.2116,-655.8149 6134.6276,-665.7851 6141.6274,-665.844\"/>\n",
"</g>\n",
"<!-- 114 -->\n",
"<g id=\"node115\" class=\"node\">\n",
"<title>114</title>\n",
"<polygon fill=\"#39e5c5\" fill-opacity=\"0.800000\" stroke=\"#000000\" points=\"5854,-544 5687,-544 5687,-461 5854,-461 5854,-544\"/>\n",
"<text text-anchor=\"start\" x=\"5731\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #114</text>\n",
"<text text-anchor=\"start\" x=\"5723.5\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">peanut ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"5726\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 6</text>\n",
"<text text-anchor=\"start\" x=\"5695\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 5, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"5710\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 113&#45;&gt;114 -->\n",
"<g id=\"edge114\" class=\"edge\">\n",
"<title>113&#45;&gt;114</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M5889.4955,-579.8796C5874.4505,-570.0962 5858.3121,-559.6019 5842.9267,-549.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"5844.7598,-546.6143 5834.4684,-544.0969 5840.9437,-552.4827 5844.7598,-546.6143\"/>\n",
"</g>\n",
"<!-- 117 -->\n",
"<g id=\"node118\" class=\"node\">\n",
"<title>117</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.498039\" stroke=\"#000000\" points=\"6039,-544 5872,-544 5872,-461 6039,-461 6039,-544\"/>\n",
"<text text-anchor=\"start\" x=\"5916\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #117</text>\n",
"<text text-anchor=\"start\" x=\"5906.5\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">vinegar ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"5911\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 5</text>\n",
"<text text-anchor=\"start\" x=\"5880\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 1, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"5899.5\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 113&#45;&gt;117 -->\n",
"<g id=\"edge117\" class=\"edge\">\n",
"<title>113&#45;&gt;117</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M5954.1995,-579.8796C5954.3372,-571.6838 5954.4834,-562.9891 5954.626,-554.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"5958.1289,-554.3555 5954.7975,-544.2981 5951.1299,-554.2378 5958.1289,-554.3555\"/>\n",
"</g>\n",
"<!-- 115 -->\n",
"<g id=\"node116\" class=\"node\">\n",
"<title>115</title>\n",
"<polygon fill=\"#39e5c5\" stroke=\"#000000\" points=\"5669,-417.5 5502,-417.5 5502,-349.5 5669,-349.5 5669,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"5546\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #115</text>\n",
"<text text-anchor=\"start\" x=\"5541\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 5</text>\n",
"<text text-anchor=\"start\" x=\"5510\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 5, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"5525\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</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=\"M5705.796,-460.8796C5686.7304,-448.6158 5665.9281,-435.2348 5647.0654,-423.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"5648.8522,-420.0893 5638.5484,-417.623 5645.0653,-425.9766 5648.8522,-420.0893\"/>\n",
"</g>\n",
"<!-- 116 -->\n",
"<g id=\"node117\" class=\"node\">\n",
"<title>116</title>\n",
"<polygon fill=\"#3c39e5\" stroke=\"#000000\" points=\"5854,-417.5 5687,-417.5 5687,-349.5 5854,-349.5 5854,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"5731\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #116</text>\n",
"<text text-anchor=\"start\" x=\"5726\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"5695\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"5717\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M5770.5,-460.8796C5770.5,-450.2134 5770.5,-438.7021 5770.5,-427.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"5774.0001,-427.8149 5770.5,-417.8149 5767.0001,-427.815 5774.0001,-427.8149\"/>\n",
"</g>\n",
"<!-- 118 -->\n",
"<g id=\"node119\" class=\"node\">\n",
"<title>118</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"6039,-417.5 5872,-417.5 5872,-349.5 6039,-349.5 6039,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"5916\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #118</text>\n",
"<text text-anchor=\"start\" x=\"5911\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"5880\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"5899.5\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</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=\"M5955.5,-460.8796C5955.5,-450.2134 5955.5,-438.7021 5955.5,-427.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"5959.0001,-427.8149 5955.5,-417.8149 5952.0001,-427.815 5959.0001,-427.8149\"/>\n",
"</g>\n",
"<!-- 119 -->\n",
"<g id=\"node120\" class=\"node\">\n",
"<title>119</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"6224,-425 6057,-425 6057,-342 6224,-342 6224,-425\"/>\n",
"<text text-anchor=\"start\" x=\"6101\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #119</text>\n",
"<text text-anchor=\"start\" x=\"6102.5\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">corn ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"6096\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"6065\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"6080\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</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=\"M6020.204,-460.8796C6035.4135,-451.0962 6051.7282,-440.6019 6067.2818,-430.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"6069.3157,-433.4505 6075.8325,-425.0969 6065.5287,-427.5632 6069.3157,-433.4505\"/>\n",
"</g>\n",
"<!-- 120 -->\n",
"<g id=\"node121\" class=\"node\">\n",
"<title>120</title>\n",
"<polygon fill=\"#3c39e5\" stroke=\"#000000\" points=\"6045,-298.5 5878,-298.5 5878,-230.5 6045,-230.5 6045,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"5922\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #120</text>\n",
"<text text-anchor=\"start\" x=\"5917\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"5886\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"5908\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 119&#45;&gt;120 -->\n",
"<g id=\"edge120\" class=\"edge\">\n",
"<title>119&#45;&gt;120</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M6077.8945,-341.8796C6059.6135,-329.7263 6039.6822,-316.4759 6021.5624,-304.4297\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"6023.0933,-301.2447 6012.8279,-298.623 6019.2179,-307.074 6023.0933,-301.2447\"/>\n",
"</g>\n",
"<!-- 121 -->\n",
"<g id=\"node122\" class=\"node\">\n",
"<title>121</title>\n",
"<polygon fill=\"#39e5c5\" stroke=\"#000000\" points=\"6230,-298.5 6063,-298.5 6063,-230.5 6230,-230.5 6230,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"6107\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #121</text>\n",
"<text text-anchor=\"start\" x=\"6102\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"6071\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"6086\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 119&#45;&gt;121 -->\n",
"<g id=\"edge121\" class=\"edge\">\n",
"<title>119&#45;&gt;121</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M6142.5985,-341.8796C6143.1363,-331.2134 6143.7167,-319.7021 6144.2613,-308.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"6147.7617,-308.9785 6144.7698,-298.8149 6140.7706,-308.626 6147.7617,-308.9785\"/>\n",
"</g>\n",
"<!-- 125 -->\n",
"<g id=\"node126\" class=\"node\">\n",
"<title>125</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.807843\" stroke=\"#000000\" points=\"6599.5,-782 6423.5,-782 6423.5,-699 6599.5,-699 6599.5,-782\"/>\n",
"<text text-anchor=\"start\" x=\"6472\" y=\"-766.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #125</text>\n",
"<text text-anchor=\"start\" x=\"6442\" y=\"-751.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">vegetable_oil ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"6462.5\" y=\"-736.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 54</text>\n",
"<text text-anchor=\"start\" x=\"6431.5\" y=\"-721.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [45, 0, 7, 1, 1]</text>\n",
"<text text-anchor=\"start\" x=\"6455.5\" y=\"-706.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</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=\"M6511.5,-817.8796C6511.5,-809.6838 6511.5,-800.9891 6511.5,-792.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"6515.0001,-792.298 6511.5,-782.2981 6508.0001,-792.2981 6515.0001,-792.298\"/>\n",
"</g>\n",
"<!-- 146 -->\n",
"<g id=\"node147\" class=\"node\">\n",
"<title>146</title>\n",
"<polygon fill=\"#3c39e5\" stroke=\"#000000\" points=\"6784,-774.5 6617,-774.5 6617,-706.5 6784,-706.5 6784,-774.5\"/>\n",
"<text text-anchor=\"start\" x=\"6661\" y=\"-759.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #146</text>\n",
"<text text-anchor=\"start\" x=\"6656\" y=\"-744.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"6625\" y=\"-729.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 2, 0]</text>\n",
"<text text-anchor=\"start\" x=\"6647\" y=\"-714.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 124&#45;&gt;146 -->\n",
"<g id=\"edge146\" class=\"edge\">\n",
"<title>124&#45;&gt;146</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M6577.603,-817.8796C6597.0808,-805.6158 6618.3329,-792.2348 6637.6035,-780.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"6639.7071,-782.913 6646.3046,-774.623 6635.9774,-776.9894 6639.7071,-782.913\"/>\n",
"</g>\n",
"<!-- 126 -->\n",
"<g id=\"node127\" class=\"node\">\n",
"<title>126</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.941176\" stroke=\"#000000\" points=\"6607,-663 6414,-663 6414,-580 6607,-580 6607,-663\"/>\n",
"<text text-anchor=\"start\" x=\"6471\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #126</text>\n",
"<text text-anchor=\"start\" x=\"6422\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">green_bell_pepper ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"6461.5\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 37</text>\n",
"<text text-anchor=\"start\" x=\"6430.5\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [35, 0, 2, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"6454.5\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</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=\"M6511.1502,-698.8796C6511.0814,-690.6838 6511.0083,-681.9891 6510.937,-673.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"6514.4352,-673.2683 6510.8512,-663.2981 6507.4355,-673.3272 6514.4352,-673.2683\"/>\n",
"</g>\n",
"<!-- 131 -->\n",
"<g id=\"node132\" class=\"node\">\n",
"<title>131</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.415686\" stroke=\"#000000\" points=\"6801.5,-663 6625.5,-663 6625.5,-580 6801.5,-580 6801.5,-663\"/>\n",
"<text text-anchor=\"start\" x=\"6674\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #131</text>\n",
"<text text-anchor=\"start\" x=\"6638\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cane_molasses ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"6664.5\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 17</text>\n",
"<text text-anchor=\"start\" x=\"6633.5\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [10, 0, 5, 1, 1]</text>\n",
"<text text-anchor=\"start\" x=\"6657.5\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 125&#45;&gt;131 -->\n",
"<g id=\"edge131\" class=\"edge\">\n",
"<title>125&#45;&gt;131</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M6582.1498,-698.8796C6598.9106,-689.0056 6616.9008,-678.4075 6634.0252,-668.3193\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"6636.0506,-671.1884 6642.8901,-663.0969 6632.4975,-665.1571 6636.0506,-671.1884\"/>\n",
"</g>\n",
"<!-- 127 -->\n",
"<g id=\"node128\" class=\"node\">\n",
"<title>127</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.972549\" stroke=\"#000000\" points=\"6418.5,-544 6242.5,-544 6242.5,-461 6418.5,-461 6418.5,-544\"/>\n",
"<text text-anchor=\"start\" x=\"6291\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #127</text>\n",
"<text text-anchor=\"start\" x=\"6286\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">radish ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"6281.5\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 36</text>\n",
"<text text-anchor=\"start\" x=\"6250.5\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [35, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"6274.5\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</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=\"M6447.5447,-579.8796C6432.8834,-570.1868 6417.1664,-559.7961 6402.1599,-549.8752\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"6403.6918,-546.6922 6393.4197,-544.0969 6399.8313,-552.5315 6403.6918,-546.6922\"/>\n",
"</g>\n",
"<!-- 130 -->\n",
"<g id=\"node131\" class=\"node\">\n",
"<title>130</title>\n",
"<polygon fill=\"#39e5c5\" stroke=\"#000000\" points=\"6603,-536.5 6436,-536.5 6436,-468.5 6603,-468.5 6603,-536.5\"/>\n",
"<text text-anchor=\"start\" x=\"6480\" y=\"-521.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #130</text>\n",
"<text text-anchor=\"start\" x=\"6475\" y=\"-506.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"6444\" y=\"-491.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"6459\" y=\"-476.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 126&#45;&gt;130 -->\n",
"<g id=\"edge130\" class=\"edge\">\n",
"<title>126&#45;&gt;130</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M6513.6478,-579.8796C6514.4545,-569.2134 6515.3251,-557.7021 6516.1419,-546.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"6519.6405,-547.0504 6516.9048,-536.8149 6512.6605,-546.5225 6519.6405,-547.0504\"/>\n",
"</g>\n",
"<!-- 128 -->\n",
"<g id=\"node129\" class=\"node\">\n",
"<title>128</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"6417.5,-417.5 6241.5,-417.5 6241.5,-349.5 6417.5,-349.5 6417.5,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"6290\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #128</text>\n",
"<text text-anchor=\"start\" x=\"6280.5\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 35</text>\n",
"<text text-anchor=\"start\" x=\"6249.5\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [35, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"6273.5\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</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=\"M6330.1502,-460.8796C6330.0606,-450.2134 6329.9639,-438.7021 6329.8731,-427.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"6333.3724,-427.7851 6329.7884,-417.8149 6326.3726,-427.844 6333.3724,-427.7851\"/>\n",
"</g>\n",
"<!-- 129 -->\n",
"<g id=\"node130\" class=\"node\">\n",
"<title>129</title>\n",
"<polygon fill=\"#39e5c5\" stroke=\"#000000\" points=\"6602,-417.5 6435,-417.5 6435,-349.5 6602,-349.5 6602,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"6479\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #129</text>\n",
"<text text-anchor=\"start\" x=\"6474\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"6443\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"6458\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 127&#45;&gt;129 -->\n",
"<g id=\"edge129\" class=\"edge\">\n",
"<title>127&#45;&gt;129</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M6396.2533,-460.8796C6415.628,-448.6158 6436.7676,-435.2348 6455.9363,-423.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"6458.0137,-425.9288 6464.5913,-417.623 6454.2698,-420.0141 6458.0137,-425.9288\"/>\n",
"</g>\n",
"<!-- 132 -->\n",
"<g id=\"node133\" class=\"node\">\n",
"<title>132</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.584314\" stroke=\"#000000\" points=\"6796.5,-544 6620.5,-544 6620.5,-461 6796.5,-461 6796.5,-544\"/>\n",
"<text text-anchor=\"start\" x=\"6669\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #132</text>\n",
"<text text-anchor=\"start\" x=\"6673.5\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">fish ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"6659.5\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 15</text>\n",
"<text text-anchor=\"start\" x=\"6628.5\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [10, 0, 3, 1, 1]</text>\n",
"<text text-anchor=\"start\" x=\"6652.5\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 131&#45;&gt;132 -->\n",
"<g id=\"edge132\" class=\"edge\">\n",
"<title>131&#45;&gt;132</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M6711.7512,-579.8796C6711.4069,-571.6838 6711.0416,-562.9891 6710.6849,-554.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"6714.173,-554.1423 6710.2562,-544.2981 6707.1792,-554.4362 6714.173,-554.1423\"/>\n",
"</g>\n",
"<!-- 145 -->\n",
"<g id=\"node146\" class=\"node\">\n",
"<title>145</title>\n",
"<polygon fill=\"#39e5c5\" stroke=\"#000000\" points=\"6981,-536.5 6814,-536.5 6814,-468.5 6981,-468.5 6981,-536.5\"/>\n",
"<text text-anchor=\"start\" x=\"6858\" y=\"-521.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #145</text>\n",
"<text text-anchor=\"start\" x=\"6853\" y=\"-506.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"6822\" y=\"-491.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 2, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"6837\" y=\"-476.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 131&#45;&gt;145 -->\n",
"<g id=\"edge145\" class=\"edge\">\n",
"<title>131&#45;&gt;145</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M6777.8543,-579.8796C6796.8167,-567.6158 6817.5066,-554.2348 6836.2674,-542.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"6838.2421,-544.9926 6844.7383,-536.623 6834.4407,-539.1148 6838.2421,-544.9926\"/>\n",
"</g>\n",
"<!-- 133 -->\n",
"<g id=\"node134\" class=\"node\">\n",
"<title>133</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.635294\" stroke=\"#000000\" points=\"6795.5,-425 6619.5,-425 6619.5,-342 6795.5,-342 6795.5,-425\"/>\n",
"<text text-anchor=\"start\" x=\"6668\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #133</text>\n",
"<text text-anchor=\"start\" x=\"6646.5\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">sesame_oil ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"6658.5\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 14</text>\n",
"<text text-anchor=\"start\" x=\"6627.5\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [10, 0, 3, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"6651.5\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</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=\"M6708.1502,-460.8796C6708.0814,-452.6838 6708.0083,-443.9891 6707.937,-435.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"6711.4352,-435.2683 6707.8512,-425.2981 6704.4355,-435.3272 6711.4352,-435.2683\"/>\n",
"</g>\n",
"<!-- 144 -->\n",
"<g id=\"node145\" class=\"node\">\n",
"<title>144</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"6980,-417.5 6813,-417.5 6813,-349.5 6980,-349.5 6980,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"6857\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #144</text>\n",
"<text text-anchor=\"start\" x=\"6852\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"6821\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"6854\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 132&#45;&gt;144 -->\n",
"<g id=\"edge144\" class=\"edge\">\n",
"<title>132&#45;&gt;144</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M6774.2533,-460.8796C6793.628,-448.6158 6814.7676,-435.2348 6833.9363,-423.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"6836.0137,-425.9288 6842.5913,-417.623 6832.2698,-420.0141 6836.0137,-425.9288\"/>\n",
"</g>\n",
"<!-- 134 -->\n",
"<g id=\"node135\" class=\"node\">\n",
"<title>134</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.874510\" stroke=\"#000000\" points=\"6464,-306 6297,-306 6297,-223 6464,-223 6464,-306\"/>\n",
"<text text-anchor=\"start\" x=\"6341\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #134</text>\n",
"<text text-anchor=\"start\" x=\"6342\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">sake ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"6336\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 9</text>\n",
"<text text-anchor=\"start\" x=\"6305\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [8, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"6324.5\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 133&#45;&gt;134 -->\n",
"<g id=\"edge134\" class=\"edge\">\n",
"<title>133&#45;&gt;134</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M6619.3332,-345.4283C6616.3596,-344.2564 6613.4091,-343.1104 6610.5,-342 6565.944,-324.9926 6515.8277,-307.8748 6473.7773,-294.0687\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"6474.6966,-290.687 6464.104,-290.9043 6472.5202,-297.34 6474.6966,-290.687\"/>\n",
"</g>\n",
"<!-- 139 -->\n",
"<g id=\"node140\" class=\"node\">\n",
"<title>139</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"6791,-306 6624,-306 6624,-223 6791,-223 6791,-306\"/>\n",
"<text text-anchor=\"start\" x=\"6668\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #139</text>\n",
"<text text-anchor=\"start\" x=\"6660.5\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">pepper ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"6663\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 5</text>\n",
"<text text-anchor=\"start\" x=\"6632\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 2, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"6651.5\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 133&#45;&gt;139 -->\n",
"<g id=\"edge139\" class=\"edge\">\n",
"<title>133&#45;&gt;139</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M6707.5,-341.8796C6707.5,-333.6838 6707.5,-324.9891 6707.5,-316.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"6711.0001,-316.298 6707.5,-306.2981 6704.0001,-316.2981 6711.0001,-316.298\"/>\n",
"</g>\n",
"<!-- 135 -->\n",
"<g id=\"node136\" class=\"node\">\n",
"<title>135</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"6279,-179.5 6112,-179.5 6112,-111.5 6279,-111.5 6279,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"6156\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #135</text>\n",
"<text text-anchor=\"start\" x=\"6151\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 6</text>\n",
"<text text-anchor=\"start\" x=\"6120\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [6, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"6139.5\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 134&#45;&gt;135 -->\n",
"<g id=\"edge135\" class=\"edge\">\n",
"<title>134&#45;&gt;135</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M6315.796,-222.8796C6296.7304,-210.6158 6275.9281,-197.2348 6257.0654,-185.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"6258.8522,-182.0893 6248.5484,-179.623 6255.0653,-187.9766 6258.8522,-182.0893\"/>\n",
"</g>\n",
"<!-- 136 -->\n",
"<g id=\"node137\" class=\"node\">\n",
"<title>136</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.498039\" stroke=\"#000000\" points=\"6464,-187 6297,-187 6297,-104 6464,-104 6464,-187\"/>\n",
"<text text-anchor=\"start\" x=\"6341\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #136</text>\n",
"<text text-anchor=\"start\" x=\"6330\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">shiitake ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"6336\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"6305\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"6324.5\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 134&#45;&gt;136 -->\n",
"<g id=\"edge136\" class=\"edge\">\n",
"<title>134&#45;&gt;136</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M6380.5,-222.8796C6380.5,-214.6838 6380.5,-205.9891 6380.5,-197.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"6384.0001,-197.298 6380.5,-187.2981 6377.0001,-197.2981 6384.0001,-197.298\"/>\n",
"</g>\n",
"<!-- 137 -->\n",
"<g id=\"node138\" class=\"node\">\n",
"<title>137</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"6279,-68 6112,-68 6112,0 6279,0 6279,-68\"/>\n",
"<text text-anchor=\"start\" x=\"6156\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #137</text>\n",
"<text text-anchor=\"start\" x=\"6151\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"6120\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"6139.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 136&#45;&gt;137 -->\n",
"<g id=\"edge137\" class=\"edge\">\n",
"<title>136&#45;&gt;137</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M6311.6128,-103.9815C6295.0571,-94.0034 6277.4199,-83.3733 6261.0222,-73.4904\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"6262.426,-70.25 6252.0546,-68.0856 6258.8126,-76.2453 6262.426,-70.25\"/>\n",
"</g>\n",
"<!-- 138 -->\n",
"<g id=\"node139\" class=\"node\">\n",
"<title>138</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"6464,-68 6297,-68 6297,0 6464,0 6464,-68\"/>\n",
"<text text-anchor=\"start\" x=\"6341\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #138</text>\n",
"<text text-anchor=\"start\" x=\"6336\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"6305\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"6324.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 136&#45;&gt;138 -->\n",
"<g id=\"edge138\" class=\"edge\">\n",
"<title>136&#45;&gt;138</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M6380.5,-103.9815C6380.5,-95.618 6380.5,-86.7965 6380.5,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"6384.0001,-78.2636 6380.5,-68.2637 6377.0001,-78.2637 6384.0001,-78.2636\"/>\n",
"</g>\n",
"<!-- 140 -->\n",
"<g id=\"node141\" class=\"node\">\n",
"<title>140</title>\n",
"<polygon fill=\"#39e5c5\" fill-opacity=\"0.498039\" stroke=\"#000000\" points=\"6742,-187 6575,-187 6575,-104 6742,-104 6742,-187\"/>\n",
"<text text-anchor=\"start\" x=\"6619\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #140</text>\n",
"<text text-anchor=\"start\" x=\"6623.5\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">egg ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"6614\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"6583\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 2, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"6598\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</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=\"M6690.3622,-222.8796C6686.8762,-214.4136 6683.171,-205.4153 6679.5669,-196.6626\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"6682.7549,-195.2122 6675.711,-187.2981 6676.2822,-197.8775 6682.7549,-195.2122\"/>\n",
"</g>\n",
"<!-- 143 -->\n",
"<g id=\"node144\" class=\"node\">\n",
"<title>143</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"6927,-179.5 6760,-179.5 6760,-111.5 6927,-111.5 6927,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"6804\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #143</text>\n",
"<text text-anchor=\"start\" x=\"6799\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"6768\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"6787.5\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</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=\"M6755.0662,-222.8796C6768.5128,-211.1138 6783.1347,-198.3197 6796.5451,-186.5855\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"6799.0619,-189.034 6804.2829,-179.8149 6794.4524,-183.766 6799.0619,-189.034\"/>\n",
"</g>\n",
"<!-- 141 -->\n",
"<g id=\"node142\" class=\"node\">\n",
"<title>141</title>\n",
"<polygon fill=\"#3c39e5\" stroke=\"#000000\" points=\"6649,-68 6482,-68 6482,0 6649,0 6649,-68\"/>\n",
"<text text-anchor=\"start\" x=\"6526\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #141</text>\n",
"<text text-anchor=\"start\" x=\"6521\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"6490\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"6512\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M6623.8702,-103.9815C6616.2811,-94.8828 6608.24,-85.242 6600.6314,-76.1199\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"6603.1717,-73.7012 6594.0787,-68.2637 6597.7961,-78.1849 6603.1717,-73.7012\"/>\n",
"</g>\n",
"<!-- 142 -->\n",
"<g id=\"node143\" class=\"node\">\n",
"<title>142</title>\n",
"<polygon fill=\"#39e5c5\" stroke=\"#000000\" points=\"6834,-68 6667,-68 6667,0 6834,0 6834,-68\"/>\n",
"<text text-anchor=\"start\" x=\"6711\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #142</text>\n",
"<text text-anchor=\"start\" x=\"6706\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"6675\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 2, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"6690\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</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=\"M6692.7574,-103.9815C6700.2649,-94.8828 6708.2196,-85.242 6715.7464,-76.1199\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"6718.5639,-78.2045 6722.2286,-68.2637 6713.1646,-73.7495 6718.5639,-78.2045\"/>\n",
"</g>\n",
"<!-- 148 -->\n",
"<g id=\"node149\" class=\"node\">\n",
"<title>148</title>\n",
"<polygon fill=\"#7be539\" stroke=\"#000000\" points=\"8000.5,-1012.5 7824.5,-1012.5 7824.5,-944.5 8000.5,-944.5 8000.5,-1012.5\"/>\n",
"<text text-anchor=\"start\" x=\"7873\" y=\"-997.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #148</text>\n",
"<text text-anchor=\"start\" x=\"7863.5\" y=\"-982.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 33</text>\n",
"<text text-anchor=\"start\" x=\"7832.5\" y=\"-967.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 33, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"7861.5\" y=\"-952.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</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=\"M7974.2736,-1055.8796C7965.2319,-1044.5536 7955.4295,-1032.2748 7946.3534,-1020.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"7948.8685,-1018.4464 7939.8943,-1012.8149 7943.398,-1022.8137 7948.8685,-1018.4464\"/>\n",
"</g>\n",
"<!-- 149 -->\n",
"<g id=\"node150\" class=\"node\">\n",
"<title>149</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"8185,-1012.5 8018,-1012.5 8018,-944.5 8185,-944.5 8185,-1012.5\"/>\n",
"<text text-anchor=\"start\" x=\"8062\" y=\"-997.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #149</text>\n",
"<text text-anchor=\"start\" x=\"8057\" y=\"-982.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"8026\" y=\"-967.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"8059\" y=\"-952.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 147&#45;&gt;149 -->\n",
"<g id=\"edge149\" class=\"edge\">\n",
"<title>147&#45;&gt;149</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8040.3766,-1055.8796C8049.3232,-1044.5536 8059.0224,-1032.2748 8068.0029,-1020.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8070.942,-1022.8316 8074.3941,-1012.8149 8065.449,-1018.4926 8070.942,-1022.8316\"/>\n",
"</g>\n",
"<!-- 151 -->\n",
"<g id=\"node152\" class=\"node\">\n",
"<title>151</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.105882\" stroke=\"#000000\" points=\"10001.5,-1139 9789.5,-1139 9789.5,-1056 10001.5,-1056 10001.5,-1139\"/>\n",
"<text text-anchor=\"start\" x=\"9856\" y=\"-1123.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #151</text>\n",
"<text text-anchor=\"start\" x=\"9842\" y=\"-1108.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">turmeric ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"9842\" y=\"-1093.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 175</text>\n",
"<text text-anchor=\"start\" x=\"9797.5\" y=\"-1078.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [15, 52, 11, 65, 32]</text>\n",
"<text text-anchor=\"start\" x=\"9842\" y=\"-1063.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 150&#45;&gt;151 -->\n",
"<g id=\"edge151\" class=\"edge\">\n",
"<title>150&#45;&gt;151</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10019.6975,-1174.8796C10003.9947,-1165.0962 9987.1509,-1154.6019 9971.0929,-1144.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9972.6031,-1141.4144 9962.2648,-1139.0969 9968.9015,-1147.3556 9972.6031,-1141.4144\"/>\n",
"</g>\n",
"<!-- 206 -->\n",
"<g id=\"node207\" class=\"node\">\n",
"<title>206</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.784314\" stroke=\"#000000\" points=\"10298,-1139 10095,-1139 10095,-1056 10298,-1056 10298,-1139\"/>\n",
"<text text-anchor=\"start\" x=\"10157\" y=\"-1123.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #206</text>\n",
"<text text-anchor=\"start\" x=\"10123.5\" y=\"-1108.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">peanut_butter ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"10143\" y=\"-1093.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 207</text>\n",
"<text text-anchor=\"start\" x=\"10103\" y=\"-1078.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [20, 1, 6, 167, 13]</text>\n",
"<text text-anchor=\"start\" x=\"10143\" y=\"-1063.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 150&#45;&gt;206 -->\n",
"<g id=\"edge206\" class=\"edge\">\n",
"<title>150&#45;&gt;206</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10124.9727,-1174.8796C10133.3811,-1165.7832 10142.3576,-1156.0722 10151.0103,-1146.7116\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10153.6453,-1149.0172 10157.8631,-1139.2981 10148.505,-1144.2656 10153.6453,-1149.0172\"/>\n",
"</g>\n",
"<!-- 152 -->\n",
"<g id=\"node153\" class=\"node\">\n",
"<title>152</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.282353\" stroke=\"#000000\" points=\"9711.5,-1020 9499.5,-1020 9499.5,-937 9711.5,-937 9711.5,-1020\"/>\n",
"<text text-anchor=\"start\" x=\"9566\" y=\"-1004.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #152</text>\n",
"<text text-anchor=\"start\" x=\"9542\" y=\"-989.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">lemongrass ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"9552\" y=\"-974.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 152</text>\n",
"<text text-anchor=\"start\" x=\"9507.5\" y=\"-959.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [15, 30, 11, 65, 31]</text>\n",
"<text text-anchor=\"start\" x=\"9552\" y=\"-944.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M9794.0721,-1055.8796C9768.9057,-1045.5527 9741.8088,-1034.4336 9716.2225,-1023.9344\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9717.4508,-1020.6553 9706.8707,-1020.0969 9714.7933,-1027.1312 9717.4508,-1020.6553\"/>\n",
"</g>\n",
"<!-- 203 -->\n",
"<g id=\"node204\" class=\"node\">\n",
"<title>203</title>\n",
"<polygon fill=\"#7be539\" fill-opacity=\"0.952941\" stroke=\"#000000\" points=\"9983.5,-1020 9807.5,-1020 9807.5,-937 9983.5,-937 9983.5,-1020\"/>\n",
"<text text-anchor=\"start\" x=\"9856\" y=\"-1004.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #203</text>\n",
"<text text-anchor=\"start\" x=\"9856.5\" y=\"-989.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">basil ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"9846.5\" y=\"-974.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 23</text>\n",
"<text text-anchor=\"start\" x=\"9815.5\" y=\"-959.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 22, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"9844.5\" y=\"-944.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 151&#45;&gt;203 -->\n",
"<g id=\"edge203\" class=\"edge\">\n",
"<title>151&#45;&gt;203</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9895.5,-1055.8796C9895.5,-1047.6838 9895.5,-1038.9891 9895.5,-1030.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9899.0001,-1030.298 9895.5,-1020.2981 9892.0001,-1030.2981 9899.0001,-1030.298\"/>\n",
"</g>\n",
"<!-- 153 -->\n",
"<g id=\"node154\" class=\"node\">\n",
"<title>153</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.313725\" stroke=\"#000000\" points=\"9436.5,-901 9224.5,-901 9224.5,-818 9436.5,-818 9436.5,-901\"/>\n",
"<text text-anchor=\"start\" x=\"9291\" y=\"-885.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #153</text>\n",
"<text text-anchor=\"start\" x=\"9273.5\" y=\"-870.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">vegetable ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"9277\" y=\"-855.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 142</text>\n",
"<text text-anchor=\"start\" x=\"9232.5\" y=\"-840.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [15, 30, 11, 65, 21]</text>\n",
"<text text-anchor=\"start\" x=\"9277\" y=\"-825.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 152&#45;&gt;153 -->\n",
"<g id=\"edge153\" class=\"edge\">\n",
"<title>152&#45;&gt;153</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9509.3183,-936.8796C9485.5583,-926.598 9459.9837,-915.5311 9435.8148,-905.0726\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9437.1949,-901.8562 9426.6273,-901.0969 9434.4149,-908.2805 9437.1949,-901.8562\"/>\n",
"</g>\n",
"<!-- 202 -->\n",
"<g id=\"node203\" class=\"node\">\n",
"<title>202</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"9693.5,-893.5 9517.5,-893.5 9517.5,-825.5 9693.5,-825.5 9693.5,-893.5\"/>\n",
"<text text-anchor=\"start\" x=\"9566\" y=\"-878.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #202</text>\n",
"<text text-anchor=\"start\" x=\"9556.5\" y=\"-863.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 10</text>\n",
"<text text-anchor=\"start\" x=\"9525.5\" y=\"-848.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 10]</text>\n",
"<text text-anchor=\"start\" x=\"9563\" y=\"-833.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 152&#45;&gt;202 -->\n",
"<g id=\"edge202\" class=\"edge\">\n",
"<title>152&#45;&gt;202</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9605.5,-936.8796C9605.5,-926.2134 9605.5,-914.7021 9605.5,-903.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9609.0001,-903.8149 9605.5,-893.8149 9602.0001,-903.815 9609.0001,-903.8149\"/>\n",
"</g>\n",
"<!-- 154 -->\n",
"<g id=\"node155\" class=\"node\">\n",
"<title>154</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.164706\" stroke=\"#000000\" points=\"9217.5,-782 9005.5,-782 9005.5,-699 9217.5,-699 9217.5,-782\"/>\n",
"<text text-anchor=\"start\" x=\"9072\" y=\"-766.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #154</text>\n",
"<text text-anchor=\"start\" x=\"9060\" y=\"-751.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">soybean ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"9058\" y=\"-736.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 121</text>\n",
"<text text-anchor=\"start\" x=\"9013.5\" y=\"-721.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [14, 30, 11, 45, 21]</text>\n",
"<text text-anchor=\"start\" x=\"9058\" y=\"-706.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 153&#45;&gt;154 -->\n",
"<g id=\"edge154\" class=\"edge\">\n",
"<title>153&#45;&gt;154</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9253.9044,-817.8796C9235.483,-807.8697 9215.6918,-797.1156 9196.8974,-786.9031\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9198.51,-783.7961 9188.0523,-782.0969 9195.1679,-789.9468 9198.51,-783.7961\"/>\n",
"</g>\n",
"<!-- 199 -->\n",
"<g id=\"node200\" class=\"node\">\n",
"<title>199</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.949020\" stroke=\"#000000\" points=\"9418.5,-782 9242.5,-782 9242.5,-699 9418.5,-699 9418.5,-782\"/>\n",
"<text text-anchor=\"start\" x=\"9291\" y=\"-766.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #199</text>\n",
"<text text-anchor=\"start\" x=\"9274\" y=\"-751.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">coriander ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"9281.5\" y=\"-736.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 21</text>\n",
"<text text-anchor=\"start\" x=\"9250.5\" y=\"-721.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 20, 0]</text>\n",
"<text text-anchor=\"start\" x=\"9277\" y=\"-706.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 153&#45;&gt;199 -->\n",
"<g id=\"edge199\" class=\"edge\">\n",
"<title>153&#45;&gt;199</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9330.5,-817.8796C9330.5,-809.6838 9330.5,-800.9891 9330.5,-792.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9334.0001,-792.298 9330.5,-782.2981 9327.0001,-792.2981 9334.0001,-792.298\"/>\n",
"</g>\n",
"<!-- 155 -->\n",
"<g id=\"node156\" class=\"node\">\n",
"<title>155</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"8993,-663 8790,-663 8790,-580 8993,-580 8993,-663\"/>\n",
"<text text-anchor=\"start\" x=\"8852\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #155</text>\n",
"<text text-anchor=\"start\" x=\"8856.5\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">fish ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"8838\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 100</text>\n",
"<text text-anchor=\"start\" x=\"8798\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [10, 30, 9, 30, 21]</text>\n",
"<text text-anchor=\"start\" x=\"8840.5\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 154&#45;&gt;155 -->\n",
"<g id=\"edge155\" class=\"edge\">\n",
"<title>154&#45;&gt;155</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9034.5547,-698.8796C9016.0491,-688.8697 8996.1675,-678.1156 8977.2873,-667.9031\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8978.8628,-664.7762 8968.4019,-663.0969 8975.5324,-670.9332 8978.8628,-664.7762\"/>\n",
"</g>\n",
"<!-- 192 -->\n",
"<g id=\"node193\" class=\"node\">\n",
"<title>192</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.647059\" stroke=\"#000000\" points=\"9199.5,-663 9023.5,-663 9023.5,-580 9199.5,-580 9199.5,-663\"/>\n",
"<text text-anchor=\"start\" x=\"9072\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #192</text>\n",
"<text text-anchor=\"start\" x=\"9062.5\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">vinegar ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"9062.5\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 21</text>\n",
"<text text-anchor=\"start\" x=\"9031.5\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [4, 0, 2, 15, 0]</text>\n",
"<text text-anchor=\"start\" x=\"9058\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 154&#45;&gt;192 -->\n",
"<g id=\"edge192\" class=\"edge\">\n",
"<title>154&#45;&gt;192</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9111.5,-698.8796C9111.5,-690.6838 9111.5,-681.9891 9111.5,-673.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9115.0001,-673.298 9111.5,-663.2981 9108.0001,-673.2981 9115.0001,-673.298\"/>\n",
"</g>\n",
"<!-- 156 -->\n",
"<g id=\"node157\" class=\"node\">\n",
"<title>156</title>\n",
"<polygon fill=\"#7be539\" fill-opacity=\"0.105882\" stroke=\"#000000\" points=\"8428.5,-544 8234.5,-544 8234.5,-461 8428.5,-461 8428.5,-544\"/>\n",
"<text text-anchor=\"start\" x=\"8292\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #156</text>\n",
"<text text-anchor=\"start\" x=\"8273\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">soy_sauce ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"8282.5\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 80</text>\n",
"<text text-anchor=\"start\" x=\"8242.5\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [10, 29, 9, 23, 9]</text>\n",
"<text text-anchor=\"start\" x=\"8280.5\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 155&#45;&gt;156 -->\n",
"<g id=\"edge156\" class=\"edge\">\n",
"<title>155&#45;&gt;156</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8789.7636,-599.881C8690.4306,-578.7728 8539.8576,-546.776 8438.6971,-525.2794\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8439.2685,-521.8227 8428.7594,-523.1676 8437.8134,-528.6698 8439.2685,-521.8227\"/>\n",
"</g>\n",
"<!-- 181 -->\n",
"<g id=\"node182\" class=\"node\">\n",
"<title>181</title>\n",
"<polygon fill=\"#e539c0\" fill-opacity=\"0.384314\" stroke=\"#000000\" points=\"8979.5,-544 8803.5,-544 8803.5,-461 8979.5,-461 8979.5,-544\"/>\n",
"<text text-anchor=\"start\" x=\"8852\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #181</text>\n",
"<text text-anchor=\"start\" x=\"8856.5\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">egg ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"8842.5\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 20</text>\n",
"<text text-anchor=\"start\" x=\"8811.5\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 1, 0, 7, 12]</text>\n",
"<text text-anchor=\"start\" x=\"8849\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 155&#45;&gt;181 -->\n",
"<g id=\"edge181\" class=\"edge\">\n",
"<title>155&#45;&gt;181</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8891.5,-579.8796C8891.5,-571.6838 8891.5,-562.9891 8891.5,-554.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8895.0001,-554.298 8891.5,-544.2981 8888.0001,-554.2981 8895.0001,-554.298\"/>\n",
"</g>\n",
"<!-- 157 -->\n",
"<g id=\"node158\" class=\"node\">\n",
"<title>157</title>\n",
"<polygon fill=\"#7be539\" fill-opacity=\"0.450980\" stroke=\"#000000\" points=\"7686,-425 7501,-425 7501,-342 7686,-342 7686,-425\"/>\n",
"<text text-anchor=\"start\" x=\"7554\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #157</text>\n",
"<text text-anchor=\"start\" x=\"7558.5\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">egg ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"7544.5\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 51</text>\n",
"<text text-anchor=\"start\" x=\"7509\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [4, 29, 4, 11, 3]</text>\n",
"<text text-anchor=\"start\" x=\"7542.5\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</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=\"M8234.2605,-486.8205C8094.6508,-464.3089 7838.579,-423.0182 7696.0712,-400.0393\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"7696.4398,-396.5536 7686.0101,-398.4169 7695.3254,-403.4643 7696.4398,-396.5536\"/>\n",
"</g>\n",
"<!-- 170 -->\n",
"<g id=\"node171\" class=\"node\">\n",
"<title>170</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.262745\" stroke=\"#000000\" points=\"8419.5,-425 8243.5,-425 8243.5,-342 8419.5,-342 8419.5,-425\"/>\n",
"<text text-anchor=\"start\" x=\"8292\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #170</text>\n",
"<text text-anchor=\"start\" x=\"8289\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">garlic ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"8282.5\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 29</text>\n",
"<text text-anchor=\"start\" x=\"8251.5\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [6, 0, 5, 12, 6]</text>\n",
"<text text-anchor=\"start\" x=\"8278\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 156&#45;&gt;170 -->\n",
"<g id=\"edge170\" class=\"edge\">\n",
"<title>156&#45;&gt;170</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8331.5,-460.8796C8331.5,-452.6838 8331.5,-443.9891 8331.5,-435.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8335.0001,-435.298 8331.5,-425.2981 8328.0001,-435.2981 8335.0001,-435.298\"/>\n",
"</g>\n",
"<!-- 158 -->\n",
"<g id=\"node159\" class=\"node\">\n",
"<title>158</title>\n",
"<polygon fill=\"#7be539\" fill-opacity=\"0.568627\" stroke=\"#000000\" points=\"7401.5,-306 7225.5,-306 7225.5,-223 7401.5,-223 7401.5,-306\"/>\n",
"<text text-anchor=\"start\" x=\"7274\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #158</text>\n",
"<text text-anchor=\"start\" x=\"7254.5\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">peanut_oil ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"7264.5\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 44</text>\n",
"<text text-anchor=\"start\" x=\"7233.5\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 28, 4, 7, 2]</text>\n",
"<text text-anchor=\"start\" x=\"7262.5\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 157&#45;&gt;158 -->\n",
"<g id=\"edge158\" class=\"edge\">\n",
"<title>157&#45;&gt;158</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M7500.653,-344.04C7471.9241,-331.8302 7440.1958,-318.3457 7411.1518,-306.002\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"7412.3958,-302.7278 7401.8235,-302.0375 7409.6578,-309.1701 7412.3958,-302.7278\"/>\n",
"</g>\n",
"<!-- 163 -->\n",
"<g id=\"node164\" class=\"node\">\n",
"<title>163</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.498039\" stroke=\"#000000\" points=\"7677,-306 7510,-306 7510,-223 7677,-223 7677,-306\"/>\n",
"<text text-anchor=\"start\" x=\"7554\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #163</text>\n",
"<text text-anchor=\"start\" x=\"7555.5\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">corn ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"7549\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 7</text>\n",
"<text text-anchor=\"start\" x=\"7518\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 1, 0, 4, 1]</text>\n",
"<text text-anchor=\"start\" x=\"7540\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 157&#45;&gt;163 -->\n",
"<g id=\"edge163\" class=\"edge\">\n",
"<title>157&#45;&gt;163</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M7593.5,-341.8796C7593.5,-333.6838 7593.5,-324.9891 7593.5,-316.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"7597.0001,-316.298 7593.5,-306.2981 7590.0001,-316.2981 7597.0001,-316.298\"/>\n",
"</g>\n",
"<!-- 159 -->\n",
"<g id=\"node160\" class=\"node\">\n",
"<title>159</title>\n",
"<polygon fill=\"#7be539\" fill-opacity=\"0.600000\" stroke=\"#000000\" points=\"7212.5,-187 7036.5,-187 7036.5,-104 7212.5,-104 7212.5,-187\"/>\n",
"<text text-anchor=\"start\" x=\"7085\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #159</text>\n",
"<text text-anchor=\"start\" x=\"7066.5\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cucumber ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"7075.5\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 42</text>\n",
"<text text-anchor=\"start\" x=\"7044.5\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 28, 4, 7, 2]</text>\n",
"<text text-anchor=\"start\" x=\"7073.5\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 158&#45;&gt;159 -->\n",
"<g id=\"edge159\" class=\"edge\">\n",
"<title>158&#45;&gt;159</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M7247.397,-222.8796C7231.8587,-213.0962 7215.1912,-202.6019 7199.3013,-192.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"7200.8929,-189.4633 7190.5657,-187.0969 7197.1632,-195.3869 7200.8929,-189.4633\"/>\n",
"</g>\n",
"<!-- 162 -->\n",
"<g id=\"node163\" class=\"node\">\n",
"<title>162</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"7397,-179.5 7230,-179.5 7230,-111.5 7397,-111.5 7397,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"7274\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #162</text>\n",
"<text text-anchor=\"start\" x=\"7269\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"7238\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"7257.5\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 158&#45;&gt;162 -->\n",
"<g id=\"edge162\" class=\"edge\">\n",
"<title>158&#45;&gt;162</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M7313.5,-222.8796C7313.5,-212.2134 7313.5,-200.7021 7313.5,-189.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"7317.0001,-189.8149 7313.5,-179.8149 7310.0001,-189.815 7317.0001,-189.8149\"/>\n",
"</g>\n",
"<!-- 160 -->\n",
"<g id=\"node161\" class=\"node\">\n",
"<title>160</title>\n",
"<polygon fill=\"#7be539\" fill-opacity=\"0.654902\" stroke=\"#000000\" points=\"7027.5,-68 6851.5,-68 6851.5,0 7027.5,0 7027.5,-68\"/>\n",
"<text text-anchor=\"start\" x=\"6900\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #160</text>\n",
"<text text-anchor=\"start\" x=\"6890.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 39</text>\n",
"<text text-anchor=\"start\" x=\"6859.5\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 28, 2, 7, 2]</text>\n",
"<text text-anchor=\"start\" x=\"6888.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</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=\"M7055.6128,-103.9815C7039.0571,-94.0034 7021.4199,-83.3733 7005.0222,-73.4904\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"7006.426,-70.25 6996.0546,-68.0856 7002.8126,-76.2453 7006.426,-70.25\"/>\n",
"</g>\n",
"<!-- 161 -->\n",
"<g id=\"node162\" class=\"node\">\n",
"<title>161</title>\n",
"<polygon fill=\"#39e5c5\" fill-opacity=\"0.498039\" stroke=\"#000000\" points=\"7212,-68 7045,-68 7045,0 7212,0 7212,-68\"/>\n",
"<text text-anchor=\"start\" x=\"7089\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #161</text>\n",
"<text text-anchor=\"start\" x=\"7084\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"7053\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 2, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"7068\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 159&#45;&gt;161 -->\n",
"<g id=\"edge161\" class=\"edge\">\n",
"<title>159&#45;&gt;161</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M7125.9895,-103.9815C7126.2895,-95.618 7126.606,-86.7965 7126.9093,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"7130.41,-78.3828 7127.2708,-68.2637 7123.4145,-78.1317 7130.41,-78.3828\"/>\n",
"</g>\n",
"<!-- 164 -->\n",
"<g id=\"node165\" class=\"node\">\n",
"<title>164</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.749020\" stroke=\"#000000\" points=\"7582,-187 7415,-187 7415,-104 7582,-104 7582,-187\"/>\n",
"<text text-anchor=\"start\" x=\"7459\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #164</text>\n",
"<text text-anchor=\"start\" x=\"7455\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">honey ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"7454\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 5</text>\n",
"<text text-anchor=\"start\" x=\"7423\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 4, 1]</text>\n",
"<text text-anchor=\"start\" x=\"7445\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 163&#45;&gt;164 -->\n",
"<g id=\"edge164\" class=\"edge\">\n",
"<title>163&#45;&gt;164</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M7560.2736,-222.8796C7553.1556,-213.9633 7545.5661,-204.4565 7538.2308,-195.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"7540.8425,-192.9295 7531.8682,-187.2981 7535.3719,-197.2968 7540.8425,-192.9295\"/>\n",
"</g>\n",
"<!-- 167 -->\n",
"<g id=\"node168\" class=\"node\">\n",
"<title>167</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"7767,-187 7600,-187 7600,-104 7767,-104 7767,-187\"/>\n",
"<text text-anchor=\"start\" x=\"7644\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #167</text>\n",
"<text text-anchor=\"start\" x=\"7623\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">buttermilk ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"7639\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"7608\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 1, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"7627.5\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 163&#45;&gt;167 -->\n",
"<g id=\"edge167\" class=\"edge\">\n",
"<title>163&#45;&gt;167</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M7624.9776,-222.8796C7631.6529,-214.0534 7638.7658,-204.6485 7645.6496,-195.5466\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"7648.6474,-197.3852 7651.888,-187.2981 7643.0643,-193.1626 7648.6474,-197.3852\"/>\n",
"</g>\n",
"<!-- 165 -->\n",
"<g id=\"node166\" class=\"node\">\n",
"<title>165</title>\n",
"<polygon fill=\"#3c39e5\" stroke=\"#000000\" points=\"7397,-68 7230,-68 7230,0 7397,0 7397,-68\"/>\n",
"<text text-anchor=\"start\" x=\"7274\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #165</text>\n",
"<text text-anchor=\"start\" x=\"7269\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 4</text>\n",
"<text text-anchor=\"start\" x=\"7238\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 4, 0]</text>\n",
"<text text-anchor=\"start\" x=\"7260\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 164&#45;&gt;165 -->\n",
"<g id=\"edge165\" class=\"edge\">\n",
"<title>164&#45;&gt;165</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M7429.6128,-103.9815C7413.0571,-94.0034 7395.4199,-83.3733 7379.0222,-73.4904\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"7380.426,-70.25 7370.0546,-68.0856 7376.8126,-76.2453 7380.426,-70.25\"/>\n",
"</g>\n",
"<!-- 166 -->\n",
"<g id=\"node167\" class=\"node\">\n",
"<title>166</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"7582,-68 7415,-68 7415,0 7582,0 7582,-68\"/>\n",
"<text text-anchor=\"start\" x=\"7459\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #166</text>\n",
"<text text-anchor=\"start\" x=\"7454\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"7423\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"7456\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 164&#45;&gt;166 -->\n",
"<g id=\"edge166\" class=\"edge\">\n",
"<title>164&#45;&gt;166</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M7498.5,-103.9815C7498.5,-95.618 7498.5,-86.7965 7498.5,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"7502.0001,-78.2636 7498.5,-68.2637 7495.0001,-78.2637 7502.0001,-78.2636\"/>\n",
"</g>\n",
"<!-- 168 -->\n",
"<g id=\"node169\" class=\"node\">\n",
"<title>168</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"7767,-68 7600,-68 7600,0 7767,0 7767,-68\"/>\n",
"<text text-anchor=\"start\" x=\"7644\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #168</text>\n",
"<text text-anchor=\"start\" x=\"7639\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"7608\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"7627.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</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=\"M7683.5,-103.9815C7683.5,-95.618 7683.5,-86.7965 7683.5,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"7687.0001,-78.2636 7683.5,-68.2637 7680.0001,-78.2637 7687.0001,-78.2636\"/>\n",
"</g>\n",
"<!-- 169 -->\n",
"<g id=\"node170\" class=\"node\">\n",
"<title>169</title>\n",
"<polygon fill=\"#7be539\" stroke=\"#000000\" points=\"7952,-68 7785,-68 7785,0 7952,0 7952,-68\"/>\n",
"<text text-anchor=\"start\" x=\"7829\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #169</text>\n",
"<text text-anchor=\"start\" x=\"7824\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"7793\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 1, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"7817.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 167&#45;&gt;169 -->\n",
"<g id=\"edge169\" class=\"edge\">\n",
"<title>167&#45;&gt;169</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M7752.3872,-103.9815C7768.9429,-94.0034 7786.5801,-83.3733 7802.9778,-73.4904\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"7805.1874,-76.2453 7811.9454,-68.0856 7801.574,-70.25 7805.1874,-76.2453\"/>\n",
"</g>\n",
"<!-- 171 -->\n",
"<g id=\"node172\" class=\"node\">\n",
"<title>171</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.498039\" stroke=\"#000000\" points=\"8322,-306 8155,-306 8155,-223 8322,-223 8322,-306\"/>\n",
"<text text-anchor=\"start\" x=\"8199\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #171</text>\n",
"<text text-anchor=\"start\" x=\"8203.5\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">egg ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"8189.5\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 15</text>\n",
"<text text-anchor=\"start\" x=\"8163\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 3, 9, 3]</text>\n",
"<text text-anchor=\"start\" x=\"8185\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M8298.9731,-341.8796C8292.0049,-332.9633 8284.5753,-323.4565 8277.3944,-314.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8280.0812,-312.0221 8271.1657,-306.2981 8274.5657,-316.3326 8280.0812,-312.0221\"/>\n",
"</g>\n",
"<!-- 176 -->\n",
"<g id=\"node177\" class=\"node\">\n",
"<title>176</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.274510\" stroke=\"#000000\" points=\"8507,-306 8340,-306 8340,-223 8507,-223 8507,-306\"/>\n",
"<text text-anchor=\"start\" x=\"8384\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #176</text>\n",
"<text text-anchor=\"start\" x=\"8380\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">honey ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"8374.5\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 14</text>\n",
"<text text-anchor=\"start\" x=\"8348\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [6, 0, 2, 3, 3]</text>\n",
"<text text-anchor=\"start\" x=\"8367.5\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</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=\"M8363.6771,-341.8796C8370.5704,-332.9633 8377.9202,-323.4565 8385.0239,-314.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8387.8381,-316.3502 8391.1855,-306.2981 8382.3001,-312.0687 8387.8381,-316.3502\"/>\n",
"</g>\n",
"<!-- 172 -->\n",
"<g id=\"node173\" class=\"node\">\n",
"<title>172</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.600000\" stroke=\"#000000\" points=\"8137,-187 7970,-187 7970,-104 8137,-104 8137,-187\"/>\n",
"<text text-anchor=\"start\" x=\"8014\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #172</text>\n",
"<text text-anchor=\"start\" x=\"8015.5\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">corn ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"8004.5\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 13</text>\n",
"<text text-anchor=\"start\" x=\"7978\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 9, 3]</text>\n",
"<text text-anchor=\"start\" x=\"8000\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M8173.796,-222.8796C8158.5865,-213.0962 8142.2718,-202.6019 8126.7182,-192.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8128.4713,-189.5632 8118.1675,-187.0969 8124.6843,-195.4505 8128.4713,-189.5632\"/>\n",
"</g>\n",
"<!-- 175 -->\n",
"<g id=\"node176\" class=\"node\">\n",
"<title>175</title>\n",
"<polygon fill=\"#39e5c5\" stroke=\"#000000\" points=\"8322,-179.5 8155,-179.5 8155,-111.5 8322,-111.5 8322,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"8199\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #175</text>\n",
"<text text-anchor=\"start\" x=\"8194\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"8163\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 2, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"8178\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</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=\"M8238.5,-222.8796C8238.5,-212.2134 8238.5,-200.7021 8238.5,-189.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8242.0001,-189.8149 8238.5,-179.8149 8235.0001,-189.815 8242.0001,-189.8149\"/>\n",
"</g>\n",
"<!-- 173 -->\n",
"<g id=\"node174\" class=\"node\">\n",
"<title>173</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.698039\" stroke=\"#000000\" points=\"8137,-68 7970,-68 7970,0 8137,0 8137,-68\"/>\n",
"<text text-anchor=\"start\" x=\"8014\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #173</text>\n",
"<text text-anchor=\"start\" x=\"8004.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 12</text>\n",
"<text text-anchor=\"start\" x=\"7978\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 9, 2]</text>\n",
"<text text-anchor=\"start\" x=\"8000\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M8053.5,-103.9815C8053.5,-95.618 8053.5,-86.7965 8053.5,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8057.0001,-78.2636 8053.5,-68.2637 8050.0001,-78.2637 8057.0001,-78.2636\"/>\n",
"</g>\n",
"<!-- 174 -->\n",
"<g id=\"node175\" class=\"node\">\n",
"<title>174</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"8322,-68 8155,-68 8155,0 8322,0 8322,-68\"/>\n",
"<text text-anchor=\"start\" x=\"8199\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #174</text>\n",
"<text text-anchor=\"start\" x=\"8194\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"8163\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"8196\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</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=\"M8122.3872,-103.9815C8138.9429,-94.0034 8156.5801,-83.3733 8172.9778,-73.4904\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8175.1874,-76.2453 8181.9454,-68.0856 8171.574,-70.25 8175.1874,-76.2453\"/>\n",
"</g>\n",
"<!-- 177 -->\n",
"<g id=\"node178\" class=\"node\">\n",
"<title>177</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.333333\" stroke=\"#000000\" points=\"8507,-187 8340,-187 8340,-104 8507,-104 8507,-187\"/>\n",
"<text text-anchor=\"start\" x=\"8384\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #177</text>\n",
"<text text-anchor=\"start\" x=\"8363.5\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">mushroom ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"8374.5\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 12</text>\n",
"<text text-anchor=\"start\" x=\"8348\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [6, 0, 2, 1, 3]</text>\n",
"<text text-anchor=\"start\" x=\"8367.5\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 176&#45;&gt;177 -->\n",
"<g id=\"edge177\" class=\"edge\">\n",
"<title>176&#45;&gt;177</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8423.5,-222.8796C8423.5,-214.6838 8423.5,-205.9891 8423.5,-197.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8427.0001,-197.298 8423.5,-187.2981 8420.0001,-197.2981 8427.0001,-197.298\"/>\n",
"</g>\n",
"<!-- 180 -->\n",
"<g id=\"node181\" class=\"node\">\n",
"<title>180</title>\n",
"<polygon fill=\"#3c39e5\" stroke=\"#000000\" points=\"8692,-179.5 8525,-179.5 8525,-111.5 8692,-111.5 8692,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"8569\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #180</text>\n",
"<text text-anchor=\"start\" x=\"8564\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"8533\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 2, 0]</text>\n",
"<text text-anchor=\"start\" x=\"8555\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 176&#45;&gt;180 -->\n",
"<g id=\"edge180\" class=\"edge\">\n",
"<title>176&#45;&gt;180</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8488.204,-222.8796C8507.2696,-210.6158 8528.0719,-197.2348 8546.9346,-185.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8548.9347,-187.9766 8555.4516,-179.623 8545.1478,-182.0893 8548.9347,-187.9766\"/>\n",
"</g>\n",
"<!-- 178 -->\n",
"<g id=\"node179\" class=\"node\">\n",
"<title>178</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.498039\" stroke=\"#000000\" points=\"8507,-68 8340,-68 8340,0 8507,0 8507,-68\"/>\n",
"<text text-anchor=\"start\" x=\"8384\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #178</text>\n",
"<text text-anchor=\"start\" x=\"8374.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 10</text>\n",
"<text text-anchor=\"start\" x=\"8348\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [6, 0, 2, 1, 1]</text>\n",
"<text text-anchor=\"start\" x=\"8367.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 177&#45;&gt;178 -->\n",
"<g id=\"edge178\" class=\"edge\">\n",
"<title>177&#45;&gt;178</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8423.5,-103.9815C8423.5,-95.618 8423.5,-86.7965 8423.5,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8427.0001,-78.2636 8423.5,-68.2637 8420.0001,-78.2637 8427.0001,-78.2636\"/>\n",
"</g>\n",
"<!-- 179 -->\n",
"<g id=\"node180\" class=\"node\">\n",
"<title>179</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"8692,-68 8525,-68 8525,0 8692,0 8692,-68\"/>\n",
"<text text-anchor=\"start\" x=\"8569\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #179</text>\n",
"<text text-anchor=\"start\" x=\"8564\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"8533\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 2]</text>\n",
"<text text-anchor=\"start\" x=\"8566\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 177&#45;&gt;179 -->\n",
"<g id=\"edge179\" class=\"edge\">\n",
"<title>177&#45;&gt;179</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8492.3872,-103.9815C8508.9429,-94.0034 8526.5801,-83.3733 8542.9778,-73.4904\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8545.1874,-76.2453 8551.9454,-68.0856 8541.574,-70.25 8545.1874,-76.2453\"/>\n",
"</g>\n",
"<!-- 182 -->\n",
"<g id=\"node183\" class=\"node\">\n",
"<title>182</title>\n",
"<polygon fill=\"#e539c0\" fill-opacity=\"0.694118\" stroke=\"#000000\" points=\"8977.5,-425 8801.5,-425 8801.5,-342 8977.5,-342 8977.5,-425\"/>\n",
"<text text-anchor=\"start\" x=\"8850\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #182</text>\n",
"<text text-anchor=\"start\" x=\"8844\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">ginger ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"8840.5\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 16</text>\n",
"<text text-anchor=\"start\" x=\"8809.5\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 1, 0, 3, 12]</text>\n",
"<text text-anchor=\"start\" x=\"8847\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</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=\"M8890.8005,-460.8796C8890.6628,-452.6838 8890.5166,-443.9891 8890.374,-435.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8893.8701,-435.2378 8890.2025,-425.2981 8886.8711,-435.3555 8893.8701,-435.2378\"/>\n",
"</g>\n",
"<!-- 191 -->\n",
"<g id=\"node192\" class=\"node\">\n",
"<title>191</title>\n",
"<polygon fill=\"#3c39e5\" stroke=\"#000000\" points=\"9162,-417.5 8995,-417.5 8995,-349.5 9162,-349.5 9162,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"9039\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #191</text>\n",
"<text text-anchor=\"start\" x=\"9034\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 4</text>\n",
"<text text-anchor=\"start\" x=\"9003\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 4, 0]</text>\n",
"<text text-anchor=\"start\" x=\"9025\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 181&#45;&gt;191 -->\n",
"<g id=\"edge191\" class=\"edge\">\n",
"<title>181&#45;&gt;191</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8956.9035,-460.8796C8976.1752,-448.6158 8997.2024,-435.2348 9016.269,-423.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9018.3205,-425.9447 9024.8781,-417.623 9014.5624,-420.039 9018.3205,-425.9447\"/>\n",
"</g>\n",
"<!-- 183 -->\n",
"<g id=\"node184\" class=\"node\">\n",
"<title>183</title>\n",
"<polygon fill=\"#e539c0\" fill-opacity=\"0.909804\" stroke=\"#000000\" points=\"8977.5,-306 8801.5,-306 8801.5,-223 8977.5,-223 8977.5,-306\"/>\n",
"<text text-anchor=\"start\" x=\"8850\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #183</text>\n",
"<text text-anchor=\"start\" x=\"8844.5\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">potato ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"8840.5\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 12</text>\n",
"<text text-anchor=\"start\" x=\"8809.5\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 1, 11]</text>\n",
"<text text-anchor=\"start\" x=\"8847\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</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=\"M8889.5,-341.8796C8889.5,-333.6838 8889.5,-324.9891 8889.5,-316.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8893.0001,-316.298 8889.5,-306.2981 8886.0001,-316.2981 8893.0001,-316.298\"/>\n",
"</g>\n",
"<!-- 186 -->\n",
"<g id=\"node187\" class=\"node\">\n",
"<title>186</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.333333\" stroke=\"#000000\" points=\"9162,-306 8995,-306 8995,-223 9162,-223 9162,-306\"/>\n",
"<text text-anchor=\"start\" x=\"9039\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #186</text>\n",
"<text text-anchor=\"start\" x=\"9032.5\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">mango ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"9034\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 4</text>\n",
"<text text-anchor=\"start\" x=\"9003\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 1, 0, 2, 1]</text>\n",
"<text text-anchor=\"start\" x=\"9025\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 182&#45;&gt;186 -->\n",
"<g id=\"edge186\" class=\"edge\">\n",
"<title>182&#45;&gt;186</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8955.603,-341.8796C8971.1413,-332.0962 8987.8088,-321.6019 9003.6987,-311.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9005.8368,-314.3869 9012.4343,-306.0969 9002.1071,-308.4633 9005.8368,-314.3869\"/>\n",
"</g>\n",
"<!-- 184 -->\n",
"<g id=\"node185\" class=\"node\">\n",
"<title>184</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"8885.5,-179.5 8709.5,-179.5 8709.5,-111.5 8885.5,-111.5 8885.5,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"8758\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #184</text>\n",
"<text text-anchor=\"start\" x=\"8748.5\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 11</text>\n",
"<text text-anchor=\"start\" x=\"8717.5\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 11]</text>\n",
"<text text-anchor=\"start\" x=\"8755\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</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=\"M8857.3229,-222.8796C8848.5667,-211.5536 8839.0738,-199.2748 8830.2844,-187.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8832.9146,-185.5856 8824.0292,-179.8149 8827.3766,-189.8671 8832.9146,-185.5856\"/>\n",
"</g>\n",
"<!-- 185 -->\n",
"<g id=\"node186\" class=\"node\">\n",
"<title>185</title>\n",
"<polygon fill=\"#3c39e5\" stroke=\"#000000\" points=\"9070,-179.5 8903,-179.5 8903,-111.5 9070,-111.5 9070,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"8947\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #185</text>\n",
"<text text-anchor=\"start\" x=\"8942\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"8911\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"8933\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 183&#45;&gt;185 -->\n",
"<g id=\"edge185\" class=\"edge\">\n",
"<title>183&#45;&gt;185</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M8923.4259,-222.8796C8932.7476,-211.4436 8942.8612,-199.0363 8952.2036,-187.575\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"8954.9237,-189.7775 8958.529,-179.8149 8949.4979,-185.3548 8954.9237,-189.7775\"/>\n",
"</g>\n",
"<!-- 187 -->\n",
"<g id=\"node188\" class=\"node\">\n",
"<title>187</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.498039\" stroke=\"#000000\" points=\"9255,-187 9088,-187 9088,-104 9255,-104 9255,-187\"/>\n",
"<text text-anchor=\"start\" x=\"9132\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #187</text>\n",
"<text text-anchor=\"start\" x=\"9124.5\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">tomato ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"9127\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"9096\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 2, 1]</text>\n",
"<text text-anchor=\"start\" x=\"9118\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M9111.0269,-222.8796C9117.9951,-213.9633 9125.4247,-204.4565 9132.6056,-195.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9135.4343,-197.3326 9138.8343,-187.2981 9129.9188,-193.0221 9135.4343,-197.3326\"/>\n",
"</g>\n",
"<!-- 190 -->\n",
"<g id=\"node191\" class=\"node\">\n",
"<title>190</title>\n",
"<polygon fill=\"#7be539\" stroke=\"#000000\" points=\"9440,-179.5 9273,-179.5 9273,-111.5 9440,-111.5 9440,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"9317\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #190</text>\n",
"<text text-anchor=\"start\" x=\"9312\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"9281\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 1, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"9305.5\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 186&#45;&gt;190 -->\n",
"<g id=\"edge190\" class=\"edge\">\n",
"<title>186&#45;&gt;190</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9162.1524,-226.533C9164.964,-225.3312 9167.7524,-224.1505 9170.5,-223 9211.3827,-205.8813 9222.5828,-204.0361 9263.5,-187 9266.1779,-185.8851 9268.8945,-184.7426 9271.6338,-183.5807\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9273.1957,-186.7193 9281.0121,-179.5671 9270.4416,-180.2839 9273.1957,-186.7193\"/>\n",
"</g>\n",
"<!-- 188 -->\n",
"<g id=\"node189\" class=\"node\">\n",
"<title>188</title>\n",
"<polygon fill=\"#3c39e5\" stroke=\"#000000\" points=\"9162,-68 8995,-68 8995,0 9162,0 9162,-68\"/>\n",
"<text text-anchor=\"start\" x=\"9039\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #188</text>\n",
"<text text-anchor=\"start\" x=\"9034\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"9003\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 2, 0]</text>\n",
"<text text-anchor=\"start\" x=\"9025\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M9136.8702,-103.9815C9129.2811,-94.8828 9121.24,-85.242 9113.6314,-76.1199\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9116.1717,-73.7012 9107.0787,-68.2637 9110.7961,-78.1849 9116.1717,-73.7012\"/>\n",
"</g>\n",
"<!-- 189 -->\n",
"<g id=\"node190\" class=\"node\">\n",
"<title>189</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"9347,-68 9180,-68 9180,0 9347,0 9347,-68\"/>\n",
"<text text-anchor=\"start\" x=\"9224\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #189</text>\n",
"<text text-anchor=\"start\" x=\"9219\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"9188\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"9221\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 187&#45;&gt;189 -->\n",
"<g id=\"edge189\" class=\"edge\">\n",
"<title>187&#45;&gt;189</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9205.7574,-103.9815C9213.2649,-94.8828 9221.2196,-85.242 9228.7464,-76.1199\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9231.5639,-78.2045 9235.2286,-68.2637 9226.1646,-73.7495 9231.5639,-78.2045\"/>\n",
"</g>\n",
"<!-- 193 -->\n",
"<g id=\"node194\" class=\"node\">\n",
"<title>193</title>\n",
"<polygon fill=\"#3c39e5\" stroke=\"#000000\" points=\"9186.5,-536.5 9010.5,-536.5 9010.5,-468.5 9186.5,-468.5 9186.5,-536.5\"/>\n",
"<text text-anchor=\"start\" x=\"9059\" y=\"-521.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #193</text>\n",
"<text text-anchor=\"start\" x=\"9049.5\" y=\"-506.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 13</text>\n",
"<text text-anchor=\"start\" x=\"9018.5\" y=\"-491.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 13, 0]</text>\n",
"<text text-anchor=\"start\" x=\"9045\" y=\"-476.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 192&#45;&gt;193 -->\n",
"<g id=\"edge193\" class=\"edge\">\n",
"<title>192&#45;&gt;193</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9106.9532,-579.8796C9105.788,-569.2134 9104.5305,-557.7021 9103.3506,-546.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9106.8141,-546.3757 9102.2487,-536.8149 9099.8555,-547.1359 9106.8141,-546.3757\"/>\n",
"</g>\n",
"<!-- 194 -->\n",
"<g id=\"node195\" class=\"node\">\n",
"<title>194</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.333333\" stroke=\"#000000\" points=\"9371,-544 9204,-544 9204,-461 9371,-461 9371,-544\"/>\n",
"<text text-anchor=\"start\" x=\"9248\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #194</text>\n",
"<text text-anchor=\"start\" x=\"9240.5\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">pepper ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"9243\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 8</text>\n",
"<text text-anchor=\"start\" x=\"9212\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [4, 0, 2, 2, 0]</text>\n",
"<text text-anchor=\"start\" x=\"9231.5\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 192&#45;&gt;194 -->\n",
"<g id=\"edge194\" class=\"edge\">\n",
"<title>192&#45;&gt;194</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9173.0563,-579.8796C9187.3918,-570.1868 9202.7595,-559.7961 9217.4325,-549.8752\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9219.6548,-552.5976 9225.9785,-544.0969 9215.7339,-546.7987 9219.6548,-552.5976\"/>\n",
"</g>\n",
"<!-- 195 -->\n",
"<g id=\"node196\" class=\"node\">\n",
"<title>195</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"9347,-425 9180,-425 9180,-342 9347,-342 9347,-425\"/>\n",
"<text text-anchor=\"start\" x=\"9224\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #195</text>\n",
"<text text-anchor=\"start\" x=\"9205\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">soy_sauce ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"9219\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 4</text>\n",
"<text text-anchor=\"start\" x=\"9188\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 2, 2, 0]</text>\n",
"<text text-anchor=\"start\" x=\"9203\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 194&#45;&gt;195 -->\n",
"<g id=\"edge195\" class=\"edge\">\n",
"<title>194&#45;&gt;195</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9279.106,-460.8796C9277.4349,-452.5938 9275.6609,-443.798 9273.9312,-435.2216\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9277.3379,-434.4087 9271.9299,-425.2981 9270.476,-435.7927 9277.3379,-434.4087\"/>\n",
"</g>\n",
"<!-- 198 -->\n",
"<g id=\"node199\" class=\"node\">\n",
"<title>198</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"9532,-417.5 9365,-417.5 9365,-349.5 9532,-349.5 9532,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"9409\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #198</text>\n",
"<text text-anchor=\"start\" x=\"9404\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 4</text>\n",
"<text text-anchor=\"start\" x=\"9373\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [4, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"9392.5\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 194&#45;&gt;198 -->\n",
"<g id=\"edge198\" class=\"edge\">\n",
"<title>194&#45;&gt;198</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9343.81,-460.8796C9360.1032,-448.8368 9377.8539,-435.7167 9394.0325,-423.7586\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9396.3721,-426.3816 9402.3335,-417.623 9392.2114,-420.7524 9396.3721,-426.3816\"/>\n",
"</g>\n",
"<!-- 196 -->\n",
"<g id=\"node197\" class=\"node\">\n",
"<title>196</title>\n",
"<polygon fill=\"#39e5c5\" stroke=\"#000000\" points=\"9347,-298.5 9180,-298.5 9180,-230.5 9347,-230.5 9347,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"9224\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #196</text>\n",
"<text text-anchor=\"start\" x=\"9219\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"9188\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 2, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"9203\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 195&#45;&gt;196 -->\n",
"<g id=\"edge196\" class=\"edge\">\n",
"<title>195&#45;&gt;196</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9263.5,-341.8796C9263.5,-331.2134 9263.5,-319.7021 9263.5,-308.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9267.0001,-308.8149 9263.5,-298.8149 9260.0001,-308.815 9267.0001,-308.8149\"/>\n",
"</g>\n",
"<!-- 197 -->\n",
"<g id=\"node198\" class=\"node\">\n",
"<title>197</title>\n",
"<polygon fill=\"#3c39e5\" stroke=\"#000000\" points=\"9532,-298.5 9365,-298.5 9365,-230.5 9532,-230.5 9532,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"9409\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #197</text>\n",
"<text text-anchor=\"start\" x=\"9404\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"9373\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 2, 0]</text>\n",
"<text text-anchor=\"start\" x=\"9395\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 195&#45;&gt;197 -->\n",
"<g id=\"edge197\" class=\"edge\">\n",
"<title>195&#45;&gt;197</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9328.204,-341.8796C9347.2696,-329.6158 9368.0719,-316.2348 9386.9346,-304.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9388.9347,-306.9766 9395.4516,-298.623 9385.1478,-301.0893 9388.9347,-306.9766\"/>\n",
"</g>\n",
"<!-- 200 -->\n",
"<g id=\"node201\" class=\"node\">\n",
"<title>200</title>\n",
"<polygon fill=\"#3c39e5\" stroke=\"#000000\" points=\"9406.5,-655.5 9230.5,-655.5 9230.5,-587.5 9406.5,-587.5 9406.5,-655.5\"/>\n",
"<text text-anchor=\"start\" x=\"9279\" y=\"-640.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #200</text>\n",
"<text text-anchor=\"start\" x=\"9269.5\" y=\"-625.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 20</text>\n",
"<text text-anchor=\"start\" x=\"9238.5\" y=\"-610.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 20, 0]</text>\n",
"<text text-anchor=\"start\" x=\"9265\" y=\"-595.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 199&#45;&gt;200 -->\n",
"<g id=\"edge200\" class=\"edge\">\n",
"<title>199&#45;&gt;200</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9326.303,-698.8796C9325.2274,-688.2134 9324.0666,-676.7021 9322.9775,-665.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9326.4461,-665.4133 9321.9603,-655.8149 9319.4814,-666.1157 9326.4461,-665.4133\"/>\n",
"</g>\n",
"<!-- 201 -->\n",
"<g id=\"node202\" class=\"node\">\n",
"<title>201</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"9591,-655.5 9424,-655.5 9424,-587.5 9591,-587.5 9591,-655.5\"/>\n",
"<text text-anchor=\"start\" x=\"9468\" y=\"-640.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #201</text>\n",
"<text text-anchor=\"start\" x=\"9463\" y=\"-625.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"9432\" y=\"-610.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"9451.5\" y=\"-595.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 199&#45;&gt;201 -->\n",
"<g id=\"edge201\" class=\"edge\">\n",
"<title>199&#45;&gt;201</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9392.406,-698.8796C9410.4828,-686.7263 9430.1914,-673.4759 9448.1087,-661.4297\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9450.3996,-664.1071 9456.7456,-655.623 9446.4939,-658.2979 9450.3996,-664.1071\"/>\n",
"</g>\n",
"<!-- 204 -->\n",
"<g id=\"node205\" class=\"node\">\n",
"<title>204</title>\n",
"<polygon fill=\"#7be539\" stroke=\"#000000\" points=\"9896.5,-893.5 9720.5,-893.5 9720.5,-825.5 9896.5,-825.5 9896.5,-893.5\"/>\n",
"<text text-anchor=\"start\" x=\"9769\" y=\"-878.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #204</text>\n",
"<text text-anchor=\"start\" x=\"9759.5\" y=\"-863.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 22</text>\n",
"<text text-anchor=\"start\" x=\"9728.5\" y=\"-848.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 22, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"9757.5\" y=\"-833.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 203&#45;&gt;204 -->\n",
"<g id=\"edge204\" class=\"edge\">\n",
"<title>203&#45;&gt;204</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9865.0716,-936.8796C9856.7913,-925.5536 9847.8143,-913.2748 9839.5026,-901.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9842.3147,-899.822 9833.5874,-893.8149 9836.6639,-903.9533 9842.3147,-899.822\"/>\n",
"</g>\n",
"<!-- 205 -->\n",
"<g id=\"node206\" class=\"node\">\n",
"<title>205</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"10081,-893.5 9914,-893.5 9914,-825.5 10081,-825.5 10081,-893.5\"/>\n",
"<text text-anchor=\"start\" x=\"9958\" y=\"-878.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #205</text>\n",
"<text text-anchor=\"start\" x=\"9953\" y=\"-863.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"9922\" y=\"-848.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"9955\" y=\"-833.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 203&#45;&gt;205 -->\n",
"<g id=\"edge205\" class=\"edge\">\n",
"<title>203&#45;&gt;205</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9931.1747,-936.8796C9940.9769,-925.4436 9951.6118,-913.0363 9961.4357,-901.575\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9964.2367,-903.6853 9968.0872,-893.8149 9958.9218,-899.1297 9964.2367,-903.6853\"/>\n",
"</g>\n",
"<!-- 207 -->\n",
"<g id=\"node208\" class=\"node\">\n",
"<title>207</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.807843\" stroke=\"#000000\" points=\"10293.5,-1020 10099.5,-1020 10099.5,-937 10293.5,-937 10293.5,-1020\"/>\n",
"<text text-anchor=\"start\" x=\"10157\" y=\"-1004.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #207</text>\n",
"<text text-anchor=\"start\" x=\"10158\" y=\"-989.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">mint ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"10143\" y=\"-974.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 202</text>\n",
"<text text-anchor=\"start\" x=\"10107.5\" y=\"-959.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [20, 1, 6, 167, 8]</text>\n",
"<text text-anchor=\"start\" x=\"10143\" y=\"-944.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M10196.5,-1055.8796C10196.5,-1047.6838 10196.5,-1038.9891 10196.5,-1030.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10200.0001,-1030.298 10196.5,-1020.2981 10193.0001,-1030.2981 10200.0001,-1030.298\"/>\n",
"</g>\n",
"<!-- 240 -->\n",
"<g id=\"node241\" class=\"node\">\n",
"<title>240</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"10478,-1012.5 10311,-1012.5 10311,-944.5 10478,-944.5 10478,-1012.5\"/>\n",
"<text text-anchor=\"start\" x=\"10355\" y=\"-997.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #240</text>\n",
"<text text-anchor=\"start\" x=\"10350\" y=\"-982.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 5</text>\n",
"<text text-anchor=\"start\" x=\"10319\" y=\"-967.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 5]</text>\n",
"<text text-anchor=\"start\" x=\"10352\" y=\"-952.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 206&#45;&gt;240 -->\n",
"<g id=\"edge240\" class=\"edge\">\n",
"<title>206&#45;&gt;240</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10265.7508,-1055.8796C10286.248,-1043.5606 10308.6208,-1030.1143 10328.8811,-1017.9376\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10330.9557,-1020.7743 10337.7239,-1012.623 10327.3498,-1014.7745 10330.9557,-1020.7743\"/>\n",
"</g>\n",
"<!-- 208 -->\n",
"<g id=\"node209\" class=\"node\">\n",
"<title>208</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.831373\" stroke=\"#000000\" points=\"10293.5,-901 10099.5,-901 10099.5,-818 10293.5,-818 10293.5,-901\"/>\n",
"<text text-anchor=\"start\" x=\"10157\" y=\"-885.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #208</text>\n",
"<text text-anchor=\"start\" x=\"10137.5\" y=\"-870.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">peanut_oil ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"10143\" y=\"-855.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 197</text>\n",
"<text text-anchor=\"start\" x=\"10107.5\" y=\"-840.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [20, 0, 5, 167, 5]</text>\n",
"<text text-anchor=\"start\" x=\"10143\" y=\"-825.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M10196.5,-936.8796C10196.5,-928.6838 10196.5,-919.9891 10196.5,-911.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10200.0001,-911.298 10196.5,-901.2981 10193.0001,-911.2981 10200.0001,-911.298\"/>\n",
"</g>\n",
"<!-- 235 -->\n",
"<g id=\"node236\" class=\"node\">\n",
"<title>235</title>\n",
"<polygon fill=\"#e539c0\" fill-opacity=\"0.498039\" stroke=\"#000000\" points=\"10505,-901 10338,-901 10338,-818 10505,-818 10505,-901\"/>\n",
"<text text-anchor=\"start\" x=\"10382\" y=\"-885.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #235</text>\n",
"<text text-anchor=\"start\" x=\"10360.5\" y=\"-870.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">sesame_oil ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"10377\" y=\"-855.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 5</text>\n",
"<text text-anchor=\"start\" x=\"10346\" y=\"-840.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 1, 1, 0, 3]</text>\n",
"<text text-anchor=\"start\" x=\"10379\" y=\"-825.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 207&#45;&gt;235 -->\n",
"<g id=\"edge235\" class=\"edge\">\n",
"<title>207&#45;&gt;235</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10275.1941,-936.8796C10294.1202,-926.8697 10314.4536,-916.1156 10333.763,-905.9031\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10335.6469,-908.8662 10342.8504,-901.0969 10332.3742,-902.6783 10335.6469,-908.8662\"/>\n",
"</g>\n",
"<!-- 209 -->\n",
"<g id=\"node210\" class=\"node\">\n",
"<title>209</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.847059\" stroke=\"#000000\" points=\"10135.5,-782 9941.5,-782 9941.5,-699 10135.5,-699 10135.5,-782\"/>\n",
"<text text-anchor=\"start\" x=\"9999\" y=\"-766.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #209</text>\n",
"<text text-anchor=\"start\" x=\"9988.5\" y=\"-751.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">chicken ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"9985\" y=\"-736.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 194</text>\n",
"<text text-anchor=\"start\" x=\"9949.5\" y=\"-721.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [17, 0, 5, 167, 5]</text>\n",
"<text text-anchor=\"start\" x=\"9985\" y=\"-706.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M10141.2393,-817.8796C10128.4901,-808.2774 10114.8317,-797.9903 10101.7709,-788.1534\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10103.8231,-785.3174 10093.7295,-782.0969 10099.6117,-790.9089 10103.8231,-785.3174\"/>\n",
"</g>\n",
"<!-- 234 -->\n",
"<g id=\"node235\" class=\"node\">\n",
"<title>234</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"10320,-774.5 10153,-774.5 10153,-706.5 10320,-706.5 10320,-774.5\"/>\n",
"<text text-anchor=\"start\" x=\"10197\" y=\"-759.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #234</text>\n",
"<text text-anchor=\"start\" x=\"10192\" y=\"-744.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"10161\" y=\"-729.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"10180.5\" y=\"-714.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 208&#45;&gt;234 -->\n",
"<g id=\"edge234\" class=\"edge\">\n",
"<title>208&#45;&gt;234</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10210.4901,-817.8796C10214.1123,-807.1034 10218.0245,-795.4647 10221.6873,-784.5677\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10225.0969,-785.409 10224.9656,-774.8149 10218.4617,-783.1786 10225.0969,-785.409\"/>\n",
"</g>\n",
"<!-- 210 -->\n",
"<g id=\"node211\" class=\"node\">\n",
"<title>210</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.882353\" stroke=\"#000000\" points=\"10135.5,-663 9941.5,-663 9941.5,-580 10135.5,-580 10135.5,-663\"/>\n",
"<text text-anchor=\"start\" x=\"9999\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #210</text>\n",
"<text text-anchor=\"start\" x=\"9961\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">roasted_peanut ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"9985\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 183</text>\n",
"<text text-anchor=\"start\" x=\"9949.5\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [14, 0, 3, 163, 3]</text>\n",
"<text text-anchor=\"start\" x=\"9985\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M10038.5,-698.8796C10038.5,-690.6838 10038.5,-681.9891 10038.5,-673.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10042.0001,-673.298 10038.5,-663.2981 10035.0001,-673.2981 10042.0001,-673.298\"/>\n",
"</g>\n",
"<!-- 223 -->\n",
"<g id=\"node224\" class=\"node\">\n",
"<title>223</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.125490\" stroke=\"#000000\" points=\"10483,-663 10316,-663 10316,-580 10483,-580 10483,-663\"/>\n",
"<text text-anchor=\"start\" x=\"10360\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #223</text>\n",
"<text text-anchor=\"start\" x=\"10364.5\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">fish ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"10350.5\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 11</text>\n",
"<text text-anchor=\"start\" x=\"10324\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 2, 4, 2]</text>\n",
"<text text-anchor=\"start\" x=\"10346\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 209&#45;&gt;223 -->\n",
"<g id=\"edge223\" class=\"edge\">\n",
"<title>209&#45;&gt;223</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10135.6449,-701.7787C10138.2865,-700.8307 10140.9085,-699.9027 10143.5,-699 10196.8337,-680.4227 10257.2716,-662.0049 10306.026,-647.788\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10307.3035,-651.0617 10315.9301,-644.9108 10305.3506,-644.3396 10307.3035,-651.0617\"/>\n",
"</g>\n",
"<!-- 211 -->\n",
"<g id=\"node212\" class=\"node\">\n",
"<title>211</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.898039\" stroke=\"#000000\" points=\"9940.5,-544 9746.5,-544 9746.5,-461 9940.5,-461 9940.5,-544\"/>\n",
"<text text-anchor=\"start\" x=\"9804\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #211</text>\n",
"<text text-anchor=\"start\" x=\"9793\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">coconut ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"9790\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 180</text>\n",
"<text text-anchor=\"start\" x=\"9754.5\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [14, 0, 2, 163, 1]</text>\n",
"<text text-anchor=\"start\" x=\"9790\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M9970.2985,-579.8796C9954.1184,-570.0056 9936.7517,-559.4075 9920.2208,-549.3193\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9922.0223,-546.3185 9911.663,-544.0969 9918.3759,-552.2938 9922.0223,-546.3185\"/>\n",
"</g>\n",
"<!-- 220 -->\n",
"<g id=\"node221\" class=\"node\">\n",
"<title>220</title>\n",
"<polygon fill=\"#e539c0\" fill-opacity=\"0.498039\" stroke=\"#000000\" points=\"10125,-544 9958,-544 9958,-461 10125,-461 10125,-544\"/>\n",
"<text text-anchor=\"start\" x=\"10002\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #220</text>\n",
"<text text-anchor=\"start\" x=\"9983\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">lime_juice ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"9997\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"9966\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 2]</text>\n",
"<text text-anchor=\"start\" x=\"9999\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</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=\"M10039.5493,-579.8796C10039.7559,-571.6838 10039.9751,-562.9891 10040.189,-554.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10043.693,-554.3831 10040.4463,-544.2981 10036.6953,-554.2067 10043.693,-554.3831\"/>\n",
"</g>\n",
"<!-- 212 -->\n",
"<g id=\"node213\" class=\"node\">\n",
"<title>212</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.901961\" stroke=\"#000000\" points=\"9743.5,-425 9549.5,-425 9549.5,-342 9743.5,-342 9743.5,-425\"/>\n",
"<text text-anchor=\"start\" x=\"9607\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #212</text>\n",
"<text text-anchor=\"start\" x=\"9581\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">katsuobushi ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"9593\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 179</text>\n",
"<text text-anchor=\"start\" x=\"9557.5\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [14, 0, 2, 163, 0]</text>\n",
"<text text-anchor=\"start\" x=\"9593\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M9774.599,-460.8796C9758.253,-451.0056 9740.7081,-440.4075 9724.0076,-430.3193\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9725.7314,-427.2716 9715.3621,-425.0969 9722.112,-433.2633 9725.7314,-427.2716\"/>\n",
"</g>\n",
"<!-- 219 -->\n",
"<g id=\"node220\" class=\"node\">\n",
"<title>219</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"9928,-417.5 9761,-417.5 9761,-349.5 9928,-349.5 9928,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"9805\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #219</text>\n",
"<text text-anchor=\"start\" x=\"9800\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"9769\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"9802\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</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=\"M9843.8498,-460.8796C9843.9394,-450.2134 9844.0361,-438.7021 9844.1269,-427.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9847.6274,-427.844 9844.2116,-417.8149 9840.6276,-427.7851 9847.6274,-427.844\"/>\n",
"</g>\n",
"<!-- 213 -->\n",
"<g id=\"node214\" class=\"node\">\n",
"<title>213</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.909804\" stroke=\"#000000\" points=\"9743.5,-306 9549.5,-306 9549.5,-223 9743.5,-223 9743.5,-306\"/>\n",
"<text text-anchor=\"start\" x=\"9607\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #213</text>\n",
"<text text-anchor=\"start\" x=\"9587.5\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">star_anise ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"9593\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 178</text>\n",
"<text text-anchor=\"start\" x=\"9557.5\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [14, 0, 1, 163, 0]</text>\n",
"<text text-anchor=\"start\" x=\"9593\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M9646.5,-341.8796C9646.5,-333.6838 9646.5,-324.9891 9646.5,-316.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9650.0001,-316.298 9646.5,-306.2981 9643.0001,-316.2981 9650.0001,-316.298\"/>\n",
"</g>\n",
"<!-- 218 -->\n",
"<g id=\"node219\" class=\"node\">\n",
"<title>218</title>\n",
"<polygon fill=\"#39e5c5\" stroke=\"#000000\" points=\"9928,-298.5 9761,-298.5 9761,-230.5 9928,-230.5 9928,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"9805\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #218</text>\n",
"<text text-anchor=\"start\" x=\"9800\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"9769\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"9784\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 212&#45;&gt;218 -->\n",
"<g id=\"edge218\" class=\"edge\">\n",
"<title>212&#45;&gt;218</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9715.7508,-341.8796C9736.248,-329.5606 9758.6208,-316.1143 9778.8811,-303.9376\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9780.9557,-306.7743 9787.7239,-298.623 9777.3498,-300.7745 9780.9557,-306.7743\"/>\n",
"</g>\n",
"<!-- 214 -->\n",
"<g id=\"node215\" class=\"node\">\n",
"<title>214</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.913725\" stroke=\"#000000\" points=\"9697.5,-187 9503.5,-187 9503.5,-104 9697.5,-104 9697.5,-187\"/>\n",
"<text text-anchor=\"start\" x=\"9561\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #214</text>\n",
"<text text-anchor=\"start\" x=\"9555\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">sherry ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"9547\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 177</text>\n",
"<text text-anchor=\"start\" x=\"9511.5\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [13, 0, 1, 163, 0]</text>\n",
"<text text-anchor=\"start\" x=\"9547\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M9630.4114,-222.8796C9627.1389,-214.4136 9623.6605,-205.4153 9620.2771,-196.6626\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9623.5274,-195.3635 9616.6572,-187.2981 9616.9983,-197.8874 9623.5274,-195.3635\"/>\n",
"</g>\n",
"<!-- 217 -->\n",
"<g id=\"node218\" class=\"node\">\n",
"<title>217</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"9882,-179.5 9715,-179.5 9715,-111.5 9882,-111.5 9882,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"9759\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #217</text>\n",
"<text text-anchor=\"start\" x=\"9754\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"9723\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"9742.5\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 213&#45;&gt;217 -->\n",
"<g id=\"edge217\" class=\"edge\">\n",
"<title>213&#45;&gt;217</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9699.6622,-222.8796C9714.8313,-211.0038 9731.3384,-198.0804 9746.4409,-186.2568\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9748.9528,-188.7353 9754.6692,-179.8149 9744.6376,-183.2236 9748.9528,-188.7353\"/>\n",
"</g>\n",
"<!-- 215 -->\n",
"<g id=\"node216\" class=\"node\">\n",
"<title>215</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.921569\" stroke=\"#000000\" points=\"9628.5,-68 9434.5,-68 9434.5,0 9628.5,0 9628.5,-68\"/>\n",
"<text text-anchor=\"start\" x=\"9492\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #215</text>\n",
"<text text-anchor=\"start\" x=\"9478\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 176</text>\n",
"<text text-anchor=\"start\" x=\"9442.5\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [12, 0, 1, 163, 0]</text>\n",
"<text text-anchor=\"start\" x=\"9478\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 214&#45;&gt;215 -->\n",
"<g id=\"edge215\" class=\"edge\">\n",
"<title>214&#45;&gt;215</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9574.8069,-103.9815C9569.3469,-95.1585 9563.5716,-85.8258 9558.0793,-76.9506\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9560.942,-74.9254 9552.7035,-68.2637 9554.9896,-78.609 9560.942,-74.9254\"/>\n",
"</g>\n",
"<!-- 216 -->\n",
"<g id=\"node217\" class=\"node\">\n",
"<title>216</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"9813,-68 9646,-68 9646,0 9813,0 9813,-68\"/>\n",
"<text text-anchor=\"start\" x=\"9690\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #216</text>\n",
"<text text-anchor=\"start\" x=\"9685\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"9654\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"9673.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 214&#45;&gt;216 -->\n",
"<g id=\"edge216\" class=\"edge\">\n",
"<title>214&#45;&gt;216</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M9648.5348,-103.9815C9659.487,-94.5151 9671.1179,-84.462 9682.0456,-75.0168\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"9684.5818,-77.4509 9689.8586,-68.2637 9680.0043,-72.155 9684.5818,-77.4509\"/>\n",
"</g>\n",
"<!-- 221 -->\n",
"<g id=\"node222\" class=\"node\">\n",
"<title>221</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"10113,-417.5 9946,-417.5 9946,-349.5 10113,-349.5 10113,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"9990\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #221</text>\n",
"<text text-anchor=\"start\" x=\"9985\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"9954\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 2]</text>\n",
"<text text-anchor=\"start\" x=\"9987\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 220&#45;&gt;221 -->\n",
"<g id=\"edge221\" class=\"edge\">\n",
"<title>220&#45;&gt;221</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10037.303,-460.8796C10036.2274,-450.2134 10035.0666,-438.7021 10033.9775,-427.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10037.4461,-427.4133 10032.9603,-417.8149 10030.4814,-428.1157 10037.4461,-427.4133\"/>\n",
"</g>\n",
"<!-- 222 -->\n",
"<g id=\"node223\" class=\"node\">\n",
"<title>222</title>\n",
"<polygon fill=\"#39e5c5\" stroke=\"#000000\" points=\"10298,-417.5 10131,-417.5 10131,-349.5 10298,-349.5 10298,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"10175\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #222</text>\n",
"<text text-anchor=\"start\" x=\"10170\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"10139\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"10154\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 220&#45;&gt;222 -->\n",
"<g id=\"edge222\" class=\"edge\">\n",
"<title>220&#45;&gt;222</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10102.007,-460.8796C10119.6752,-448.7263 10138.9385,-435.4759 10156.4509,-423.4297\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10158.6371,-426.1741 10164.8926,-417.623 10154.6699,-420.4067 10158.6371,-426.1741\"/>\n",
"</g>\n",
"<!-- 224 -->\n",
"<g id=\"node225\" class=\"node\">\n",
"<title>224</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.164706\" stroke=\"#000000\" points=\"10483,-544 10316,-544 10316,-461 10483,-461 10483,-544\"/>\n",
"<text text-anchor=\"start\" x=\"10360\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #224</text>\n",
"<text text-anchor=\"start\" x=\"10350.5\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">vinegar ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"10355\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 9</text>\n",
"<text text-anchor=\"start\" x=\"10324\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 2, 4, 0]</text>\n",
"<text text-anchor=\"start\" x=\"10346\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 223&#45;&gt;224 -->\n",
"<g id=\"edge224\" class=\"edge\">\n",
"<title>223&#45;&gt;224</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10399.5,-579.8796C10399.5,-571.6838 10399.5,-562.9891 10399.5,-554.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10403.0001,-554.298 10399.5,-544.2981 10396.0001,-554.2981 10403.0001,-554.298\"/>\n",
"</g>\n",
"<!-- 233 -->\n",
"<g id=\"node234\" class=\"node\">\n",
"<title>233</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"10668,-536.5 10501,-536.5 10501,-468.5 10668,-468.5 10668,-536.5\"/>\n",
"<text text-anchor=\"start\" x=\"10545\" y=\"-521.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #233</text>\n",
"<text text-anchor=\"start\" x=\"10540\" y=\"-506.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"10509\" y=\"-491.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 2]</text>\n",
"<text text-anchor=\"start\" x=\"10542\" y=\"-476.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 223&#45;&gt;233 -->\n",
"<g id=\"edge233\" class=\"edge\">\n",
"<title>223&#45;&gt;233</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10464.204,-579.8796C10483.2696,-567.6158 10504.0719,-554.2348 10522.9346,-542.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10524.9347,-544.9766 10531.4516,-536.623 10521.1478,-539.0893 10524.9347,-544.9766\"/>\n",
"</g>\n",
"<!-- 225 -->\n",
"<g id=\"node226\" class=\"node\">\n",
"<title>225</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.333333\" stroke=\"#000000\" points=\"10483,-425 10316,-425 10316,-342 10483,-342 10483,-425\"/>\n",
"<text text-anchor=\"start\" x=\"10360\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #225</text>\n",
"<text text-anchor=\"start\" x=\"10330\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">vegetable_oil ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"10355\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 5</text>\n",
"<text text-anchor=\"start\" x=\"10324\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 2, 3, 0]</text>\n",
"<text text-anchor=\"start\" x=\"10346\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M10399.5,-460.8796C10399.5,-452.6838 10399.5,-443.9891 10399.5,-435.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10403.0001,-435.298 10399.5,-425.2981 10396.0001,-435.2981 10403.0001,-435.298\"/>\n",
"</g>\n",
"<!-- 230 -->\n",
"<g id=\"node231\" class=\"node\">\n",
"<title>230</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.666667\" stroke=\"#000000\" points=\"10668,-425 10501,-425 10501,-342 10668,-342 10668,-425\"/>\n",
"<text text-anchor=\"start\" x=\"10545\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #230</text>\n",
"<text text-anchor=\"start\" x=\"10514\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">black_pepper ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"10540\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 4</text>\n",
"<text text-anchor=\"start\" x=\"10509\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"10528.5\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</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=\"M10464.204,-460.8796C10479.4135,-451.0962 10495.7282,-440.6019 10511.2818,-430.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10513.3157,-433.4505 10519.8325,-425.0969 10509.5287,-427.5632 10513.3157,-433.4505\"/>\n",
"</g>\n",
"<!-- 226 -->\n",
"<g id=\"node227\" class=\"node\">\n",
"<title>226</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.666667\" stroke=\"#000000\" points=\"10298,-306 10131,-306 10131,-223 10298,-223 10298,-306\"/>\n",
"<text text-anchor=\"start\" x=\"10175\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #226</text>\n",
"<text text-anchor=\"start\" x=\"10145.5\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">sesame_seed ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"10170\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 4</text>\n",
"<text text-anchor=\"start\" x=\"10139\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 3, 0]</text>\n",
"<text text-anchor=\"start\" x=\"10161\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M10334.796,-341.8796C10319.5865,-332.0962 10303.2718,-321.6019 10287.7182,-311.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10289.4713,-308.5632 10279.1675,-306.0969 10285.6843,-314.4505 10289.4713,-308.5632\"/>\n",
"</g>\n",
"<!-- 229 -->\n",
"<g id=\"node230\" class=\"node\">\n",
"<title>229</title>\n",
"<polygon fill=\"#39e5c5\" stroke=\"#000000\" points=\"10483,-298.5 10316,-298.5 10316,-230.5 10483,-230.5 10483,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"10360\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #229</text>\n",
"<text text-anchor=\"start\" x=\"10355\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"10324\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"10339\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</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=\"M10399.5,-341.8796C10399.5,-331.2134 10399.5,-319.7021 10399.5,-308.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10403.0001,-308.8149 10399.5,-298.8149 10396.0001,-308.815 10403.0001,-308.8149\"/>\n",
"</g>\n",
"<!-- 227 -->\n",
"<g id=\"node228\" class=\"node\">\n",
"<title>227</title>\n",
"<polygon fill=\"#3c39e5\" stroke=\"#000000\" points=\"10206,-179.5 10039,-179.5 10039,-111.5 10206,-111.5 10206,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"10083\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #227</text>\n",
"<text text-anchor=\"start\" x=\"10078\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"10047\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 3, 0]</text>\n",
"<text text-anchor=\"start\" x=\"10069\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M10182.3229,-222.8796C10173.5667,-211.5536 10164.0738,-199.2748 10155.2844,-187.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10157.9146,-185.5856 10149.0292,-179.8149 10152.3766,-189.8671 10157.9146,-185.5856\"/>\n",
"</g>\n",
"<!-- 228 -->\n",
"<g id=\"node229\" class=\"node\">\n",
"<title>228</title>\n",
"<polygon fill=\"#39e5c5\" stroke=\"#000000\" points=\"10391,-179.5 10224,-179.5 10224,-111.5 10391,-111.5 10391,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"10268\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #228</text>\n",
"<text text-anchor=\"start\" x=\"10263\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"10232\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"10247\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</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=\"M10247.0269,-222.8796C10255.8783,-211.5536 10265.4743,-199.2748 10274.3593,-187.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10277.2824,-189.8494 10280.6824,-179.8149 10271.7669,-185.539 10277.2824,-189.8494\"/>\n",
"</g>\n",
"<!-- 231 -->\n",
"<g id=\"node232\" class=\"node\">\n",
"<title>231</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"10668,-298.5 10501,-298.5 10501,-230.5 10668,-230.5 10668,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"10545\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #231</text>\n",
"<text text-anchor=\"start\" x=\"10540\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"10509\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"10528.5\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 230&#45;&gt;231 -->\n",
"<g id=\"edge231\" class=\"edge\">\n",
"<title>230&#45;&gt;231</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10584.5,-341.8796C10584.5,-331.2134 10584.5,-319.7021 10584.5,-308.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10588.0001,-308.8149 10584.5,-298.8149 10581.0001,-308.815 10588.0001,-308.8149\"/>\n",
"</g>\n",
"<!-- 232 -->\n",
"<g id=\"node233\" class=\"node\">\n",
"<title>232</title>\n",
"<polygon fill=\"#3c39e5\" stroke=\"#000000\" points=\"10853,-298.5 10686,-298.5 10686,-230.5 10853,-230.5 10853,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"10730\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #232</text>\n",
"<text text-anchor=\"start\" x=\"10725\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"10694\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"10716\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 230&#45;&gt;232 -->\n",
"<g id=\"edge232\" class=\"edge\">\n",
"<title>230&#45;&gt;232</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10649.204,-341.8796C10668.2696,-329.6158 10689.0719,-316.2348 10707.9346,-304.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10709.9347,-306.9766 10716.4516,-298.623 10706.1478,-301.0893 10709.9347,-306.9766\"/>\n",
"</g>\n",
"<!-- 236 -->\n",
"<g id=\"node237\" class=\"node\">\n",
"<title>236</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"10505,-774.5 10338,-774.5 10338,-706.5 10505,-706.5 10505,-774.5\"/>\n",
"<text text-anchor=\"start\" x=\"10382\" y=\"-759.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #236</text>\n",
"<text text-anchor=\"start\" x=\"10377\" y=\"-744.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"10346\" y=\"-729.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 3]</text>\n",
"<text text-anchor=\"start\" x=\"10379\" y=\"-714.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 235&#45;&gt;236 -->\n",
"<g id=\"edge236\" class=\"edge\">\n",
"<title>235&#45;&gt;236</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10421.5,-817.8796C10421.5,-807.2134 10421.5,-795.7021 10421.5,-784.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10425.0001,-784.8149 10421.5,-774.8149 10418.0001,-784.815 10425.0001,-784.8149\"/>\n",
"</g>\n",
"<!-- 237 -->\n",
"<g id=\"node238\" class=\"node\">\n",
"<title>237</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"10690,-782 10523,-782 10523,-699 10690,-699 10690,-782\"/>\n",
"<text text-anchor=\"start\" x=\"10567\" y=\"-766.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #237</text>\n",
"<text text-anchor=\"start\" x=\"10557.5\" y=\"-751.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">vinegar ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"10562\" y=\"-736.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"10531\" y=\"-721.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 1, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"10555.5\" y=\"-706.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 235&#45;&gt;237 -->\n",
"<g id=\"edge237\" class=\"edge\">\n",
"<title>235&#45;&gt;237</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10486.204,-817.8796C10501.4135,-808.0962 10517.7282,-797.6019 10533.2818,-787.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10535.3157,-790.4505 10541.8325,-782.0969 10531.5287,-784.5632 10535.3157,-790.4505\"/>\n",
"</g>\n",
"<!-- 238 -->\n",
"<g id=\"node239\" class=\"node\">\n",
"<title>238</title>\n",
"<polygon fill=\"#7be539\" stroke=\"#000000\" points=\"10679,-655.5 10512,-655.5 10512,-587.5 10679,-587.5 10679,-655.5\"/>\n",
"<text text-anchor=\"start\" x=\"10556\" y=\"-640.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #238</text>\n",
"<text text-anchor=\"start\" x=\"10551\" y=\"-625.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"10520\" y=\"-610.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 1, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"10544.5\" y=\"-595.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</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=\"M10602.6527,-698.8796C10601.6668,-688.2134 10600.6027,-676.7021 10599.6043,-665.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10603.0776,-665.4503 10598.672,-655.8149 10596.1074,-666.0947 10603.0776,-665.4503\"/>\n",
"</g>\n",
"<!-- 239 -->\n",
"<g id=\"node240\" class=\"node\">\n",
"<title>239</title>\n",
"<polygon fill=\"#39e5c5\" stroke=\"#000000\" points=\"10864,-655.5 10697,-655.5 10697,-587.5 10864,-587.5 10864,-655.5\"/>\n",
"<text text-anchor=\"start\" x=\"10741\" y=\"-640.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #239</text>\n",
"<text text-anchor=\"start\" x=\"10736\" y=\"-625.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"10705\" y=\"-610.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"10720\" y=\"-595.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 237&#45;&gt;239 -->\n",
"<g id=\"edge239\" class=\"edge\">\n",
"<title>237&#45;&gt;239</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M10667.3568,-698.8796C10685.1271,-686.7263 10704.5017,-673.4759 10722.1153,-661.4297\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"10724.3274,-664.1572 10730.6058,-655.623 10720.3757,-658.3792 10724.3274,-664.1572\"/>\n",
"</g>\n",
"<!-- 242 -->\n",
"<g id=\"node243\" class=\"node\">\n",
"<title>242</title>\n",
"<polygon fill=\"#7be539\" fill-opacity=\"0.231373\" stroke=\"#000000\" points=\"13202.5,-1258 13008.5,-1258 13008.5,-1175 13202.5,-1175 13202.5,-1258\"/>\n",
"<text text-anchor=\"start\" x=\"13066\" y=\"-1242.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #242</text>\n",
"<text text-anchor=\"start\" x=\"13047\" y=\"-1227.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">soy_sauce ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"13052\" y=\"-1212.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 108</text>\n",
"<text text-anchor=\"start\" x=\"13016.5\" y=\"-1197.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [34, 51, 6, 0, 17]</text>\n",
"<text text-anchor=\"start\" x=\"13054.5\" y=\"-1182.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 241&#45;&gt;242 -->\n",
"<g id=\"edge242\" class=\"edge\">\n",
"<title>241&#45;&gt;242</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M13519.4832,-1312.907C13431.7882,-1292.4849 13302.9258,-1262.4759 13212.3201,-1241.3759\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13213.1053,-1237.9652 13202.5721,-1239.1058 13211.5176,-1244.7828 13213.1053,-1237.9652\"/>\n",
"</g>\n",
"<!-- 305 -->\n",
"<g id=\"node306\" class=\"node\">\n",
"<title>305</title>\n",
"<polygon fill=\"#e539c0\" fill-opacity=\"0.819608\" stroke=\"#000000\" points=\"14237.5,-1258 14061.5,-1258 14061.5,-1175 14237.5,-1175 14237.5,-1258\"/>\n",
"<text text-anchor=\"start\" x=\"14110\" y=\"-1242.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #305</text>\n",
"<text text-anchor=\"start\" x=\"14088.5\" y=\"-1227.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">sesame_oil ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"14100.5\" y=\"-1212.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 54</text>\n",
"<text text-anchor=\"start\" x=\"14069.5\" y=\"-1197.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [4, 2, 2, 1, 45]</text>\n",
"<text text-anchor=\"start\" x=\"14107\" y=\"-1182.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 241&#45;&gt;305 -->\n",
"<g id=\"edge305\" class=\"edge\">\n",
"<title>241&#45;&gt;305</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M13713.6407,-1313.8119C13809.4862,-1292.413 13955.2341,-1259.8727 14051.4082,-1238.4004\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14052.4311,-1241.7583 14061.4281,-1236.1633 14050.9057,-1234.9265 14052.4311,-1241.7583\"/>\n",
"</g>\n",
"<!-- 243 -->\n",
"<g id=\"node244\" class=\"node\">\n",
"<title>243</title>\n",
"<polygon fill=\"#7be539\" fill-opacity=\"0.650980\" stroke=\"#000000\" points=\"12603.5,-1139 12409.5,-1139 12409.5,-1056 12603.5,-1056 12603.5,-1139\"/>\n",
"<text text-anchor=\"start\" x=\"12467\" y=\"-1123.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #243</text>\n",
"<text text-anchor=\"start\" x=\"12445.5\" y=\"-1108.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">sesame_oil ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"12457.5\" y=\"-1093.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 73</text>\n",
"<text text-anchor=\"start\" x=\"12417.5\" y=\"-1078.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [10, 51, 2, 0, 10]</text>\n",
"<text text-anchor=\"start\" x=\"12455.5\" y=\"-1063.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 242&#45;&gt;243 -->\n",
"<g id=\"edge243\" class=\"edge\">\n",
"<title>242&#45;&gt;243</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M13008.2611,-1197.1821C12900.0405,-1175.6825 12725.6825,-1141.0438 12613.6213,-1118.7812\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12614.139,-1115.3157 12603.6487,-1116.8 12612.775,-1122.1815 12614.139,-1115.3157\"/>\n",
"</g>\n",
"<!-- 278 -->\n",
"<g id=\"node279\" class=\"node\">\n",
"<title>278</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.607843\" stroke=\"#000000\" points=\"13193.5,-1139 13017.5,-1139 13017.5,-1056 13193.5,-1056 13193.5,-1139\"/>\n",
"<text text-anchor=\"start\" x=\"13066\" y=\"-1123.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #278</text>\n",
"<text text-anchor=\"start\" x=\"13056\" y=\"-1108.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">scallion ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"13056.5\" y=\"-1093.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 35</text>\n",
"<text text-anchor=\"start\" x=\"13025.5\" y=\"-1078.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [24, 0, 4, 0, 7]</text>\n",
"<text text-anchor=\"start\" x=\"13049.5\" y=\"-1063.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 242&#45;&gt;278 -->\n",
"<g id=\"edge278\" class=\"edge\">\n",
"<title>242&#45;&gt;278</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M13105.5,-1174.8796C13105.5,-1166.6838 13105.5,-1157.9891 13105.5,-1149.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13109.0001,-1149.298 13105.5,-1139.2981 13102.0001,-1149.2981 13109.0001,-1149.298\"/>\n",
"</g>\n",
"<!-- 244 -->\n",
"<g id=\"node245\" class=\"node\">\n",
"<title>244</title>\n",
"<polygon fill=\"#7be539\" fill-opacity=\"0.717647\" stroke=\"#000000\" points=\"12309,-1020 12124,-1020 12124,-937 12309,-937 12309,-1020\"/>\n",
"<text text-anchor=\"start\" x=\"12177\" y=\"-1004.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #244</text>\n",
"<text text-anchor=\"start\" x=\"12177\" y=\"-989.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">bean ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"12167.5\" y=\"-974.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 67</text>\n",
"<text text-anchor=\"start\" x=\"12132\" y=\"-959.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [5, 51, 1, 0, 10]</text>\n",
"<text text-anchor=\"start\" x=\"12165.5\" y=\"-944.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</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=\"M12409.1275,-1057.5437C12380.0258,-1045.602 12348.0447,-1032.4787 12318.646,-1020.4151\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12319.7787,-1017.0967 12309.1986,-1016.5384 12317.1213,-1023.5727 12319.7787,-1017.0967\"/>\n",
"</g>\n",
"<!-- 275 -->\n",
"<g id=\"node276\" class=\"node\">\n",
"<title>275</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.800000\" stroke=\"#000000\" points=\"12590,-1020 12423,-1020 12423,-937 12590,-937 12590,-1020\"/>\n",
"<text text-anchor=\"start\" x=\"12467\" y=\"-1004.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #275</text>\n",
"<text text-anchor=\"start\" x=\"12433\" y=\"-989.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">chicken_broth ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"12462\" y=\"-974.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 6</text>\n",
"<text text-anchor=\"start\" x=\"12431\" y=\"-959.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [5, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"12450.5\" y=\"-944.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 243&#45;&gt;275 -->\n",
"<g id=\"edge275\" class=\"edge\">\n",
"<title>243&#45;&gt;275</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M12506.5,-1055.8796C12506.5,-1047.6838 12506.5,-1038.9891 12506.5,-1030.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12510.0001,-1030.298 12506.5,-1020.2981 12503.0001,-1030.2981 12510.0001,-1030.298\"/>\n",
"</g>\n",
"<!-- 245 -->\n",
"<g id=\"node246\" class=\"node\">\n",
"<title>245</title>\n",
"<polygon fill=\"#7be539\" fill-opacity=\"0.803922\" stroke=\"#000000\" points=\"12049.5,-901 11873.5,-901 11873.5,-818 12049.5,-818 12049.5,-901\"/>\n",
"<text text-anchor=\"start\" x=\"11922\" y=\"-885.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #245</text>\n",
"<text text-anchor=\"start\" x=\"11898\" y=\"-870.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">lemongrass ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"11912.5\" y=\"-855.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 58</text>\n",
"<text text-anchor=\"start\" x=\"11881.5\" y=\"-840.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 48, 1, 0, 7]</text>\n",
"<text text-anchor=\"start\" x=\"11910.5\" y=\"-825.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</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=\"M12127.3134,-936.8796C12105.223,-926.5707 12081.4411,-915.4725 12058.9775,-904.9895\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12060.3175,-901.7525 12049.7755,-900.6952 12057.3572,-908.0958 12060.3175,-901.7525\"/>\n",
"</g>\n",
"<!-- 266 -->\n",
"<g id=\"node267\" class=\"node\">\n",
"<title>266</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"12300,-901 12133,-901 12133,-818 12300,-818 12300,-901\"/>\n",
"<text text-anchor=\"start\" x=\"12177\" y=\"-885.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #266</text>\n",
"<text text-anchor=\"start\" x=\"12172.5\" y=\"-870.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">carrot ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"12172\" y=\"-855.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 9</text>\n",
"<text text-anchor=\"start\" x=\"12141\" y=\"-840.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 3, 0, 0, 3]</text>\n",
"<text text-anchor=\"start\" x=\"12160.5\" y=\"-825.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 244&#45;&gt;266 -->\n",
"<g id=\"edge266\" class=\"edge\">\n",
"<title>244&#45;&gt;266</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M12216.5,-936.8796C12216.5,-928.6838 12216.5,-919.9891 12216.5,-911.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12220.0001,-911.298 12216.5,-901.2981 12213.0001,-911.2981 12220.0001,-911.298\"/>\n",
"</g>\n",
"<!-- 246 -->\n",
"<g id=\"node247\" class=\"node\">\n",
"<title>246</title>\n",
"<polygon fill=\"#7be539\" fill-opacity=\"0.843137\" stroke=\"#000000\" points=\"11772.5,-782 11596.5,-782 11596.5,-699 11772.5,-699 11772.5,-782\"/>\n",
"<text text-anchor=\"start\" x=\"11645\" y=\"-766.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #246</text>\n",
"<text text-anchor=\"start\" x=\"11648.5\" y=\"-751.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">rice ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"11635.5\" y=\"-736.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 56</text>\n",
"<text text-anchor=\"start\" x=\"11604.5\" y=\"-721.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 48, 1, 0, 5]</text>\n",
"<text text-anchor=\"start\" x=\"11633.5\" y=\"-706.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</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=\"M11873.4749,-821.6841C11844.4567,-809.2178 11812.0139,-795.2803 11782.3111,-782.5199\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11783.341,-779.1531 11772.7714,-778.4216 11780.5779,-785.5847 11783.341,-779.1531\"/>\n",
"</g>\n",
"<!-- 265 -->\n",
"<g id=\"node266\" class=\"node\">\n",
"<title>265</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"12045,-774.5 11878,-774.5 11878,-706.5 12045,-706.5 12045,-774.5\"/>\n",
"<text text-anchor=\"start\" x=\"11922\" y=\"-759.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #265</text>\n",
"<text text-anchor=\"start\" x=\"11917\" y=\"-744.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"11886\" y=\"-729.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 2]</text>\n",
"<text text-anchor=\"start\" x=\"11919\" y=\"-714.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 245&#45;&gt;265 -->\n",
"<g id=\"edge265\" class=\"edge\">\n",
"<title>245&#45;&gt;265</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11961.5,-817.8796C11961.5,-807.2134 11961.5,-795.7021 11961.5,-784.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11965.0001,-784.8149 11961.5,-774.8149 11958.0001,-784.815 11965.0001,-784.8149\"/>\n",
"</g>\n",
"<!-- 247 -->\n",
"<g id=\"node248\" class=\"node\">\n",
"<title>247</title>\n",
"<polygon fill=\"#7be539\" fill-opacity=\"0.952941\" stroke=\"#000000\" points=\"11506.5,-663 11330.5,-663 11330.5,-580 11506.5,-580 11506.5,-663\"/>\n",
"<text text-anchor=\"start\" x=\"11379\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #247</text>\n",
"<text text-anchor=\"start\" x=\"11379.5\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">wine ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"11369.5\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 45</text>\n",
"<text text-anchor=\"start\" x=\"11338.5\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 43, 0, 0, 2]</text>\n",
"<text text-anchor=\"start\" x=\"11367.5\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</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=\"M11596.2953,-701.04C11570.592,-689.5412 11542.3614,-676.9117 11516.1137,-665.1693\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11517.4772,-661.945 11506.9197,-661.0562 11514.6186,-668.3348 11517.4772,-661.945\"/>\n",
"</g>\n",
"<!-- 254 -->\n",
"<g id=\"node255\" class=\"node\">\n",
"<title>254</title>\n",
"<polygon fill=\"#7be539\" fill-opacity=\"0.250980\" stroke=\"#000000\" points=\"11768,-663 11601,-663 11601,-580 11768,-580 11768,-663\"/>\n",
"<text text-anchor=\"start\" x=\"11645\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #254</text>\n",
"<text text-anchor=\"start\" x=\"11635\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">scallion ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"11635.5\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 11</text>\n",
"<text text-anchor=\"start\" x=\"11609\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 5, 1, 0, 3]</text>\n",
"<text text-anchor=\"start\" x=\"11633.5\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 246&#45;&gt;254 -->\n",
"<g id=\"edge254\" class=\"edge\">\n",
"<title>246&#45;&gt;254</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11684.5,-698.8796C11684.5,-690.6838 11684.5,-681.9891 11684.5,-673.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11688.0001,-673.298 11684.5,-663.2981 11681.0001,-673.2981 11688.0001,-673.298\"/>\n",
"</g>\n",
"<!-- 248 -->\n",
"<g id=\"node249\" class=\"node\">\n",
"<title>248</title>\n",
"<polygon fill=\"#7be539\" fill-opacity=\"0.976471\" stroke=\"#000000\" points=\"11227.5,-544 11051.5,-544 11051.5,-461 11227.5,-461 11227.5,-544\"/>\n",
"<text text-anchor=\"start\" x=\"11100\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #248</text>\n",
"<text text-anchor=\"start\" x=\"11090\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">scallion ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"11090.5\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 44</text>\n",
"<text text-anchor=\"start\" x=\"11059.5\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 43, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"11088.5\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</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=\"M11330.2227,-583.8477C11300.5636,-571.1974 11267.3172,-557.017 11236.9919,-544.0826\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11238.253,-540.8154 11227.6816,-540.1115 11235.5067,-547.2542 11238.253,-540.8154\"/>\n",
"</g>\n",
"<!-- 253 -->\n",
"<g id=\"node254\" class=\"node\">\n",
"<title>253</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"11502,-536.5 11335,-536.5 11335,-468.5 11502,-468.5 11502,-536.5\"/>\n",
"<text text-anchor=\"start\" x=\"11379\" y=\"-521.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #253</text>\n",
"<text text-anchor=\"start\" x=\"11374\" y=\"-506.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"11343\" y=\"-491.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"11376\" y=\"-476.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 247&#45;&gt;253 -->\n",
"<g id=\"edge253\" class=\"edge\">\n",
"<title>247&#45;&gt;253</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11418.5,-579.8796C11418.5,-569.2134 11418.5,-557.7021 11418.5,-546.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11422.0001,-546.8149 11418.5,-536.8149 11415.0001,-546.815 11422.0001,-546.8149\"/>\n",
"</g>\n",
"<!-- 249 -->\n",
"<g id=\"node250\" class=\"node\">\n",
"<title>249</title>\n",
"<polygon fill=\"#7be539\" stroke=\"#000000\" points=\"11038.5,-417.5 10862.5,-417.5 10862.5,-349.5 11038.5,-349.5 11038.5,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"10911\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #249</text>\n",
"<text text-anchor=\"start\" x=\"10901.5\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 39</text>\n",
"<text text-anchor=\"start\" x=\"10870.5\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 39, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"10899.5\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</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=\"M11073.397,-460.8796C11053.9192,-448.6158 11032.6671,-435.2348 11013.3965,-423.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11015.0226,-419.9894 11004.6954,-417.623 11011.2929,-425.913 11015.0226,-419.9894\"/>\n",
"</g>\n",
"<!-- 250 -->\n",
"<g id=\"node251\" class=\"node\">\n",
"<title>250</title>\n",
"<polygon fill=\"#7be539\" fill-opacity=\"0.749020\" stroke=\"#000000\" points=\"11223,-425 11056,-425 11056,-342 11223,-342 11223,-425\"/>\n",
"<text text-anchor=\"start\" x=\"11100\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #250</text>\n",
"<text text-anchor=\"start\" x=\"11097\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">bread ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"11095\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 5</text>\n",
"<text text-anchor=\"start\" x=\"11064\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 4, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"11088.5\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 248&#45;&gt;250 -->\n",
"<g id=\"edge250\" class=\"edge\">\n",
"<title>248&#45;&gt;250</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11139.5,-460.8796C11139.5,-452.6838 11139.5,-443.9891 11139.5,-435.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11143.0001,-435.298 11139.5,-425.2981 11136.0001,-435.2981 11143.0001,-435.298\"/>\n",
"</g>\n",
"<!-- 251 -->\n",
"<g id=\"node252\" class=\"node\">\n",
"<title>251</title>\n",
"<polygon fill=\"#7be539\" stroke=\"#000000\" points=\"11038,-298.5 10871,-298.5 10871,-230.5 11038,-230.5 11038,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"10915\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #251</text>\n",
"<text text-anchor=\"start\" x=\"10910\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 4</text>\n",
"<text text-anchor=\"start\" x=\"10879\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 4, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"10903.5\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 250&#45;&gt;251 -->\n",
"<g id=\"edge251\" class=\"edge\">\n",
"<title>250&#45;&gt;251</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11074.796,-341.8796C11055.7304,-329.6158 11034.9281,-316.2348 11016.0654,-304.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11017.8522,-301.0893 11007.5484,-298.623 11014.0653,-306.9766 11017.8522,-301.0893\"/>\n",
"</g>\n",
"<!-- 252 -->\n",
"<g id=\"node253\" class=\"node\">\n",
"<title>252</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"11223,-298.5 11056,-298.5 11056,-230.5 11223,-230.5 11223,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"11100\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #252</text>\n",
"<text text-anchor=\"start\" x=\"11095\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"11064\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"11097\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 250&#45;&gt;252 -->\n",
"<g id=\"edge252\" class=\"edge\">\n",
"<title>250&#45;&gt;252</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11139.5,-341.8796C11139.5,-331.2134 11139.5,-319.7021 11139.5,-308.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11143.0001,-308.8149 11139.5,-298.8149 11136.0001,-308.815 11143.0001,-308.8149\"/>\n",
"</g>\n",
"<!-- 255 -->\n",
"<g id=\"node256\" class=\"node\">\n",
"<title>255</title>\n",
"<polygon fill=\"#7be539\" fill-opacity=\"0.572549\" stroke=\"#000000\" points=\"11732,-544 11565,-544 11565,-461 11732,-461 11732,-544\"/>\n",
"<text text-anchor=\"start\" x=\"11609\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #255</text>\n",
"<text text-anchor=\"start\" x=\"11602.5\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">shallot ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"11604\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 8</text>\n",
"<text text-anchor=\"start\" x=\"11573\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 5, 1, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"11597.5\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 254&#45;&gt;255 -->\n",
"<g id=\"edge255\" class=\"edge\">\n",
"<title>254&#45;&gt;255</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11671.9089,-579.8796C11669.3751,-571.5037 11666.6835,-562.6067 11664.0623,-553.942\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11667.3905,-552.8562 11661.1448,-544.2981 11660.6904,-554.8832 11667.3905,-552.8562\"/>\n",
"</g>\n",
"<!-- 262 -->\n",
"<g id=\"node263\" class=\"node\">\n",
"<title>262</title>\n",
"<polygon fill=\"#e539c0\" fill-opacity=\"0.498039\" stroke=\"#000000\" points=\"11917,-544 11750,-544 11750,-461 11917,-461 11917,-544\"/>\n",
"<text text-anchor=\"start\" x=\"11794\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #262</text>\n",
"<text text-anchor=\"start\" x=\"11786.5\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">scallop ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"11789\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"11758\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 2]</text>\n",
"<text text-anchor=\"start\" x=\"11791\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 254&#45;&gt;262 -->\n",
"<g id=\"edge262\" class=\"edge\">\n",
"<title>254&#45;&gt;262</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11736.613,-579.8796C11748.5225,-570.368 11761.2734,-560.1843 11773.4844,-550.432\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11775.7868,-553.0724 11781.4165,-544.0969 11771.4184,-547.6027 11775.7868,-553.0724\"/>\n",
"</g>\n",
"<!-- 256 -->\n",
"<g id=\"node257\" class=\"node\">\n",
"<title>256</title>\n",
"<polygon fill=\"#7be539\" fill-opacity=\"0.800000\" stroke=\"#000000\" points=\"11547,-425 11380,-425 11380,-342 11547,-342 11547,-425\"/>\n",
"<text text-anchor=\"start\" x=\"11424\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #256</text>\n",
"<text text-anchor=\"start\" x=\"11390\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">chicken_broth ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"11419\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 6</text>\n",
"<text text-anchor=\"start\" x=\"11388\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 5, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"11412.5\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 255&#45;&gt;256 -->\n",
"<g id=\"edge256\" class=\"edge\">\n",
"<title>255&#45;&gt;256</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11583.796,-460.8796C11568.5865,-451.0962 11552.2718,-440.6019 11536.7182,-430.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11538.4713,-427.5632 11528.1675,-425.0969 11534.6843,-433.4505 11538.4713,-427.5632\"/>\n",
"</g>\n",
"<!-- 259 -->\n",
"<g id=\"node260\" class=\"node\">\n",
"<title>259</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"11732,-425 11565,-425 11565,-342 11732,-342 11732,-425\"/>\n",
"<text text-anchor=\"start\" x=\"11609\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #259</text>\n",
"<text text-anchor=\"start\" x=\"11607\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">onion ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"11604\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"11573\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"11588\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 255&#45;&gt;259 -->\n",
"<g id=\"edge259\" class=\"edge\">\n",
"<title>255&#45;&gt;259</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11648.5,-460.8796C11648.5,-452.6838 11648.5,-443.9891 11648.5,-435.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11652.0001,-435.298 11648.5,-425.2981 11645.0001,-435.2981 11652.0001,-435.298\"/>\n",
"</g>\n",
"<!-- 257 -->\n",
"<g id=\"node258\" class=\"node\">\n",
"<title>257</title>\n",
"<polygon fill=\"#7be539\" stroke=\"#000000\" points=\"11408,-298.5 11241,-298.5 11241,-230.5 11408,-230.5 11408,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"11285\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #257</text>\n",
"<text text-anchor=\"start\" x=\"11280\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 5</text>\n",
"<text text-anchor=\"start\" x=\"11249\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 5, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"11273.5\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 256&#45;&gt;257 -->\n",
"<g id=\"edge257\" class=\"edge\">\n",
"<title>256&#45;&gt;257</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11414.8845,-341.8796C11401.1413,-330.1138 11386.1969,-317.3197 11372.4907,-305.5855\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11374.4548,-302.6596 11364.5822,-298.8149 11369.9024,-307.9771 11374.4548,-302.6596\"/>\n",
"</g>\n",
"<!-- 258 -->\n",
"<g id=\"node259\" class=\"node\">\n",
"<title>258</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"11593,-298.5 11426,-298.5 11426,-230.5 11593,-230.5 11593,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"11470\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #258</text>\n",
"<text text-anchor=\"start\" x=\"11465\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"11434\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"11453.5\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 256&#45;&gt;258 -->\n",
"<g id=\"edge258\" class=\"edge\">\n",
"<title>256&#45;&gt;258</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11479.5886,-341.8796C11483.7966,-330.9935 11488.345,-319.227 11492.5943,-308.2344\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11495.8944,-309.4043 11496.2354,-298.8149 11489.3652,-306.8804 11495.8944,-309.4043\"/>\n",
"</g>\n",
"<!-- 260 -->\n",
"<g id=\"node261\" class=\"node\">\n",
"<title>260</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"11778,-298.5 11611,-298.5 11611,-230.5 11778,-230.5 11778,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"11655\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #260</text>\n",
"<text text-anchor=\"start\" x=\"11650\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"11619\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"11652\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 259&#45;&gt;260 -->\n",
"<g id=\"edge260\" class=\"edge\">\n",
"<title>259&#45;&gt;260</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11664.5886,-341.8796C11668.7966,-330.9935 11673.345,-319.227 11677.5943,-308.2344\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11680.8944,-309.4043 11681.2354,-298.8149 11674.3652,-306.8804 11680.8944,-309.4043\"/>\n",
"</g>\n",
"<!-- 261 -->\n",
"<g id=\"node262\" class=\"node\">\n",
"<title>261</title>\n",
"<polygon fill=\"#39e5c5\" stroke=\"#000000\" points=\"11963,-298.5 11796,-298.5 11796,-230.5 11963,-230.5 11963,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"11840\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #261</text>\n",
"<text text-anchor=\"start\" x=\"11835\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"11804\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"11819\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 259&#45;&gt;261 -->\n",
"<g id=\"edge261\" class=\"edge\">\n",
"<title>259&#45;&gt;261</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11729.2926,-341.8796C11753.6349,-329.3396 11780.2447,-315.6315 11804.2141,-303.2836\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11805.9743,-306.3141 11813.2612,-298.623 11802.7685,-300.0912 11805.9743,-306.3141\"/>\n",
"</g>\n",
"<!-- 263 -->\n",
"<g id=\"node264\" class=\"node\">\n",
"<title>263</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"11917,-417.5 11750,-417.5 11750,-349.5 11917,-349.5 11917,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"11794\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #263</text>\n",
"<text text-anchor=\"start\" x=\"11789\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"11758\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 2]</text>\n",
"<text text-anchor=\"start\" x=\"11791\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</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=\"M11833.5,-460.8796C11833.5,-450.2134 11833.5,-438.7021 11833.5,-427.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11837.0001,-427.8149 11833.5,-417.8149 11830.0001,-427.815 11837.0001,-427.8149\"/>\n",
"</g>\n",
"<!-- 264 -->\n",
"<g id=\"node265\" class=\"node\">\n",
"<title>264</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"12102,-417.5 11935,-417.5 11935,-349.5 12102,-349.5 12102,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"11979\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #264</text>\n",
"<text text-anchor=\"start\" x=\"11974\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"11943\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"11962.5\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 262&#45;&gt;264 -->\n",
"<g id=\"edge264\" class=\"edge\">\n",
"<title>262&#45;&gt;264</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M11898.204,-460.8796C11917.2696,-448.6158 11938.0719,-435.2348 11956.9346,-423.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"11958.9347,-425.9766 11965.4516,-417.623 11955.1478,-420.0893 11958.9347,-425.9766\"/>\n",
"</g>\n",
"<!-- 267 -->\n",
"<g id=\"node268\" class=\"node\">\n",
"<title>267</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"12276,-782 12109,-782 12109,-699 12276,-699 12276,-782\"/>\n",
"<text text-anchor=\"start\" x=\"12153\" y=\"-766.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #267</text>\n",
"<text text-anchor=\"start\" x=\"12156.5\" y=\"-751.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">rice ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"12148\" y=\"-736.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 7</text>\n",
"<text text-anchor=\"start\" x=\"12117\" y=\"-721.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 1, 0, 0, 3]</text>\n",
"<text text-anchor=\"start\" x=\"12136.5\" y=\"-706.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</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=\"M12208.106,-817.8796C12206.4349,-809.5938 12204.6609,-800.798 12202.9312,-792.2216\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12206.3379,-791.4087 12200.9299,-782.2981 12199.476,-792.7927 12206.3379,-791.4087\"/>\n",
"</g>\n",
"<!-- 274 -->\n",
"<g id=\"node275\" class=\"node\">\n",
"<title>274</title>\n",
"<polygon fill=\"#7be539\" stroke=\"#000000\" points=\"12461,-774.5 12294,-774.5 12294,-706.5 12461,-706.5 12461,-774.5\"/>\n",
"<text text-anchor=\"start\" x=\"12338\" y=\"-759.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #274</text>\n",
"<text text-anchor=\"start\" x=\"12333\" y=\"-744.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"12302\" y=\"-729.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 2, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"12326.5\" y=\"-714.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 266&#45;&gt;274 -->\n",
"<g id=\"edge274\" class=\"edge\">\n",
"<title>266&#45;&gt;274</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M12272.81,-817.8796C12289.1032,-805.8368 12306.8539,-792.7167 12323.0325,-780.7586\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12325.3721,-783.3816 12331.3335,-774.623 12321.2114,-777.7524 12325.3721,-783.3816\"/>\n",
"</g>\n",
"<!-- 268 -->\n",
"<g id=\"node269\" class=\"node\">\n",
"<title>268</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.498039\" stroke=\"#000000\" points=\"12126,-663 11959,-663 11959,-580 12126,-580 12126,-663\"/>\n",
"<text text-anchor=\"start\" x=\"12003\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #268</text>\n",
"<text text-anchor=\"start\" x=\"11973\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">vegetable_oil ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"11998\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 5</text>\n",
"<text text-anchor=\"start\" x=\"11967\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 1, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"11986.5\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</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=\"M12140.0373,-698.8796C12128.0479,-689.368 12115.2113,-679.1843 12102.9184,-669.432\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12104.9425,-666.5701 12094.9331,-663.0969 12100.5919,-672.054 12104.9425,-666.5701\"/>\n",
"</g>\n",
"<!-- 273 -->\n",
"<g id=\"node274\" class=\"node\">\n",
"<title>273</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"12311,-655.5 12144,-655.5 12144,-587.5 12311,-587.5 12311,-655.5\"/>\n",
"<text text-anchor=\"start\" x=\"12188\" y=\"-640.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #273</text>\n",
"<text text-anchor=\"start\" x=\"12183\" y=\"-625.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"12152\" y=\"-610.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 2]</text>\n",
"<text text-anchor=\"start\" x=\"12185\" y=\"-595.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 267&#45;&gt;273 -->\n",
"<g id=\"edge273\" class=\"edge\">\n",
"<title>267&#45;&gt;273</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M12204.7413,-698.8796C12207.9108,-688.1034 12211.3339,-676.4647 12214.5389,-665.5677\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12217.9434,-666.3962 12217.4074,-655.8149 12211.2279,-664.421 12217.9434,-666.3962\"/>\n",
"</g>\n",
"<!-- 269 -->\n",
"<g id=\"node270\" class=\"node\">\n",
"<title>269</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"12102,-536.5 11935,-536.5 11935,-468.5 12102,-468.5 12102,-536.5\"/>\n",
"<text text-anchor=\"start\" x=\"11979\" y=\"-521.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #269</text>\n",
"<text text-anchor=\"start\" x=\"11974\" y=\"-506.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"11943\" y=\"-491.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"11962.5\" y=\"-476.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</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=\"M12034.106,-579.8796C12031.9548,-569.2134 12029.6332,-557.7021 12027.4549,-546.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12030.8287,-545.9256 12025.4207,-536.8149 12023.9668,-547.3095 12030.8287,-545.9256\"/>\n",
"</g>\n",
"<!-- 270 -->\n",
"<g id=\"node271\" class=\"node\">\n",
"<title>270</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"12287,-544 12120,-544 12120,-461 12287,-461 12287,-544\"/>\n",
"<text text-anchor=\"start\" x=\"12164\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #270</text>\n",
"<text text-anchor=\"start\" x=\"12156.5\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">squash ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"12159\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"12128\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 1, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"12152.5\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 268&#45;&gt;270 -->\n",
"<g id=\"edge270\" class=\"edge\">\n",
"<title>268&#45;&gt;270</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M12098.81,-579.8796C12111.8012,-570.2774 12125.719,-559.9903 12139.0277,-550.1534\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12141.2604,-552.8555 12147.2218,-544.0969 12137.0996,-547.2263 12141.2604,-552.8555\"/>\n",
"</g>\n",
"<!-- 271 -->\n",
"<g id=\"node272\" class=\"node\">\n",
"<title>271</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"12287,-417.5 12120,-417.5 12120,-349.5 12287,-349.5 12287,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"12164\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #271</text>\n",
"<text text-anchor=\"start\" x=\"12159\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"12128\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"12161\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</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=\"M12203.5,-460.8796C12203.5,-450.2134 12203.5,-438.7021 12203.5,-427.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12207.0001,-427.8149 12203.5,-417.8149 12200.0001,-427.815 12207.0001,-427.8149\"/>\n",
"</g>\n",
"<!-- 272 -->\n",
"<g id=\"node273\" class=\"node\">\n",
"<title>272</title>\n",
"<polygon fill=\"#7be539\" stroke=\"#000000\" points=\"12472,-417.5 12305,-417.5 12305,-349.5 12472,-349.5 12472,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"12349\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #272</text>\n",
"<text text-anchor=\"start\" x=\"12344\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"12313\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 1, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"12337.5\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 270&#45;&gt;272 -->\n",
"<g id=\"edge272\" class=\"edge\">\n",
"<title>270&#45;&gt;272</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M12268.204,-460.8796C12287.2696,-448.6158 12308.0719,-435.2348 12326.9346,-423.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12328.9347,-425.9766 12335.4516,-417.623 12325.1478,-420.0893 12328.9347,-425.9766\"/>\n",
"</g>\n",
"<!-- 276 -->\n",
"<g id=\"node277\" class=\"node\">\n",
"<title>276</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"12497,-893.5 12330,-893.5 12330,-825.5 12497,-825.5 12497,-893.5\"/>\n",
"<text text-anchor=\"start\" x=\"12374\" y=\"-878.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #276</text>\n",
"<text text-anchor=\"start\" x=\"12369\" y=\"-863.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 5</text>\n",
"<text text-anchor=\"start\" x=\"12338\" y=\"-848.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [5, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"12357.5\" y=\"-833.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 275&#45;&gt;276 -->\n",
"<g id=\"edge276\" class=\"edge\">\n",
"<title>275&#45;&gt;276</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M12473.9731,-936.8796C12465.1217,-925.5536 12455.5257,-913.2748 12446.6407,-901.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12449.2331,-899.539 12440.3176,-893.8149 12443.7176,-903.8494 12449.2331,-899.539\"/>\n",
"</g>\n",
"<!-- 277 -->\n",
"<g id=\"node278\" class=\"node\">\n",
"<title>277</title>\n",
"<polygon fill=\"#39e5c5\" stroke=\"#000000\" points=\"12682,-893.5 12515,-893.5 12515,-825.5 12682,-825.5 12682,-893.5\"/>\n",
"<text text-anchor=\"start\" x=\"12559\" y=\"-878.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #277</text>\n",
"<text text-anchor=\"start\" x=\"12554\" y=\"-863.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"12523\" y=\"-848.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"12538\" y=\"-833.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 275&#45;&gt;277 -->\n",
"<g id=\"edge277\" class=\"edge\">\n",
"<title>275&#45;&gt;277</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M12538.6771,-936.8796C12547.4333,-925.5536 12556.9262,-913.2748 12565.7156,-901.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12568.6234,-903.8671 12571.9708,-893.8149 12563.0854,-899.5856 12568.6234,-903.8671\"/>\n",
"</g>\n",
"<!-- 279 -->\n",
"<g id=\"node280\" class=\"node\">\n",
"<title>279</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"13095,-1020 12928,-1020 12928,-937 13095,-937 13095,-1020\"/>\n",
"<text text-anchor=\"start\" x=\"12972\" y=\"-1004.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #279</text>\n",
"<text text-anchor=\"start\" x=\"12961.5\" y=\"-989.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">chicken ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"12962.5\" y=\"-974.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 15</text>\n",
"<text text-anchor=\"start\" x=\"12936\" y=\"-959.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [6, 0, 3, 0, 6]</text>\n",
"<text text-anchor=\"start\" x=\"12955.5\" y=\"-944.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 278&#45;&gt;279 -->\n",
"<g id=\"edge279\" class=\"edge\">\n",
"<title>278&#45;&gt;279</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M13072.6234,-1055.8796C13065.5803,-1046.9633 13058.0707,-1037.4565 13050.8126,-1028.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13053.4621,-1025.9757 13044.517,-1020.2981 13047.9691,-1030.3147 13053.4621,-1025.9757\"/>\n",
"</g>\n",
"<!-- 294 -->\n",
"<g id=\"node295\" class=\"node\">\n",
"<title>294</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.894118\" stroke=\"#000000\" points=\"13288.5,-1020 13112.5,-1020 13112.5,-937 13288.5,-937 13288.5,-1020\"/>\n",
"<text text-anchor=\"start\" x=\"13161\" y=\"-1004.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #294</text>\n",
"<text text-anchor=\"start\" x=\"13156.5\" y=\"-989.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">carrot ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"13151.5\" y=\"-974.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 20</text>\n",
"<text text-anchor=\"start\" x=\"13120.5\" y=\"-959.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [18, 0, 1, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"13144.5\" y=\"-944.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 278&#45;&gt;294 -->\n",
"<g id=\"edge294\" class=\"edge\">\n",
"<title>278&#45;&gt;294</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M13138.7264,-1055.8796C13145.8444,-1046.9633 13153.4339,-1037.4565 13160.7692,-1028.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13163.6281,-1030.2968 13167.1318,-1020.2981 13158.1575,-1025.9295 13163.6281,-1030.2968\"/>\n",
"</g>\n",
"<!-- 280 -->\n",
"<g id=\"node281\" class=\"node\">\n",
"<title>280</title>\n",
"<polygon fill=\"#e539c0\" fill-opacity=\"0.333333\" stroke=\"#000000\" points=\"12910,-901 12743,-901 12743,-818 12910,-818 12910,-901\"/>\n",
"<text text-anchor=\"start\" x=\"12787\" y=\"-885.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #280</text>\n",
"<text text-anchor=\"start\" x=\"12757.5\" y=\"-870.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">sesame_seed ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"12777.5\" y=\"-855.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 12</text>\n",
"<text text-anchor=\"start\" x=\"12751\" y=\"-840.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 3, 0, 6]</text>\n",
"<text text-anchor=\"start\" x=\"12784\" y=\"-825.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 279&#45;&gt;280 -->\n",
"<g id=\"edge280\" class=\"edge\">\n",
"<title>279&#45;&gt;280</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M12946.796,-936.8796C12931.5865,-927.0962 12915.2718,-916.6019 12899.7182,-906.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12901.4713,-903.5632 12891.1675,-901.0969 12897.6843,-909.4505 12901.4713,-903.5632\"/>\n",
"</g>\n",
"<!-- 293 -->\n",
"<g id=\"node294\" class=\"node\">\n",
"<title>293</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"13095,-893.5 12928,-893.5 12928,-825.5 13095,-825.5 13095,-893.5\"/>\n",
"<text text-anchor=\"start\" x=\"12972\" y=\"-878.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #293</text>\n",
"<text text-anchor=\"start\" x=\"12967\" y=\"-863.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"12936\" y=\"-848.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"12955.5\" y=\"-833.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 279&#45;&gt;293 -->\n",
"<g id=\"edge293\" class=\"edge\">\n",
"<title>279&#45;&gt;293</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M13011.5,-936.8796C13011.5,-926.2134 13011.5,-914.7021 13011.5,-903.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13015.0001,-903.8149 13011.5,-893.8149 13008.0001,-903.815 13015.0001,-903.8149\"/>\n",
"</g>\n",
"<!-- 281 -->\n",
"<g id=\"node282\" class=\"node\">\n",
"<title>281</title>\n",
"<polygon fill=\"#e539c0\" fill-opacity=\"0.376471\" stroke=\"#000000\" points=\"12725,-782 12558,-782 12558,-699 12725,-699 12725,-782\"/>\n",
"<text text-anchor=\"start\" x=\"12602\" y=\"-766.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #281</text>\n",
"<text text-anchor=\"start\" x=\"12599\" y=\"-751.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">garlic ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"12592.5\" y=\"-736.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 11</text>\n",
"<text text-anchor=\"start\" x=\"12566\" y=\"-721.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 2, 0, 6]</text>\n",
"<text text-anchor=\"start\" x=\"12599\" y=\"-706.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 280&#45;&gt;281 -->\n",
"<g id=\"edge281\" class=\"edge\">\n",
"<title>280&#45;&gt;281</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M12761.796,-817.8796C12746.5865,-808.0962 12730.2718,-797.6019 12714.7182,-787.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12716.4713,-784.5632 12706.1675,-782.0969 12712.6843,-790.4505 12716.4713,-784.5632\"/>\n",
"</g>\n",
"<!-- 292 -->\n",
"<g id=\"node293\" class=\"node\">\n",
"<title>292</title>\n",
"<polygon fill=\"#39e5c5\" stroke=\"#000000\" points=\"12910,-774.5 12743,-774.5 12743,-706.5 12910,-706.5 12910,-774.5\"/>\n",
"<text text-anchor=\"start\" x=\"12787\" y=\"-759.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #292</text>\n",
"<text text-anchor=\"start\" x=\"12782\" y=\"-744.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"12751\" y=\"-729.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"12766\" y=\"-714.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 280&#45;&gt;292 -->\n",
"<g id=\"edge292\" class=\"edge\">\n",
"<title>280&#45;&gt;292</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M12826.5,-817.8796C12826.5,-807.2134 12826.5,-795.7021 12826.5,-784.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12830.0001,-784.8149 12826.5,-774.8149 12823.0001,-784.815 12830.0001,-784.8149\"/>\n",
"</g>\n",
"<!-- 282 -->\n",
"<g id=\"node283\" class=\"node\">\n",
"<title>282</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"12657,-663 12490,-663 12490,-580 12657,-580 12657,-663\"/>\n",
"<text text-anchor=\"start\" x=\"12534\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #282</text>\n",
"<text text-anchor=\"start\" x=\"12535.5\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">crab ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"12529\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"12498\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"12517.5\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 281&#45;&gt;282 -->\n",
"<g id=\"edge282\" class=\"edge\">\n",
"<title>281&#45;&gt;282</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M12617.7169,-698.8796C12612.7763,-690.2335 12607.5184,-681.0322 12602.4167,-672.1042\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12605.3849,-670.244 12597.3846,-663.2981 12599.3072,-673.717 12605.3849,-670.244\"/>\n",
"</g>\n",
"<!-- 285 -->\n",
"<g id=\"node286\" class=\"node\">\n",
"<title>285</title>\n",
"<polygon fill=\"#e539c0\" fill-opacity=\"0.572549\" stroke=\"#000000\" points=\"12842,-663 12675,-663 12675,-580 12842,-580 12842,-663\"/>\n",
"<text text-anchor=\"start\" x=\"12719\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #285</text>\n",
"<text text-anchor=\"start\" x=\"12714\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">barley ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"12714\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 9</text>\n",
"<text text-anchor=\"start\" x=\"12683\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 1, 0, 6]</text>\n",
"<text text-anchor=\"start\" x=\"12716\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 281&#45;&gt;285 -->\n",
"<g id=\"edge285\" class=\"edge\">\n",
"<title>281&#45;&gt;285</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M12682.4209,-698.8796C12691.453,-689.6931 12701.1013,-679.8798 12710.3888,-670.4336\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12712.8893,-672.8827 12717.4044,-663.2981 12707.8977,-667.975 12712.8893,-672.8827\"/>\n",
"</g>\n",
"<!-- 283 -->\n",
"<g id=\"node284\" class=\"node\">\n",
"<title>283</title>\n",
"<polygon fill=\"#39e5c5\" stroke=\"#000000\" points=\"12472,-536.5 12305,-536.5 12305,-468.5 12472,-468.5 12472,-536.5\"/>\n",
"<text text-anchor=\"start\" x=\"12349\" y=\"-521.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #283</text>\n",
"<text text-anchor=\"start\" x=\"12344\" y=\"-506.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"12313\" y=\"-491.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"12328\" y=\"-476.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 282&#45;&gt;283 -->\n",
"<g id=\"edge283\" class=\"edge\">\n",
"<title>282&#45;&gt;283</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M12508.796,-579.8796C12489.7304,-567.6158 12468.9281,-554.2348 12450.0654,-542.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12451.8522,-539.0893 12441.5484,-536.623 12448.0653,-544.9766 12451.8522,-539.0893\"/>\n",
"</g>\n",
"<!-- 284 -->\n",
"<g id=\"node285\" class=\"node\">\n",
"<title>284</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"12657,-536.5 12490,-536.5 12490,-468.5 12657,-468.5 12657,-536.5\"/>\n",
"<text text-anchor=\"start\" x=\"12534\" y=\"-521.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #284</text>\n",
"<text text-anchor=\"start\" x=\"12529\" y=\"-506.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"12498\" y=\"-491.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"12517.5\" y=\"-476.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 282&#45;&gt;284 -->\n",
"<g id=\"edge284\" class=\"edge\">\n",
"<title>282&#45;&gt;284</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M12573.5,-579.8796C12573.5,-569.2134 12573.5,-557.7021 12573.5,-546.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12577.0001,-546.8149 12573.5,-536.8149 12570.0001,-546.815 12577.0001,-546.8149\"/>\n",
"</g>\n",
"<!-- 286 -->\n",
"<g id=\"node287\" class=\"node\">\n",
"<title>286</title>\n",
"<polygon fill=\"#e539c0\" fill-opacity=\"0.713725\" stroke=\"#000000\" points=\"12842,-544 12675,-544 12675,-461 12842,-461 12842,-544\"/>\n",
"<text text-anchor=\"start\" x=\"12719\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #286</text>\n",
"<text text-anchor=\"start\" x=\"12718\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cider ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"12714\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 8</text>\n",
"<text text-anchor=\"start\" x=\"12683\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 1, 0, 6]</text>\n",
"<text text-anchor=\"start\" x=\"12716\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</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=\"M12758.5,-579.8796C12758.5,-571.6838 12758.5,-562.9891 12758.5,-554.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12762.0001,-554.298 12758.5,-544.2981 12755.0001,-554.2981 12762.0001,-554.298\"/>\n",
"</g>\n",
"<!-- 291 -->\n",
"<g id=\"node292\" class=\"node\">\n",
"<title>291</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"13027,-536.5 12860,-536.5 12860,-468.5 13027,-468.5 13027,-536.5\"/>\n",
"<text text-anchor=\"start\" x=\"12904\" y=\"-521.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #291</text>\n",
"<text text-anchor=\"start\" x=\"12899\" y=\"-506.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"12868\" y=\"-491.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"12887.5\" y=\"-476.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 285&#45;&gt;291 -->\n",
"<g id=\"edge291\" class=\"edge\">\n",
"<title>285&#45;&gt;291</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M12823.204,-579.8796C12842.2696,-567.6158 12863.0719,-554.2348 12881.9346,-542.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12883.9347,-544.9766 12890.4516,-536.623 12880.1478,-539.0893 12883.9347,-544.9766\"/>\n",
"</g>\n",
"<!-- 287 -->\n",
"<g id=\"node288\" class=\"node\">\n",
"<title>287</title>\n",
"<polygon fill=\"#e539c0\" fill-opacity=\"0.831373\" stroke=\"#000000\" points=\"12749,-425 12582,-425 12582,-342 12749,-342 12749,-425\"/>\n",
"<text text-anchor=\"start\" x=\"12626\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #287</text>\n",
"<text text-anchor=\"start\" x=\"12616.5\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">vinegar ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"12621\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 7</text>\n",
"<text text-anchor=\"start\" x=\"12590\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 6]</text>\n",
"<text text-anchor=\"start\" x=\"12623\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 286&#45;&gt;287 -->\n",
"<g id=\"edge287\" class=\"edge\">\n",
"<title>286&#45;&gt;287</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M12725.9731,-460.8796C12719.0049,-451.9633 12711.5753,-442.4565 12704.3944,-433.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12707.0812,-431.0221 12698.1657,-425.2981 12701.5657,-435.3326 12707.0812,-431.0221\"/>\n",
"</g>\n",
"<!-- 290 -->\n",
"<g id=\"node291\" class=\"node\">\n",
"<title>290</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"12934,-417.5 12767,-417.5 12767,-349.5 12934,-349.5 12934,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"12811\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #290</text>\n",
"<text text-anchor=\"start\" x=\"12806\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"12775\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"12794.5\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 286&#45;&gt;290 -->\n",
"<g id=\"edge290\" class=\"edge\">\n",
"<title>286&#45;&gt;290</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M12790.6771,-460.8796C12799.4333,-449.5536 12808.9262,-437.2748 12817.7156,-425.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12820.6234,-427.8671 12823.9708,-417.8149 12815.0854,-423.5856 12820.6234,-427.8671\"/>\n",
"</g>\n",
"<!-- 288 -->\n",
"<g id=\"node289\" class=\"node\">\n",
"<title>288</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"12656,-298.5 12489,-298.5 12489,-230.5 12656,-230.5 12656,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"12533\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #288</text>\n",
"<text text-anchor=\"start\" x=\"12528\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 5</text>\n",
"<text text-anchor=\"start\" x=\"12497\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 5]</text>\n",
"<text text-anchor=\"start\" x=\"12530\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 287&#45;&gt;288 -->\n",
"<g id=\"edge288\" class=\"edge\">\n",
"<title>287&#45;&gt;288</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M12632.9731,-341.8796C12624.1217,-330.5536 12614.5257,-318.2748 12605.6407,-306.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12608.2331,-304.539 12599.3176,-298.8149 12602.7176,-308.8494 12608.2331,-304.539\"/>\n",
"</g>\n",
"<!-- 289 -->\n",
"<g id=\"node290\" class=\"node\">\n",
"<title>289</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"12841,-298.5 12674,-298.5 12674,-230.5 12841,-230.5 12841,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"12718\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #289</text>\n",
"<text text-anchor=\"start\" x=\"12713\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"12682\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"12697\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 287&#45;&gt;289 -->\n",
"<g id=\"edge289\" class=\"edge\">\n",
"<title>287&#45;&gt;289</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M12697.6771,-341.8796C12706.4333,-330.5536 12715.9262,-318.2748 12724.7156,-306.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"12727.6234,-308.8671 12730.9708,-298.8149 12722.0854,-304.5856 12727.6234,-308.8671\"/>\n",
"</g>\n",
"<!-- 295 -->\n",
"<g id=\"node296\" class=\"node\">\n",
"<title>295</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.941176\" stroke=\"#000000\" points=\"13288.5,-901 13112.5,-901 13112.5,-818 13288.5,-818 13288.5,-901\"/>\n",
"<text text-anchor=\"start\" x=\"13161\" y=\"-885.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #295</text>\n",
"<text text-anchor=\"start\" x=\"13131.5\" y=\"-870.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">sesame_seed ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"13151.5\" y=\"-855.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 18</text>\n",
"<text text-anchor=\"start\" x=\"13120.5\" y=\"-840.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [17, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"13144.5\" y=\"-825.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 294&#45;&gt;295 -->\n",
"<g id=\"edge295\" class=\"edge\">\n",
"<title>294&#45;&gt;295</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M13200.5,-936.8796C13200.5,-928.6838 13200.5,-919.9891 13200.5,-911.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13204.0001,-911.298 13200.5,-901.2981 13197.0001,-911.2981 13204.0001,-911.298\"/>\n",
"</g>\n",
"<!-- 302 -->\n",
"<g id=\"node303\" class=\"node\">\n",
"<title>302</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"13473,-901 13306,-901 13306,-818 13473,-818 13473,-901\"/>\n",
"<text text-anchor=\"start\" x=\"13350\" y=\"-885.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #302</text>\n",
"<text text-anchor=\"start\" x=\"13342.5\" y=\"-870.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">pepper ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"13345\" y=\"-855.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"13314\" y=\"-840.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"13333.5\" y=\"-825.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 294&#45;&gt;302 -->\n",
"<g id=\"edge302\" class=\"edge\">\n",
"<title>294&#45;&gt;302</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M13266.603,-936.8796C13282.1413,-927.0962 13298.8088,-916.6019 13314.6987,-906.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13316.8368,-909.3869 13323.4343,-901.0969 13313.1071,-903.4633 13316.8368,-909.3869\"/>\n",
"</g>\n",
"<!-- 296 -->\n",
"<g id=\"node297\" class=\"node\">\n",
"<title>296</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"13103.5,-774.5 12927.5,-774.5 12927.5,-706.5 13103.5,-706.5 13103.5,-774.5\"/>\n",
"<text text-anchor=\"start\" x=\"12976\" y=\"-759.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #296</text>\n",
"<text text-anchor=\"start\" x=\"12966.5\" y=\"-744.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 15</text>\n",
"<text text-anchor=\"start\" x=\"12935.5\" y=\"-729.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [15, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"12959.5\" y=\"-714.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</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=\"M13135.796,-817.8796C13116.7304,-805.6158 13095.9281,-792.2348 13077.0654,-780.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13078.8522,-777.0893 13068.5484,-774.623 13075.0653,-782.9766 13078.8522,-777.0893\"/>\n",
"</g>\n",
"<!-- 297 -->\n",
"<g id=\"node298\" class=\"node\">\n",
"<title>297</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.498039\" stroke=\"#000000\" points=\"13288,-782 13121,-782 13121,-699 13288,-699 13288,-782\"/>\n",
"<text text-anchor=\"start\" x=\"13165\" y=\"-766.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #297</text>\n",
"<text text-anchor=\"start\" x=\"13169.5\" y=\"-751.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">egg ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"13160\" y=\"-736.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"13129\" y=\"-721.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"13148.5\" y=\"-706.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</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=\"M13201.899,-817.8796C13202.1745,-809.6838 13202.4668,-800.9891 13202.7521,-792.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13206.257,-792.41 13203.095,-782.2981 13199.261,-792.1748 13206.257,-792.41\"/>\n",
"</g>\n",
"<!-- 298 -->\n",
"<g id=\"node299\" class=\"node\">\n",
"<title>298</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"13126,-655.5 12959,-655.5 12959,-587.5 13126,-587.5 13126,-655.5\"/>\n",
"<text text-anchor=\"start\" x=\"13003\" y=\"-640.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #298</text>\n",
"<text text-anchor=\"start\" x=\"12998\" y=\"-625.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"12967\" y=\"-610.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"12986.5\" y=\"-595.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 297&#45;&gt;298 -->\n",
"<g id=\"edge298\" class=\"edge\">\n",
"<title>297&#45;&gt;298</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M13147.8403,-698.8796C13131.4459,-686.8368 13113.5849,-673.7167 13097.3058,-661.7586\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13099.0846,-658.7224 13088.9532,-655.623 13094.9405,-664.3639 13099.0846,-658.7224\"/>\n",
"</g>\n",
"<!-- 299 -->\n",
"<g id=\"node300\" class=\"node\">\n",
"<title>299</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"13311,-663 13144,-663 13144,-580 13311,-580 13311,-663\"/>\n",
"<text text-anchor=\"start\" x=\"13188\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #299</text>\n",
"<text text-anchor=\"start\" x=\"13179\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">almond ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"13183\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"13152\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"13171.5\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 297&#45;&gt;299 -->\n",
"<g id=\"edge299\" class=\"edge\">\n",
"<title>297&#45;&gt;299</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M13212.5443,-698.8796C13214.1457,-690.5938 13215.8458,-681.798 13217.5034,-673.2216\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13220.9601,-673.7806 13219.4214,-663.2981 13214.0872,-672.4522 13220.9601,-673.7806\"/>\n",
"</g>\n",
"<!-- 300 -->\n",
"<g id=\"node301\" class=\"node\">\n",
"<title>300</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"13212,-536.5 13045,-536.5 13045,-468.5 13212,-468.5 13212,-536.5\"/>\n",
"<text text-anchor=\"start\" x=\"13089\" y=\"-521.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #300</text>\n",
"<text text-anchor=\"start\" x=\"13084\" y=\"-506.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"13053\" y=\"-491.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"13086\" y=\"-476.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 299&#45;&gt;300 -->\n",
"<g id=\"edge300\" class=\"edge\">\n",
"<title>299&#45;&gt;300</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M13192.8746,-579.8796C13183.3607,-568.4436 13173.0386,-556.0363 13163.5035,-544.575\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13166.1339,-542.264 13157.0477,-536.8149 13160.7526,-546.7409 13166.1339,-542.264\"/>\n",
"</g>\n",
"<!-- 301 -->\n",
"<g id=\"node302\" class=\"node\">\n",
"<title>301</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"13397,-536.5 13230,-536.5 13230,-468.5 13397,-468.5 13397,-536.5\"/>\n",
"<text text-anchor=\"start\" x=\"13274\" y=\"-521.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #301</text>\n",
"<text text-anchor=\"start\" x=\"13269\" y=\"-506.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"13238\" y=\"-491.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"13257.5\" y=\"-476.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 299&#45;&gt;301 -->\n",
"<g id=\"edge301\" class=\"edge\">\n",
"<title>299&#45;&gt;301</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M13257.5786,-579.8796C13265.6843,-568.6636 13274.4653,-556.5131 13282.6143,-545.2372\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13285.6803,-546.9701 13288.701,-536.8149 13280.0068,-542.8698 13285.6803,-546.9701\"/>\n",
"</g>\n",
"<!-- 303 -->\n",
"<g id=\"node304\" class=\"node\">\n",
"<title>303</title>\n",
"<polygon fill=\"#39e5c5\" stroke=\"#000000\" points=\"13473,-774.5 13306,-774.5 13306,-706.5 13473,-706.5 13473,-774.5\"/>\n",
"<text text-anchor=\"start\" x=\"13350\" y=\"-759.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #303</text>\n",
"<text text-anchor=\"start\" x=\"13345\" y=\"-744.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"13314\" y=\"-729.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"13329\" y=\"-714.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</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=\"M13389.5,-817.8796C13389.5,-807.2134 13389.5,-795.7021 13389.5,-784.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13393.0001,-784.8149 13389.5,-774.8149 13386.0001,-784.815 13393.0001,-784.8149\"/>\n",
"</g>\n",
"<!-- 304 -->\n",
"<g id=\"node305\" class=\"node\">\n",
"<title>304</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"13658,-774.5 13491,-774.5 13491,-706.5 13658,-706.5 13658,-774.5\"/>\n",
"<text text-anchor=\"start\" x=\"13535\" y=\"-759.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #304</text>\n",
"<text text-anchor=\"start\" x=\"13530\" y=\"-744.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"13499\" y=\"-729.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"13518.5\" y=\"-714.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 302&#45;&gt;304 -->\n",
"<g id=\"edge304\" class=\"edge\">\n",
"<title>302&#45;&gt;304</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M13454.204,-817.8796C13473.2696,-805.6158 13494.0719,-792.2348 13512.9346,-780.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13514.9347,-782.9766 13521.4516,-774.623 13511.1478,-777.0893 13514.9347,-782.9766\"/>\n",
"</g>\n",
"<!-- 306 -->\n",
"<g id=\"node307\" class=\"node\">\n",
"<title>306</title>\n",
"<polygon fill=\"#e539c0\" fill-opacity=\"0.890196\" stroke=\"#000000\" points=\"14237.5,-1139 14061.5,-1139 14061.5,-1056 14237.5,-1056 14237.5,-1139\"/>\n",
"<text text-anchor=\"start\" x=\"14110\" y=\"-1123.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #306</text>\n",
"<text text-anchor=\"start\" x=\"14074.5\" y=\"-1108.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">mandarin_peel ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"14100.5\" y=\"-1093.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 48</text>\n",
"<text text-anchor=\"start\" x=\"14069.5\" y=\"-1078.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 2, 1, 1, 43]</text>\n",
"<text text-anchor=\"start\" x=\"14107\" y=\"-1063.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</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=\"M14149.5,-1174.8796C14149.5,-1166.6838 14149.5,-1157.9891 14149.5,-1149.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14153.0001,-1149.298 14149.5,-1139.2981 14146.0001,-1149.2981 14153.0001,-1149.298\"/>\n",
"</g>\n",
"<!-- 325 -->\n",
"<g id=\"node326\" class=\"node\">\n",
"<title>325</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.250980\" stroke=\"#000000\" points=\"14515,-1139 14348,-1139 14348,-1056 14515,-1056 14515,-1139\"/>\n",
"<text text-anchor=\"start\" x=\"14392\" y=\"-1123.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #325</text>\n",
"<text text-anchor=\"start\" x=\"14373\" y=\"-1108.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">lime_juice ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"14387\" y=\"-1093.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 6</text>\n",
"<text text-anchor=\"start\" x=\"14356\" y=\"-1078.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 1, 0, 2]</text>\n",
"<text text-anchor=\"start\" x=\"14375.5\" y=\"-1063.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 305&#45;&gt;325 -->\n",
"<g id=\"edge325\" class=\"edge\">\n",
"<title>305&#45;&gt;325</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14237.5666,-1179.3371C14269.6314,-1165.8063 14305.9687,-1150.4724 14338.4516,-1136.7651\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14340.098,-1139.8693 14347.9505,-1132.7567 14337.3764,-1133.42 14340.098,-1139.8693\"/>\n",
"</g>\n",
"<!-- 307 -->\n",
"<g id=\"node308\" class=\"node\">\n",
"<title>307</title>\n",
"<polygon fill=\"#e539c0\" fill-opacity=\"0.909804\" stroke=\"#000000\" points=\"14145.5,-1020 13969.5,-1020 13969.5,-937 14145.5,-937 14145.5,-1020\"/>\n",
"<text text-anchor=\"start\" x=\"14018\" y=\"-1004.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #307</text>\n",
"<text text-anchor=\"start\" x=\"14012\" y=\"-989.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">yogurt ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"14008.5\" y=\"-974.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 47</text>\n",
"<text text-anchor=\"start\" x=\"13977.5\" y=\"-959.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 2, 0, 1, 43]</text>\n",
"<text text-anchor=\"start\" x=\"14015\" y=\"-944.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</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=\"M14117.3229,-1055.8796C14110.4296,-1046.9633 14103.0798,-1037.4565 14095.9761,-1028.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14098.6999,-1026.0687 14089.8145,-1020.2981 14093.1619,-1030.3502 14098.6999,-1026.0687\"/>\n",
"</g>\n",
"<!-- 324 -->\n",
"<g id=\"node325\" class=\"node\">\n",
"<title>324</title>\n",
"<polygon fill=\"#39e5c5\" stroke=\"#000000\" points=\"14330,-1012.5 14163,-1012.5 14163,-944.5 14330,-944.5 14330,-1012.5\"/>\n",
"<text text-anchor=\"start\" x=\"14207\" y=\"-997.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #324</text>\n",
"<text text-anchor=\"start\" x=\"14202\" y=\"-982.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"14171\" y=\"-967.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"14186\" y=\"-952.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 306&#45;&gt;324 -->\n",
"<g id=\"edge324\" class=\"edge\">\n",
"<title>306&#45;&gt;324</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14183.4259,-1055.8796C14192.7476,-1044.4436 14202.8612,-1032.0363 14212.2036,-1020.575\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14214.9237,-1022.7775 14218.529,-1012.8149 14209.4979,-1018.3548 14214.9237,-1022.7775\"/>\n",
"</g>\n",
"<!-- 308 -->\n",
"<g id=\"node309\" class=\"node\">\n",
"<title>308</title>\n",
"<polygon fill=\"#e539c0\" fill-opacity=\"0.933333\" stroke=\"#000000\" points=\"14145.5,-901 13969.5,-901 13969.5,-818 14145.5,-818 14145.5,-901\"/>\n",
"<text text-anchor=\"start\" x=\"14018\" y=\"-885.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #308</text>\n",
"<text text-anchor=\"start\" x=\"14019.5\" y=\"-870.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">crab ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"14008.5\" y=\"-855.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 45</text>\n",
"<text text-anchor=\"start\" x=\"13977.5\" y=\"-840.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 1, 0, 1, 42]</text>\n",
"<text text-anchor=\"start\" x=\"14015\" y=\"-825.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</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=\"M14057.5,-936.8796C14057.5,-928.6838 14057.5,-919.9891 14057.5,-911.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14061.0001,-911.298 14057.5,-901.2981 14054.0001,-911.2981 14061.0001,-911.298\"/>\n",
"</g>\n",
"<!-- 321 -->\n",
"<g id=\"node322\" class=\"node\">\n",
"<title>321</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"14330,-901 14163,-901 14163,-818 14330,-818 14330,-901\"/>\n",
"<text text-anchor=\"start\" x=\"14207\" y=\"-885.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #321</text>\n",
"<text text-anchor=\"start\" x=\"14199.5\" y=\"-870.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">pepper ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"14202\" y=\"-855.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"14171\" y=\"-840.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 1, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"14195.5\" y=\"-825.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 307&#45;&gt;321 -->\n",
"<g id=\"edge321\" class=\"edge\">\n",
"<title>307&#45;&gt;321</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14123.603,-936.8796C14139.1413,-927.0962 14155.8088,-916.6019 14171.6987,-906.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14173.8368,-909.3869 14180.4343,-901.0969 14170.1071,-903.4633 14173.8368,-909.3869\"/>\n",
"</g>\n",
"<!-- 309 -->\n",
"<g id=\"node310\" class=\"node\">\n",
"<title>309</title>\n",
"<polygon fill=\"#e539c0\" fill-opacity=\"0.952941\" stroke=\"#000000\" points=\"13960.5,-782 13784.5,-782 13784.5,-699 13960.5,-699 13960.5,-782\"/>\n",
"<text text-anchor=\"start\" x=\"13833\" y=\"-766.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #309</text>\n",
"<text text-anchor=\"start\" x=\"13818\" y=\"-751.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">tamarind ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"13823.5\" y=\"-736.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 42</text>\n",
"<text text-anchor=\"start\" x=\"13792.5\" y=\"-721.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 1, 0, 0, 40]</text>\n",
"<text text-anchor=\"start\" x=\"13830\" y=\"-706.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</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=\"M13992.796,-817.8796C13977.5865,-808.0962 13961.2718,-797.6019 13945.7182,-787.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13947.4713,-784.5632 13937.1675,-782.0969 13943.6843,-790.4505 13947.4713,-784.5632\"/>\n",
"</g>\n",
"<!-- 318 -->\n",
"<g id=\"node319\" class=\"node\">\n",
"<title>318</title>\n",
"<polygon fill=\"#e539c0\" fill-opacity=\"0.498039\" stroke=\"#000000\" points=\"14145,-782 13978,-782 13978,-699 14145,-699 14145,-782\"/>\n",
"<text text-anchor=\"start\" x=\"14022\" y=\"-766.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #318</text>\n",
"<text text-anchor=\"start\" x=\"14014.5\" y=\"-751.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">pepper ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"14017\" y=\"-736.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"13986\" y=\"-721.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 1, 2]</text>\n",
"<text text-anchor=\"start\" x=\"14019\" y=\"-706.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 308&#45;&gt;318 -->\n",
"<g id=\"edge318\" class=\"edge\">\n",
"<title>308&#45;&gt;318</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14058.899,-817.8796C14059.1745,-809.6838 14059.4668,-800.9891 14059.7521,-792.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14063.257,-792.41 14060.095,-782.2981 14056.261,-792.1748 14063.257,-792.41\"/>\n",
"</g>\n",
"<!-- 310 -->\n",
"<g id=\"node311\" class=\"node\">\n",
"<title>310</title>\n",
"<polygon fill=\"#e539c0\" fill-opacity=\"0.972549\" stroke=\"#000000\" points=\"13775.5,-663 13599.5,-663 13599.5,-580 13775.5,-580 13775.5,-663\"/>\n",
"<text text-anchor=\"start\" x=\"13648\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #310</text>\n",
"<text text-anchor=\"start\" x=\"13635.5\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cabbage ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"13638.5\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 39</text>\n",
"<text text-anchor=\"start\" x=\"13607.5\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 38]</text>\n",
"<text text-anchor=\"start\" x=\"13645\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</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=\"M13807.796,-698.8796C13792.5865,-689.0962 13776.2718,-678.6019 13760.7182,-668.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13762.4713,-665.5632 13752.1675,-663.0969 13758.6843,-671.4505 13762.4713,-665.5632\"/>\n",
"</g>\n",
"<!-- 315 -->\n",
"<g id=\"node316\" class=\"node\">\n",
"<title>315</title>\n",
"<polygon fill=\"#e539c0\" fill-opacity=\"0.498039\" stroke=\"#000000\" points=\"13960,-663 13793,-663 13793,-580 13960,-580 13960,-663\"/>\n",
"<text text-anchor=\"start\" x=\"13837\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #315</text>\n",
"<text text-anchor=\"start\" x=\"13834\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">garlic ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"13832\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"13801\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 1, 0, 0, 2]</text>\n",
"<text text-anchor=\"start\" x=\"13834\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 309&#45;&gt;315 -->\n",
"<g id=\"edge315\" class=\"edge\">\n",
"<title>309&#45;&gt;315</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M13873.899,-698.8796C13874.1745,-690.6838 13874.4668,-681.9891 13874.7521,-673.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13878.257,-673.41 13875.095,-663.2981 13871.261,-673.1748 13878.257,-673.41\"/>\n",
"</g>\n",
"<!-- 311 -->\n",
"<g id=\"node312\" class=\"node\">\n",
"<title>311</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"13590.5,-536.5 13414.5,-536.5 13414.5,-468.5 13590.5,-468.5 13590.5,-536.5\"/>\n",
"<text text-anchor=\"start\" x=\"13463\" y=\"-521.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #311</text>\n",
"<text text-anchor=\"start\" x=\"13453.5\" y=\"-506.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 36</text>\n",
"<text text-anchor=\"start\" x=\"13422.5\" y=\"-491.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 36]</text>\n",
"<text text-anchor=\"start\" x=\"13460\" y=\"-476.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</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=\"M13622.796,-579.8796C13603.7304,-567.6158 13582.9281,-554.2348 13564.0654,-542.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13565.8522,-539.0893 13555.5484,-536.623 13562.0653,-544.9766 13565.8522,-539.0893\"/>\n",
"</g>\n",
"<!-- 312 -->\n",
"<g id=\"node313\" class=\"node\">\n",
"<title>312</title>\n",
"<polygon fill=\"#e539c0\" fill-opacity=\"0.498039\" stroke=\"#000000\" points=\"13775,-544 13608,-544 13608,-461 13775,-461 13775,-544\"/>\n",
"<text text-anchor=\"start\" x=\"13652\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #312</text>\n",
"<text text-anchor=\"start\" x=\"13627.5\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">bell_pepper ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"13647\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"13616\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 2]</text>\n",
"<text text-anchor=\"start\" x=\"13649\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 310&#45;&gt;312 -->\n",
"<g id=\"edge312\" class=\"edge\">\n",
"<title>310&#45;&gt;312</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M13688.899,-579.8796C13689.1745,-571.6838 13689.4668,-562.9891 13689.7521,-554.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13693.257,-554.41 13690.095,-544.2981 13686.261,-554.1748 13693.257,-554.41\"/>\n",
"</g>\n",
"<!-- 313 -->\n",
"<g id=\"node314\" class=\"node\">\n",
"<title>313</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"13683,-417.5 13516,-417.5 13516,-349.5 13683,-349.5 13683,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"13560\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #313</text>\n",
"<text text-anchor=\"start\" x=\"13555\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"13524\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 2]</text>\n",
"<text text-anchor=\"start\" x=\"13557\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</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=\"M13659.3229,-460.8796C13650.5667,-449.5536 13641.0738,-437.2748 13632.2844,-425.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13634.9146,-423.5856 13626.0292,-417.8149 13629.3766,-427.8671 13634.9146,-423.5856\"/>\n",
"</g>\n",
"<!-- 314 -->\n",
"<g id=\"node315\" class=\"node\">\n",
"<title>314</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"13868,-417.5 13701,-417.5 13701,-349.5 13868,-349.5 13868,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"13745\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #314</text>\n",
"<text text-anchor=\"start\" x=\"13740\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"13709\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"13728.5\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 312&#45;&gt;314 -->\n",
"<g id=\"edge314\" class=\"edge\">\n",
"<title>312&#45;&gt;314</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M13724.0269,-460.8796C13732.8783,-449.5536 13742.4743,-437.2748 13751.3593,-425.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13754.2824,-427.8494 13757.6824,-417.8149 13748.7669,-423.539 13754.2824,-427.8494\"/>\n",
"</g>\n",
"<!-- 316 -->\n",
"<g id=\"node317\" class=\"node\">\n",
"<title>316</title>\n",
"<polygon fill=\"#7be539\" stroke=\"#000000\" points=\"13960,-536.5 13793,-536.5 13793,-468.5 13960,-468.5 13960,-536.5\"/>\n",
"<text text-anchor=\"start\" x=\"13837\" y=\"-521.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #316</text>\n",
"<text text-anchor=\"start\" x=\"13832\" y=\"-506.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"13801\" y=\"-491.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 1, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"13825.5\" y=\"-476.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 315&#45;&gt;316 -->\n",
"<g id=\"edge316\" class=\"edge\">\n",
"<title>315&#45;&gt;316</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M13876.5,-579.8796C13876.5,-569.2134 13876.5,-557.7021 13876.5,-546.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13880.0001,-546.8149 13876.5,-536.8149 13873.0001,-546.815 13880.0001,-546.8149\"/>\n",
"</g>\n",
"<!-- 317 -->\n",
"<g id=\"node318\" class=\"node\">\n",
"<title>317</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"14145,-536.5 13978,-536.5 13978,-468.5 14145,-468.5 14145,-536.5\"/>\n",
"<text text-anchor=\"start\" x=\"14022\" y=\"-521.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #317</text>\n",
"<text text-anchor=\"start\" x=\"14017\" y=\"-506.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"13986\" y=\"-491.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 2]</text>\n",
"<text text-anchor=\"start\" x=\"14019\" y=\"-476.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 315&#45;&gt;317 -->\n",
"<g id=\"edge317\" class=\"edge\">\n",
"<title>315&#45;&gt;317</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M13941.204,-579.8796C13960.2696,-567.6158 13981.0719,-554.2348 13999.9346,-542.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14001.9347,-544.9766 14008.4516,-536.623 13998.1478,-539.0893 14001.9347,-544.9766\"/>\n",
"</g>\n",
"<!-- 319 -->\n",
"<g id=\"node320\" class=\"node\">\n",
"<title>319</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"14145,-655.5 13978,-655.5 13978,-587.5 14145,-587.5 14145,-655.5\"/>\n",
"<text text-anchor=\"start\" x=\"14022\" y=\"-640.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #319</text>\n",
"<text text-anchor=\"start\" x=\"14017\" y=\"-625.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"13986\" y=\"-610.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 2]</text>\n",
"<text text-anchor=\"start\" x=\"14019\" y=\"-595.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 318&#45;&gt;319 -->\n",
"<g id=\"edge319\" class=\"edge\">\n",
"<title>318&#45;&gt;319</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14061.5,-698.8796C14061.5,-688.2134 14061.5,-676.7021 14061.5,-665.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14065.0001,-665.8149 14061.5,-655.8149 14058.0001,-665.815 14065.0001,-665.8149\"/>\n",
"</g>\n",
"<!-- 320 -->\n",
"<g id=\"node321\" class=\"node\">\n",
"<title>320</title>\n",
"<polygon fill=\"#3c39e5\" stroke=\"#000000\" points=\"14330,-655.5 14163,-655.5 14163,-587.5 14330,-587.5 14330,-655.5\"/>\n",
"<text text-anchor=\"start\" x=\"14207\" y=\"-640.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #320</text>\n",
"<text text-anchor=\"start\" x=\"14202\" y=\"-625.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"14171\" y=\"-610.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"14193\" y=\"-595.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 318&#45;&gt;320 -->\n",
"<g id=\"edge320\" class=\"edge\">\n",
"<title>318&#45;&gt;320</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14126.204,-698.8796C14145.2696,-686.6158 14166.0719,-673.2348 14184.9346,-661.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14186.9347,-663.9766 14193.4516,-655.623 14183.1478,-658.0893 14186.9347,-663.9766\"/>\n",
"</g>\n",
"<!-- 322 -->\n",
"<g id=\"node323\" class=\"node\">\n",
"<title>322</title>\n",
"<polygon fill=\"#7be539\" stroke=\"#000000\" points=\"14330,-774.5 14163,-774.5 14163,-706.5 14330,-706.5 14330,-774.5\"/>\n",
"<text text-anchor=\"start\" x=\"14207\" y=\"-759.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #322</text>\n",
"<text text-anchor=\"start\" x=\"14202\" y=\"-744.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"14171\" y=\"-729.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 1, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"14195.5\" y=\"-714.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 321&#45;&gt;322 -->\n",
"<g id=\"edge322\" class=\"edge\">\n",
"<title>321&#45;&gt;322</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14246.5,-817.8796C14246.5,-807.2134 14246.5,-795.7021 14246.5,-784.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14250.0001,-784.8149 14246.5,-774.8149 14243.0001,-784.815 14250.0001,-784.8149\"/>\n",
"</g>\n",
"<!-- 323 -->\n",
"<g id=\"node324\" class=\"node\">\n",
"<title>323</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"14515,-774.5 14348,-774.5 14348,-706.5 14515,-706.5 14515,-774.5\"/>\n",
"<text text-anchor=\"start\" x=\"14392\" y=\"-759.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #323</text>\n",
"<text text-anchor=\"start\" x=\"14387\" y=\"-744.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"14356\" y=\"-729.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"14389\" y=\"-714.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 321&#45;&gt;323 -->\n",
"<g id=\"edge323\" class=\"edge\">\n",
"<title>321&#45;&gt;323</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14311.204,-817.8796C14330.2696,-805.6158 14351.0719,-792.2348 14369.9346,-780.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14371.9347,-782.9766 14378.4516,-774.623 14368.1478,-777.0893 14371.9347,-782.9766\"/>\n",
"</g>\n",
"<!-- 326 -->\n",
"<g id=\"node327\" class=\"node\">\n",
"<title>326</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.666667\" stroke=\"#000000\" points=\"14515,-1020 14348,-1020 14348,-937 14515,-937 14515,-1020\"/>\n",
"<text text-anchor=\"start\" x=\"14392\" y=\"-1004.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #326</text>\n",
"<text text-anchor=\"start\" x=\"14392\" y=\"-989.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">clam ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"14387\" y=\"-974.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 4</text>\n",
"<text text-anchor=\"start\" x=\"14356\" y=\"-959.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"14375.5\" y=\"-944.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</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=\"M14431.5,-1055.8796C14431.5,-1047.6838 14431.5,-1038.9891 14431.5,-1030.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14435.0001,-1030.298 14431.5,-1020.2981 14428.0001,-1030.2981 14435.0001,-1030.298\"/>\n",
"</g>\n",
"<!-- 329 -->\n",
"<g id=\"node330\" class=\"node\">\n",
"<title>329</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"14700,-1012.5 14533,-1012.5 14533,-944.5 14700,-944.5 14700,-1012.5\"/>\n",
"<text text-anchor=\"start\" x=\"14577\" y=\"-997.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #329</text>\n",
"<text text-anchor=\"start\" x=\"14572\" y=\"-982.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"14541\" y=\"-967.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 2]</text>\n",
"<text text-anchor=\"start\" x=\"14574\" y=\"-952.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</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=\"M14496.204,-1055.8796C14515.2696,-1043.6158 14536.0719,-1030.2348 14554.9346,-1018.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14556.9347,-1020.9766 14563.4516,-1012.623 14553.1478,-1015.0893 14556.9347,-1020.9766\"/>\n",
"</g>\n",
"<!-- 327 -->\n",
"<g id=\"node328\" class=\"node\">\n",
"<title>327</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"14515,-893.5 14348,-893.5 14348,-825.5 14515,-825.5 14515,-893.5\"/>\n",
"<text text-anchor=\"start\" x=\"14392\" y=\"-878.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #327</text>\n",
"<text text-anchor=\"start\" x=\"14387\" y=\"-863.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"14356\" y=\"-848.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"14375.5\" y=\"-833.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</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=\"M14431.5,-936.8796C14431.5,-926.2134 14431.5,-914.7021 14431.5,-903.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14435.0001,-903.8149 14431.5,-893.8149 14428.0001,-903.815 14435.0001,-903.8149\"/>\n",
"</g>\n",
"<!-- 328 -->\n",
"<g id=\"node329\" class=\"node\">\n",
"<title>328</title>\n",
"<polygon fill=\"#39e5c5\" stroke=\"#000000\" points=\"14700,-893.5 14533,-893.5 14533,-825.5 14700,-825.5 14700,-893.5\"/>\n",
"<text text-anchor=\"start\" x=\"14577\" y=\"-878.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #328</text>\n",
"<text text-anchor=\"start\" x=\"14572\" y=\"-863.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"14541\" y=\"-848.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"14556\" y=\"-833.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</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=\"M14496.204,-936.8796C14515.2696,-924.6158 14536.0719,-911.2348 14554.9346,-899.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14556.9347,-901.9766 14563.4516,-893.623 14553.1478,-896.0893 14556.9347,-901.9766\"/>\n",
"</g>\n",
"<!-- 331 -->\n",
"<g id=\"node332\" class=\"node\">\n",
"<title>331</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.521569\" stroke=\"#000000\" points=\"16702,-1377 16499,-1377 16499,-1294 16702,-1294 16702,-1377\"/>\n",
"<text text-anchor=\"start\" x=\"16561\" y=\"-1361.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #331</text>\n",
"<text text-anchor=\"start\" x=\"16551\" y=\"-1346.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">scallion ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"16547\" y=\"-1331.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 159</text>\n",
"<text text-anchor=\"start\" x=\"16507\" y=\"-1316.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [100, 2, 12, 36, 9]</text>\n",
"<text text-anchor=\"start\" x=\"16544.5\" y=\"-1301.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 330&#45;&gt;331 -->\n",
"<g id=\"edge331\" class=\"edge\">\n",
"<title>330&#45;&gt;331</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16694.786,-1412.8796C16683.373,-1403.513 16671.1659,-1393.4948 16659.4485,-1383.8784\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16661.3809,-1380.9366 16651.4304,-1377.2981 16656.9401,-1386.3476 16661.3809,-1380.9366\"/>\n",
"</g>\n",
"<!-- 396 -->\n",
"<g id=\"node397\" class=\"node\">\n",
"<title>396</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.921569\" stroke=\"#000000\" points=\"16978.5,-1377 16802.5,-1377 16802.5,-1294 16978.5,-1294 16978.5,-1377\"/>\n",
"<text text-anchor=\"start\" x=\"16851\" y=\"-1361.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #396</text>\n",
"<text text-anchor=\"start\" x=\"16855.5\" y=\"-1346.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">fish ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"16841.5\" y=\"-1331.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 54</text>\n",
"<text text-anchor=\"start\" x=\"16810.5\" y=\"-1316.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [50, 0, 0, 3, 1]</text>\n",
"<text text-anchor=\"start\" x=\"16834.5\" y=\"-1301.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 330&#45;&gt;396 -->\n",
"<g id=\"edge396\" class=\"edge\">\n",
"<title>330&#45;&gt;396</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16796.214,-1412.8796C16807.627,-1403.513 16819.8341,-1393.4948 16831.5515,-1383.8784\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16834.0599,-1386.3476 16839.5696,-1377.2981 16829.6191,-1380.9366 16834.0599,-1386.3476\"/>\n",
"</g>\n",
"<!-- 332 -->\n",
"<g id=\"node333\" class=\"node\">\n",
"<title>332</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.286275\" stroke=\"#000000\" points=\"15946,-1258 15761,-1258 15761,-1175 15946,-1175 15946,-1258\"/>\n",
"<text text-anchor=\"start\" x=\"15814\" y=\"-1242.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #332</text>\n",
"<text text-anchor=\"start\" x=\"15780\" y=\"-1227.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">chicken_broth ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"15804.5\" y=\"-1212.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 94</text>\n",
"<text text-anchor=\"start\" x=\"15769\" y=\"-1197.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [47, 2, 8, 28, 9]</text>\n",
"<text text-anchor=\"start\" x=\"15797.5\" y=\"-1182.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</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=\"M16498.9788,-1319.3273C16356.6907,-1296.6602 16099.3824,-1255.67 15956.371,-1232.8877\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"15956.7009,-1229.3963 15946.2748,-1231.2794 15955.5996,-1236.3091 15956.7009,-1229.3963\"/>\n",
"</g>\n",
"<!-- 369 -->\n",
"<g id=\"node370\" class=\"node\">\n",
"<title>369</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.788235\" stroke=\"#000000\" points=\"16688.5,-1258 16512.5,-1258 16512.5,-1175 16688.5,-1175 16688.5,-1258\"/>\n",
"<text text-anchor=\"start\" x=\"16561\" y=\"-1242.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #369</text>\n",
"<text text-anchor=\"start\" x=\"16537\" y=\"-1227.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">grape_juice ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"16551.5\" y=\"-1212.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 65</text>\n",
"<text text-anchor=\"start\" x=\"16520.5\" y=\"-1197.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [53, 0, 4, 8, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16544.5\" y=\"-1182.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 331&#45;&gt;369 -->\n",
"<g id=\"edge369\" class=\"edge\">\n",
"<title>331&#45;&gt;369</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16600.5,-1293.8796C16600.5,-1285.6838 16600.5,-1276.9891 16600.5,-1268.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16604.0001,-1268.298 16600.5,-1258.2981 16597.0001,-1268.2981 16604.0001,-1268.298\"/>\n",
"</g>\n",
"<!-- 333 -->\n",
"<g id=\"node334\" class=\"node\">\n",
"<title>333</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.086275\" stroke=\"#000000\" points=\"15385,-1139 15200,-1139 15200,-1056 15385,-1056 15385,-1139\"/>\n",
"<text text-anchor=\"start\" x=\"15253\" y=\"-1123.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #333</text>\n",
"<text text-anchor=\"start\" x=\"15245.5\" y=\"-1108.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">shrimp ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"15243.5\" y=\"-1093.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 75</text>\n",
"<text text-anchor=\"start\" x=\"15208\" y=\"-1078.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [32, 2, 7, 28, 6]</text>\n",
"<text text-anchor=\"start\" x=\"15236.5\" y=\"-1063.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</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=\"M15760.8623,-1196.8496C15660.1662,-1175.4898 15499.6913,-1141.4497 15395.208,-1119.2865\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"15395.784,-1115.8309 15385.2754,-1117.1796 15394.3314,-1122.6786 15395.784,-1115.8309\"/>\n",
"</g>\n",
"<!-- 362 -->\n",
"<g id=\"node363\" class=\"node\">\n",
"<title>362</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.749020\" stroke=\"#000000\" points=\"15941.5,-1139 15765.5,-1139 15765.5,-1056 15941.5,-1056 15941.5,-1139\"/>\n",
"<text text-anchor=\"start\" x=\"15814\" y=\"-1123.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #362</text>\n",
"<text text-anchor=\"start\" x=\"15789.5\" y=\"-1108.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">bell_pepper ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"15804.5\" y=\"-1093.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 19</text>\n",
"<text text-anchor=\"start\" x=\"15773.5\" y=\"-1078.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [15, 0, 1, 0, 3]</text>\n",
"<text text-anchor=\"start\" x=\"15797.5\" y=\"-1063.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 332&#45;&gt;362 -->\n",
"<g id=\"edge362\" class=\"edge\">\n",
"<title>332&#45;&gt;362</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M15853.5,-1174.8796C15853.5,-1166.6838 15853.5,-1157.9891 15853.5,-1149.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"15857.0001,-1149.298 15853.5,-1139.2981 15850.0001,-1149.2981 15857.0001,-1149.298\"/>\n",
"</g>\n",
"<!-- 334 -->\n",
"<g id=\"node335\" class=\"node\">\n",
"<title>334</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.176471\" stroke=\"#000000\" points=\"15097,-1020 14912,-1020 14912,-937 15097,-937 15097,-1020\"/>\n",
"<text text-anchor=\"start\" x=\"14965\" y=\"-1004.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #334</text>\n",
"<text text-anchor=\"start\" x=\"14947.5\" y=\"-989.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">pineapple ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"14955.5\" y=\"-974.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 60</text>\n",
"<text text-anchor=\"start\" x=\"14920\" y=\"-959.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [20, 2, 7, 27, 4]</text>\n",
"<text text-anchor=\"start\" x=\"14951\" y=\"-944.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M15199.7897,-1059.1926C15169.9856,-1046.8777 15136.8095,-1033.1696 15106.3839,-1020.5979\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"15107.6153,-1017.3197 15097.0366,-1016.7356 15104.9421,-1023.7892 15107.6153,-1017.3197\"/>\n",
"</g>\n",
"<!-- 355 -->\n",
"<g id=\"node356\" class=\"node\">\n",
"<title>355</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.768627\" stroke=\"#000000\" points=\"15380.5,-1020 15204.5,-1020 15204.5,-937 15380.5,-937 15380.5,-1020\"/>\n",
"<text text-anchor=\"start\" x=\"15253\" y=\"-1004.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #355</text>\n",
"<text text-anchor=\"start\" x=\"15253\" y=\"-989.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">clam ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"15243.5\" y=\"-974.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 15</text>\n",
"<text text-anchor=\"start\" x=\"15212.5\" y=\"-959.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [12, 0, 0, 1, 2]</text>\n",
"<text text-anchor=\"start\" x=\"15236.5\" y=\"-944.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 333&#45;&gt;355 -->\n",
"<g id=\"edge355\" class=\"edge\">\n",
"<title>333&#45;&gt;355</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M15292.5,-1055.8796C15292.5,-1047.6838 15292.5,-1038.9891 15292.5,-1030.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"15296.0001,-1030.298 15292.5,-1020.2981 15289.0001,-1030.2981 15296.0001,-1030.298\"/>\n",
"</g>\n",
"<!-- 335 -->\n",
"<g id=\"node336\" class=\"node\">\n",
"<title>335</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.298039\" stroke=\"#000000\" points=\"14903,-901 14718,-901 14718,-818 14903,-818 14903,-901\"/>\n",
"<text text-anchor=\"start\" x=\"14771\" y=\"-885.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #335</text>\n",
"<text text-anchor=\"start\" x=\"14760\" y=\"-870.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">coconut ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"14761.5\" y=\"-855.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 55</text>\n",
"<text text-anchor=\"start\" x=\"14726\" y=\"-840.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [15, 2, 7, 27, 4]</text>\n",
"<text text-anchor=\"start\" x=\"14757\" y=\"-825.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M14936.6482,-936.8796C14920.6989,-927.0962 14903.5904,-916.6019 14887.2802,-906.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14888.6677,-903.3422 14878.3135,-901.0969 14885.0075,-909.3091 14888.6677,-903.3422\"/>\n",
"</g>\n",
"<!-- 354 -->\n",
"<g id=\"node355\" class=\"node\">\n",
"<title>354</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"15088,-893.5 14921,-893.5 14921,-825.5 15088,-825.5 15088,-893.5\"/>\n",
"<text text-anchor=\"start\" x=\"14965\" y=\"-878.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #354</text>\n",
"<text text-anchor=\"start\" x=\"14960\" y=\"-863.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 5</text>\n",
"<text text-anchor=\"start\" x=\"14929\" y=\"-848.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [5, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"14948.5\" y=\"-833.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 334&#45;&gt;354 -->\n",
"<g id=\"edge354\" class=\"edge\">\n",
"<title>334&#45;&gt;354</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M15004.5,-936.8796C15004.5,-926.2134 15004.5,-914.7021 15004.5,-903.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"15008.0001,-903.8149 15004.5,-893.8149 15001.0001,-903.815 15008.0001,-903.8149\"/>\n",
"</g>\n",
"<!-- 336 -->\n",
"<g id=\"node337\" class=\"node\">\n",
"<title>336</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.333333\" stroke=\"#000000\" points=\"14723,-782 14538,-782 14538,-699 14723,-699 14723,-782\"/>\n",
"<text text-anchor=\"start\" x=\"14591\" y=\"-766.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #336</text>\n",
"<text text-anchor=\"start\" x=\"14586\" y=\"-751.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cream ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"14581.5\" y=\"-736.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 51</text>\n",
"<text text-anchor=\"start\" x=\"14546\" y=\"-721.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [15, 2, 6, 27, 1]</text>\n",
"<text text-anchor=\"start\" x=\"14577\" y=\"-706.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 335&#45;&gt;336 -->\n",
"<g id=\"edge336\" class=\"edge\">\n",
"<title>335&#45;&gt;336</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14747.5447,-817.8796C14732.8834,-808.1868 14717.1664,-797.7961 14702.1599,-787.8752\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14703.6918,-784.6922 14693.4197,-782.0969 14699.8313,-790.5315 14703.6918,-784.6922\"/>\n",
"</g>\n",
"<!-- 351 -->\n",
"<g id=\"node352\" class=\"node\">\n",
"<title>351</title>\n",
"<polygon fill=\"#e539c0\" fill-opacity=\"0.666667\" stroke=\"#000000\" points=\"14908,-782 14741,-782 14741,-699 14908,-699 14908,-782\"/>\n",
"<text text-anchor=\"start\" x=\"14785\" y=\"-766.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #351</text>\n",
"<text text-anchor=\"start\" x=\"14779\" y=\"-751.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">vanilla ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"14780\" y=\"-736.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 4</text>\n",
"<text text-anchor=\"start\" x=\"14749\" y=\"-721.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 3]</text>\n",
"<text text-anchor=\"start\" x=\"14782\" y=\"-706.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 335&#45;&gt;351 -->\n",
"<g id=\"edge351\" class=\"edge\">\n",
"<title>335&#45;&gt;351</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14815.3965,-817.8796C14816.3607,-809.6838 14817.3836,-800.9891 14818.3822,-792.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14821.8901,-792.6386 14819.5826,-782.2981 14814.9381,-791.8206 14821.8901,-792.6386\"/>\n",
"</g>\n",
"<!-- 337 -->\n",
"<g id=\"node338\" class=\"node\">\n",
"<title>337</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.364706\" stroke=\"#000000\" points=\"14533,-663 14348,-663 14348,-580 14533,-580 14533,-663\"/>\n",
"<text text-anchor=\"start\" x=\"14401\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #337</text>\n",
"<text text-anchor=\"start\" x=\"14393.5\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">pepper ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"14391.5\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 48</text>\n",
"<text text-anchor=\"start\" x=\"14356\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [15, 0, 5, 27, 1]</text>\n",
"<text text-anchor=\"start\" x=\"14387\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 336&#45;&gt;337 -->\n",
"<g id=\"edge337\" class=\"edge\">\n",
"<title>336&#45;&gt;337</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14564.0472,-698.8796C14548.4267,-689.0962 14531.671,-678.6019 14515.6971,-668.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14517.2481,-665.4387 14506.9153,-663.0969 14513.5324,-671.3712 14517.2481,-665.4387\"/>\n",
"</g>\n",
"<!-- 348 -->\n",
"<g id=\"node349\" class=\"node\">\n",
"<title>348</title>\n",
"<polygon fill=\"#7be539\" fill-opacity=\"0.498039\" stroke=\"#000000\" points=\"14718,-663 14551,-663 14551,-580 14718,-580 14718,-663\"/>\n",
"<text text-anchor=\"start\" x=\"14595\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #348</text>\n",
"<text text-anchor=\"start\" x=\"14561.5\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cream_cheese ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"14590\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"14559\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 2, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"14583.5\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 336&#45;&gt;348 -->\n",
"<g id=\"edge348\" class=\"edge\">\n",
"<title>336&#45;&gt;348</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14631.899,-698.8796C14632.1745,-690.6838 14632.4668,-681.9891 14632.7521,-673.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14636.257,-673.41 14633.095,-663.2981 14629.261,-673.1748 14636.257,-673.41\"/>\n",
"</g>\n",
"<!-- 338 -->\n",
"<g id=\"node339\" class=\"node\">\n",
"<title>338</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.454902\" stroke=\"#000000\" points=\"14348,-544 14163,-544 14163,-461 14348,-461 14348,-544\"/>\n",
"<text text-anchor=\"start\" x=\"14216\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #338</text>\n",
"<text text-anchor=\"start\" x=\"14210\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">sherry ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"14206.5\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 45</text>\n",
"<text text-anchor=\"start\" x=\"14171\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [12, 0, 5, 27, 1]</text>\n",
"<text text-anchor=\"start\" x=\"14202\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 337&#45;&gt;338 -->\n",
"<g id=\"edge338\" class=\"edge\">\n",
"<title>337&#45;&gt;338</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14375.796,-579.8796C14360.5865,-570.0962 14344.2718,-559.6019 14328.7182,-549.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14330.4713,-546.5632 14320.1675,-544.0969 14326.6843,-552.4505 14330.4713,-546.5632\"/>\n",
"</g>\n",
"<!-- 347 -->\n",
"<g id=\"node348\" class=\"node\">\n",
"<title>347</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"14533,-536.5 14366,-536.5 14366,-468.5 14533,-468.5 14533,-536.5\"/>\n",
"<text text-anchor=\"start\" x=\"14410\" y=\"-521.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #347</text>\n",
"<text text-anchor=\"start\" x=\"14405\" y=\"-506.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"14374\" y=\"-491.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"14393.5\" y=\"-476.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 337&#45;&gt;347 -->\n",
"<g id=\"edge347\" class=\"edge\">\n",
"<title>337&#45;&gt;347</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14443.6478,-579.8796C14444.4545,-569.2134 14445.3251,-557.7021 14446.1419,-546.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14449.6405,-547.0504 14446.9048,-536.8149 14442.6605,-546.5225 14449.6405,-547.0504\"/>\n",
"</g>\n",
"<!-- 339 -->\n",
"<g id=\"node340\" class=\"node\">\n",
"<title>339</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.545098\" stroke=\"#000000\" points=\"14249.5,-425 14073.5,-425 14073.5,-342 14249.5,-342 14249.5,-425\"/>\n",
"<text text-anchor=\"start\" x=\"14122\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #339</text>\n",
"<text text-anchor=\"start\" x=\"14103\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">lime_juice ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"14112.5\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 42</text>\n",
"<text text-anchor=\"start\" x=\"14081.5\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [9, 0, 5, 27, 1]</text>\n",
"<text text-anchor=\"start\" x=\"14108\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 338&#45;&gt;339 -->\n",
"<g id=\"edge339\" class=\"edge\">\n",
"<title>338&#45;&gt;339</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14222.6234,-460.8796C14215.5803,-451.9633 14208.0707,-442.4565 14200.8126,-433.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14203.4621,-430.9757 14194.517,-425.2981 14197.9691,-435.3147 14203.4621,-430.9757\"/>\n",
"</g>\n",
"<!-- 346 -->\n",
"<g id=\"node347\" class=\"node\">\n",
"<title>346</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"14434,-417.5 14267,-417.5 14267,-349.5 14434,-349.5 14434,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"14311\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #346</text>\n",
"<text text-anchor=\"start\" x=\"14306\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"14275\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"14294.5\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 338&#45;&gt;346 -->\n",
"<g id=\"edge346\" class=\"edge\">\n",
"<title>338&#45;&gt;346</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14288.7264,-460.8796C14297.7681,-449.5536 14307.5705,-437.2748 14316.6466,-425.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14319.602,-427.8137 14323.1057,-417.8149 14314.1315,-423.4464 14319.602,-427.8137\"/>\n",
"</g>\n",
"<!-- 340 -->\n",
"<g id=\"node341\" class=\"node\">\n",
"<title>340</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.580392\" stroke=\"#000000\" points=\"14154.5,-306 13978.5,-306 13978.5,-223 14154.5,-223 14154.5,-306\"/>\n",
"<text text-anchor=\"start\" x=\"14027\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #340</text>\n",
"<text text-anchor=\"start\" x=\"14015.5\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">broccoli ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"14017.5\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 40</text>\n",
"<text text-anchor=\"start\" x=\"13986.5\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [9, 0, 3, 27, 1]</text>\n",
"<text text-anchor=\"start\" x=\"14013\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M14128.2736,-341.8796C14121.1556,-332.9633 14113.5661,-323.4565 14106.2308,-314.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14108.8425,-311.9295 14099.8682,-306.2981 14103.3719,-316.2968 14108.8425,-311.9295\"/>\n",
"</g>\n",
"<!-- 345 -->\n",
"<g id=\"node346\" class=\"node\">\n",
"<title>345</title>\n",
"<polygon fill=\"#39e5c5\" stroke=\"#000000\" points=\"14339,-298.5 14172,-298.5 14172,-230.5 14339,-230.5 14339,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"14216\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #345</text>\n",
"<text text-anchor=\"start\" x=\"14211\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"14180\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 2, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"14195\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 339&#45;&gt;345 -->\n",
"<g id=\"edge345\" class=\"edge\">\n",
"<title>339&#45;&gt;345</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14194.3766,-341.8796C14203.3232,-330.5536 14213.0224,-318.2748 14222.0029,-306.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14224.942,-308.8316 14228.3941,-298.8149 14219.449,-304.4926 14224.942,-308.8316\"/>\n",
"</g>\n",
"<!-- 341 -->\n",
"<g id=\"node342\" class=\"node\">\n",
"<title>341</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.647059\" stroke=\"#000000\" points=\"14059.5,-187 13883.5,-187 13883.5,-104 14059.5,-104 14059.5,-187\"/>\n",
"<text text-anchor=\"start\" x=\"13932\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #341</text>\n",
"<text text-anchor=\"start\" x=\"13936.5\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">pea ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"13922.5\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 38</text>\n",
"<text text-anchor=\"start\" x=\"13891.5\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [7, 0, 3, 27, 1]</text>\n",
"<text text-anchor=\"start\" x=\"13918\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 340&#45;&gt;341 -->\n",
"<g id=\"edge341\" class=\"edge\">\n",
"<title>340&#45;&gt;341</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14033.2736,-222.8796C14026.1556,-213.9633 14018.5661,-204.4565 14011.2308,-195.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14013.8425,-192.9295 14004.8682,-187.2981 14008.3719,-197.2968 14013.8425,-192.9295\"/>\n",
"</g>\n",
"<!-- 344 -->\n",
"<g id=\"node345\" class=\"node\">\n",
"<title>344</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"14244,-179.5 14077,-179.5 14077,-111.5 14244,-111.5 14244,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"14121\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #344</text>\n",
"<text text-anchor=\"start\" x=\"14116\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"14085\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"14104.5\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 340&#45;&gt;344 -->\n",
"<g id=\"edge344\" class=\"edge\">\n",
"<title>340&#45;&gt;344</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14099.3766,-222.8796C14108.3232,-211.5536 14118.0224,-199.2748 14127.0029,-187.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14129.942,-189.8316 14133.3941,-179.8149 14124.449,-185.4926 14129.942,-189.8316\"/>\n",
"</g>\n",
"<!-- 342 -->\n",
"<g id=\"node343\" class=\"node\">\n",
"<title>342</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.709804\" stroke=\"#000000\" points=\"13965.5,-68 13789.5,-68 13789.5,0 13965.5,0 13965.5,-68\"/>\n",
"<text text-anchor=\"start\" x=\"13838\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #342</text>\n",
"<text text-anchor=\"start\" x=\"13828.5\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 36</text>\n",
"<text text-anchor=\"start\" x=\"13797.5\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [5, 0, 3, 27, 1]</text>\n",
"<text text-anchor=\"start\" x=\"13824\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 341&#45;&gt;342 -->\n",
"<g id=\"edge342\" class=\"edge\">\n",
"<title>341&#45;&gt;342</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M13936.4979,-103.9815C13928.8272,-94.8828 13920.6995,-85.242 13913.0091,-76.1199\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"13915.5075,-73.6533 13906.386,-68.2637 13910.1556,-78.1652 13915.5075,-73.6533\"/>\n",
"</g>\n",
"<!-- 343 -->\n",
"<g id=\"node344\" class=\"node\">\n",
"<title>343</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"14150,-68 13983,-68 13983,0 14150,0 14150,-68\"/>\n",
"<text text-anchor=\"start\" x=\"14027\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #343</text>\n",
"<text text-anchor=\"start\" x=\"14022\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"13991\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"14010.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 341&#45;&gt;343 -->\n",
"<g id=\"edge343\" class=\"edge\">\n",
"<title>341&#45;&gt;343</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14006.8745,-103.9815C14014.6268,-94.8828 14022.8409,-85.242 14030.6131,-76.1199\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14033.4854,-78.1454 14037.3067,-68.2637 14028.1572,-73.6056 14033.4854,-78.1454\"/>\n",
"</g>\n",
"<!-- 349 -->\n",
"<g id=\"node350\" class=\"node\">\n",
"<title>349</title>\n",
"<polygon fill=\"#7be539\" stroke=\"#000000\" points=\"14718,-536.5 14551,-536.5 14551,-468.5 14718,-468.5 14718,-536.5\"/>\n",
"<text text-anchor=\"start\" x=\"14595\" y=\"-521.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #349</text>\n",
"<text text-anchor=\"start\" x=\"14590\" y=\"-506.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"14559\" y=\"-491.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 2, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"14583.5\" y=\"-476.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 348&#45;&gt;349 -->\n",
"<g id=\"edge349\" class=\"edge\">\n",
"<title>348&#45;&gt;349</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14634.5,-579.8796C14634.5,-569.2134 14634.5,-557.7021 14634.5,-546.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14638.0001,-546.8149 14634.5,-536.8149 14631.0001,-546.815 14638.0001,-546.8149\"/>\n",
"</g>\n",
"<!-- 350 -->\n",
"<g id=\"node351\" class=\"node\">\n",
"<title>350</title>\n",
"<polygon fill=\"#39e5c5\" stroke=\"#000000\" points=\"14903,-536.5 14736,-536.5 14736,-468.5 14903,-468.5 14903,-536.5\"/>\n",
"<text text-anchor=\"start\" x=\"14780\" y=\"-521.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #350</text>\n",
"<text text-anchor=\"start\" x=\"14775\" y=\"-506.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"14744\" y=\"-491.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"14759\" y=\"-476.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 348&#45;&gt;350 -->\n",
"<g id=\"edge350\" class=\"edge\">\n",
"<title>348&#45;&gt;350</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14699.204,-579.8796C14718.2696,-567.6158 14739.0719,-554.2348 14757.9346,-542.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14759.9347,-544.9766 14766.4516,-536.623 14756.1478,-539.0893 14759.9347,-544.9766\"/>\n",
"</g>\n",
"<!-- 352 -->\n",
"<g id=\"node353\" class=\"node\">\n",
"<title>352</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"14903,-655.5 14736,-655.5 14736,-587.5 14903,-587.5 14903,-655.5\"/>\n",
"<text text-anchor=\"start\" x=\"14780\" y=\"-640.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #352</text>\n",
"<text text-anchor=\"start\" x=\"14775\" y=\"-625.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"14744\" y=\"-610.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 3]</text>\n",
"<text text-anchor=\"start\" x=\"14777\" y=\"-595.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 351&#45;&gt;352 -->\n",
"<g id=\"edge352\" class=\"edge\">\n",
"<title>351&#45;&gt;352</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14822.7512,-698.8796C14822.3031,-688.2134 14821.8194,-676.7021 14821.3656,-665.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14824.8586,-665.6592 14820.9418,-655.8149 14817.8648,-665.9531 14824.8586,-665.6592\"/>\n",
"</g>\n",
"<!-- 353 -->\n",
"<g id=\"node354\" class=\"node\">\n",
"<title>353</title>\n",
"<polygon fill=\"#39e5c5\" stroke=\"#000000\" points=\"15088,-655.5 14921,-655.5 14921,-587.5 15088,-587.5 15088,-655.5\"/>\n",
"<text text-anchor=\"start\" x=\"14965\" y=\"-640.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #353</text>\n",
"<text text-anchor=\"start\" x=\"14960\" y=\"-625.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"14929\" y=\"-610.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"14944\" y=\"-595.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 351&#45;&gt;353 -->\n",
"<g id=\"edge353\" class=\"edge\">\n",
"<title>351&#45;&gt;353</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M14887.4553,-698.8796C14905.8384,-686.7263 14925.8811,-673.4759 14944.1021,-661.4297\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"14946.4737,-664.0576 14952.8853,-655.623 14942.6133,-658.2183 14946.4737,-664.0576\"/>\n",
"</g>\n",
"<!-- 356 -->\n",
"<g id=\"node357\" class=\"node\">\n",
"<title>356</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.831373\" stroke=\"#000000\" points=\"15281.5,-901 15105.5,-901 15105.5,-818 15281.5,-818 15281.5,-901\"/>\n",
"<text text-anchor=\"start\" x=\"15154\" y=\"-885.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #356</text>\n",
"<text text-anchor=\"start\" x=\"15152.5\" y=\"-870.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">chive ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"15144.5\" y=\"-855.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 14</text>\n",
"<text text-anchor=\"start\" x=\"15113.5\" y=\"-840.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [12, 0, 0, 0, 2]</text>\n",
"<text text-anchor=\"start\" x=\"15137.5\" y=\"-825.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</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=\"M15257.8746,-936.8796C15250.382,-927.8733 15242.3881,-918.2644 15234.6721,-908.9897\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"15237.3593,-906.7472 15228.2732,-901.2981 15231.9781,-911.224 15237.3593,-906.7472\"/>\n",
"</g>\n",
"<!-- 361 -->\n",
"<g id=\"node362\" class=\"node\">\n",
"<title>361</title>\n",
"<polygon fill=\"#3c39e5\" stroke=\"#000000\" points=\"15466,-893.5 15299,-893.5 15299,-825.5 15466,-825.5 15466,-893.5\"/>\n",
"<text text-anchor=\"start\" x=\"15343\" y=\"-878.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #361</text>\n",
"<text text-anchor=\"start\" x=\"15338\" y=\"-863.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"15307\" y=\"-848.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"15329\" y=\"-833.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 355&#45;&gt;361 -->\n",
"<g id=\"edge361\" class=\"edge\">\n",
"<title>355&#45;&gt;361</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M15323.9776,-936.8796C15332.5435,-925.5536 15341.83,-913.2748 15350.4283,-901.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"15353.3069,-903.902 15356.5475,-893.8149 15347.7238,-899.6795 15353.3069,-903.902\"/>\n",
"</g>\n",
"<!-- 357 -->\n",
"<g id=\"node358\" class=\"node\">\n",
"<title>357</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.917647\" stroke=\"#000000\" points=\"15281.5,-782 15105.5,-782 15105.5,-699 15281.5,-699 15281.5,-782\"/>\n",
"<text text-anchor=\"start\" x=\"15154\" y=\"-766.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #357</text>\n",
"<text text-anchor=\"start\" x=\"15154\" y=\"-751.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">palm ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"15144.5\" y=\"-736.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 13</text>\n",
"<text text-anchor=\"start\" x=\"15113.5\" y=\"-721.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [12, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"15137.5\" y=\"-706.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</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=\"M15193.5,-817.8796C15193.5,-809.6838 15193.5,-800.9891 15193.5,-792.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"15197.0001,-792.298 15193.5,-782.2981 15190.0001,-792.2981 15197.0001,-792.298\"/>\n",
"</g>\n",
"<!-- 360 -->\n",
"<g id=\"node361\" class=\"node\">\n",
"<title>360</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"15466,-774.5 15299,-774.5 15299,-706.5 15466,-706.5 15466,-774.5\"/>\n",
"<text text-anchor=\"start\" x=\"15343\" y=\"-759.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #360</text>\n",
"<text text-anchor=\"start\" x=\"15338\" y=\"-744.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"15307\" y=\"-729.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"15340\" y=\"-714.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 356&#45;&gt;360 -->\n",
"<g id=\"edge360\" class=\"edge\">\n",
"<title>356&#45;&gt;360</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M15259.603,-817.8796C15279.0808,-805.6158 15300.3329,-792.2348 15319.6035,-780.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"15321.7071,-782.913 15328.3046,-774.623 15317.9774,-776.9894 15321.7071,-782.913\"/>\n",
"</g>\n",
"<!-- 358 -->\n",
"<g id=\"node359\" class=\"node\">\n",
"<title>358</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"15281.5,-655.5 15105.5,-655.5 15105.5,-587.5 15281.5,-587.5 15281.5,-655.5\"/>\n",
"<text text-anchor=\"start\" x=\"15154\" y=\"-640.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #358</text>\n",
"<text text-anchor=\"start\" x=\"15144.5\" y=\"-625.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 11</text>\n",
"<text text-anchor=\"start\" x=\"15113.5\" y=\"-610.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [11, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"15137.5\" y=\"-595.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</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=\"M15193.5,-698.8796C15193.5,-688.2134 15193.5,-676.7021 15193.5,-665.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"15197.0001,-665.8149 15193.5,-655.8149 15190.0001,-665.815 15197.0001,-665.8149\"/>\n",
"</g>\n",
"<!-- 359 -->\n",
"<g id=\"node360\" class=\"node\">\n",
"<title>359</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"15466,-655.5 15299,-655.5 15299,-587.5 15466,-587.5 15466,-655.5\"/>\n",
"<text text-anchor=\"start\" x=\"15343\" y=\"-640.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #359</text>\n",
"<text text-anchor=\"start\" x=\"15338\" y=\"-625.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"15307\" y=\"-610.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"15326.5\" y=\"-595.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 357&#45;&gt;359 -->\n",
"<g id=\"edge359\" class=\"edge\">\n",
"<title>357&#45;&gt;359</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M15259.603,-698.8796C15279.0808,-686.6158 15300.3329,-673.2348 15319.6035,-661.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"15321.7071,-663.913 15328.3046,-655.623 15317.9774,-657.9894 15321.7071,-663.913\"/>\n",
"</g>\n",
"<!-- 363 -->\n",
"<g id=\"node364\" class=\"node\">\n",
"<title>363</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.933333\" stroke=\"#000000\" points=\"15846.5,-1020 15670.5,-1020 15670.5,-937 15846.5,-937 15846.5,-1020\"/>\n",
"<text text-anchor=\"start\" x=\"15719\" y=\"-1004.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #363</text>\n",
"<text text-anchor=\"start\" x=\"15714\" y=\"-989.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">radish ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"15709.5\" y=\"-974.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 16</text>\n",
"<text text-anchor=\"start\" x=\"15678.5\" y=\"-959.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [15, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"15702.5\" y=\"-944.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</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=\"M15820.2736,-1055.8796C15813.1556,-1046.9633 15805.5661,-1037.4565 15798.2308,-1028.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"15800.8425,-1025.9295 15791.8682,-1020.2981 15795.3719,-1030.2968 15800.8425,-1025.9295\"/>\n",
"</g>\n",
"<!-- 366 -->\n",
"<g id=\"node367\" class=\"node\">\n",
"<title>366</title>\n",
"<polygon fill=\"#e539c0\" fill-opacity=\"0.498039\" stroke=\"#000000\" points=\"16031,-1020 15864,-1020 15864,-937 16031,-937 16031,-1020\"/>\n",
"<text text-anchor=\"start\" x=\"15908\" y=\"-1004.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #366</text>\n",
"<text text-anchor=\"start\" x=\"15902\" y=\"-989.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">ginger ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"15903\" y=\"-974.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"15872\" y=\"-959.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 2]</text>\n",
"<text text-anchor=\"start\" x=\"15905\" y=\"-944.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</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=\"M15886.3766,-1055.8796C15893.4197,-1046.9633 15900.9293,-1037.4565 15908.1874,-1028.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"15911.0309,-1030.3147 15914.483,-1020.2981 15905.5379,-1025.9757 15911.0309,-1030.3147\"/>\n",
"</g>\n",
"<!-- 364 -->\n",
"<g id=\"node365\" class=\"node\">\n",
"<title>364</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"15659.5,-893.5 15483.5,-893.5 15483.5,-825.5 15659.5,-825.5 15659.5,-893.5\"/>\n",
"<text text-anchor=\"start\" x=\"15532\" y=\"-878.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #364</text>\n",
"<text text-anchor=\"start\" x=\"15522.5\" y=\"-863.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 15</text>\n",
"<text text-anchor=\"start\" x=\"15491.5\" y=\"-848.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [15, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"15515.5\" y=\"-833.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</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=\"M15693.0965,-936.8796C15673.8248,-924.6158 15652.7976,-911.2348 15633.731,-899.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"15635.4376,-896.039 15625.1219,-893.623 15631.6795,-901.9447 15635.4376,-896.039\"/>\n",
"</g>\n",
"<!-- 365 -->\n",
"<g id=\"node366\" class=\"node\">\n",
"<title>365</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"15844,-893.5 15677,-893.5 15677,-825.5 15844,-825.5 15844,-893.5\"/>\n",
"<text text-anchor=\"start\" x=\"15721\" y=\"-878.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #365</text>\n",
"<text text-anchor=\"start\" x=\"15716\" y=\"-863.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"15685\" y=\"-848.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"15718\" y=\"-833.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</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=\"M15759.1995,-936.8796C15759.3788,-926.2134 15759.5722,-914.7021 15759.7538,-903.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"15763.2546,-903.8724 15759.9233,-893.8149 15756.2556,-903.7547 15763.2546,-903.8724\"/>\n",
"</g>\n",
"<!-- 367 -->\n",
"<g id=\"node368\" class=\"node\">\n",
"<title>367</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"16029,-893.5 15862,-893.5 15862,-825.5 16029,-825.5 16029,-893.5\"/>\n",
"<text text-anchor=\"start\" x=\"15906\" y=\"-878.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #367</text>\n",
"<text text-anchor=\"start\" x=\"15901\" y=\"-863.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"15870\" y=\"-848.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 2]</text>\n",
"<text text-anchor=\"start\" x=\"15903\" y=\"-833.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 366&#45;&gt;367 -->\n",
"<g id=\"edge367\" class=\"edge\">\n",
"<title>366&#45;&gt;367</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M15946.8005,-936.8796C15946.6212,-926.2134 15946.4278,-914.7021 15946.2462,-903.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"15949.7444,-903.7547 15946.0767,-893.8149 15942.7454,-903.8724 15949.7444,-903.7547\"/>\n",
"</g>\n",
"<!-- 368 -->\n",
"<g id=\"node369\" class=\"node\">\n",
"<title>368</title>\n",
"<polygon fill=\"#39e5c5\" stroke=\"#000000\" points=\"16214,-893.5 16047,-893.5 16047,-825.5 16214,-825.5 16214,-893.5\"/>\n",
"<text text-anchor=\"start\" x=\"16091\" y=\"-878.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #368</text>\n",
"<text text-anchor=\"start\" x=\"16086\" y=\"-863.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"16055\" y=\"-848.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16070\" y=\"-833.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 366&#45;&gt;368 -->\n",
"<g id=\"edge368\" class=\"edge\">\n",
"<title>366&#45;&gt;368</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16011.5045,-936.8796C16030.3639,-924.6158 16050.9414,-911.2348 16069.6002,-899.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16071.5497,-902.0088 16078.0251,-893.623 16067.7336,-896.1404 16071.5497,-902.0088\"/>\n",
"</g>\n",
"<!-- 370 -->\n",
"<g id=\"node371\" class=\"node\">\n",
"<title>370</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.819608\" stroke=\"#000000\" points=\"16549.5,-1139 16373.5,-1139 16373.5,-1056 16549.5,-1056 16549.5,-1139\"/>\n",
"<text text-anchor=\"start\" x=\"16422\" y=\"-1123.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #370</text>\n",
"<text text-anchor=\"start\" x=\"16403.5\" y=\"-1108.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cucumber ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"16412.5\" y=\"-1093.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 63</text>\n",
"<text text-anchor=\"start\" x=\"16381.5\" y=\"-1078.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [53, 0, 2, 8, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16405.5\" y=\"-1063.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</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=\"M16551.8845,-1174.8796C16540.9438,-1165.513 16529.2418,-1155.4948 16518.0092,-1145.8784\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16520.1956,-1143.1428 16510.323,-1139.2981 16515.6432,-1148.4603 16520.1956,-1143.1428\"/>\n",
"</g>\n",
"<!-- 395 -->\n",
"<g id=\"node396\" class=\"node\">\n",
"<title>395</title>\n",
"<polygon fill=\"#39e5c5\" stroke=\"#000000\" points=\"16734,-1131.5 16567,-1131.5 16567,-1063.5 16734,-1063.5 16734,-1131.5\"/>\n",
"<text text-anchor=\"start\" x=\"16611\" y=\"-1116.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #395</text>\n",
"<text text-anchor=\"start\" x=\"16606\" y=\"-1101.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"16575\" y=\"-1086.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 2, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16590\" y=\"-1071.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 369&#45;&gt;395 -->\n",
"<g id=\"edge395\" class=\"edge\">\n",
"<title>369&#45;&gt;395</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16617.9876,-1174.8796C16622.5616,-1163.9935 16627.5054,-1152.227 16632.1242,-1141.2344\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16635.435,-1142.39 16636.082,-1131.8149 16628.9815,-1139.6784 16635.435,-1142.39\"/>\n",
"</g>\n",
"<!-- 371 -->\n",
"<g id=\"node372\" class=\"node\">\n",
"<title>371</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.850980\" stroke=\"#000000\" points=\"16549.5,-1020 16373.5,-1020 16373.5,-937 16549.5,-937 16549.5,-1020\"/>\n",
"<text text-anchor=\"start\" x=\"16422\" y=\"-1004.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #371</text>\n",
"<text text-anchor=\"start\" x=\"16408\" y=\"-989.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">pumpkin ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"16412.5\" y=\"-974.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 60</text>\n",
"<text text-anchor=\"start\" x=\"16381.5\" y=\"-959.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [52, 0, 2, 6, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16405.5\" y=\"-944.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 370&#45;&gt;371 -->\n",
"<g id=\"edge371\" class=\"edge\">\n",
"<title>370&#45;&gt;371</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16461.5,-1055.8796C16461.5,-1047.6838 16461.5,-1038.9891 16461.5,-1030.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16465.0001,-1030.298 16461.5,-1020.2981 16458.0001,-1030.2981 16465.0001,-1030.298\"/>\n",
"</g>\n",
"<!-- 392 -->\n",
"<g id=\"node393\" class=\"node\">\n",
"<title>392</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.498039\" stroke=\"#000000\" points=\"16734,-1020 16567,-1020 16567,-937 16734,-937 16734,-1020\"/>\n",
"<text text-anchor=\"start\" x=\"16611\" y=\"-1004.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #392</text>\n",
"<text text-anchor=\"start\" x=\"16613\" y=\"-989.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">beef ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"16606\" y=\"-974.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"16575\" y=\"-959.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 2, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16597\" y=\"-944.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 370&#45;&gt;392 -->\n",
"<g id=\"edge392\" class=\"edge\">\n",
"<title>370&#45;&gt;392</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16527.603,-1055.8796C16543.1413,-1046.0962 16559.8088,-1035.6019 16575.6987,-1025.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16577.8368,-1028.3869 16584.4343,-1020.0969 16574.1071,-1022.4633 16577.8368,-1028.3869\"/>\n",
"</g>\n",
"<!-- 372 -->\n",
"<g id=\"node373\" class=\"node\">\n",
"<title>372</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.870588\" stroke=\"#000000\" points=\"16407.5,-901 16231.5,-901 16231.5,-818 16407.5,-818 16407.5,-901\"/>\n",
"<text text-anchor=\"start\" x=\"16280\" y=\"-885.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #372</text>\n",
"<text text-anchor=\"start\" x=\"16274\" y=\"-870.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">ginger ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"16270.5\" y=\"-855.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 59</text>\n",
"<text text-anchor=\"start\" x=\"16239.5\" y=\"-840.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [52, 0, 2, 5, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16263.5\" y=\"-825.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 371&#45;&gt;372 -->\n",
"<g id=\"edge372\" class=\"edge\">\n",
"<title>371&#45;&gt;372</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16411.8353,-936.8796C16400.6584,-927.513 16388.7038,-917.4948 16377.2288,-907.8784\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16379.2893,-905.0386 16369.3767,-901.2981 16374.7931,-910.4037 16379.2893,-905.0386\"/>\n",
"</g>\n",
"<!-- 391 -->\n",
"<g id=\"node392\" class=\"node\">\n",
"<title>391</title>\n",
"<polygon fill=\"#3c39e5\" stroke=\"#000000\" points=\"16592,-893.5 16425,-893.5 16425,-825.5 16592,-825.5 16592,-893.5\"/>\n",
"<text text-anchor=\"start\" x=\"16469\" y=\"-878.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #391</text>\n",
"<text text-anchor=\"start\" x=\"16464\" y=\"-863.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"16433\" y=\"-848.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16455\" y=\"-833.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 371&#45;&gt;391 -->\n",
"<g id=\"edge391\" class=\"edge\">\n",
"<title>371&#45;&gt;391</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16477.9383,-936.8796C16482.2379,-925.9935 16486.8851,-914.227 16491.2268,-903.2344\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16494.5288,-904.4015 16494.947,-893.8149 16488.0182,-901.8301 16494.5288,-904.4015\"/>\n",
"</g>\n",
"<!-- 373 -->\n",
"<g id=\"node374\" class=\"node\">\n",
"<title>373</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.705882\" stroke=\"#000000\" points=\"16310.5,-782 16134.5,-782 16134.5,-699 16310.5,-699 16310.5,-782\"/>\n",
"<text text-anchor=\"start\" x=\"16183\" y=\"-766.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #373</text>\n",
"<text text-anchor=\"start\" x=\"16175.5\" y=\"-751.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">pepper ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"16173.5\" y=\"-736.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 20</text>\n",
"<text text-anchor=\"start\" x=\"16142.5\" y=\"-721.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [15, 0, 2, 3, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16166.5\" y=\"-706.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</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=\"M16285.5741,-817.8796C16278.3062,-808.9633 16270.557,-799.4565 16263.0672,-790.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16265.6018,-787.8379 16256.5707,-782.2981 16260.176,-792.2606 16265.6018,-787.8379\"/>\n",
"</g>\n",
"<!-- 384 -->\n",
"<g id=\"node385\" class=\"node\">\n",
"<title>384</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.945098\" stroke=\"#000000\" points=\"16504.5,-782 16328.5,-782 16328.5,-699 16504.5,-699 16504.5,-782\"/>\n",
"<text text-anchor=\"start\" x=\"16377\" y=\"-766.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #384</text>\n",
"<text text-anchor=\"start\" x=\"16361\" y=\"-751.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">mackerel ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"16367.5\" y=\"-736.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 39</text>\n",
"<text text-anchor=\"start\" x=\"16336.5\" y=\"-721.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [37, 0, 0, 2, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16360.5\" y=\"-706.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 372&#45;&gt;384 -->\n",
"<g id=\"edge384\" class=\"edge\">\n",
"<title>372&#45;&gt;384</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16353.4259,-817.8796C16360.6938,-808.9633 16368.443,-799.4565 16375.9328,-790.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16378.824,-792.2606 16382.4293,-782.2981 16373.3982,-787.8379 16378.824,-792.2606\"/>\n",
"</g>\n",
"<!-- 374 -->\n",
"<g id=\"node375\" class=\"node\">\n",
"<title>374</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.749020\" stroke=\"#000000\" points=\"16123.5,-663 15947.5,-663 15947.5,-580 16123.5,-580 16123.5,-663\"/>\n",
"<text text-anchor=\"start\" x=\"15996\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #374</text>\n",
"<text text-anchor=\"start\" x=\"16001.5\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">nut ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"15986.5\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 19</text>\n",
"<text text-anchor=\"start\" x=\"15955.5\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [15, 0, 1, 3, 0]</text>\n",
"<text text-anchor=\"start\" x=\"15979.5\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 373&#45;&gt;374 -->\n",
"<g id=\"edge374\" class=\"edge\">\n",
"<title>373&#45;&gt;374</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16157.0965,-698.8796C16141.7226,-689.0962 16125.2315,-678.6019 16109.5098,-668.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16111.1823,-665.5129 16100.8666,-663.0969 16107.4241,-671.4185 16111.1823,-665.5129\"/>\n",
"</g>\n",
"<!-- 383 -->\n",
"<g id=\"node384\" class=\"node\">\n",
"<title>383</title>\n",
"<polygon fill=\"#39e5c5\" stroke=\"#000000\" points=\"16308,-655.5 16141,-655.5 16141,-587.5 16308,-587.5 16308,-655.5\"/>\n",
"<text text-anchor=\"start\" x=\"16185\" y=\"-640.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #383</text>\n",
"<text text-anchor=\"start\" x=\"16180\" y=\"-625.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"16149\" y=\"-610.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16164\" y=\"-595.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 373&#45;&gt;383 -->\n",
"<g id=\"edge383\" class=\"edge\">\n",
"<title>373&#45;&gt;383</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16223.1995,-698.8796C16223.3788,-688.2134 16223.5722,-676.7021 16223.7538,-665.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16227.2546,-665.8724 16223.9233,-655.8149 16220.2556,-665.7547 16227.2546,-665.8724\"/>\n",
"</g>\n",
"<!-- 375 -->\n",
"<g id=\"node376\" class=\"node\">\n",
"<title>375</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.921569\" stroke=\"#000000\" points=\"15983.5,-544 15807.5,-544 15807.5,-461 15983.5,-461 15983.5,-544\"/>\n",
"<text text-anchor=\"start\" x=\"15856\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #375</text>\n",
"<text text-anchor=\"start\" x=\"15851\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">radish ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"15846.5\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 14</text>\n",
"<text text-anchor=\"start\" x=\"15815.5\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [13, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"15839.5\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 374&#45;&gt;375 -->\n",
"<g id=\"edge375\" class=\"edge\">\n",
"<title>374&#45;&gt;375</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M15986.5348,-579.8796C15975.5153,-570.513 15963.7291,-560.4948 15952.4158,-550.8784\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"15954.5604,-548.1078 15944.6742,-544.2981 15950.0268,-553.4414 15954.5604,-548.1078\"/>\n",
"</g>\n",
"<!-- 378 -->\n",
"<g id=\"node379\" class=\"node\">\n",
"<title>378</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"16168,-544 16001,-544 16001,-461 16168,-461 16168,-544\"/>\n",
"<text text-anchor=\"start\" x=\"16045\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #378</text>\n",
"<text text-anchor=\"start\" x=\"16035.5\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">vinegar ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"16040\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 5</text>\n",
"<text text-anchor=\"start\" x=\"16009\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 1, 2, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16028.5\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 374&#45;&gt;378 -->\n",
"<g id=\"edge378\" class=\"edge\">\n",
"<title>374&#45;&gt;378</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16052.6378,-579.8796C16056.1238,-571.4136 16059.829,-562.4153 16063.4331,-553.6626\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16066.7178,-554.8775 16067.289,-544.2981 16060.2451,-552.2122 16066.7178,-554.8775\"/>\n",
"</g>\n",
"<!-- 376 -->\n",
"<g id=\"node377\" class=\"node\">\n",
"<title>376</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"15795.5,-417.5 15619.5,-417.5 15619.5,-349.5 15795.5,-349.5 15795.5,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"15668\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #376</text>\n",
"<text text-anchor=\"start\" x=\"15658.5\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 13</text>\n",
"<text text-anchor=\"start\" x=\"15627.5\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [13, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"15651.5\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 375&#45;&gt;376 -->\n",
"<g id=\"edge376\" class=\"edge\">\n",
"<title>375&#45;&gt;376</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M15829.7467,-460.8796C15810.372,-448.6158 15789.2324,-435.2348 15770.0637,-423.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"15771.7302,-420.0141 15761.4087,-417.623 15767.9863,-425.9288 15771.7302,-420.0141\"/>\n",
"</g>\n",
"<!-- 377 -->\n",
"<g id=\"node378\" class=\"node\">\n",
"<title>377</title>\n",
"<polygon fill=\"#3c39e5\" stroke=\"#000000\" points=\"15980,-417.5 15813,-417.5 15813,-349.5 15980,-349.5 15980,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"15857\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #377</text>\n",
"<text text-anchor=\"start\" x=\"15852\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"15821\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"15843\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 375&#45;&gt;377 -->\n",
"<g id=\"edge377\" class=\"edge\">\n",
"<title>375&#45;&gt;377</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M15895.8498,-460.8796C15895.9394,-450.2134 15896.0361,-438.7021 15896.1269,-427.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"15899.6274,-427.844 15896.2116,-417.8149 15892.6276,-427.7851 15899.6274,-427.844\"/>\n",
"</g>\n",
"<!-- 379 -->\n",
"<g id=\"node380\" class=\"node\">\n",
"<title>379</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.498039\" stroke=\"#000000\" points=\"16167,-425 16000,-425 16000,-342 16167,-342 16167,-425\"/>\n",
"<text text-anchor=\"start\" x=\"16044\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #379</text>\n",
"<text text-anchor=\"start\" x=\"16046\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">beef ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"16039\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"16008\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 2, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16030\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M16084.1502,-460.8796C16084.0814,-452.6838 16084.0083,-443.9891 16083.937,-435.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16087.4352,-435.2683 16083.8512,-425.2981 16080.4355,-435.3272 16087.4352,-435.2683\"/>\n",
"</g>\n",
"<!-- 382 -->\n",
"<g id=\"node383\" class=\"node\">\n",
"<title>382</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"16352,-417.5 16185,-417.5 16185,-349.5 16352,-349.5 16352,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"16229\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #382</text>\n",
"<text text-anchor=\"start\" x=\"16224\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"16193\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16212.5\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 378&#45;&gt;382 -->\n",
"<g id=\"edge382\" class=\"edge\">\n",
"<title>378&#45;&gt;382</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16148.8543,-460.8796C16167.8167,-448.6158 16188.5066,-435.2348 16207.2674,-423.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16209.2421,-425.9926 16215.7383,-417.623 16205.4407,-420.1148 16209.2421,-425.9926\"/>\n",
"</g>\n",
"<!-- 380 -->\n",
"<g id=\"node381\" class=\"node\">\n",
"<title>380</title>\n",
"<polygon fill=\"#3c39e5\" stroke=\"#000000\" points=\"16074,-298.5 15907,-298.5 15907,-230.5 16074,-230.5 16074,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"15951\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #380</text>\n",
"<text text-anchor=\"start\" x=\"15946\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"15915\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 2, 0]</text>\n",
"<text text-anchor=\"start\" x=\"15937\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 379&#45;&gt;380 -->\n",
"<g id=\"edge380\" class=\"edge\">\n",
"<title>379&#45;&gt;380</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16050.9731,-341.8796C16042.1217,-330.5536 16032.5257,-318.2748 16023.6407,-306.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16026.2331,-304.539 16017.3176,-298.8149 16020.7176,-308.8494 16026.2331,-304.539\"/>\n",
"</g>\n",
"<!-- 381 -->\n",
"<g id=\"node382\" class=\"node\">\n",
"<title>381</title>\n",
"<polygon fill=\"#39e5c5\" stroke=\"#000000\" points=\"16259,-298.5 16092,-298.5 16092,-230.5 16259,-230.5 16259,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"16136\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #381</text>\n",
"<text text-anchor=\"start\" x=\"16131\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"16100\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16115\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 379&#45;&gt;381 -->\n",
"<g id=\"edge381\" class=\"edge\">\n",
"<title>379&#45;&gt;381</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16115.6771,-341.8796C16124.4333,-330.5536 16133.9262,-318.2748 16142.7156,-306.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16145.6234,-308.8671 16148.9708,-298.8149 16140.0854,-304.5856 16145.6234,-308.8671\"/>\n",
"</g>\n",
"<!-- 385 -->\n",
"<g id=\"node386\" class=\"node\">\n",
"<title>385</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.972549\" stroke=\"#000000\" points=\"16503.5,-663 16327.5,-663 16327.5,-580 16503.5,-580 16503.5,-663\"/>\n",
"<text text-anchor=\"start\" x=\"16376\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #385</text>\n",
"<text text-anchor=\"start\" x=\"16358.5\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">vegetable ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"16366.5\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 38</text>\n",
"<text text-anchor=\"start\" x=\"16335.5\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [37, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16359.5\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</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=\"M16416.1502,-698.8796C16416.0814,-690.6838 16416.0083,-681.9891 16415.937,-673.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16419.4352,-673.2683 16415.8512,-663.2981 16412.4355,-673.3272 16419.4352,-673.2683\"/>\n",
"</g>\n",
"<!-- 390 -->\n",
"<g id=\"node391\" class=\"node\">\n",
"<title>390</title>\n",
"<polygon fill=\"#3c39e5\" stroke=\"#000000\" points=\"16688,-655.5 16521,-655.5 16521,-587.5 16688,-587.5 16688,-655.5\"/>\n",
"<text text-anchor=\"start\" x=\"16565\" y=\"-640.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #390</text>\n",
"<text text-anchor=\"start\" x=\"16560\" y=\"-625.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"16529\" y=\"-610.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16551\" y=\"-595.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 384&#45;&gt;390 -->\n",
"<g id=\"edge390\" class=\"edge\">\n",
"<title>384&#45;&gt;390</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16482.2533,-698.8796C16501.628,-686.6158 16522.7676,-673.2348 16541.9363,-661.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16544.0137,-663.9288 16550.5913,-655.623 16540.2698,-658.0141 16544.0137,-663.9288\"/>\n",
"</g>\n",
"<!-- 386 -->\n",
"<g id=\"node387\" class=\"node\">\n",
"<title>386</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"16409.5,-536.5 16233.5,-536.5 16233.5,-468.5 16409.5,-468.5 16409.5,-536.5\"/>\n",
"<text text-anchor=\"start\" x=\"16282\" y=\"-521.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #386</text>\n",
"<text text-anchor=\"start\" x=\"16272.5\" y=\"-506.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 34</text>\n",
"<text text-anchor=\"start\" x=\"16241.5\" y=\"-491.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [34, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16265.5\" y=\"-476.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</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=\"M16382.6234,-579.8796C16373.6768,-568.5536 16363.9776,-556.2748 16354.9971,-544.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16357.551,-542.4926 16348.6059,-536.8149 16352.058,-546.8316 16357.551,-542.4926\"/>\n",
"</g>\n",
"<!-- 387 -->\n",
"<g id=\"node388\" class=\"node\">\n",
"<title>387</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.666667\" stroke=\"#000000\" points=\"16594,-544 16427,-544 16427,-461 16594,-461 16594,-544\"/>\n",
"<text text-anchor=\"start\" x=\"16471\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #387</text>\n",
"<text text-anchor=\"start\" x=\"16460.5\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">chicken ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"16466\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 4</text>\n",
"<text text-anchor=\"start\" x=\"16435\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16454.5\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 385&#45;&gt;387 -->\n",
"<g id=\"edge387\" class=\"edge\">\n",
"<title>385&#45;&gt;387</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16448.7264,-579.8796C16455.8444,-570.9633 16463.4339,-561.4565 16470.7692,-552.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16473.6281,-554.2968 16477.1318,-544.2981 16468.1575,-549.9295 16473.6281,-554.2968\"/>\n",
"</g>\n",
"<!-- 388 -->\n",
"<g id=\"node389\" class=\"node\">\n",
"<title>388</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"16565,-417.5 16398,-417.5 16398,-349.5 16565,-349.5 16565,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"16442\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #388</text>\n",
"<text text-anchor=\"start\" x=\"16437\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"16406\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16425.5\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</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=\"M16500.3572,-460.8796C16497.7311,-450.1034 16494.8948,-438.4647 16492.2392,-427.5677\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16495.6307,-426.7019 16489.8625,-417.8149 16488.8297,-428.3593 16495.6307,-426.7019\"/>\n",
"</g>\n",
"<!-- 389 -->\n",
"<g id=\"node390\" class=\"node\">\n",
"<title>389</title>\n",
"<polygon fill=\"#3c39e5\" stroke=\"#000000\" points=\"16750,-417.5 16583,-417.5 16583,-349.5 16750,-349.5 16750,-417.5\"/>\n",
"<text text-anchor=\"start\" x=\"16627\" y=\"-402.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #389</text>\n",
"<text text-anchor=\"start\" x=\"16622\" y=\"-387.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"16591\" y=\"-372.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16613\" y=\"-357.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 387&#45;&gt;389 -->\n",
"<g id=\"edge389\" class=\"edge\">\n",
"<title>387&#45;&gt;389</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16565.0612,-460.8796C16580.8484,-448.8368 16598.0479,-435.7167 16613.7241,-423.7586\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16615.9392,-426.4709 16621.7673,-417.623 16611.6937,-420.9053 16615.9392,-426.4709\"/>\n",
"</g>\n",
"<!-- 393 -->\n",
"<g id=\"node394\" class=\"node\">\n",
"<title>393</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"16777,-893.5 16610,-893.5 16610,-825.5 16777,-825.5 16777,-893.5\"/>\n",
"<text text-anchor=\"start\" x=\"16654\" y=\"-878.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #393</text>\n",
"<text text-anchor=\"start\" x=\"16649\" y=\"-863.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"16618\" y=\"-848.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16637.5\" y=\"-833.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 392&#45;&gt;393 -->\n",
"<g id=\"edge393\" class=\"edge\">\n",
"<title>392&#45;&gt;393</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16665.5393,-936.8796C16669.473,-925.9935 16673.7247,-914.227 16677.6968,-903.2344\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16680.9937,-904.4092 16681.1005,-893.8149 16674.4103,-902.0303 16680.9937,-904.4092\"/>\n",
"</g>\n",
"<!-- 394 -->\n",
"<g id=\"node395\" class=\"node\">\n",
"<title>394</title>\n",
"<polygon fill=\"#3c39e5\" stroke=\"#000000\" points=\"16962,-893.5 16795,-893.5 16795,-825.5 16962,-825.5 16962,-893.5\"/>\n",
"<text text-anchor=\"start\" x=\"16839\" y=\"-878.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #394</text>\n",
"<text text-anchor=\"start\" x=\"16834\" y=\"-863.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"16803\" y=\"-848.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 2, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16825\" y=\"-833.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 392&#45;&gt;394 -->\n",
"<g id=\"edge394\" class=\"edge\">\n",
"<title>392&#45;&gt;394</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16730.2433,-936.8796C16754.2695,-924.3396 16780.5337,-910.6315 16804.1919,-898.2836\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16805.8757,-901.3529 16813.1214,-893.623 16802.6368,-895.1473 16805.8757,-901.3529\"/>\n",
"</g>\n",
"<!-- 397 -->\n",
"<g id=\"node398\" class=\"node\">\n",
"<title>397</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.960784\" stroke=\"#000000\" points=\"16978.5,-1258 16802.5,-1258 16802.5,-1175 16978.5,-1175 16978.5,-1258\"/>\n",
"<text text-anchor=\"start\" x=\"16851\" y=\"-1242.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #397</text>\n",
"<text text-anchor=\"start\" x=\"16843.5\" y=\"-1227.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">lettuce ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"16841.5\" y=\"-1212.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 52</text>\n",
"<text text-anchor=\"start\" x=\"16810.5\" y=\"-1197.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [50, 0, 0, 2, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16834.5\" y=\"-1182.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 396&#45;&gt;397 -->\n",
"<g id=\"edge397\" class=\"edge\">\n",
"<title>396&#45;&gt;397</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16890.5,-1293.8796C16890.5,-1285.6838 16890.5,-1276.9891 16890.5,-1268.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16894.0001,-1268.298 16890.5,-1258.2981 16887.0001,-1268.2981 16894.0001,-1268.298\"/>\n",
"</g>\n",
"<!-- 402 -->\n",
"<g id=\"node403\" class=\"node\">\n",
"<title>402</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"17297,-1258 17130,-1258 17130,-1175 17297,-1175 17297,-1258\"/>\n",
"<text text-anchor=\"start\" x=\"17174\" y=\"-1242.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #402</text>\n",
"<text text-anchor=\"start\" x=\"17166.5\" y=\"-1227.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">mussel ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"17169\" y=\"-1212.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"17138\" y=\"-1197.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 1, 1]</text>\n",
"<text text-anchor=\"start\" x=\"17160\" y=\"-1182.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 396&#45;&gt;402 -->\n",
"<g id=\"edge402\" class=\"edge\">\n",
"<title>396&#45;&gt;402</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16978.7612,-1302.9827C17022.6135,-1286.8266 17075.6059,-1267.3031 17120.1358,-1250.8973\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17121.6209,-1254.0803 17129.7943,-1247.3389 17119.2009,-1247.5119 17121.6209,-1254.0803\"/>\n",
"</g>\n",
"<!-- 398 -->\n",
"<g id=\"node399\" class=\"node\">\n",
"<title>398</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.980392\" stroke=\"#000000\" points=\"16927.5,-1139 16751.5,-1139 16751.5,-1056 16927.5,-1056 16927.5,-1139\"/>\n",
"<text text-anchor=\"start\" x=\"16800\" y=\"-1123.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #398</text>\n",
"<text text-anchor=\"start\" x=\"16795\" y=\"-1108.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">barley ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"16790.5\" y=\"-1093.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 51</text>\n",
"<text text-anchor=\"start\" x=\"16759.5\" y=\"-1078.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [50, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16783.5\" y=\"-1063.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 397&#45;&gt;398 -->\n",
"<g id=\"edge398\" class=\"edge\">\n",
"<title>397&#45;&gt;398</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16872.6627,-1174.8796C16869.0344,-1166.4136 16865.178,-1157.4153 16861.4268,-1148.6626\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16864.5697,-1147.1108 16857.4135,-1139.2981 16858.1357,-1149.8683 16864.5697,-1147.1108\"/>\n",
"</g>\n",
"<!-- 401 -->\n",
"<g id=\"node402\" class=\"node\">\n",
"<title>401</title>\n",
"<polygon fill=\"#3c39e5\" stroke=\"#000000\" points=\"17112,-1131.5 16945,-1131.5 16945,-1063.5 17112,-1063.5 17112,-1131.5\"/>\n",
"<text text-anchor=\"start\" x=\"16989\" y=\"-1116.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #401</text>\n",
"<text text-anchor=\"start\" x=\"16984\" y=\"-1101.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"16953\" y=\"-1086.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16975\" y=\"-1071.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 397&#45;&gt;401 -->\n",
"<g id=\"edge401\" class=\"edge\">\n",
"<title>397&#45;&gt;401</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16938.7657,-1174.8796C16952.4101,-1163.1138 16967.2469,-1150.3197 16980.8546,-1138.5855\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16983.4187,-1140.9961 16988.7062,-1131.8149 16978.8473,-1135.6948 16983.4187,-1140.9961\"/>\n",
"</g>\n",
"<!-- 399 -->\n",
"<g id=\"node400\" class=\"node\">\n",
"<title>399</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"16927.5,-1012.5 16751.5,-1012.5 16751.5,-944.5 16927.5,-944.5 16927.5,-1012.5\"/>\n",
"<text text-anchor=\"start\" x=\"16800\" y=\"-997.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #399</text>\n",
"<text text-anchor=\"start\" x=\"16790.5\" y=\"-982.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 50</text>\n",
"<text text-anchor=\"start\" x=\"16759.5\" y=\"-967.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [50, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16783.5\" y=\"-952.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</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=\"M16839.5,-1055.8796C16839.5,-1045.2134 16839.5,-1033.7021 16839.5,-1022.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16843.0001,-1022.8149 16839.5,-1012.8149 16836.0001,-1022.815 16843.0001,-1022.8149\"/>\n",
"</g>\n",
"<!-- 400 -->\n",
"<g id=\"node401\" class=\"node\">\n",
"<title>400</title>\n",
"<polygon fill=\"#3c39e5\" stroke=\"#000000\" points=\"17112,-1012.5 16945,-1012.5 16945,-944.5 17112,-944.5 17112,-1012.5\"/>\n",
"<text text-anchor=\"start\" x=\"16989\" y=\"-997.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #400</text>\n",
"<text text-anchor=\"start\" x=\"16984\" y=\"-982.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"16953\" y=\"-967.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16975\" y=\"-952.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M16905.603,-1055.8796C16925.0808,-1043.6158 16946.3329,-1030.2348 16965.6035,-1018.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16967.7071,-1020.913 16974.3046,-1012.623 16963.9774,-1014.9894 16967.7071,-1020.913\"/>\n",
"</g>\n",
"<!-- 403 -->\n",
"<g id=\"node404\" class=\"node\">\n",
"<title>403</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"17297,-1131.5 17130,-1131.5 17130,-1063.5 17297,-1063.5 17297,-1131.5\"/>\n",
"<text text-anchor=\"start\" x=\"17174\" y=\"-1116.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #403</text>\n",
"<text text-anchor=\"start\" x=\"17169\" y=\"-1101.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"17138\" y=\"-1086.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"17171\" y=\"-1071.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 402&#45;&gt;403 -->\n",
"<g id=\"edge403\" class=\"edge\">\n",
"<title>402&#45;&gt;403</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17213.5,-1174.8796C17213.5,-1164.2134 17213.5,-1152.7021 17213.5,-1141.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17217.0001,-1141.8149 17213.5,-1131.8149 17210.0001,-1141.815 17217.0001,-1141.8149\"/>\n",
"</g>\n",
"<!-- 404 -->\n",
"<g id=\"node405\" class=\"node\">\n",
"<title>404</title>\n",
"<polygon fill=\"#3c39e5\" stroke=\"#000000\" points=\"17482,-1131.5 17315,-1131.5 17315,-1063.5 17482,-1063.5 17482,-1131.5\"/>\n",
"<text text-anchor=\"start\" x=\"17359\" y=\"-1116.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #404</text>\n",
"<text text-anchor=\"start\" x=\"17354\" y=\"-1101.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"17323\" y=\"-1086.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17345\" y=\"-1071.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 402&#45;&gt;404 -->\n",
"<g id=\"edge404\" class=\"edge\">\n",
"<title>402&#45;&gt;404</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17278.204,-1174.8796C17297.2696,-1162.6158 17318.0719,-1149.2348 17336.9346,-1137.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17338.9347,-1139.9766 17345.4516,-1131.623 17335.1478,-1134.0893 17338.9347,-1139.9766\"/>\n",
"</g>\n",
"<!-- 406 -->\n",
"<g id=\"node407\" class=\"node\">\n",
"<title>406</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.964706\" stroke=\"#000000\" points=\"18071,-1496 17886,-1496 17886,-1413 18071,-1413 18071,-1496\"/>\n",
"<text text-anchor=\"start\" x=\"17939\" y=\"-1480.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #406</text>\n",
"<text text-anchor=\"start\" x=\"17932.5\" y=\"-1465.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">mango ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"17925\" y=\"-1450.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 233</text>\n",
"<text text-anchor=\"start\" x=\"17894\" y=\"-1435.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 4, 225, 1]</text>\n",
"<text text-anchor=\"start\" x=\"17925\" y=\"-1420.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 405&#45;&gt;406 -->\n",
"<g id=\"edge406\" class=\"edge\">\n",
"<title>405&#45;&gt;406</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M18041.5741,-1531.8796C18034.3062,-1522.9633 18026.557,-1513.4565 18019.0672,-1504.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"18021.6018,-1501.8379 18012.5707,-1496.2981 18016.176,-1506.2606 18021.6018,-1501.8379\"/>\n",
"</g>\n",
"<!-- 437 -->\n",
"<g id=\"node438\" class=\"node\">\n",
"<title>437</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"18256,-1496 18089,-1496 18089,-1413 18256,-1413 18256,-1496\"/>\n",
"<text text-anchor=\"start\" x=\"18133\" y=\"-1480.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #437</text>\n",
"<text text-anchor=\"start\" x=\"18107.5\" y=\"-1465.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">thai_pepper ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"18128\" y=\"-1450.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"18097\" y=\"-1435.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"18116.5\" y=\"-1420.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 405&#45;&gt;437 -->\n",
"<g id=\"edge437\" class=\"edge\">\n",
"<title>405&#45;&gt;437</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M18109.4259,-1531.8796C18116.6938,-1522.9633 18124.443,-1513.4565 18131.9328,-1504.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"18134.824,-1506.2606 18138.4293,-1496.2981 18129.3982,-1501.8379 18134.824,-1506.2606\"/>\n",
"</g>\n",
"<!-- 407 -->\n",
"<g id=\"node408\" class=\"node\">\n",
"<title>407</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.968627\" stroke=\"#000000\" points=\"17879,-1377 17694,-1377 17694,-1294 17879,-1294 17879,-1377\"/>\n",
"<text text-anchor=\"start\" x=\"17747\" y=\"-1361.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #407</text>\n",
"<text text-anchor=\"start\" x=\"17727.5\" y=\"-1346.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">peanut_oil ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"17733\" y=\"-1331.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 232</text>\n",
"<text text-anchor=\"start\" x=\"17702\" y=\"-1316.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 0, 4, 225, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17733\" y=\"-1301.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 406&#45;&gt;407 -->\n",
"<g id=\"edge407\" class=\"edge\">\n",
"<title>406&#45;&gt;407</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17911.3477,-1412.8796C17895.5628,-1403.0962 17878.6307,-1392.6019 17862.4886,-1382.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17863.9581,-1379.3901 17853.6144,-1377.0969 17860.2703,-1385.34 17863.9581,-1379.3901\"/>\n",
"</g>\n",
"<!-- 436 -->\n",
"<g id=\"node437\" class=\"node\">\n",
"<title>436</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"18064,-1369.5 17897,-1369.5 17897,-1301.5 18064,-1301.5 18064,-1369.5\"/>\n",
"<text text-anchor=\"start\" x=\"17941\" y=\"-1354.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #436</text>\n",
"<text text-anchor=\"start\" x=\"17936\" y=\"-1339.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"17905\" y=\"-1324.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"17938\" y=\"-1309.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 406&#45;&gt;436 -->\n",
"<g id=\"edge436\" class=\"edge\">\n",
"<title>406&#45;&gt;436</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17979.1995,-1412.8796C17979.3788,-1402.2134 17979.5722,-1390.7021 17979.7538,-1379.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17983.2546,-1379.8724 17979.9233,-1369.8149 17976.2556,-1379.7547 17983.2546,-1379.8724\"/>\n",
"</g>\n",
"<!-- 408 -->\n",
"<g id=\"node409\" class=\"node\">\n",
"<title>408</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.972549\" stroke=\"#000000\" points=\"17782,-1258 17597,-1258 17597,-1175 17782,-1175 17782,-1258\"/>\n",
"<text text-anchor=\"start\" x=\"17650\" y=\"-1242.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #408</text>\n",
"<text text-anchor=\"start\" x=\"17642.5\" y=\"-1227.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">wasabi ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"17636\" y=\"-1212.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 231</text>\n",
"<text text-anchor=\"start\" x=\"17605\" y=\"-1197.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 4, 225, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17636\" y=\"-1182.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M17752.5741,-1293.8796C17745.3062,-1284.9633 17737.557,-1275.4565 17730.0672,-1266.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17732.6018,-1263.8379 17723.5707,-1258.2981 17727.176,-1268.2606 17732.6018,-1263.8379\"/>\n",
"</g>\n",
"<!-- 435 -->\n",
"<g id=\"node436\" class=\"node\">\n",
"<title>435</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"17967,-1250.5 17800,-1250.5 17800,-1182.5 17967,-1182.5 17967,-1250.5\"/>\n",
"<text text-anchor=\"start\" x=\"17844\" y=\"-1235.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #435</text>\n",
"<text text-anchor=\"start\" x=\"17839\" y=\"-1220.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"17808\" y=\"-1205.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17827.5\" y=\"-1190.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 407&#45;&gt;435 -->\n",
"<g id=\"edge435\" class=\"edge\">\n",
"<title>407&#45;&gt;435</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17820.4259,-1293.8796C17829.7476,-1282.4436 17839.8612,-1270.0363 17849.2036,-1258.575\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17851.9237,-1260.7775 17855.529,-1250.8149 17846.4979,-1256.3548 17851.9237,-1260.7775\"/>\n",
"</g>\n",
"<!-- 409 -->\n",
"<g id=\"node410\" class=\"node\">\n",
"<title>409</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.976471\" stroke=\"#000000\" points=\"17685,-1139 17500,-1139 17500,-1056 17685,-1056 17685,-1139\"/>\n",
"<text text-anchor=\"start\" x=\"17553\" y=\"-1123.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #409</text>\n",
"<text text-anchor=\"start\" x=\"17533.5\" y=\"-1108.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">enokidake ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"17539\" y=\"-1093.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 230</text>\n",
"<text text-anchor=\"start\" x=\"17508\" y=\"-1078.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 3, 225, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17539\" y=\"-1063.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M17655.5741,-1174.8796C17648.3062,-1165.9633 17640.557,-1156.4565 17633.0672,-1147.268\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17635.6018,-1144.8379 17626.5707,-1139.2981 17630.176,-1149.2606 17635.6018,-1144.8379\"/>\n",
"</g>\n",
"<!-- 434 -->\n",
"<g id=\"node435\" class=\"node\">\n",
"<title>434</title>\n",
"<polygon fill=\"#39e5c5\" stroke=\"#000000\" points=\"17870,-1131.5 17703,-1131.5 17703,-1063.5 17870,-1063.5 17870,-1131.5\"/>\n",
"<text text-anchor=\"start\" x=\"17747\" y=\"-1116.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #434</text>\n",
"<text text-anchor=\"start\" x=\"17742\" y=\"-1101.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"17711\" y=\"-1086.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17726\" y=\"-1071.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 408&#45;&gt;434 -->\n",
"<g id=\"edge434\" class=\"edge\">\n",
"<title>408&#45;&gt;434</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17723.4259,-1174.8796C17732.7476,-1163.4436 17742.8612,-1151.0363 17752.2036,-1139.575\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17754.9237,-1141.7775 17758.529,-1131.8149 17749.4979,-1137.3548 17754.9237,-1141.7775\"/>\n",
"</g>\n",
"<!-- 410 -->\n",
"<g id=\"node411\" class=\"node\">\n",
"<title>410</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.980392\" stroke=\"#000000\" points=\"17448,-1020 17263,-1020 17263,-937 17448,-937 17448,-1020\"/>\n",
"<text text-anchor=\"start\" x=\"17316\" y=\"-1004.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #410</text>\n",
"<text text-anchor=\"start\" x=\"17306.5\" y=\"-989.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">vinegar ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"17302\" y=\"-974.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 226</text>\n",
"<text text-anchor=\"start\" x=\"17271\" y=\"-959.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 3, 222, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17302\" y=\"-944.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M17509.6089,-1055.8796C17489.4929,-1045.7791 17467.8677,-1034.9209 17447.3644,-1024.626\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17448.8516,-1021.4563 17438.3443,-1020.0969 17445.7105,-1027.712 17448.8516,-1021.4563\"/>\n",
"</g>\n",
"<!-- 431 -->\n",
"<g id=\"node432\" class=\"node\">\n",
"<title>431</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.666667\" stroke=\"#000000\" points=\"17676,-1020 17509,-1020 17509,-937 17676,-937 17676,-1020\"/>\n",
"<text text-anchor=\"start\" x=\"17553\" y=\"-1004.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #431</text>\n",
"<text text-anchor=\"start\" x=\"17547.5\" y=\"-989.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">starch ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"17548\" y=\"-974.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 4</text>\n",
"<text text-anchor=\"start\" x=\"17517\" y=\"-959.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 3, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17539\" y=\"-944.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 409&#45;&gt;431 -->\n",
"<g id=\"edge431\" class=\"edge\">\n",
"<title>409&#45;&gt;431</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17592.5,-1055.8796C17592.5,-1047.6838 17592.5,-1038.9891 17592.5,-1030.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17596.0001,-1030.298 17592.5,-1020.2981 17589.0001,-1030.2981 17596.0001,-1030.298\"/>\n",
"</g>\n",
"<!-- 411 -->\n",
"<g id=\"node412\" class=\"node\">\n",
"<title>411</title>\n",
"<polygon fill=\"#3c39e5\" stroke=\"#000000\" points=\"17250,-893.5 17065,-893.5 17065,-825.5 17250,-825.5 17250,-893.5\"/>\n",
"<text text-anchor=\"start\" x=\"17118\" y=\"-878.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #411</text>\n",
"<text text-anchor=\"start\" x=\"17104\" y=\"-863.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 178</text>\n",
"<text text-anchor=\"start\" x=\"17073\" y=\"-848.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 178, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17104\" y=\"-833.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M17286.2492,-936.8796C17265.752,-924.5606 17243.3792,-911.1143 17223.1189,-898.9376\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17224.6502,-895.7745 17214.2761,-893.623 17221.0443,-901.7743 17224.6502,-895.7745\"/>\n",
"</g>\n",
"<!-- 412 -->\n",
"<g id=\"node413\" class=\"node\">\n",
"<title>412</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.909804\" stroke=\"#000000\" points=\"17443.5,-901 17267.5,-901 17267.5,-818 17443.5,-818 17443.5,-901\"/>\n",
"<text text-anchor=\"start\" x=\"17316\" y=\"-885.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #412</text>\n",
"<text text-anchor=\"start\" x=\"17295\" y=\"-870.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">beef_broth ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"17306.5\" y=\"-855.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 48</text>\n",
"<text text-anchor=\"start\" x=\"17275.5\" y=\"-840.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 3, 44, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17302\" y=\"-825.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 410&#45;&gt;412 -->\n",
"<g id=\"edge412\" class=\"edge\">\n",
"<title>410&#45;&gt;412</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17355.5,-936.8796C17355.5,-928.6838 17355.5,-919.9891 17355.5,-911.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17359.0001,-911.298 17355.5,-901.2981 17352.0001,-911.2981 17359.0001,-911.298\"/>\n",
"</g>\n",
"<!-- 413 -->\n",
"<g id=\"node414\" class=\"node\">\n",
"<title>413</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.933333\" stroke=\"#000000\" points=\"17255.5,-782 17073.5,-782 17073.5,-699 17255.5,-699 17255.5,-782\"/>\n",
"<text text-anchor=\"start\" x=\"17125\" y=\"-766.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #413</text>\n",
"<text text-anchor=\"start\" x=\"17081.5\" y=\"-751.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">chinese_cabbage ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"17115.5\" y=\"-736.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 47</text>\n",
"<text text-anchor=\"start\" x=\"17084.5\" y=\"-721.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 3, 44, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17111\" y=\"-706.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M17288.6975,-817.8796C17272.9947,-808.0962 17256.1509,-797.6019 17240.0929,-787.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17241.6031,-784.4144 17231.2648,-782.0969 17237.9015,-790.3556 17241.6031,-784.4144\"/>\n",
"</g>\n",
"<!-- 430 -->\n",
"<g id=\"node431\" class=\"node\">\n",
"<title>430</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"17441,-774.5 17274,-774.5 17274,-706.5 17441,-706.5 17441,-774.5\"/>\n",
"<text text-anchor=\"start\" x=\"17318\" y=\"-759.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #430</text>\n",
"<text text-anchor=\"start\" x=\"17313\" y=\"-744.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"17282\" y=\"-729.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17301.5\" y=\"-714.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 412&#45;&gt;430 -->\n",
"<g id=\"edge430\" class=\"edge\">\n",
"<title>412&#45;&gt;430</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17356.1995,-817.8796C17356.3788,-807.2134 17356.5722,-795.7021 17356.7538,-784.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17360.2546,-784.8724 17356.9233,-774.8149 17353.2556,-784.7547 17360.2546,-784.8724\"/>\n",
"</g>\n",
"<!-- 414 -->\n",
"<g id=\"node415\" class=\"node\">\n",
"<title>414</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.952941\" stroke=\"#000000\" points=\"17195.5,-663 17019.5,-663 17019.5,-580 17195.5,-580 17195.5,-663\"/>\n",
"<text text-anchor=\"start\" x=\"17068\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #414</text>\n",
"<text text-anchor=\"start\" x=\"17056\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cayenne ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"17058.5\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 45</text>\n",
"<text text-anchor=\"start\" x=\"17027.5\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 2, 43, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17054\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M17144.5642,-698.8796C17140.4659,-690.3236 17136.1072,-681.2238 17131.8727,-672.3833\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17134.9975,-670.8049 17127.5209,-663.2981 17128.6843,-673.8288 17134.9975,-670.8049\"/>\n",
"</g>\n",
"<!-- 427 -->\n",
"<g id=\"node428\" class=\"node\">\n",
"<title>427</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"17380,-663 17213,-663 17213,-580 17380,-580 17380,-663\"/>\n",
"<text text-anchor=\"start\" x=\"17257\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #427</text>\n",
"<text text-anchor=\"start\" x=\"17261.5\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">fish ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"17252\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"17221\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17236\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 413&#45;&gt;427 -->\n",
"<g id=\"edge427\" class=\"edge\">\n",
"<title>413&#45;&gt;427</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17210.6672,-698.8796C17220.9571,-689.6031 17231.956,-679.6874 17242.5287,-670.1559\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17245.0519,-672.5935 17250.1358,-663.2981 17240.3648,-667.3944 17245.0519,-672.5935\"/>\n",
"</g>\n",
"<!-- 415 -->\n",
"<g id=\"node416\" class=\"node\">\n",
"<title>415</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.819608\" stroke=\"#000000\" points=\"17001.5,-544 16825.5,-544 16825.5,-461 17001.5,-461 17001.5,-544\"/>\n",
"<text text-anchor=\"start\" x=\"16874\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #415</text>\n",
"<text text-anchor=\"start\" x=\"16844\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">vegetable_oil ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"16864.5\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 13</text>\n",
"<text text-anchor=\"start\" x=\"16833.5\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 2, 11, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16860\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M17039.6482,-579.8796C17023.6989,-570.0962 17006.5904,-559.6019 16990.2802,-549.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16991.6677,-546.3422 16981.3135,-544.0969 16988.0075,-552.3091 16991.6677,-546.3422\"/>\n",
"</g>\n",
"<!-- 426 -->\n",
"<g id=\"node427\" class=\"node\">\n",
"<title>426</title>\n",
"<polygon fill=\"#3c39e5\" stroke=\"#000000\" points=\"17195.5,-536.5 17019.5,-536.5 17019.5,-468.5 17195.5,-468.5 17195.5,-536.5\"/>\n",
"<text text-anchor=\"start\" x=\"17068\" y=\"-521.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #426</text>\n",
"<text text-anchor=\"start\" x=\"17058.5\" y=\"-506.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 32</text>\n",
"<text text-anchor=\"start\" x=\"17027.5\" y=\"-491.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 32, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17054\" y=\"-476.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 414&#45;&gt;426 -->\n",
"<g id=\"edge426\" class=\"edge\">\n",
"<title>414&#45;&gt;426</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17107.5,-579.8796C17107.5,-569.2134 17107.5,-557.7021 17107.5,-546.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17111.0001,-546.8149 17107.5,-536.8149 17104.0001,-546.815 17111.0001,-546.8149\"/>\n",
"</g>\n",
"<!-- 416 -->\n",
"<g id=\"node417\" class=\"node\">\n",
"<title>416</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.901961\" stroke=\"#000000\" points=\"16972.5,-425 16796.5,-425 16796.5,-342 16972.5,-342 16972.5,-425\"/>\n",
"<text text-anchor=\"start\" x=\"16845\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #416</text>\n",
"<text text-anchor=\"start\" x=\"16831.5\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">seaweed ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"16835.5\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 11</text>\n",
"<text text-anchor=\"start\" x=\"16804.5\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 10, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16831\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 415&#45;&gt;416 -->\n",
"<g id=\"edge416\" class=\"edge\">\n",
"<title>415&#45;&gt;416</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16903.3572,-460.8796C16901.338,-452.5938 16899.1945,-443.798 16897.1044,-435.2216\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16900.4543,-434.185 16894.6861,-425.2981 16893.6534,-435.8425 16900.4543,-434.185\"/>\n",
"</g>\n",
"<!-- 423 -->\n",
"<g id=\"node424\" class=\"node\">\n",
"<title>423</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"17157,-425 16990,-425 16990,-342 17157,-342 17157,-425\"/>\n",
"<text text-anchor=\"start\" x=\"17034\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #423</text>\n",
"<text text-anchor=\"start\" x=\"17036\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">beef ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"17029\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"16998\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17013\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 415&#45;&gt;423 -->\n",
"<g id=\"edge423\" class=\"edge\">\n",
"<title>415&#45;&gt;423</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16969.4602,-460.8796C16982.3708,-451.2774 16996.2021,-440.9903 17009.4282,-431.1534\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17011.6361,-433.8732 17017.5714,-425.0969 17007.4586,-428.2564 17011.6361,-433.8732\"/>\n",
"</g>\n",
"<!-- 417 -->\n",
"<g id=\"node418\" class=\"node\">\n",
"<title>417</title>\n",
"<polygon fill=\"#3c39e5\" stroke=\"#000000\" points=\"16784,-298.5 16617,-298.5 16617,-230.5 16784,-230.5 16784,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"16661\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #417</text>\n",
"<text text-anchor=\"start\" x=\"16656\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 7</text>\n",
"<text text-anchor=\"start\" x=\"16625\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 7, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16647\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 416&#45;&gt;417 -->\n",
"<g id=\"edge417\" class=\"edge\">\n",
"<title>416&#45;&gt;417</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16820.1457,-341.8796C16801.1833,-329.6158 16780.4934,-316.2348 16761.7326,-304.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16763.5593,-301.1148 16753.2617,-298.623 16759.7579,-306.9926 16763.5593,-301.1148\"/>\n",
"</g>\n",
"<!-- 418 -->\n",
"<g id=\"node419\" class=\"node\">\n",
"<title>418</title>\n",
"<polygon fill=\"#3c39e5\" fill-opacity=\"0.666667\" stroke=\"#000000\" points=\"16969,-306 16802,-306 16802,-223 16969,-223 16969,-306\"/>\n",
"<text text-anchor=\"start\" x=\"16846\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #418</text>\n",
"<text text-anchor=\"start\" x=\"16841\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">radish ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"16841\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 4</text>\n",
"<text text-anchor=\"start\" x=\"16810\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 3, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16832\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 416&#45;&gt;418 -->\n",
"<g id=\"edge418\" class=\"edge\">\n",
"<title>416&#45;&gt;418</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16884.8498,-341.8796C16884.9186,-333.6838 16884.9917,-324.9891 16885.063,-316.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16888.5645,-316.3272 16885.1488,-306.2981 16881.5648,-316.2683 16888.5645,-316.3272\"/>\n",
"</g>\n",
"<!-- 419 -->\n",
"<g id=\"node420\" class=\"node\">\n",
"<title>419</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"16828,-187 16661,-187 16661,-104 16828,-104 16828,-187\"/>\n",
"<text text-anchor=\"start\" x=\"16705\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #419</text>\n",
"<text text-anchor=\"start\" x=\"16702\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">garlic ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"16700\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"16669\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16684\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 418&#45;&gt;419 -->\n",
"<g id=\"edge419\" class=\"edge\">\n",
"<title>418&#45;&gt;419</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16836.185,-222.8796C16825.0868,-213.513 16813.2165,-203.4948 16801.8223,-193.8784\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16803.925,-191.0731 16794.0254,-187.2981 16799.4101,-196.4225 16803.925,-191.0731\"/>\n",
"</g>\n",
"<!-- 422 -->\n",
"<g id=\"node423\" class=\"node\">\n",
"<title>422</title>\n",
"<polygon fill=\"#3c39e5\" stroke=\"#000000\" points=\"17013,-179.5 16846,-179.5 16846,-111.5 17013,-111.5 17013,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"16890\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #422</text>\n",
"<text text-anchor=\"start\" x=\"16885\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"16854\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 2, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16876\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 418&#45;&gt;422 -->\n",
"<g id=\"edge422\" class=\"edge\">\n",
"<title>418&#45;&gt;422</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M16900.8891,-222.8796C16904.9142,-211.9935 16909.2648,-200.227 16913.3293,-189.2344\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16916.6268,-190.4082 16916.8121,-179.8149 16910.0613,-187.9805 16916.6268,-190.4082\"/>\n",
"</g>\n",
"<!-- 420 -->\n",
"<g id=\"node421\" class=\"node\">\n",
"<title>420</title>\n",
"<polygon fill=\"#39e5c5\" stroke=\"#000000\" points=\"16801,-68 16634,-68 16634,0 16801,0 16801,-68\"/>\n",
"<text text-anchor=\"start\" x=\"16678\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #420</text>\n",
"<text text-anchor=\"start\" x=\"16673\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"16642\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16657\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</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=\"M16734.4462,-103.9815C16732.3987,-95.5261 16730.2379,-86.6026 16728.1698,-78.0623\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16731.5523,-77.159 16725.797,-68.2637 16724.7489,-78.8065 16731.5523,-77.159\"/>\n",
"</g>\n",
"<!-- 421 -->\n",
"<g id=\"node422\" class=\"node\">\n",
"<title>421</title>\n",
"<polygon fill=\"#3c39e5\" stroke=\"#000000\" points=\"16986,-68 16819,-68 16819,0 16986,0 16986,-68\"/>\n",
"<text text-anchor=\"start\" x=\"16863\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #421</text>\n",
"<text text-anchor=\"start\" x=\"16858\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"16827\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"16849\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M16803.3334,-103.9815C16817.211,-94.1881 16831.9784,-83.7668 16845.7614,-74.0402\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"16848.0469,-76.7111 16854.1993,-68.0856 16844.0108,-70.9918 16848.0469,-76.7111\"/>\n",
"</g>\n",
"<!-- 424 -->\n",
"<g id=\"node425\" class=\"node\">\n",
"<title>424</title>\n",
"<polygon fill=\"#3c39e5\" stroke=\"#000000\" points=\"17156,-298.5 16989,-298.5 16989,-230.5 17156,-230.5 17156,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"17033\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #424</text>\n",
"<text text-anchor=\"start\" x=\"17028\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"16997\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17019\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 423&#45;&gt;424 -->\n",
"<g id=\"edge424\" class=\"edge\">\n",
"<title>423&#45;&gt;424</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17073.1502,-341.8796C17073.0606,-331.2134 17072.9639,-319.7021 17072.8731,-308.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17076.3724,-308.7851 17072.7884,-298.8149 17069.3726,-308.844 17076.3724,-308.7851\"/>\n",
"</g>\n",
"<!-- 425 -->\n",
"<g id=\"node426\" class=\"node\">\n",
"<title>425</title>\n",
"<polygon fill=\"#39e5c5\" stroke=\"#000000\" points=\"17341,-298.5 17174,-298.5 17174,-230.5 17341,-230.5 17341,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"17218\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #425</text>\n",
"<text text-anchor=\"start\" x=\"17213\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"17182\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17197\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 423&#45;&gt;425 -->\n",
"<g id=\"edge425\" class=\"edge\">\n",
"<title>423&#45;&gt;425</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17137.8543,-341.8796C17156.8167,-329.6158 17177.5066,-316.2348 17196.2674,-304.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17198.2421,-306.9926 17204.7383,-298.623 17194.4407,-301.1148 17198.2421,-306.9926\"/>\n",
"</g>\n",
"<!-- 428 -->\n",
"<g id=\"node429\" class=\"node\">\n",
"<title>428</title>\n",
"<polygon fill=\"#39e5c5\" stroke=\"#000000\" points=\"17380,-536.5 17213,-536.5 17213,-468.5 17380,-468.5 17380,-536.5\"/>\n",
"<text text-anchor=\"start\" x=\"17257\" y=\"-521.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #428</text>\n",
"<text text-anchor=\"start\" x=\"17252\" y=\"-506.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"17221\" y=\"-491.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17236\" y=\"-476.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</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=\"M17296.5,-579.8796C17296.5,-569.2134 17296.5,-557.7021 17296.5,-546.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17300.0001,-546.8149 17296.5,-536.8149 17293.0001,-546.815 17300.0001,-546.8149\"/>\n",
"</g>\n",
"<!-- 429 -->\n",
"<g id=\"node430\" class=\"node\">\n",
"<title>429</title>\n",
"<polygon fill=\"#3c39e5\" stroke=\"#000000\" points=\"17565,-536.5 17398,-536.5 17398,-468.5 17565,-468.5 17565,-536.5\"/>\n",
"<text text-anchor=\"start\" x=\"17442\" y=\"-521.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #429</text>\n",
"<text text-anchor=\"start\" x=\"17437\" y=\"-506.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"17406\" y=\"-491.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17428\" y=\"-476.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 427&#45;&gt;429 -->\n",
"<g id=\"edge429\" class=\"edge\">\n",
"<title>427&#45;&gt;429</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17361.204,-579.8796C17380.2696,-567.6158 17401.0719,-554.2348 17419.9346,-542.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17421.9347,-544.9766 17428.4516,-536.623 17418.1478,-539.0893 17421.9347,-544.9766\"/>\n",
"</g>\n",
"<!-- 432 -->\n",
"<g id=\"node433\" class=\"node\">\n",
"<title>432</title>\n",
"<polygon fill=\"#3c39e5\" stroke=\"#000000\" points=\"17628,-893.5 17461,-893.5 17461,-825.5 17628,-825.5 17628,-893.5\"/>\n",
"<text text-anchor=\"start\" x=\"17505\" y=\"-878.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #432</text>\n",
"<text text-anchor=\"start\" x=\"17500\" y=\"-863.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"17469\" y=\"-848.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 3, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17491\" y=\"-833.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</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=\"M17575.7119,-936.8796C17571.3209,-925.9935 17566.5748,-914.227 17562.1408,-903.2344\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17565.328,-901.7796 17558.3413,-893.8149 17558.8362,-904.3982 17565.328,-901.7796\"/>\n",
"</g>\n",
"<!-- 433 -->\n",
"<g id=\"node434\" class=\"node\">\n",
"<title>433</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"17813,-893.5 17646,-893.5 17646,-825.5 17813,-825.5 17813,-893.5\"/>\n",
"<text text-anchor=\"start\" x=\"17690\" y=\"-878.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #433</text>\n",
"<text text-anchor=\"start\" x=\"17685\" y=\"-863.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"17654\" y=\"-848.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17673.5\" y=\"-833.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 431&#45;&gt;433 -->\n",
"<g id=\"edge433\" class=\"edge\">\n",
"<title>431&#45;&gt;433</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17640.416,-936.8796C17653.9615,-925.1138 17668.6908,-912.3197 17682.1998,-900.5855\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17684.7401,-903.015 17689.9946,-893.8149 17680.1497,-897.7303 17684.7401,-903.015\"/>\n",
"</g>\n",
"<!-- 438 -->\n",
"<g id=\"node439\" class=\"node\">\n",
"<title>438</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"18253,-1369.5 18086,-1369.5 18086,-1301.5 18253,-1301.5 18253,-1369.5\"/>\n",
"<text text-anchor=\"start\" x=\"18130\" y=\"-1354.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #438</text>\n",
"<text text-anchor=\"start\" x=\"18125\" y=\"-1339.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"18094\" y=\"-1324.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"18127\" y=\"-1309.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 437&#45;&gt;438 -->\n",
"<g id=\"edge438\" class=\"edge\">\n",
"<title>437&#45;&gt;438</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M18171.4507,-1412.8796C18171.1818,-1402.2134 18170.8916,-1390.7021 18170.6194,-1379.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"18174.1161,-1379.7235 18170.3651,-1369.8149 18167.1183,-1379.9 18174.1161,-1379.7235\"/>\n",
"</g>\n",
"<!-- 439 -->\n",
"<g id=\"node440\" class=\"node\">\n",
"<title>439</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"18438,-1369.5 18271,-1369.5 18271,-1301.5 18438,-1301.5 18438,-1369.5\"/>\n",
"<text text-anchor=\"start\" x=\"18315\" y=\"-1354.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #439</text>\n",
"<text text-anchor=\"start\" x=\"18310\" y=\"-1339.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"18279\" y=\"-1324.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"18298.5\" y=\"-1309.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 437&#45;&gt;439 -->\n",
"<g id=\"edge439\" class=\"edge\">\n",
"<title>437&#45;&gt;439</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M18236.1548,-1412.8796C18254.9111,-1400.6158 18275.3761,-1387.2348 18293.933,-1375.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"18295.8575,-1378.025 18302.3118,-1369.623 18292.0267,-1372.1662 18295.8575,-1378.025\"/>\n",
"</g>\n",
"<!-- 441 -->\n",
"<g id=\"node442\" class=\"node\">\n",
"<title>441</title>\n",
"<polygon fill=\"#7be539\" fill-opacity=\"0.850980\" stroke=\"#000000\" points=\"19316.5,-1615 19122.5,-1615 19122.5,-1532 19316.5,-1532 19316.5,-1615\"/>\n",
"<text text-anchor=\"start\" x=\"19180\" y=\"-1599.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #441</text>\n",
"<text text-anchor=\"start\" x=\"19161\" y=\"-1584.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">soy_sauce ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"19166\" y=\"-1569.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 382</text>\n",
"<text text-anchor=\"start\" x=\"19130.5\" y=\"-1554.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [4, 331, 3, 1, 43]</text>\n",
"<text text-anchor=\"start\" x=\"19168.5\" y=\"-1539.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 440&#45;&gt;441 -->\n",
"<g id=\"edge441\" class=\"edge\">\n",
"<title>440&#45;&gt;441</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M19219.5,-1650.8796C19219.5,-1642.6838 19219.5,-1633.9891 19219.5,-1625.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"19223.0001,-1625.298 19219.5,-1615.2981 19216.0001,-1625.2981 19223.0001,-1625.298\"/>\n",
"</g>\n",
"<!-- 506 -->\n",
"<g id=\"node507\" class=\"node\">\n",
"<title>506</title>\n",
"<polygon fill=\"#e539c0\" fill-opacity=\"0.721569\" stroke=\"#000000\" points=\"20234.5,-1615 20058.5,-1615 20058.5,-1532 20234.5,-1532 20234.5,-1615\"/>\n",
"<text text-anchor=\"start\" x=\"20107\" y=\"-1599.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #506</text>\n",
"<text text-anchor=\"start\" x=\"20101\" y=\"-1584.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">yogurt ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"20097.5\" y=\"-1569.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 55</text>\n",
"<text text-anchor=\"start\" x=\"20066.5\" y=\"-1554.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 8, 3, 2, 42]</text>\n",
"<text text-anchor=\"start\" x=\"20104\" y=\"-1539.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 440&#45;&gt;506 -->\n",
"<g id=\"edge506\" class=\"edge\">\n",
"<title>440&#45;&gt;506</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M19316.5171,-1680.0458C19494.142,-1657.2439 19869.722,-1609.0303 20048.2548,-1586.1118\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"20048.9536,-1589.5509 20058.4266,-1584.8061 20048.0623,-1582.6079 20048.9536,-1589.5509\"/>\n",
"</g>\n",
"<!-- 442 -->\n",
"<g id=\"node443\" class=\"node\">\n",
"<title>442</title>\n",
"<polygon fill=\"#7be539\" fill-opacity=\"0.913725\" stroke=\"#000000\" points=\"19085.5,-1496 18891.5,-1496 18891.5,-1413 19085.5,-1413 19085.5,-1496\"/>\n",
"<text text-anchor=\"start\" x=\"18949\" y=\"-1480.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #442</text>\n",
"<text text-anchor=\"start\" x=\"18925\" y=\"-1465.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">lemongrass ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"18935\" y=\"-1450.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 352</text>\n",
"<text text-anchor=\"start\" x=\"18899.5\" y=\"-1435.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 324, 2, 1, 24]</text>\n",
"<text text-anchor=\"start\" x=\"18937.5\" y=\"-1420.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 441&#45;&gt;442 -->\n",
"<g id=\"edge442\" class=\"edge\">\n",
"<title>441&#45;&gt;442</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M19138.7074,-1531.8796C19119.1886,-1521.8244 19098.212,-1511.0183 19078.3077,-1500.7645\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"19079.7396,-1497.5651 19069.247,-1496.0969 19076.5339,-1503.788 19079.7396,-1497.5651\"/>\n",
"</g>\n",
"<!-- 487 -->\n",
"<g id=\"node488\" class=\"node\">\n",
"<title>487</title>\n",
"<polygon fill=\"#e539c0\" fill-opacity=\"0.521569\" stroke=\"#000000\" points=\"19451.5,-1496 19275.5,-1496 19275.5,-1413 19451.5,-1413 19451.5,-1496\"/>\n",
"<text text-anchor=\"start\" x=\"19324\" y=\"-1480.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #487</text>\n",
"<text text-anchor=\"start\" x=\"19318.5\" y=\"-1465.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">potato ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"19314.5\" y=\"-1450.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 30</text>\n",
"<text text-anchor=\"start\" x=\"19283.5\" y=\"-1435.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [3, 7, 1, 0, 19]</text>\n",
"<text text-anchor=\"start\" x=\"19321\" y=\"-1420.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 441&#45;&gt;487 -->\n",
"<g id=\"edge487\" class=\"edge\">\n",
"<title>441&#45;&gt;487</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M19269.8642,-1531.8796C19281.1985,-1522.513 19293.3215,-1512.4948 19304.9581,-1502.8784\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"19307.4419,-1505.3663 19312.9208,-1496.2981 19302.9827,-1499.9703 19307.4419,-1505.3663\"/>\n",
"</g>\n",
"<!-- 443 -->\n",
"<g id=\"node444\" class=\"node\">\n",
"<title>443</title>\n",
"<polygon fill=\"#7be539\" fill-opacity=\"0.929412\" stroke=\"#000000\" points=\"18801.5,-1377 18607.5,-1377 18607.5,-1294 18801.5,-1294 18801.5,-1377\"/>\n",
"<text text-anchor=\"start\" x=\"18665\" y=\"-1361.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #443</text>\n",
"<text text-anchor=\"start\" x=\"18658.5\" y=\"-1346.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">shallot ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"18651\" y=\"-1331.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 346</text>\n",
"<text text-anchor=\"start\" x=\"18615.5\" y=\"-1316.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 323, 2, 1, 19]</text>\n",
"<text text-anchor=\"start\" x=\"18653.5\" y=\"-1301.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 442&#45;&gt;443 -->\n",
"<g id=\"edge443\" class=\"edge\">\n",
"<title>442&#45;&gt;443</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M18891.1606,-1413.7134C18865.3062,-1402.8801 18837.2527,-1391.1252 18810.9401,-1380.0999\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"18812.2879,-1376.8698 18801.7122,-1376.2333 18809.5826,-1383.326 18812.2879,-1376.8698\"/>\n",
"</g>\n",
"<!-- 484 -->\n",
"<g id=\"node485\" class=\"node\">\n",
"<title>484</title>\n",
"<polygon fill=\"#e539c0\" fill-opacity=\"0.800000\" stroke=\"#000000\" points=\"19072,-1377 18905,-1377 18905,-1294 19072,-1294 19072,-1377\"/>\n",
"<text text-anchor=\"start\" x=\"18949\" y=\"-1361.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #484</text>\n",
"<text text-anchor=\"start\" x=\"18915\" y=\"-1346.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">chicken_broth ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"18944\" y=\"-1331.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 6</text>\n",
"<text text-anchor=\"start\" x=\"18913\" y=\"-1316.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 1, 0, 0, 5]</text>\n",
"<text text-anchor=\"start\" x=\"18946\" y=\"-1301.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 442&#45;&gt;484 -->\n",
"<g id=\"edge484\" class=\"edge\">\n",
"<title>442&#45;&gt;484</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M18988.5,-1412.8796C18988.5,-1404.6838 18988.5,-1395.9891 18988.5,-1387.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"18992.0001,-1387.298 18988.5,-1377.2981 18985.0001,-1387.2981 18992.0001,-1387.298\"/>\n",
"</g>\n",
"<!-- 444 -->\n",
"<g id=\"node445\" class=\"node\">\n",
"<title>444</title>\n",
"<polygon fill=\"#7be539\" fill-opacity=\"0.945098\" stroke=\"#000000\" points=\"18603.5,-1258 18409.5,-1258 18409.5,-1175 18603.5,-1175 18603.5,-1258\"/>\n",
"<text text-anchor=\"start\" x=\"18467\" y=\"-1242.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #444</text>\n",
"<text text-anchor=\"start\" x=\"18449.5\" y=\"-1227.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">marjoram ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"18453\" y=\"-1212.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 333</text>\n",
"<text text-anchor=\"start\" x=\"18417.5\" y=\"-1197.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 316, 2, 1, 14]</text>\n",
"<text text-anchor=\"start\" x=\"18455.5\" y=\"-1182.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</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=\"M18635.2492,-1293.8796C18618.8203,-1284.0056 18601.1864,-1273.4075 18584.4011,-1263.3193\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"18586.0858,-1260.2484 18575.7117,-1258.0969 18582.4798,-1266.2482 18586.0858,-1260.2484\"/>\n",
"</g>\n",
"<!-- 475 -->\n",
"<g id=\"node476\" class=\"node\">\n",
"<title>475</title>\n",
"<polygon fill=\"#7be539\" fill-opacity=\"0.250980\" stroke=\"#000000\" points=\"18788,-1258 18621,-1258 18621,-1175 18788,-1175 18788,-1258\"/>\n",
"<text text-anchor=\"start\" x=\"18665\" y=\"-1242.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #475</text>\n",
"<text text-anchor=\"start\" x=\"18642\" y=\"-1227.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">white_wine ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"18655.5\" y=\"-1212.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 13</text>\n",
"<text text-anchor=\"start\" x=\"18629\" y=\"-1197.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 7, 0, 0, 5]</text>\n",
"<text text-anchor=\"start\" x=\"18653.5\" y=\"-1182.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 443&#45;&gt;475 -->\n",
"<g id=\"edge475\" class=\"edge\">\n",
"<title>443&#45;&gt;475</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M18704.5,-1293.8796C18704.5,-1285.6838 18704.5,-1276.9891 18704.5,-1268.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"18708.0001,-1268.298 18704.5,-1258.2981 18701.0001,-1268.2981 18708.0001,-1268.298\"/>\n",
"</g>\n",
"<!-- 445 -->\n",
"<g id=\"node446\" class=\"node\">\n",
"<title>445</title>\n",
"<polygon fill=\"#7be539\" fill-opacity=\"0.952941\" stroke=\"#000000\" points=\"18410.5,-1139 18216.5,-1139 18216.5,-1056 18410.5,-1056 18410.5,-1139\"/>\n",
"<text text-anchor=\"start\" x=\"18274\" y=\"-1123.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #445</text>\n",
"<text text-anchor=\"start\" x=\"18274.5\" y=\"-1108.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">basil ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"18260\" y=\"-1093.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 331</text>\n",
"<text text-anchor=\"start\" x=\"18224.5\" y=\"-1078.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 316, 2, 1, 12]</text>\n",
"<text text-anchor=\"start\" x=\"18262.5\" y=\"-1063.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</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=\"M18438.998,-1174.8796C18423.1308,-1165.0962 18406.1106,-1154.6019 18389.8844,-1144.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"18391.3129,-1141.3661 18380.9639,-1139.0969 18387.639,-1147.3245 18391.3129,-1141.3661\"/>\n",
"</g>\n",
"<!-- 474 -->\n",
"<g id=\"node475\" class=\"node\">\n",
"<title>474</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"18595,-1131.5 18428,-1131.5 18428,-1063.5 18595,-1063.5 18595,-1131.5\"/>\n",
"<text text-anchor=\"start\" x=\"18472\" y=\"-1116.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #474</text>\n",
"<text text-anchor=\"start\" x=\"18467\" y=\"-1101.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"18436\" y=\"-1086.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 2]</text>\n",
"<text text-anchor=\"start\" x=\"18469\" y=\"-1071.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 444&#45;&gt;474 -->\n",
"<g id=\"edge474\" class=\"edge\">\n",
"<title>444&#45;&gt;474</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M18508.2488,-1174.8796C18508.6969,-1164.2134 18509.1806,-1152.7021 18509.6344,-1141.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"18513.1352,-1141.9531 18510.0582,-1131.8149 18506.1414,-1141.6592 18513.1352,-1141.9531\"/>\n",
"</g>\n",
"<!-- 446 -->\n",
"<g id=\"node447\" class=\"node\">\n",
"<title>446</title>\n",
"<polygon fill=\"#7be539\" fill-opacity=\"0.960784\" stroke=\"#000000\" points=\"18235,-1020 18050,-1020 18050,-937 18235,-937 18235,-1020\"/>\n",
"<text text-anchor=\"start\" x=\"18103\" y=\"-1004.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #446</text>\n",
"<text text-anchor=\"start\" x=\"18069.5\" y=\"-989.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">peanut_butter ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"18089\" y=\"-974.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 326</text>\n",
"<text text-anchor=\"start\" x=\"18058\" y=\"-959.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 314, 2, 1, 9]</text>\n",
"<text text-anchor=\"start\" x=\"18091.5\" y=\"-944.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</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=\"M18253.6925,-1055.8796C18239.7642,-1046.1868 18224.8331,-1035.7961 18210.5769,-1025.8752\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"18212.4811,-1022.9362 18202.2737,-1020.0969 18208.4826,-1028.6819 18212.4811,-1022.9362\"/>\n",
"</g>\n",
"<!-- 471 -->\n",
"<g id=\"node472\" class=\"node\">\n",
"<title>471</title>\n",
"<polygon fill=\"#e539c0\" fill-opacity=\"0.333333\" stroke=\"#000000\" points=\"18420,-1020 18253,-1020 18253,-937 18420,-937 18420,-1020\"/>\n",
"<text text-anchor=\"start\" x=\"18297\" y=\"-1004.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #471</text>\n",
"<text text-anchor=\"start\" x=\"18294\" y=\"-989.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">garlic ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"18292\" y=\"-974.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 5</text>\n",
"<text text-anchor=\"start\" x=\"18261\" y=\"-959.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 2, 0, 0, 3]</text>\n",
"<text text-anchor=\"start\" x=\"18294\" y=\"-944.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 445&#45;&gt;471 -->\n",
"<g id=\"edge471\" class=\"edge\">\n",
"<title>445&#45;&gt;471</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M18321.5443,-1055.8796C18323.1457,-1047.5938 18324.8458,-1038.798 18326.5034,-1030.2216\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"18329.9601,-1030.7806 18328.4214,-1020.2981 18323.0872,-1029.4522 18329.9601,-1030.7806\"/>\n",
"</g>\n",
"<!-- 447 -->\n",
"<g id=\"node448\" class=\"node\">\n",
"<title>447</title>\n",
"<polygon fill=\"#7be539\" fill-opacity=\"0.968627\" stroke=\"#000000\" points=\"18046,-901 17831,-901 17831,-818 18046,-818 18046,-901\"/>\n",
"<text text-anchor=\"start\" x=\"17899\" y=\"-885.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #447</text>\n",
"<text text-anchor=\"start\" x=\"17839\" y=\"-870.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">roasted_sesame_seed ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"17885\" y=\"-855.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 323</text>\n",
"<text text-anchor=\"start\" x=\"17854\" y=\"-840.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 313, 2, 1, 7]</text>\n",
"<text text-anchor=\"start\" x=\"17887.5\" y=\"-825.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</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=\"M18071.1507,-936.8796C18054.2239,-927.0056 18036.0556,-916.4075 18018.7617,-906.3193\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"18020.2104,-903.1125 18009.809,-901.0969 18016.6833,-909.1589 18020.2104,-903.1125\"/>\n",
"</g>\n",
"<!-- 468 -->\n",
"<g id=\"node469\" class=\"node\">\n",
"<title>468</title>\n",
"<polygon fill=\"#e539c0\" fill-opacity=\"0.498039\" stroke=\"#000000\" points=\"18231,-901 18064,-901 18064,-818 18231,-818 18231,-901\"/>\n",
"<text text-anchor=\"start\" x=\"18108\" y=\"-885.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #468</text>\n",
"<text text-anchor=\"start\" x=\"18074\" y=\"-870.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">chicken_broth ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"18103\" y=\"-855.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"18072\" y=\"-840.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 1, 0, 0, 2]</text>\n",
"<text text-anchor=\"start\" x=\"18105\" y=\"-825.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 446&#45;&gt;468 -->\n",
"<g id=\"edge468\" class=\"edge\">\n",
"<title>446&#45;&gt;468</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M18144.2488,-936.8796C18144.5931,-928.6838 18144.9584,-919.9891 18145.3151,-911.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"18148.8208,-911.4362 18145.7438,-901.2981 18141.827,-911.1423 18148.8208,-911.4362\"/>\n",
"</g>\n",
"<!-- 448 -->\n",
"<g id=\"node449\" class=\"node\">\n",
"<title>448</title>\n",
"<polygon fill=\"#7be539\" fill-opacity=\"0.972549\" stroke=\"#000000\" points=\"17843,-782 17658,-782 17658,-699 17843,-699 17843,-782\"/>\n",
"<text text-anchor=\"start\" x=\"17711\" y=\"-766.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #448</text>\n",
"<text text-anchor=\"start\" x=\"17697.5\" y=\"-751.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">seaweed ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"17697\" y=\"-736.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 322</text>\n",
"<text text-anchor=\"start\" x=\"17666\" y=\"-721.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 313, 1, 1, 7]</text>\n",
"<text text-anchor=\"start\" x=\"17699.5\" y=\"-706.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</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=\"M17872.7467,-817.8796C17857.2906,-808.0962 17840.7113,-797.6019 17824.9055,-787.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17826.5377,-784.488 17816.2162,-782.0969 17822.7938,-790.4027 17826.5377,-784.488\"/>\n",
"</g>\n",
"<!-- 467 -->\n",
"<g id=\"node468\" class=\"node\">\n",
"<title>467</title>\n",
"<polygon fill=\"#39e5c5\" stroke=\"#000000\" points=\"18028,-774.5 17861,-774.5 17861,-706.5 18028,-706.5 18028,-774.5\"/>\n",
"<text text-anchor=\"start\" x=\"17905\" y=\"-759.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #467</text>\n",
"<text text-anchor=\"start\" x=\"17900\" y=\"-744.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"17869\" y=\"-729.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17884\" y=\"-714.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 447&#45;&gt;467 -->\n",
"<g id=\"edge467\" class=\"edge\">\n",
"<title>447&#45;&gt;467</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17940.5985,-817.8796C17941.1363,-807.2134 17941.7167,-795.7021 17942.2613,-784.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17945.7617,-784.9785 17942.7698,-774.8149 17938.7706,-784.626 17945.7617,-784.9785\"/>\n",
"</g>\n",
"<!-- 449 -->\n",
"<g id=\"node450\" class=\"node\">\n",
"<title>449</title>\n",
"<polygon fill=\"#7be539\" fill-opacity=\"0.976471\" stroke=\"#000000\" points=\"17809,-663 17624,-663 17624,-580 17809,-580 17809,-663\"/>\n",
"<text text-anchor=\"start\" x=\"17677\" y=\"-647.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #449</text>\n",
"<text text-anchor=\"start\" x=\"17669.5\" y=\"-632.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">mussel ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"17663\" y=\"-617.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 321</text>\n",
"<text text-anchor=\"start\" x=\"17632\" y=\"-602.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 313, 0, 1, 7]</text>\n",
"<text text-anchor=\"start\" x=\"17665.5\" y=\"-587.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 448&#45;&gt;449 -->\n",
"<g id=\"edge449\" class=\"edge\">\n",
"<title>448&#45;&gt;449</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17738.6084,-698.8796C17736.2153,-690.5037 17733.6733,-681.6067 17731.1977,-672.942\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17734.5549,-671.9518 17728.4423,-663.2981 17727.8243,-673.8749 17734.5549,-671.9518\"/>\n",
"</g>\n",
"<!-- 466 -->\n",
"<g id=\"node467\" class=\"node\">\n",
"<title>466</title>\n",
"<polygon fill=\"#39e5c5\" stroke=\"#000000\" points=\"17994,-655.5 17827,-655.5 17827,-587.5 17994,-587.5 17994,-655.5\"/>\n",
"<text text-anchor=\"start\" x=\"17871\" y=\"-640.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #466</text>\n",
"<text text-anchor=\"start\" x=\"17866\" y=\"-625.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"17835\" y=\"-610.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17850\" y=\"-595.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 448&#45;&gt;466 -->\n",
"<g id=\"edge466\" class=\"edge\">\n",
"<title>448&#45;&gt;466</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17806.4602,-698.8796C17822.6522,-686.8368 17840.2927,-673.7167 17856.3708,-661.7586\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17858.685,-664.3993 17864.6203,-655.623 17854.5075,-658.7825 17858.685,-664.3993\"/>\n",
"</g>\n",
"<!-- 450 -->\n",
"<g id=\"node451\" class=\"node\">\n",
"<title>450</title>\n",
"<polygon fill=\"#7be539\" fill-opacity=\"0.976471\" stroke=\"#000000\" points=\"17789,-544 17604,-544 17604,-461 17789,-461 17789,-544\"/>\n",
"<text text-anchor=\"start\" x=\"17657\" y=\"-528.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #450</text>\n",
"<text text-anchor=\"start\" x=\"17637.5\" y=\"-513.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">asparagus ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"17643\" y=\"-498.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 320</text>\n",
"<text text-anchor=\"start\" x=\"17612\" y=\"-483.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 313, 0, 1, 6]</text>\n",
"<text text-anchor=\"start\" x=\"17645.5\" y=\"-468.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</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=\"M17709.505,-579.8796C17708.1124,-571.5938 17706.6341,-562.798 17705.1927,-554.2216\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17708.634,-553.5796 17703.5249,-544.2981 17701.7308,-554.7399 17708.634,-553.5796\"/>\n",
"</g>\n",
"<!-- 465 -->\n",
"<g id=\"node466\" class=\"node\">\n",
"<title>465</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"17974,-536.5 17807,-536.5 17807,-468.5 17974,-468.5 17974,-536.5\"/>\n",
"<text text-anchor=\"start\" x=\"17851\" y=\"-521.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #465</text>\n",
"<text text-anchor=\"start\" x=\"17846\" y=\"-506.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"17815\" y=\"-491.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"17848\" y=\"-476.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 449&#45;&gt;465 -->\n",
"<g id=\"edge465\" class=\"edge\">\n",
"<title>449&#45;&gt;465</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17777.3568,-579.8796C17795.1271,-567.7263 17814.5017,-554.4759 17832.1153,-542.4297\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17834.3274,-545.1572 17840.6058,-536.623 17830.3757,-539.3792 17834.3274,-545.1572\"/>\n",
"</g>\n",
"<!-- 451 -->\n",
"<g id=\"node452\" class=\"node\">\n",
"<title>451</title>\n",
"<polygon fill=\"#7be539\" fill-opacity=\"0.980392\" stroke=\"#000000\" points=\"17777,-425 17592,-425 17592,-342 17777,-342 17777,-425\"/>\n",
"<text text-anchor=\"start\" x=\"17645\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #451</text>\n",
"<text text-anchor=\"start\" x=\"17637.5\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">squash ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"17631\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 318</text>\n",
"<text text-anchor=\"start\" x=\"17600\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 312, 0, 1, 5]</text>\n",
"<text text-anchor=\"start\" x=\"17633.5\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</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=\"M17692.303,-460.8796C17691.4765,-452.6838 17690.5997,-443.9891 17689.7438,-435.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17693.2007,-434.8964 17688.7149,-425.2981 17686.236,-435.5988 17693.2007,-434.8964\"/>\n",
"</g>\n",
"<!-- 462 -->\n",
"<g id=\"node463\" class=\"node\">\n",
"<title>462</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"17962,-425 17795,-425 17795,-342 17962,-342 17962,-425\"/>\n",
"<text text-anchor=\"start\" x=\"17839\" y=\"-409.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #462</text>\n",
"<text text-anchor=\"start\" x=\"17829\" y=\"-394.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">scallion ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"17834\" y=\"-379.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"17803\" y=\"-364.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 1, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"17827.5\" y=\"-349.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 450&#45;&gt;462 -->\n",
"<g id=\"edge462\" class=\"edge\">\n",
"<title>450&#45;&gt;462</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17760.1548,-460.8796C17775.1176,-451.0962 17791.1677,-440.6019 17806.4691,-430.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17808.4269,-433.4989 17814.8812,-425.0969 17804.5961,-427.6401 17808.4269,-433.4989\"/>\n",
"</g>\n",
"<!-- 452 -->\n",
"<g id=\"node453\" class=\"node\">\n",
"<title>452</title>\n",
"<polygon fill=\"#7be539\" fill-opacity=\"0.984314\" stroke=\"#000000\" points=\"17585,-306 17400,-306 17400,-223 17585,-223 17585,-306\"/>\n",
"<text text-anchor=\"start\" x=\"17453\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #452</text>\n",
"<text text-anchor=\"start\" x=\"17447.5\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">starch ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"17439\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 316</text>\n",
"<text text-anchor=\"start\" x=\"17408\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 311, 0, 1, 4]</text>\n",
"<text text-anchor=\"start\" x=\"17441.5\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 451&#45;&gt;452 -->\n",
"<g id=\"edge452\" class=\"edge\">\n",
"<title>451&#45;&gt;452</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17617.3477,-341.8796C17601.5628,-332.0962 17584.6307,-321.6019 17568.4886,-311.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17569.9581,-308.3901 17559.6144,-306.0969 17566.2703,-314.34 17569.9581,-308.3901\"/>\n",
"</g>\n",
"<!-- 459 -->\n",
"<g id=\"node460\" class=\"node\">\n",
"<title>459</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"17770,-306 17603,-306 17603,-223 17770,-223 17770,-306\"/>\n",
"<text text-anchor=\"start\" x=\"17647\" y=\"-290.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #459</text>\n",
"<text text-anchor=\"start\" x=\"17629.5\" y=\"-275.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">vegetable ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"17642\" y=\"-260.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"17611\" y=\"-245.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 1, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"17635.5\" y=\"-230.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 451&#45;&gt;459 -->\n",
"<g id=\"edge459\" class=\"edge\">\n",
"<title>451&#45;&gt;459</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17685.1995,-341.8796C17685.3372,-333.6838 17685.4834,-324.9891 17685.626,-316.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17689.1289,-316.3555 17685.7975,-306.2981 17682.1299,-316.2378 17689.1289,-316.3555\"/>\n",
"</g>\n",
"<!-- 453 -->\n",
"<g id=\"node454\" class=\"node\">\n",
"<title>453</title>\n",
"<polygon fill=\"#7be539\" fill-opacity=\"0.988235\" stroke=\"#000000\" points=\"17393,-187 17208,-187 17208,-104 17393,-104 17393,-187\"/>\n",
"<text text-anchor=\"start\" x=\"17261\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #453</text>\n",
"<text text-anchor=\"start\" x=\"17263\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">beef ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"17247\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 313</text>\n",
"<text text-anchor=\"start\" x=\"17216\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 309, 0, 1, 3]</text>\n",
"<text text-anchor=\"start\" x=\"17249.5\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 452&#45;&gt;453 -->\n",
"<g id=\"edge453\" class=\"edge\">\n",
"<title>452&#45;&gt;453</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17425.3477,-222.8796C17409.5628,-213.0962 17392.6307,-202.6019 17376.4886,-192.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17377.9581,-189.3901 17367.6144,-187.0969 17374.2703,-195.34 17377.9581,-189.3901\"/>\n",
"</g>\n",
"<!-- 456 -->\n",
"<g id=\"node457\" class=\"node\">\n",
"<title>456</title>\n",
"<polygon fill=\"#7be539\" fill-opacity=\"0.498039\" stroke=\"#000000\" points=\"17578,-187 17411,-187 17411,-104 17578,-104 17578,-187\"/>\n",
"<text text-anchor=\"start\" x=\"17455\" y=\"-171.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #456</text>\n",
"<text text-anchor=\"start\" x=\"17452\" y=\"-156.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">garlic ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"17450\" y=\"-141.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"17419\" y=\"-126.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 2, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"17443.5\" y=\"-111.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 452&#45;&gt;456 -->\n",
"<g id=\"edge456\" class=\"edge\">\n",
"<title>452&#45;&gt;456</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17493.1995,-222.8796C17493.3372,-214.6838 17493.4834,-205.9891 17493.626,-197.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17497.1289,-197.3555 17493.7975,-187.2981 17490.1299,-197.2378 17497.1289,-197.3555\"/>\n",
"</g>\n",
"<!-- 454 -->\n",
"<g id=\"node455\" class=\"node\">\n",
"<title>454</title>\n",
"<polygon fill=\"#7be539\" fill-opacity=\"0.988235\" stroke=\"#000000\" points=\"17202,-68 17017,-68 17017,0 17202,0 17202,-68\"/>\n",
"<text text-anchor=\"start\" x=\"17070\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #454</text>\n",
"<text text-anchor=\"start\" x=\"17056\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 305</text>\n",
"<text text-anchor=\"start\" x=\"17025\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 302, 0, 0, 3]</text>\n",
"<text text-anchor=\"start\" x=\"17058.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 453&#45;&gt;454 -->\n",
"<g id=\"edge454\" class=\"edge\">\n",
"<title>453&#45;&gt;454</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17229.3786,-103.9815C17212.1277,-93.911 17193.7395,-83.1764 17176.6773,-73.2161\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17178.2895,-70.1045 17167.8888,-68.0856 17174.7604,-76.1499 17178.2895,-70.1045\"/>\n",
"</g>\n",
"<!-- 455 -->\n",
"<g id=\"node456\" class=\"node\">\n",
"<title>455</title>\n",
"<polygon fill=\"#7be539\" fill-opacity=\"0.858824\" stroke=\"#000000\" points=\"17387,-68 17220,-68 17220,0 17387,0 17387,-68\"/>\n",
"<text text-anchor=\"start\" x=\"17264\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #455</text>\n",
"<text text-anchor=\"start\" x=\"17259\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 8</text>\n",
"<text text-anchor=\"start\" x=\"17228\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 7, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17252.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 453&#45;&gt;455 -->\n",
"<g id=\"edge455\" class=\"edge\">\n",
"<title>453&#45;&gt;455</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17301.6171,-103.9815C17301.8421,-95.618 17302.0795,-86.7965 17302.307,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17305.8078,-78.3542 17302.5781,-68.2637 17298.8103,-78.1659 17305.8078,-78.3542\"/>\n",
"</g>\n",
"<!-- 457 -->\n",
"<g id=\"node458\" class=\"node\">\n",
"<title>457</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"17576,-68 17409,-68 17409,0 17576,0 17576,-68\"/>\n",
"<text text-anchor=\"start\" x=\"17453\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #457</text>\n",
"<text text-anchor=\"start\" x=\"17448\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"17417\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"17450\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</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=\"M17493.7553,-103.9815C17493.6053,-95.618 17493.447,-86.7965 17493.2954,-78.3409\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17496.7935,-78.1993 17493.1146,-68.2637 17489.7946,-78.3249 17496.7935,-78.1993\"/>\n",
"</g>\n",
"<!-- 458 -->\n",
"<g id=\"node459\" class=\"node\">\n",
"<title>458</title>\n",
"<polygon fill=\"#7be539\" stroke=\"#000000\" points=\"17761,-68 17594,-68 17594,0 17761,0 17761,-68\"/>\n",
"<text text-anchor=\"start\" x=\"17638\" y=\"-52.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #458</text>\n",
"<text text-anchor=\"start\" x=\"17633\" y=\"-37.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"17602\" y=\"-22.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 2, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17626.5\" y=\"-7.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</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=\"M17562.6424,-103.9815C17579.0192,-94.0034 17596.4657,-83.3733 17612.6862,-73.4904\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17614.8382,-76.2778 17621.5568,-68.0856 17611.1959,-70.2999 17614.8382,-76.2778\"/>\n",
"</g>\n",
"<!-- 460 -->\n",
"<g id=\"node461\" class=\"node\">\n",
"<title>460</title>\n",
"<polygon fill=\"#7be539\" stroke=\"#000000\" points=\"17767,-179.5 17600,-179.5 17600,-111.5 17767,-111.5 17767,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"17644\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #460</text>\n",
"<text text-anchor=\"start\" x=\"17639\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"17608\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 1, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17632.5\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 459&#45;&gt;460 -->\n",
"<g id=\"edge460\" class=\"edge\">\n",
"<title>459&#45;&gt;460</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17685.4507,-222.8796C17685.1818,-212.2134 17684.8916,-200.7021 17684.6194,-189.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17688.1161,-189.7235 17684.3651,-179.8149 17681.1183,-189.9 17688.1161,-189.7235\"/>\n",
"</g>\n",
"<!-- 461 -->\n",
"<g id=\"node462\" class=\"node\">\n",
"<title>461</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"17952,-179.5 17785,-179.5 17785,-111.5 17952,-111.5 17952,-179.5\"/>\n",
"<text text-anchor=\"start\" x=\"17829\" y=\"-164.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #461</text>\n",
"<text text-anchor=\"start\" x=\"17824\" y=\"-149.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"17793\" y=\"-134.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"17826\" y=\"-119.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 459&#45;&gt;461 -->\n",
"<g id=\"edge461\" class=\"edge\">\n",
"<title>459&#45;&gt;461</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17750.1548,-222.8796C17768.9111,-210.6158 17789.3761,-197.2348 17807.933,-185.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17809.8575,-188.025 17816.3118,-179.623 17806.0267,-182.1662 17809.8575,-188.025\"/>\n",
"</g>\n",
"<!-- 463 -->\n",
"<g id=\"node464\" class=\"node\">\n",
"<title>463</title>\n",
"<polygon fill=\"#7be539\" stroke=\"#000000\" points=\"17959,-298.5 17792,-298.5 17792,-230.5 17959,-230.5 17959,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"17836\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #463</text>\n",
"<text text-anchor=\"start\" x=\"17831\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"17800\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 1, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"17824.5\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 462&#45;&gt;463 -->\n",
"<g id=\"edge463\" class=\"edge\">\n",
"<title>462&#45;&gt;463</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17877.4507,-341.8796C17877.1818,-331.2134 17876.8916,-319.7021 17876.6194,-308.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"17880.1161,-308.7235 17876.3651,-298.8149 17873.1183,-308.9 17880.1161,-308.7235\"/>\n",
"</g>\n",
"<!-- 464 -->\n",
"<g id=\"node465\" class=\"node\">\n",
"<title>464</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"18144,-298.5 17977,-298.5 17977,-230.5 18144,-230.5 18144,-298.5\"/>\n",
"<text text-anchor=\"start\" x=\"18021\" y=\"-283.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #464</text>\n",
"<text text-anchor=\"start\" x=\"18016\" y=\"-268.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"17985\" y=\"-253.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"18018\" y=\"-238.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 462&#45;&gt;464 -->\n",
"<g id=\"edge464\" class=\"edge\">\n",
"<title>462&#45;&gt;464</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M17942.1548,-341.8796C17960.9111,-329.6158 17981.3761,-316.2348 17999.933,-304.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"18001.8575,-307.025 18008.3118,-298.623 17998.0267,-301.1662 18001.8575,-307.025\"/>\n",
"</g>\n",
"<!-- 469 -->\n",
"<g id=\"node470\" class=\"node\">\n",
"<title>469</title>\n",
"<polygon fill=\"#7be539\" stroke=\"#000000\" points=\"18225,-774.5 18058,-774.5 18058,-706.5 18225,-706.5 18225,-774.5\"/>\n",
"<text text-anchor=\"start\" x=\"18102\" y=\"-759.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #469</text>\n",
"<text text-anchor=\"start\" x=\"18097\" y=\"-744.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"18066\" y=\"-729.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 1, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"18090.5\" y=\"-714.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</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=\"M18145.4015,-817.8796C18144.8637,-807.2134 18144.2833,-795.7021 18143.7387,-784.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"18147.2294,-784.626 18143.2302,-774.8149 18140.2383,-784.9785 18147.2294,-784.626\"/>\n",
"</g>\n",
"<!-- 470 -->\n",
"<g id=\"node471\" class=\"node\">\n",
"<title>470</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"18410,-774.5 18243,-774.5 18243,-706.5 18410,-706.5 18410,-774.5\"/>\n",
"<text text-anchor=\"start\" x=\"18287\" y=\"-759.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #470</text>\n",
"<text text-anchor=\"start\" x=\"18282\" y=\"-744.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"18251\" y=\"-729.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 2]</text>\n",
"<text text-anchor=\"start\" x=\"18284\" y=\"-714.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 468&#45;&gt;470 -->\n",
"<g id=\"edge470\" class=\"edge\">\n",
"<title>468&#45;&gt;470</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M18210.1055,-817.8796C18228.3865,-805.7263 18248.3178,-792.4759 18266.4376,-780.4297\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"18268.7821,-783.074 18275.1721,-774.623 18264.9067,-777.2447 18268.7821,-783.074\"/>\n",
"</g>\n",
"<!-- 472 -->\n",
"<g id=\"node473\" class=\"node\">\n",
"<title>472</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"18416,-893.5 18249,-893.5 18249,-825.5 18416,-825.5 18416,-893.5\"/>\n",
"<text text-anchor=\"start\" x=\"18293\" y=\"-878.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #472</text>\n",
"<text text-anchor=\"start\" x=\"18288\" y=\"-863.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"18257\" y=\"-848.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 3]</text>\n",
"<text text-anchor=\"start\" x=\"18290\" y=\"-833.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</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=\"M18335.101,-936.8796C18334.7425,-926.2134 18334.3555,-914.7021 18333.9925,-903.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"18337.4875,-903.6917 18333.6534,-893.8149 18330.4915,-903.9269 18337.4875,-903.6917\"/>\n",
"</g>\n",
"<!-- 473 -->\n",
"<g id=\"node474\" class=\"node\">\n",
"<title>473</title>\n",
"<polygon fill=\"#7be539\" stroke=\"#000000\" points=\"18601,-893.5 18434,-893.5 18434,-825.5 18601,-825.5 18601,-893.5\"/>\n",
"<text text-anchor=\"start\" x=\"18478\" y=\"-878.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #473</text>\n",
"<text text-anchor=\"start\" x=\"18473\" y=\"-863.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"18442\" y=\"-848.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 2, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"18466.5\" y=\"-833.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 471&#45;&gt;473 -->\n",
"<g id=\"edge473\" class=\"edge\">\n",
"<title>471&#45;&gt;473</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M18399.805,-936.8796C18418.2903,-924.7263 18438.4443,-911.4759 18456.7665,-899.4297\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"18459.1655,-902.0412 18465.5986,-893.623 18455.3199,-896.1921 18459.1655,-902.0412\"/>\n",
"</g>\n",
"<!-- 476 -->\n",
"<g id=\"node477\" class=\"node\">\n",
"<title>476</title>\n",
"<polygon fill=\"#7be539\" fill-opacity=\"0.623529\" stroke=\"#000000\" points=\"18786,-1139 18619,-1139 18619,-1056 18786,-1056 18786,-1139\"/>\n",
"<text text-anchor=\"start\" x=\"18663\" y=\"-1123.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #476</text>\n",
"<text text-anchor=\"start\" x=\"18629\" y=\"-1108.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">chicken_broth ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"18653.5\" y=\"-1093.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 10</text>\n",
"<text text-anchor=\"start\" x=\"18627\" y=\"-1078.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 7, 0, 0, 2]</text>\n",
"<text text-anchor=\"start\" x=\"18651.5\" y=\"-1063.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</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=\"M18703.8005,-1174.8796C18703.6628,-1166.6838 18703.5166,-1157.9891 18703.374,-1149.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"18706.8701,-1149.2378 18703.2025,-1139.2981 18699.8711,-1149.3555 18706.8701,-1149.2378\"/>\n",
"</g>\n",
"<!-- 483 -->\n",
"<g id=\"node484\" class=\"node\">\n",
"<title>483</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"18971,-1131.5 18804,-1131.5 18804,-1063.5 18971,-1063.5 18971,-1131.5\"/>\n",
"<text text-anchor=\"start\" x=\"18848\" y=\"-1116.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #483</text>\n",
"<text text-anchor=\"start\" x=\"18843\" y=\"-1101.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"18812\" y=\"-1086.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 3]</text>\n",
"<text text-anchor=\"start\" x=\"18845\" y=\"-1071.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 475&#45;&gt;483 -->\n",
"<g id=\"edge483\" class=\"edge\">\n",
"<title>475&#45;&gt;483</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M18768.5045,-1174.8796C18787.3639,-1162.6158 18807.9414,-1149.2348 18826.6002,-1137.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"18828.5497,-1140.0088 18835.0251,-1131.623 18824.7336,-1134.1404 18828.5497,-1140.0088\"/>\n",
"</g>\n",
"<!-- 477 -->\n",
"<g id=\"node478\" class=\"node\">\n",
"<title>477</title>\n",
"<polygon fill=\"#7be539\" fill-opacity=\"0.713725\" stroke=\"#000000\" points=\"18786,-1020 18619,-1020 18619,-937 18786,-937 18786,-1020\"/>\n",
"<text text-anchor=\"start\" x=\"18663\" y=\"-1004.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #477</text>\n",
"<text text-anchor=\"start\" x=\"18654\" y=\"-989.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">parsley ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"18658\" y=\"-974.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 9</text>\n",
"<text text-anchor=\"start\" x=\"18627\" y=\"-959.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 7, 0, 0, 2]</text>\n",
"<text text-anchor=\"start\" x=\"18651.5\" y=\"-944.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</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=\"M18702.5,-1055.8796C18702.5,-1047.6838 18702.5,-1038.9891 18702.5,-1030.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"18706.0001,-1030.298 18702.5,-1020.2981 18699.0001,-1030.2981 18706.0001,-1030.298\"/>\n",
"</g>\n",
"<!-- 482 -->\n",
"<g id=\"node483\" class=\"node\">\n",
"<title>482</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"18971,-1012.5 18804,-1012.5 18804,-944.5 18971,-944.5 18971,-1012.5\"/>\n",
"<text text-anchor=\"start\" x=\"18848\" y=\"-997.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #482</text>\n",
"<text text-anchor=\"start\" x=\"18843\" y=\"-982.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"18812\" y=\"-967.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"18831.5\" y=\"-952.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 476&#45;&gt;482 -->\n",
"<g id=\"edge482\" class=\"edge\">\n",
"<title>476&#45;&gt;482</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M18767.204,-1055.8796C18786.2696,-1043.6158 18807.0719,-1030.2348 18825.9346,-1018.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"18827.9347,-1020.9766 18834.4516,-1012.623 18824.1478,-1015.0893 18827.9347,-1020.9766\"/>\n",
"</g>\n",
"<!-- 478 -->\n",
"<g id=\"node479\" class=\"node\">\n",
"<title>478</title>\n",
"<polygon fill=\"#7be539\" fill-opacity=\"0.858824\" stroke=\"#000000\" points=\"18786,-901 18619,-901 18619,-818 18786,-818 18786,-901\"/>\n",
"<text text-anchor=\"start\" x=\"18663\" y=\"-885.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #478</text>\n",
"<text text-anchor=\"start\" x=\"18666.5\" y=\"-870.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">rice ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"18658\" y=\"-855.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 8</text>\n",
"<text text-anchor=\"start\" x=\"18627\" y=\"-840.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 7, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"18651.5\" y=\"-825.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 477&#45;&gt;478 -->\n",
"<g id=\"edge478\" class=\"edge\">\n",
"<title>477&#45;&gt;478</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M18702.5,-936.8796C18702.5,-928.6838 18702.5,-919.9891 18702.5,-911.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"18706.0001,-911.298 18702.5,-901.2981 18699.0001,-911.2981 18706.0001,-911.298\"/>\n",
"</g>\n",
"<!-- 481 -->\n",
"<g id=\"node482\" class=\"node\">\n",
"<title>481</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"18971,-893.5 18804,-893.5 18804,-825.5 18971,-825.5 18971,-893.5\"/>\n",
"<text text-anchor=\"start\" x=\"18848\" y=\"-878.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #481</text>\n",
"<text text-anchor=\"start\" x=\"18843\" y=\"-863.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"18812\" y=\"-848.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"18845\" y=\"-833.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 477&#45;&gt;481 -->\n",
"<g id=\"edge481\" class=\"edge\">\n",
"<title>477&#45;&gt;481</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M18767.204,-936.8796C18786.2696,-924.6158 18807.0719,-911.2348 18825.9346,-899.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"18827.9347,-901.9766 18834.4516,-893.623 18824.1478,-896.0893 18827.9347,-901.9766\"/>\n",
"</g>\n",
"<!-- 479 -->\n",
"<g id=\"node480\" class=\"node\">\n",
"<title>479</title>\n",
"<polygon fill=\"#7be539\" stroke=\"#000000\" points=\"18647,-774.5 18480,-774.5 18480,-706.5 18647,-706.5 18647,-774.5\"/>\n",
"<text text-anchor=\"start\" x=\"18524\" y=\"-759.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #479</text>\n",
"<text text-anchor=\"start\" x=\"18519\" y=\"-744.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 6</text>\n",
"<text text-anchor=\"start\" x=\"18488\" y=\"-729.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 6, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"18512.5\" y=\"-714.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 478&#45;&gt;479 -->\n",
"<g id=\"edge479\" class=\"edge\">\n",
"<title>478&#45;&gt;479</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M18653.8845,-817.8796C18640.1413,-806.1138 18625.1969,-793.3197 18611.4907,-781.5855\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"18613.4548,-778.6596 18603.5822,-774.8149 18608.9024,-783.9771 18613.4548,-778.6596\"/>\n",
"</g>\n",
"<!-- 480 -->\n",
"<g id=\"node481\" class=\"node\">\n",
"<title>480</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"18832,-774.5 18665,-774.5 18665,-706.5 18832,-706.5 18832,-774.5\"/>\n",
"<text text-anchor=\"start\" x=\"18709\" y=\"-759.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #480</text>\n",
"<text text-anchor=\"start\" x=\"18704\" y=\"-744.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"18673\" y=\"-729.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 1, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"18697.5\" y=\"-714.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 478&#45;&gt;480 -->\n",
"<g id=\"edge480\" class=\"edge\">\n",
"<title>478&#45;&gt;480</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M18718.5886,-817.8796C18722.7966,-806.9935 18727.345,-795.227 18731.5943,-784.2344\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"18734.8944,-785.4043 18735.2354,-774.8149 18728.3652,-782.8804 18734.8944,-785.4043\"/>\n",
"</g>\n",
"<!-- 485 -->\n",
"<g id=\"node486\" class=\"node\">\n",
"<title>485</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"18973,-1250.5 18806,-1250.5 18806,-1182.5 18973,-1182.5 18973,-1250.5\"/>\n",
"<text text-anchor=\"start\" x=\"18850\" y=\"-1235.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #485</text>\n",
"<text text-anchor=\"start\" x=\"18845\" y=\"-1220.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 4</text>\n",
"<text text-anchor=\"start\" x=\"18814\" y=\"-1205.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 4]</text>\n",
"<text text-anchor=\"start\" x=\"18847\" y=\"-1190.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 484&#45;&gt;485 -->\n",
"<g id=\"edge485\" class=\"edge\">\n",
"<title>484&#45;&gt;485</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M18953.8746,-1293.8796C18944.3607,-1282.4436 18934.0386,-1270.0363 18924.5035,-1258.575\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"18927.1339,-1256.264 18918.0477,-1250.8149 18921.7526,-1260.7409 18927.1339,-1256.264\"/>\n",
"</g>\n",
"<!-- 486 -->\n",
"<g id=\"node487\" class=\"node\">\n",
"<title>486</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"19158,-1250.5 18991,-1250.5 18991,-1182.5 19158,-1182.5 19158,-1250.5\"/>\n",
"<text text-anchor=\"start\" x=\"19035\" y=\"-1235.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #486</text>\n",
"<text text-anchor=\"start\" x=\"19030\" y=\"-1220.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"18999\" y=\"-1205.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 1, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"19023.5\" y=\"-1190.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 484&#45;&gt;486 -->\n",
"<g id=\"edge486\" class=\"edge\">\n",
"<title>484&#45;&gt;486</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M19018.5786,-1293.8796C19026.6843,-1282.6636 19035.4653,-1270.5131 19043.6143,-1259.2372\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"19046.6803,-1260.9701 19049.701,-1250.8149 19041.0068,-1256.8698 19046.6803,-1260.9701\"/>\n",
"</g>\n",
"<!-- 488 -->\n",
"<g id=\"node489\" class=\"node\">\n",
"<title>488</title>\n",
"<polygon fill=\"#e539c0\" fill-opacity=\"0.682353\" stroke=\"#000000\" points=\"19451.5,-1377 19275.5,-1377 19275.5,-1294 19451.5,-1294 19451.5,-1377\"/>\n",
"<text text-anchor=\"start\" x=\"19324\" y=\"-1361.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #488</text>\n",
"<text text-anchor=\"start\" x=\"19318.5\" y=\"-1346.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">starch ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"19314.5\" y=\"-1331.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 26</text>\n",
"<text text-anchor=\"start\" x=\"19283.5\" y=\"-1316.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 4, 1, 0, 19]</text>\n",
"<text text-anchor=\"start\" x=\"19321\" y=\"-1301.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</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=\"M19363.5,-1412.8796C19363.5,-1404.6838 19363.5,-1395.9891 19363.5,-1387.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"19367.0001,-1387.298 19363.5,-1377.2981 19360.0001,-1387.2981 19367.0001,-1387.298\"/>\n",
"</g>\n",
"<!-- 503 -->\n",
"<g id=\"node504\" class=\"node\">\n",
"<title>503</title>\n",
"<polygon fill=\"#7be539\" fill-opacity=\"0.666667\" stroke=\"#000000\" points=\"19721,-1377 19554,-1377 19554,-1294 19721,-1294 19721,-1377\"/>\n",
"<text text-anchor=\"start\" x=\"19598\" y=\"-1361.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #503</text>\n",
"<text text-anchor=\"start\" x=\"19575\" y=\"-1346.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">white_wine ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"19593\" y=\"-1331.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 4</text>\n",
"<text text-anchor=\"start\" x=\"19562\" y=\"-1316.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 3, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"19586.5\" y=\"-1301.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 487&#45;&gt;503 -->\n",
"<g id=\"edge503\" class=\"edge\">\n",
"<title>487&#45;&gt;503</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M19451.7035,-1416.1926C19481.3349,-1403.3235 19514.4694,-1388.933 19544.4601,-1375.9078\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"19545.8813,-1379.1065 19553.6593,-1371.9126 19543.0927,-1372.6859 19545.8813,-1379.1065\"/>\n",
"</g>\n",
"<!-- 489 -->\n",
"<g id=\"node490\" class=\"node\">\n",
"<title>489</title>\n",
"<polygon fill=\"#e539c0\" fill-opacity=\"0.776471\" stroke=\"#000000\" points=\"19351.5,-1258 19175.5,-1258 19175.5,-1175 19351.5,-1175 19351.5,-1258\"/>\n",
"<text text-anchor=\"start\" x=\"19224\" y=\"-1242.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #489</text>\n",
"<text text-anchor=\"start\" x=\"19201.5\" y=\"-1227.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">cauliflower ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"19214.5\" y=\"-1212.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 22</text>\n",
"<text text-anchor=\"start\" x=\"19183.5\" y=\"-1197.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 4, 0, 0, 18]</text>\n",
"<text text-anchor=\"start\" x=\"19221\" y=\"-1182.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</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=\"M19328.5249,-1293.8796C19320.9565,-1284.8733 19312.8819,-1275.2644 19305.088,-1265.9897\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"19307.7374,-1263.7022 19298.6244,-1258.2981 19302.3784,-1268.2056 19307.7374,-1263.7022\"/>\n",
"</g>\n",
"<!-- 498 -->\n",
"<g id=\"node499\" class=\"node\">\n",
"<title>498</title>\n",
"<polygon fill=\"#e58139\" fill-opacity=\"0.333333\" stroke=\"#000000\" points=\"19536,-1258 19369,-1258 19369,-1175 19536,-1175 19536,-1258\"/>\n",
"<text text-anchor=\"start\" x=\"19413\" y=\"-1242.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #498</text>\n",
"<text text-anchor=\"start\" x=\"19407\" y=\"-1227.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">ginger ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"19408\" y=\"-1212.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 4</text>\n",
"<text text-anchor=\"start\" x=\"19377\" y=\"-1197.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 1, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"19396.5\" y=\"-1182.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 488&#45;&gt;498 -->\n",
"<g id=\"edge498\" class=\"edge\">\n",
"<title>488&#45;&gt;498</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M19394.6279,-1293.8796C19401.229,-1285.0534 19408.2629,-1275.6485 19415.0702,-1266.5466\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"19418.0528,-1268.4024 19421.2393,-1258.2981 19412.4472,-1264.2099 19418.0528,-1268.4024\"/>\n",
"</g>\n",
"<!-- 490 -->\n",
"<g id=\"node491\" class=\"node\">\n",
"<title>490</title>\n",
"<polygon fill=\"#e539c0\" fill-opacity=\"0.831373\" stroke=\"#000000\" points=\"19164.5,-1139 18988.5,-1139 18988.5,-1056 19164.5,-1056 19164.5,-1139\"/>\n",
"<text text-anchor=\"start\" x=\"19037\" y=\"-1123.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #490</text>\n",
"<text text-anchor=\"start\" x=\"19031\" y=\"-1108.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">yogurt ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"19027.5\" y=\"-1093.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 21</text>\n",
"<text text-anchor=\"start\" x=\"18996.5\" y=\"-1078.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 3, 0, 0, 18]</text>\n",
"<text text-anchor=\"start\" x=\"19034\" y=\"-1063.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 489&#45;&gt;490 -->\n",
"<g id=\"edge490\" class=\"edge\">\n",
"<title>489&#45;&gt;490</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M19198.0965,-1174.8796C19182.7226,-1165.0962 19166.2315,-1154.6019 19150.5098,-1144.5971\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"19152.1823,-1141.5129 19141.8666,-1139.0969 19148.4241,-1147.4185 19152.1823,-1141.5129\"/>\n",
"</g>\n",
"<!-- 497 -->\n",
"<g id=\"node498\" class=\"node\">\n",
"<title>497</title>\n",
"<polygon fill=\"#7be539\" stroke=\"#000000\" points=\"19349,-1131.5 19182,-1131.5 19182,-1063.5 19349,-1063.5 19349,-1131.5\"/>\n",
"<text text-anchor=\"start\" x=\"19226\" y=\"-1116.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #497</text>\n",
"<text text-anchor=\"start\" x=\"19221\" y=\"-1101.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"19190\" y=\"-1086.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 1, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"19214.5\" y=\"-1071.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 489&#45;&gt;497 -->\n",
"<g id=\"edge497\" class=\"edge\">\n",
"<title>489&#45;&gt;497</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M19264.1995,-1174.8796C19264.3788,-1164.2134 19264.5722,-1152.7021 19264.7538,-1141.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"19268.2546,-1141.8724 19264.9233,-1131.8149 19261.2556,-1141.7547 19268.2546,-1141.8724\"/>\n",
"</g>\n",
"<!-- 491 -->\n",
"<g id=\"node492\" class=\"node\">\n",
"<title>491</title>\n",
"<polygon fill=\"#e539c0\" fill-opacity=\"0.890196\" stroke=\"#000000\" points=\"19164.5,-1020 18988.5,-1020 18988.5,-937 19164.5,-937 19164.5,-1020\"/>\n",
"<text text-anchor=\"start\" x=\"19037\" y=\"-1004.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #491</text>\n",
"<text text-anchor=\"start\" x=\"19007\" y=\"-989.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">sweet_potato ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"19027.5\" y=\"-974.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 20</text>\n",
"<text text-anchor=\"start\" x=\"18996.5\" y=\"-959.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 2, 0, 0, 18]</text>\n",
"<text text-anchor=\"start\" x=\"19034\" y=\"-944.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 490&#45;&gt;491 -->\n",
"<g id=\"edge491\" class=\"edge\">\n",
"<title>490&#45;&gt;491</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M19076.5,-1055.8796C19076.5,-1047.6838 19076.5,-1038.9891 19076.5,-1030.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"19080.0001,-1030.298 19076.5,-1020.2981 19073.0001,-1030.2981 19080.0001,-1030.298\"/>\n",
"</g>\n",
"<!-- 496 -->\n",
"<g id=\"node497\" class=\"node\">\n",
"<title>496</title>\n",
"<polygon fill=\"#7be539\" stroke=\"#000000\" points=\"19349,-1012.5 19182,-1012.5 19182,-944.5 19349,-944.5 19349,-1012.5\"/>\n",
"<text text-anchor=\"start\" x=\"19226\" y=\"-997.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #496</text>\n",
"<text text-anchor=\"start\" x=\"19221\" y=\"-982.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"19190\" y=\"-967.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 1, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"19214.5\" y=\"-952.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 490&#45;&gt;496 -->\n",
"<g id=\"edge496\" class=\"edge\">\n",
"<title>490&#45;&gt;496</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M19142.603,-1055.8796C19162.0808,-1043.6158 19183.3329,-1030.2348 19202.6035,-1018.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"19204.7071,-1020.913 19211.3046,-1012.623 19200.9774,-1014.9894 19204.7071,-1020.913\"/>\n",
"</g>\n",
"<!-- 492 -->\n",
"<g id=\"node493\" class=\"node\">\n",
"<title>492</title>\n",
"<polygon fill=\"#e539c0\" fill-opacity=\"0.941176\" stroke=\"#000000\" points=\"19164.5,-901 18988.5,-901 18988.5,-818 19164.5,-818 19164.5,-901\"/>\n",
"<text text-anchor=\"start\" x=\"19037\" y=\"-885.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #492</text>\n",
"<text text-anchor=\"start\" x=\"19029.5\" y=\"-870.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">scallop ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"19027.5\" y=\"-855.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 18</text>\n",
"<text text-anchor=\"start\" x=\"18996.5\" y=\"-840.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 1, 0, 0, 17]</text>\n",
"<text text-anchor=\"start\" x=\"19034\" y=\"-825.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 491&#45;&gt;492 -->\n",
"<g id=\"edge492\" class=\"edge\">\n",
"<title>491&#45;&gt;492</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M19076.5,-936.8796C19076.5,-928.6838 19076.5,-919.9891 19076.5,-911.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"19080.0001,-911.298 19076.5,-901.2981 19073.0001,-911.2981 19080.0001,-911.298\"/>\n",
"</g>\n",
"<!-- 495 -->\n",
"<g id=\"node496\" class=\"node\">\n",
"<title>495</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"19349,-893.5 19182,-893.5 19182,-825.5 19349,-825.5 19349,-893.5\"/>\n",
"<text text-anchor=\"start\" x=\"19226\" y=\"-878.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #495</text>\n",
"<text text-anchor=\"start\" x=\"19221\" y=\"-863.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"19190\" y=\"-848.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 1, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"19214.5\" y=\"-833.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 491&#45;&gt;495 -->\n",
"<g id=\"edge495\" class=\"edge\">\n",
"<title>491&#45;&gt;495</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M19142.603,-936.8796C19162.0808,-924.6158 19183.3329,-911.2348 19202.6035,-899.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"19204.7071,-901.913 19211.3046,-893.623 19200.9774,-895.9894 19204.7071,-901.913\"/>\n",
"</g>\n",
"<!-- 493 -->\n",
"<g id=\"node494\" class=\"node\">\n",
"<title>493</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"19117.5,-774.5 18941.5,-774.5 18941.5,-706.5 19117.5,-706.5 19117.5,-774.5\"/>\n",
"<text text-anchor=\"start\" x=\"18990\" y=\"-759.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #493</text>\n",
"<text text-anchor=\"start\" x=\"18980.5\" y=\"-744.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 16</text>\n",
"<text text-anchor=\"start\" x=\"18949.5\" y=\"-729.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 16]</text>\n",
"<text text-anchor=\"start\" x=\"18987\" y=\"-714.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 492&#45;&gt;493 -->\n",
"<g id=\"edge493\" class=\"edge\">\n",
"<title>492&#45;&gt;493</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M19060.0617,-817.8796C19055.7621,-806.9935 19051.1149,-795.227 19046.7732,-784.2344\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"19049.9818,-782.8301 19043.053,-774.8149 19043.4712,-785.4015 19049.9818,-782.8301\"/>\n",
"</g>\n",
"<!-- 494 -->\n",
"<g id=\"node495\" class=\"node\">\n",
"<title>494</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"19302,-774.5 19135,-774.5 19135,-706.5 19302,-706.5 19302,-774.5\"/>\n",
"<text text-anchor=\"start\" x=\"19179\" y=\"-759.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #494</text>\n",
"<text text-anchor=\"start\" x=\"19174\" y=\"-744.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"19143\" y=\"-729.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 1, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"19167.5\" y=\"-714.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 492&#45;&gt;494 -->\n",
"<g id=\"edge494\" class=\"edge\">\n",
"<title>492&#45;&gt;494</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M19126.1647,-817.8796C19140.3358,-806.0038 19155.757,-793.0804 19169.8658,-781.2568\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"19172.1363,-783.9206 19177.5528,-774.8149 19167.6402,-778.5554 19172.1363,-783.9206\"/>\n",
"</g>\n",
"<!-- 499 -->\n",
"<g id=\"node500\" class=\"node\">\n",
"<title>499</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"19538,-1139 19367,-1139 19367,-1056 19538,-1056 19538,-1139\"/>\n",
"<text text-anchor=\"start\" x=\"19413\" y=\"-1123.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #499</text>\n",
"<text text-anchor=\"start\" x=\"19375\" y=\"-1108.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">roasted_peanut ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"19408\" y=\"-1093.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"19377\" y=\"-1078.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"19392\" y=\"-1063.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 498&#45;&gt;499 -->\n",
"<g id=\"edge499\" class=\"edge\">\n",
"<title>498&#45;&gt;499</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M19452.5,-1174.8796C19452.5,-1166.6838 19452.5,-1157.9891 19452.5,-1149.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"19456.0001,-1149.298 19452.5,-1139.2981 19449.0001,-1149.2981 19456.0001,-1149.298\"/>\n",
"</g>\n",
"<!-- 502 -->\n",
"<g id=\"node503\" class=\"node\">\n",
"<title>502</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"19723,-1131.5 19556,-1131.5 19556,-1063.5 19723,-1063.5 19723,-1131.5\"/>\n",
"<text text-anchor=\"start\" x=\"19600\" y=\"-1116.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #502</text>\n",
"<text text-anchor=\"start\" x=\"19595\" y=\"-1101.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"19564\" y=\"-1086.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [2, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"19583.5\" y=\"-1071.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 498&#45;&gt;502 -->\n",
"<g id=\"edge502\" class=\"edge\">\n",
"<title>498&#45;&gt;502</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M19517.9035,-1174.8796C19537.1752,-1162.6158 19558.2024,-1149.2348 19577.269,-1137.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"19579.3205,-1139.9447 19585.8781,-1131.623 19575.5624,-1134.039 19579.3205,-1139.9447\"/>\n",
"</g>\n",
"<!-- 500 -->\n",
"<g id=\"node501\" class=\"node\">\n",
"<title>500</title>\n",
"<polygon fill=\"#39e5c5\" stroke=\"#000000\" points=\"19535,-1012.5 19368,-1012.5 19368,-944.5 19535,-944.5 19535,-1012.5\"/>\n",
"<text text-anchor=\"start\" x=\"19412\" y=\"-997.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #500</text>\n",
"<text text-anchor=\"start\" x=\"19407\" y=\"-982.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"19376\" y=\"-967.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"19391\" y=\"-952.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</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=\"M19452.1502,-1055.8796C19452.0606,-1045.2134 19451.9639,-1033.7021 19451.8731,-1022.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"19455.3724,-1022.7851 19451.7884,-1012.8149 19448.3726,-1022.844 19455.3724,-1022.7851\"/>\n",
"</g>\n",
"<!-- 501 -->\n",
"<g id=\"node502\" class=\"node\">\n",
"<title>501</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"19720,-1012.5 19553,-1012.5 19553,-944.5 19720,-944.5 19720,-1012.5\"/>\n",
"<text text-anchor=\"start\" x=\"19597\" y=\"-997.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #501</text>\n",
"<text text-anchor=\"start\" x=\"19592\" y=\"-982.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"19561\" y=\"-967.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 1]</text>\n",
"<text text-anchor=\"start\" x=\"19594\" y=\"-952.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 499&#45;&gt;501 -->\n",
"<g id=\"edge501\" class=\"edge\">\n",
"<title>499&#45;&gt;501</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M19516.8543,-1055.8796C19535.8167,-1043.6158 19556.5066,-1030.2348 19575.2674,-1018.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"19577.2421,-1020.9926 19583.7383,-1012.623 19573.4407,-1015.1148 19577.2421,-1020.9926\"/>\n",
"</g>\n",
"<!-- 504 -->\n",
"<g id=\"node505\" class=\"node\">\n",
"<title>504</title>\n",
"<polygon fill=\"#7be539\" stroke=\"#000000\" points=\"19721,-1250.5 19554,-1250.5 19554,-1182.5 19721,-1182.5 19721,-1250.5\"/>\n",
"<text text-anchor=\"start\" x=\"19598\" y=\"-1235.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #504</text>\n",
"<text text-anchor=\"start\" x=\"19593\" y=\"-1220.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"19562\" y=\"-1205.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 3, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"19586.5\" y=\"-1190.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</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=\"M19637.5,-1293.8796C19637.5,-1283.2134 19637.5,-1271.7021 19637.5,-1260.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"19641.0001,-1260.8149 19637.5,-1250.8149 19634.0001,-1260.815 19641.0001,-1260.8149\"/>\n",
"</g>\n",
"<!-- 505 -->\n",
"<g id=\"node506\" class=\"node\">\n",
"<title>505</title>\n",
"<polygon fill=\"#e58139\" stroke=\"#000000\" points=\"19906,-1250.5 19739,-1250.5 19739,-1182.5 19906,-1182.5 19906,-1250.5\"/>\n",
"<text text-anchor=\"start\" x=\"19783\" y=\"-1235.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #505</text>\n",
"<text text-anchor=\"start\" x=\"19778\" y=\"-1220.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"19747\" y=\"-1205.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [1, 0, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"19766.5\" y=\"-1190.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = chinese</text>\n",
"</g>\n",
"<!-- 503&#45;&gt;505 -->\n",
"<g id=\"edge505\" class=\"edge\">\n",
"<title>503&#45;&gt;505</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M19702.204,-1293.8796C19721.2696,-1281.6158 19742.0719,-1268.2348 19760.9346,-1256.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"19762.9347,-1258.9766 19769.4516,-1250.623 19759.1478,-1253.0893 19762.9347,-1258.9766\"/>\n",
"</g>\n",
"<!-- 507 -->\n",
"<g id=\"node508\" class=\"node\">\n",
"<title>507</title>\n",
"<polygon fill=\"#e539c0\" fill-opacity=\"0.831373\" stroke=\"#000000\" points=\"20234.5,-1496 20058.5,-1496 20058.5,-1413 20234.5,-1413 20234.5,-1496\"/>\n",
"<text text-anchor=\"start\" x=\"20107\" y=\"-1480.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #507</text>\n",
"<text text-anchor=\"start\" x=\"20095\" y=\"-1465.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">soybean ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"20097.5\" y=\"-1450.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 50</text>\n",
"<text text-anchor=\"start\" x=\"20066.5\" y=\"-1435.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 3, 3, 2, 42]</text>\n",
"<text text-anchor=\"start\" x=\"20104\" y=\"-1420.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</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=\"M20146.5,-1531.8796C20146.5,-1523.6838 20146.5,-1514.9891 20146.5,-1506.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"20150.0001,-1506.298 20146.5,-1496.2981 20143.0001,-1506.2981 20150.0001,-1506.298\"/>\n",
"</g>\n",
"<!-- 524 -->\n",
"<g id=\"node525\" class=\"node\">\n",
"<title>524</title>\n",
"<polygon fill=\"#7be539\" stroke=\"#000000\" points=\"20419,-1488.5 20252,-1488.5 20252,-1420.5 20419,-1420.5 20419,-1488.5\"/>\n",
"<text text-anchor=\"start\" x=\"20296\" y=\"-1473.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #524</text>\n",
"<text text-anchor=\"start\" x=\"20291\" y=\"-1458.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 5</text>\n",
"<text text-anchor=\"start\" x=\"20260\" y=\"-1443.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 5, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"20284.5\" y=\"-1428.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 506&#45;&gt;524 -->\n",
"<g id=\"edge524\" class=\"edge\">\n",
"<title>506&#45;&gt;524</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M20212.603,-1531.8796C20232.0808,-1519.6158 20253.3329,-1506.2348 20272.6035,-1494.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"20274.7071,-1496.913 20281.3046,-1488.623 20270.9774,-1490.9894 20274.7071,-1496.913\"/>\n",
"</g>\n",
"<!-- 508 -->\n",
"<g id=\"node509\" class=\"node\">\n",
"<title>508</title>\n",
"<polygon fill=\"#e539c0\" fill-opacity=\"0.886275\" stroke=\"#000000\" points=\"20234.5,-1377 20058.5,-1377 20058.5,-1294 20234.5,-1294 20234.5,-1377\"/>\n",
"<text text-anchor=\"start\" x=\"20107\" y=\"-1361.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #508</text>\n",
"<text text-anchor=\"start\" x=\"20095\" y=\"-1346.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">olive_oil ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"20097.5\" y=\"-1331.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 47</text>\n",
"<text text-anchor=\"start\" x=\"20066.5\" y=\"-1316.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 3, 1, 1, 42]</text>\n",
"<text text-anchor=\"start\" x=\"20104\" y=\"-1301.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</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=\"M20146.5,-1412.8796C20146.5,-1404.6838 20146.5,-1395.9891 20146.5,-1387.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"20150.0001,-1387.298 20146.5,-1377.2981 20143.0001,-1387.2981 20150.0001,-1387.298\"/>\n",
"</g>\n",
"<!-- 521 -->\n",
"<g id=\"node522\" class=\"node\">\n",
"<title>521</title>\n",
"<polygon fill=\"#39e5c5\" fill-opacity=\"0.498039\" stroke=\"#000000\" points=\"20526,-1377 20359,-1377 20359,-1294 20526,-1294 20526,-1377\"/>\n",
"<text text-anchor=\"start\" x=\"20403\" y=\"-1361.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #521</text>\n",
"<text text-anchor=\"start\" x=\"20406.5\" y=\"-1346.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">rice ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"20398\" y=\"-1331.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"20367\" y=\"-1316.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 2, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"20382\" y=\"-1301.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 507&#45;&gt;521 -->\n",
"<g id=\"edge521\" class=\"edge\">\n",
"<title>507&#45;&gt;521</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M20234.5915,-1416.2632C20237.2549,-1415.157 20239.8957,-1414.067 20242.5,-1413 20277.1463,-1398.8047 20315.4295,-1383.8049 20349.148,-1370.8223\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"20350.4518,-1374.0709 20358.5305,-1367.2164 20347.9405,-1367.5368 20350.4518,-1374.0709\"/>\n",
"</g>\n",
"<!-- 509 -->\n",
"<g id=\"node510\" class=\"node\">\n",
"<title>509</title>\n",
"<polygon fill=\"#e539c0\" fill-opacity=\"0.909804\" stroke=\"#000000\" points=\"20155.5,-1258 19923.5,-1258 19923.5,-1175 20155.5,-1175 20155.5,-1258\"/>\n",
"<text text-anchor=\"start\" x=\"20000\" y=\"-1242.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #509</text>\n",
"<text text-anchor=\"start\" x=\"19931.5\" y=\"-1227.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">black_mustard_seed_oil ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"19990.5\" y=\"-1212.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 46</text>\n",
"<text text-anchor=\"start\" x=\"19959.5\" y=\"-1197.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 2, 1, 1, 42]</text>\n",
"<text text-anchor=\"start\" x=\"19997\" y=\"-1182.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</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=\"M20109.0766,-1293.8796C20100.9785,-1284.8733 20092.3386,-1275.2644 20083.9991,-1265.9897\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"20086.372,-1263.394 20077.0831,-1258.2981 20081.1667,-1268.0743 20086.372,-1263.394\"/>\n",
"</g>\n",
"<!-- 520 -->\n",
"<g id=\"node521\" class=\"node\">\n",
"<title>520</title>\n",
"<polygon fill=\"#7be539\" stroke=\"#000000\" points=\"20341,-1250.5 20174,-1250.5 20174,-1182.5 20341,-1182.5 20341,-1250.5\"/>\n",
"<text text-anchor=\"start\" x=\"20218\" y=\"-1235.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #520</text>\n",
"<text text-anchor=\"start\" x=\"20213\" y=\"-1220.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"20182\" y=\"-1205.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 1, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"20206.5\" y=\"-1190.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 508&#45;&gt;520 -->\n",
"<g id=\"edge520\" class=\"edge\">\n",
"<title>508&#45;&gt;520</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M20185.3224,-1293.8796C20196.0921,-1282.3337 20207.7854,-1269.7976 20218.5617,-1258.2446\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"20221.2303,-1260.5149 20225.492,-1250.8149 20216.1115,-1255.7402 20221.2303,-1260.5149\"/>\n",
"</g>\n",
"<!-- 510 -->\n",
"<g id=\"node511\" class=\"node\">\n",
"<title>510</title>\n",
"<polygon fill=\"#e539c0\" fill-opacity=\"0.933333\" stroke=\"#000000\" points=\"20026.5,-1139 19850.5,-1139 19850.5,-1056 20026.5,-1056 20026.5,-1139\"/>\n",
"<text text-anchor=\"start\" x=\"19899\" y=\"-1123.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #510</text>\n",
"<text text-anchor=\"start\" x=\"19888\" y=\"-1108.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">coconut ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"19889.5\" y=\"-1093.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 45</text>\n",
"<text text-anchor=\"start\" x=\"19858.5\" y=\"-1078.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 1, 1, 1, 42]</text>\n",
"<text text-anchor=\"start\" x=\"19896\" y=\"-1063.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</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=\"M20004.1751,-1174.8796C19996.5311,-1165.8733 19988.3757,-1156.2644 19980.5039,-1146.9897\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"19983.1151,-1144.6574 19973.9757,-1139.2981 19977.7782,-1149.1871 19983.1151,-1144.6574\"/>\n",
"</g>\n",
"<!-- 519 -->\n",
"<g id=\"node520\" class=\"node\">\n",
"<title>519</title>\n",
"<polygon fill=\"#7be539\" stroke=\"#000000\" points=\"20211,-1131.5 20044,-1131.5 20044,-1063.5 20211,-1063.5 20211,-1131.5\"/>\n",
"<text text-anchor=\"start\" x=\"20088\" y=\"-1116.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #519</text>\n",
"<text text-anchor=\"start\" x=\"20083\" y=\"-1101.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"20052\" y=\"-1086.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 1, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"20076.5\" y=\"-1071.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 509&#45;&gt;519 -->\n",
"<g id=\"edge519\" class=\"edge\">\n",
"<title>509&#45;&gt;519</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M20070.2781,-1174.8796C20078.6536,-1163.5536 20087.7338,-1151.2748 20096.1411,-1139.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"20098.9925,-1141.9364 20102.1242,-1131.8149 20093.3643,-1137.7743 20098.9925,-1141.9364\"/>\n",
"</g>\n",
"<!-- 511 -->\n",
"<g id=\"node512\" class=\"node\">\n",
"<title>511</title>\n",
"<polygon fill=\"#e539c0\" fill-opacity=\"0.498039\" stroke=\"#000000\" points=\"19920,-1020 19753,-1020 19753,-937 19920,-937 19920,-1020\"/>\n",
"<text text-anchor=\"start\" x=\"19797\" y=\"-1004.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #511</text>\n",
"<text text-anchor=\"start\" x=\"19766\" y=\"-989.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">black_pepper ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"19792\" y=\"-974.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 5</text>\n",
"<text text-anchor=\"start\" x=\"19761\" y=\"-959.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 1, 3]</text>\n",
"<text text-anchor=\"start\" x=\"19794\" y=\"-944.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</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=\"M19902.8253,-1055.8796C19895.1057,-1046.8733 19886.8695,-1037.2644 19878.9197,-1027.9897\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"19881.4923,-1025.6129 19872.3269,-1020.2981 19876.1775,-1030.1684 19881.4923,-1025.6129\"/>\n",
"</g>\n",
"<!-- 516 -->\n",
"<g id=\"node517\" class=\"node\">\n",
"<title>516</title>\n",
"<polygon fill=\"#e539c0\" fill-opacity=\"0.972549\" stroke=\"#000000\" points=\"20113.5,-1020 19937.5,-1020 19937.5,-937 20113.5,-937 20113.5,-1020\"/>\n",
"<text text-anchor=\"start\" x=\"19986\" y=\"-1004.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #516</text>\n",
"<text text-anchor=\"start\" x=\"19965\" y=\"-989.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">beef_broth ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"19976.5\" y=\"-974.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 40</text>\n",
"<text text-anchor=\"start\" x=\"19945.5\" y=\"-959.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 1, 0, 0, 39]</text>\n",
"<text text-anchor=\"start\" x=\"19983\" y=\"-944.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 510&#45;&gt;516 -->\n",
"<g id=\"edge516\" class=\"edge\">\n",
"<title>510&#45;&gt;516</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M19968.9284,-1055.8796C19975.3811,-1047.0534 19982.257,-1037.6485 19988.9113,-1028.5466\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"19991.8653,-1030.4364 19994.9417,-1020.2981 19986.2144,-1026.3051 19991.8653,-1030.4364\"/>\n",
"</g>\n",
"<!-- 512 -->\n",
"<g id=\"node513\" class=\"node\">\n",
"<title>512</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"19735,-893.5 19568,-893.5 19568,-825.5 19735,-825.5 19735,-893.5\"/>\n",
"<text text-anchor=\"start\" x=\"19612\" y=\"-878.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #512</text>\n",
"<text text-anchor=\"start\" x=\"19607\" y=\"-863.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 3</text>\n",
"<text text-anchor=\"start\" x=\"19576\" y=\"-848.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 3]</text>\n",
"<text text-anchor=\"start\" x=\"19609\" y=\"-833.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 511&#45;&gt;512 -->\n",
"<g id=\"edge512\" class=\"edge\">\n",
"<title>511&#45;&gt;512</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M19771.796,-936.8796C19752.7304,-924.6158 19731.9281,-911.2348 19713.0654,-899.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"19714.8522,-896.0893 19704.5484,-893.623 19711.0653,-901.9766 19714.8522,-896.0893\"/>\n",
"</g>\n",
"<!-- 513 -->\n",
"<g id=\"node514\" class=\"node\">\n",
"<title>513</title>\n",
"<polygon fill=\"transparent\" stroke=\"#000000\" points=\"19920,-901 19753,-901 19753,-818 19920,-818 19920,-901\"/>\n",
"<text text-anchor=\"start\" x=\"19797\" y=\"-885.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #513</text>\n",
"<text text-anchor=\"start\" x=\"19801.5\" y=\"-870.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">egg ≤ 0.5</text>\n",
"<text text-anchor=\"start\" x=\"19792\" y=\"-855.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"19761\" y=\"-840.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"19776\" y=\"-825.8\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 511&#45;&gt;513 -->\n",
"<g id=\"edge513\" class=\"edge\">\n",
"<title>511&#45;&gt;513</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M19836.5,-936.8796C19836.5,-928.6838 19836.5,-919.9891 19836.5,-911.5013\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"19840.0001,-911.298 19836.5,-901.2981 19833.0001,-911.2981 19840.0001,-911.298\"/>\n",
"</g>\n",
"<!-- 514 -->\n",
"<g id=\"node515\" class=\"node\">\n",
"<title>514</title>\n",
"<polygon fill=\"#39e5c5\" stroke=\"#000000\" points=\"19827,-774.5 19660,-774.5 19660,-706.5 19827,-706.5 19827,-774.5\"/>\n",
"<text text-anchor=\"start\" x=\"19704\" y=\"-759.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #514</text>\n",
"<text text-anchor=\"start\" x=\"19699\" y=\"-744.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"19668\" y=\"-729.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 1, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"19683\" y=\"-714.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 513&#45;&gt;514 -->\n",
"<g id=\"edge514\" class=\"edge\">\n",
"<title>513&#45;&gt;514</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M19803.9731,-817.8796C19795.1217,-806.5536 19785.5257,-794.2748 19776.6407,-782.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"19779.2331,-780.539 19770.3176,-774.8149 19773.7176,-784.8494 19779.2331,-780.539\"/>\n",
"</g>\n",
"<!-- 515 -->\n",
"<g id=\"node516\" class=\"node\">\n",
"<title>515</title>\n",
"<polygon fill=\"#3c39e5\" stroke=\"#000000\" points=\"20012,-774.5 19845,-774.5 19845,-706.5 20012,-706.5 20012,-774.5\"/>\n",
"<text text-anchor=\"start\" x=\"19889\" y=\"-759.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #515</text>\n",
"<text text-anchor=\"start\" x=\"19884\" y=\"-744.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"19853\" y=\"-729.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"19875\" y=\"-714.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 513&#45;&gt;515 -->\n",
"<g id=\"edge515\" class=\"edge\">\n",
"<title>513&#45;&gt;515</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M19868.6771,-817.8796C19877.4333,-806.5536 19886.9262,-794.2748 19895.7156,-782.9058\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"19898.6234,-784.8671 19901.9708,-774.8149 19893.0854,-780.5856 19898.6234,-784.8671\"/>\n",
"</g>\n",
"<!-- 517 -->\n",
"<g id=\"node518\" class=\"node\">\n",
"<title>517</title>\n",
"<polygon fill=\"#e539c0\" stroke=\"#000000\" points=\"20113.5,-893.5 19937.5,-893.5 19937.5,-825.5 20113.5,-825.5 20113.5,-893.5\"/>\n",
"<text text-anchor=\"start\" x=\"19986\" y=\"-878.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #517</text>\n",
"<text text-anchor=\"start\" x=\"19976.5\" y=\"-863.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 39</text>\n",
"<text text-anchor=\"start\" x=\"19945.5\" y=\"-848.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 0, 39]</text>\n",
"<text text-anchor=\"start\" x=\"19983\" y=\"-833.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = thai</text>\n",
"</g>\n",
"<!-- 516&#45;&gt;517 -->\n",
"<g id=\"edge517\" class=\"edge\">\n",
"<title>516&#45;&gt;517</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M20025.5,-936.8796C20025.5,-926.2134 20025.5,-914.7021 20025.5,-903.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"20029.0001,-903.8149 20025.5,-893.8149 20022.0001,-903.815 20029.0001,-903.8149\"/>\n",
"</g>\n",
"<!-- 518 -->\n",
"<g id=\"node519\" class=\"node\">\n",
"<title>518</title>\n",
"<polygon fill=\"#7be539\" stroke=\"#000000\" points=\"20298,-893.5 20131,-893.5 20131,-825.5 20298,-825.5 20298,-893.5\"/>\n",
"<text text-anchor=\"start\" x=\"20175\" y=\"-878.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #518</text>\n",
"<text text-anchor=\"start\" x=\"20170\" y=\"-863.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"20139\" y=\"-848.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 1, 0, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"20163.5\" y=\"-833.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = indian</text>\n",
"</g>\n",
"<!-- 516&#45;&gt;518 -->\n",
"<g id=\"edge518\" class=\"edge\">\n",
"<title>516&#45;&gt;518</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M20091.603,-936.8796C20111.0808,-924.6158 20132.3329,-911.2348 20151.6035,-899.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"20153.7071,-901.913 20160.3046,-893.623 20149.9774,-895.9894 20153.7071,-901.913\"/>\n",
"</g>\n",
"<!-- 522 -->\n",
"<g id=\"node523\" class=\"node\">\n",
"<title>522</title>\n",
"<polygon fill=\"#3c39e5\" stroke=\"#000000\" points=\"20526,-1250.5 20359,-1250.5 20359,-1182.5 20526,-1182.5 20526,-1250.5\"/>\n",
"<text text-anchor=\"start\" x=\"20403\" y=\"-1235.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #522</text>\n",
"<text text-anchor=\"start\" x=\"20398\" y=\"-1220.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 1</text>\n",
"<text text-anchor=\"start\" x=\"20367\" y=\"-1205.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 0, 1, 0]</text>\n",
"<text text-anchor=\"start\" x=\"20389\" y=\"-1190.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = korean</text>\n",
"</g>\n",
"<!-- 521&#45;&gt;522 -->\n",
"<g id=\"edge522\" class=\"edge\">\n",
"<title>521&#45;&gt;522</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M20442.5,-1293.8796C20442.5,-1283.2134 20442.5,-1271.7021 20442.5,-1260.9015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"20446.0001,-1260.8149 20442.5,-1250.8149 20439.0001,-1260.815 20446.0001,-1260.8149\"/>\n",
"</g>\n",
"<!-- 523 -->\n",
"<g id=\"node524\" class=\"node\">\n",
"<title>523</title>\n",
"<polygon fill=\"#39e5c5\" stroke=\"#000000\" points=\"20711,-1250.5 20544,-1250.5 20544,-1182.5 20711,-1182.5 20711,-1250.5\"/>\n",
"<text text-anchor=\"start\" x=\"20588\" y=\"-1235.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">node #523</text>\n",
"<text text-anchor=\"start\" x=\"20583\" y=\"-1220.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">samples = 2</text>\n",
"<text text-anchor=\"start\" x=\"20552\" y=\"-1205.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">value = [0, 0, 2, 0, 0]</text>\n",
"<text text-anchor=\"start\" x=\"20567\" y=\"-1190.3\" font-family=\"Times,serif\" font-size=\"14.00\" fill=\"#000000\">class = japanese</text>\n",
"</g>\n",
"<!-- 521&#45;&gt;523 -->\n",
"<g id=\"edge523\" class=\"edge\">\n",
"<title>521&#45;&gt;523</title>\n",
"<path fill=\"none\" stroke=\"#000000\" d=\"M20507.204,-1293.8796C20526.2696,-1281.6158 20547.0719,-1268.2348 20565.9346,-1256.1015\"/>\n",
"<polygon fill=\"#000000\" stroke=\"#000000\" points=\"20567.9347,-1258.9766 20574.4516,-1250.623 20564.1478,-1253.0893 20567.9347,-1258.9766\"/>\n",
"</g>\n",
"</g>\n",
"</svg>\n"
],
"text/plain": [
"<graphviz.files.Source at 0x7fafa0d2bc88>"
]
},
"execution_count": 16,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"export_graphviz(bamboo_train_tree,\n",
" feature_names=list(bamboo_train_ingredients.columns.values),\n",
" out_file=\"bamboo_train_tree.dot\",\n",
" class_names=np.unique(bamboo_train_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(\"bamboo_train_tree.dot\") as bamboo_train_tree_image:\n",
" bamboo_train_tree_graph = bamboo_train_tree_image.read()\n",
"graphviz.Source(bamboo_train_tree_graph)"
]
},
{
"cell_type": "markdown",
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"source": [
"Now that we defined our tree to be deeper, more decision nodes are generated."
]
},
{
"cell_type": "markdown",
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"source": [
"#### Now let's test our model on the test data."
]
},
{
"cell_type": "code",
"execution_count": 17,
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"outputs": [],
"source": [
"bamboo_pred_cuisines = bamboo_train_tree.predict(bamboo_test_ingredients)"
]
},
{
"cell_type": "markdown",
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"source": [
"To quantify how well the decision tree is able to determine the cuisine of each recipe correctly, we will create a confusion matrix which presents a nice summary on how many recipes from each cuisine are correctly classified. It also sheds some light on what cuisines are being confused with what other cuisines."
]
},
{
"cell_type": "markdown",
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"source": [
"So let's go ahead and create the confusion matrix for how well the decision tree is able to correctly classify the recipes in **bamboo_test**."
]
},
{
"cell_type": "code",
"execution_count": 18,
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"outputs": [
{
"data": {
"image/png": "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\n",
"text/plain": [
"<Figure size 576x432 with 2 Axes>"
]
},
"metadata": {
"needs_background": "light"
},
"output_type": "display_data"
}
],
"source": [
"test_cuisines = np.unique(bamboo_test_cuisines)\n",
"bamboo_confusion_matrix = confusion_matrix(bamboo_test_cuisines, bamboo_pred_cuisines, test_cuisines)\n",
"title = 'Bamboo Confusion Matrix'\n",
"cmap = plt.cm.Blues\n",
"\n",
"plt.figure(figsize=(8, 6))\n",
"bamboo_confusion_matrix = (\n",
" bamboo_confusion_matrix.astype('float') / bamboo_confusion_matrix.sum(axis=1)[:, np.newaxis]\n",
" ) * 100\n",
"\n",
"plt.imshow(bamboo_confusion_matrix, interpolation='nearest', cmap=cmap)\n",
"plt.title(title)\n",
"plt.colorbar()\n",
"tick_marks = np.arange(len(test_cuisines))\n",
"plt.xticks(tick_marks, test_cuisines)\n",
"plt.yticks(tick_marks, test_cuisines)\n",
"\n",
"fmt = '.2f'\n",
"thresh = bamboo_confusion_matrix.max() / 2.\n",
"for i, j in itertools.product(range(bamboo_confusion_matrix.shape[0]), range(bamboo_confusion_matrix.shape[1])):\n",
" plt.text(j, i, format(bamboo_confusion_matrix[i, j], fmt),\n",
" horizontalalignment=\"center\",\n",
" color=\"white\" if bamboo_confusion_matrix[i, j] > thresh else \"black\")\n",
"\n",
"plt.tight_layout()\n",
"plt.ylabel('True label')\n",
"plt.xlabel('Predicted label')\n",
"\n",
"plt.show()"
]
},
{
"cell_type": "markdown",
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"source": [
"After running the above code, you should get a confusion matrix similar to the following:"
]
},
{
"cell_type": "markdown",
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"source": [
"<img src=\"https://ibm.box.com/shared/static/69f5m7txv2u6g47867qe0eypnfylrj4w.png\" width=500>"
]
},
{
"cell_type": "markdown",
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"source": [
"The rows represent the actual cuisines from the dataset and the columns represent the predicted ones. Each row should sum to 100%. According to this confusion matrix, we make the following observations:\n",
"\n",
"* Using the first row in the confusion matrix, 60% of the **Chinese** recipes in **bamboo_test** were correctly classified by our decision tree whereas 37% of the **Chinese** recipes were misclassified as **Korean** and 3% were misclassified as **Indian**.\n",
"\n",
"* Using the Indian row, 77% of the **Indian** recipes in **bamboo_test** were correctly classified by our decision tree and 3% of the **Indian** recipes were misclassified as **Chinese** and 13% were misclassified as **Korean** and 7% were misclassified as **Thai**."
]
},
{
"cell_type": "markdown",
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"source": [
"**Please note** that because decision trees are created using random sampling of the datapoints in the training set, then you may not get the same results every time you create the decision tree even using the same training set. The performance should still be comparable though! So don't worry if you get slightly different numbers in your confusion matrix than the ones shown above."
]
},
{
"cell_type": "markdown",
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"source": [
"Using the reference confusion matrix, how many **Japanese** recipes were correctly classified by our decision tree?"
]
},
{
"cell_type": "raw",
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"source": [
"Your Answer:\n",
"\n"
]
},
{
"cell_type": "markdown",
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"source": [
"Double-click __here__ for the solution.\n",
"<!-- The correct answer is:\n",
"36.67%.\n",
"-->"
]
},
{
"cell_type": "markdown",
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"source": [
"Also using the reference confusion matrix, how many **Korean** recipes were misclassified as **Japanese**?"
]
},
{
"cell_type": "raw",
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"source": [
"Your Answer:\n",
"\n"
]
},
{
"cell_type": "markdown",
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"source": [
"Double-click __here__ for the solution.\n",
"<!-- The correct answer is:\n",
"3.33%.\n",
"-->"
]
},
{
"cell_type": "markdown",
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"source": [
"What cuisine has the least number of recipes correctly classified by the decision tree using the reference confusion matrix?"
]
},
{
"cell_type": "raw",
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"source": [
"Your Answer:\n",
"\n"
]
},
{
"cell_type": "markdown",
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"source": [
"Double-click __here__ for the solution.\n",
"<!-- The correct answer is:\n",
"Japanese cuisine, with 36.67% only.\n",
"-->"
]
},
{
"cell_type": "markdown",
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"source": [
"<br>\n",
"<hr>"
]
},
{
"cell_type": "markdown",
"metadata": {
"button": false,
"deletable": true,
"new_sheet": false,
"run_control": {
"read_only": false
}
},
"source": [
"### Thank you for completing this lab!\n",
"\n",
"This notebook was created by [Alex Aklson](https://www.linkedin.com/in/aklson/). We hope you found this lab session interesting. Feel free to contact us if you have any questions!"
]
},
{
"cell_type": "markdown",
"metadata": {
"button": fal
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment