[
  {
    "path": ".github/workflows/main.yml",
    "content": "# This is a basic workflow to help you get started with Actions\n\nname: Blob storage website CI\n\n# Controls when the action will run. Triggers the workflow on push or pull request\n# events but only for the main branch\non:\n  push:\n    branches: [ main ]\n\njobs:\n  build:\n    runs-on: ubuntu-latest\n    steps:\n    - uses: actions/checkout@v2\n    - name: Use Node.js\n      uses: actions/setup-node@v1\n      with:\n        node-version: '22'\n    - run: npm install\n    - run: npm run build --if-present\n      env:\n        CI: true\n    - name: Azure Login\n      uses: azure/login@v1\n      with:\n        creds: ${{ secrets.AZURE_CREDENTIALS }}\n    - name: Upload to Azure\n      uses: azure/CLI@v1\n      with:\n        azcliversion: 2.33.0\n        inlineScript: |\n          az storage blob upload-batch -s public/roadmap -d \\$web/roadmap --account-name iamai --content-cache-control 'public,max-age=3600'\n    - name: Purge Azure CDN\n      uses: azure/CLI@v1\n      with:\n        azcliversion: 2.33.0\n        inlineScript: |\n          az cdn endpoint purge --content-paths  \"/*\" --profile-name \"i-am-ai\" --name \"i-am-ai\" --resource-group \"Productive\"\n        # Azure logout \n    - name: Azure Logout\n      uses: azure/CLI@v1\n      with:\n        azcliversion: 2.33.0\n        inlineScript: |\n          az logout\n          az cache purge\n          az account clear\n"
  },
  {
    "path": ".gitignore",
    "content": ".DS_Store\n._*\nThumbs.db\n*.sublime-project\n*.sublime-workspace\n.idea\nnode_modules\n/public/\n.vuepress/dist/\ndeploy.md"
  },
  {
    "path": ".vuepress/components/Example.vue",
    "content": "<script>\nexport default {\n  functional: true,\n  render (h, { props, slots }) {\n    return h('div',\n      {\n        class: ['bs-docs-example']\n      },\n      [\n        slots().default\n      ]\n    )\n  }\n}\n</script>\n\n<style lang=\"stylus\">\n    .bs-docs-example\n        position: relative;\n        margin: 15px 0;\n        padding: 39px 19px 14px;\n        background-color: #fff;\n        border: 1px solid #ddd;\n        border-radius: 4px;\n        > p \n            margin: 0px;\n            > img\n                display: block;\n                margin-left: auto;\n                margin-right: auto;\n                max-width: 100%;\n                width: auto;\n                height: auto;\n                vertical-align: middle;\n                border: 0;\n    .bs-docs-example:after\n        content: \"Example\";\n        position: absolute;\n        top: -1px;\n        left: -1px;\n        padding: 3px 7px;\n        font-size: 12px;\n        font-weight: bold;\n        background-color: #f5f5f5;\n        border: 1px solid #ddd;\n        color: #9da0a4;\n        -webkit-border-radius: 4px 0 4px 0;\n        -moz-border-radius: 4px 0 4px 0;\n        border-radius: 4px 0 4px 0;\n</style>"
  },
  {
    "path": ".vuepress/components/Youtube.vue",
    "content": "<script>\nexport default {\n  functional: true,\n  render (h, { props, slots }) {\n    return h('div',\n      {\n        class: ['videoWrapper']\n      },\n      [\n        slots().default\n      ]\n    )\n  }\n}\n</script>\n\n<style lang=\"stylus\">\n.videoWrapper {\n    position: relative;\n    padding-bottom: 56.25%; /* 16:9 */\n    padding-top: 25px;\n    height: 0;\n}\n.videoWrapper iframe {\n    position: absolute;\n    top: 0;\n    left: 0;\n    width: 100%;\n    height: 100%;\n}\n</style>"
  },
  {
    "path": ".vuepress/config.js",
    "content": "const container = require('markdown-it-container');\nconst fs = require('fs');\nmodule.exports = {\n    title: 'AI Expert Roadmap',\n    description: 'The i.am.ai Experts Roadmap',\n    dest: 'public/roadmap',\n    base: '/roadmap/',\n    themeConfig: {\n        repo: 'https://github.com/AMAI-GmbH/AI-Expert-Roadmap',\n        docsDir: '.',\n        docsBranch: 'master',\n        editLinks: true,\n        editLinkText: 'Edit this page',\n        sidebarDepth: 1,\n        lastUpdated: 'Last Updated',\n        search: false,\n        sidebar: [\n            ['/', 'Roadmap'],\n            ['contributing.md', 'Contribution']\n        ],\n        nav: [\n            { text: 'AI Use Cases', link: 'https://i.am.ai/usecases', target:'_self' },\n            { text: 'AI Roadmap', link: '/' },\n            { text: 'AI Newsletter', link: 'https://i.am.ai/newsletter', target:'_self' },\n            { text: 'Hire AI Experts', link: 'https://am.ai?utm_source=i.am.ai&utm_medium=Referral&utm_campaign=AI+Expert+Roadmap+Hire+Experts+Navbar', target:'_blank' },\n        ]\n    },\n    patterns: process.env.EXPORT_PDF === 'True' ? ['readme.md'] : ['**/*.md', '**/*.vue'],\n    plugins: ['@snowdog/vuepress-plugin-pdf-export', {\n        puppeteerLaunchOptions: {\n          args: ['--no-sandbox', '--disable-setuid-sandbox']\n        }\n      }],\n    /* using this Google Analytics Plugin makes metomic's autoblock impossible\n    \n    plugins: {\n        '@vuepress/plugin-google-analytics': {\n            ga: 'UA-131730139-2'\n          },\n    }, */\n    /*plugins: {\n        '@vuepress/pwa': {xw\n            serviceWorker: true,\n            updatePopup: {\n                message: \"Updated documentation is available.\",\n                buttonText: \"Refresh\"\n            }\n        }\n    },*/\n\n    head: [\n        process.env.EXPORT_PDF !== 'True' ? ['script', {\n            async: true,\n            defer: true,\n            \"data-domain\": \"i.am.ai\",\n            src: 'https://stats.am.ai/js/plausible.outbound-links.js'\n        }] : ['script', {}],\n        ['link', {\n            rel: 'icon',\n            href: `/logos/icon-512x512.png`\n        }],\n        ['link', {\n            rel: 'manifest',\n            href: '/manifest.json'\n        }],\n        ['meta', {\n            name: 'theme-color',\n            content: '#1f6286'\n        }],\n        ['meta', {\n            name: 'apple-mobile-web-app-capable',\n            content: 'yes'\n        }],\n        ['meta', {\n            name: 'apple-mobile-web-app-status-bar-style',\n            content: 'black'\n        }],\n        ['link', {\n            rel: 'apple-touch-icon',\n            href: `/logos/icon-152x152.png`\n        }],\n        ['meta', {\n            name: 'msapplication-TileImage',\n            content: '/logos/icon-144x144.png'\n        }],\n        ['meta', {\n            name: 'msapplication-TileColor',\n            content: '#ffffff'\n        }],\n        [\"meta\", {\n            name: \"Description\",\n            content: \"Follow these roadmaps to become an Artificial Intelligence expert.\"\n        }],\n        [\"meta\", {\n            property: \"og:title\",\n            content: \"AI Roadmap\"\n        }],\n        [\"meta\", {\n            property: \"og:image\",\n            content: \"https://i.am.ai/img/banner/i-am-ai-banner-roadmap.png\"\n        }],\n        [\"meta\", {\n            property: \"og:description\",\n            content: \"Follow these roadmaps to become an Artificial Intelligence expert.\"\n        }],\n        [\"meta\", {\n            property: \"og:url\",\n            content: \"https://i.am.ai/roadmap\"\n        }],\n        [\"meta\", {\n            property: \"og:type\",\n            content: \"website\"\n        }],\n        [\"meta\", {\n            property: \"og:site_name\",\n            content: \"AI Roadmap\"\n        }],\n        ['link', { \n            rel: \"icon\", \n            type: \"image/png\", \n            sizes: \"32x32\", \n            href: \"/Favicon.png\"\n        }]\n          \n    ],\n    extendMarkdown(md) {\n        md.use(container, 'example', {\n            render: (tokens, idx) => tokens[idx].nesting === 1 ?\n                `<Example title=\"${tokens[idx].info.trim().slice('upgrade'.length).trim()}\">` : '</Example>'\n        })\n        md.use(container, 'youtube', {\n            render: (tokens, idx) => tokens[idx].nesting === 1 ?\n                `<Youtube>` : '</Youtube>'\n        })\n\n        const render = md.render;\n        md.render = (...args) => {\n            // original content\n            var html = render.call(md, ...args);\n            \n            // Replace Github links to i.am.ai/roadmap in the roadmap\n            html = html.replace(/<a[[\\s]+([^>]+)>((?:.|\\s)*?)<\\/a>/g, function(match, p1, p2) {\n                if(p1.startsWith('href=\"https://i.am.ai/roadmap#')) {\n                    return p2;\n                }\n                return match\n            });\n\n            // SVG embedding for clickable images\n            html = html.replace(/<img\\s[^>]*?src\\s*=\\s*['\\\"]([^'\\\"]*?)['\\\"][^>]*?>/g, function(match, p1) {\n                if(p1.startsWith(\"./images/\") && p1.endsWith(\".svg\") && !p1.startsWith(\"./images/logos\")) {\n                    var svg = fs.readFileSync(p1, 'utf8');\n                    svg = svg.replace(/<\\?xml.+\\?>|<!DOCTYPE.+>/g, '')\n                    // make links open in new window\n                    svg = svg.replace(/target=\\\"_blank\\\"/isg, \"\");\n                    svg = svg.replace(/(<a[^<>]*xlink:href=['\\\"]?http[^<>]+)>/isg, \"$1 target=\\\"_blank\\\">\");\n                    return svg;\n                }\n                return match\n            });\n\n            return html\n        };\n    }\n};"
  },
  {
    "path": ".vuepress/public/manifest.json",
    "content": "{\n  \"name\": \"AI Expert Roadmap\",\n  \"theme_color\": \"#1f6286\",\n  \"background_color\": \"#fff\",\n  \"display\": \"fullscreen\",\n  \"Scope\": \"/\",\n  \"start_url\": \"/\",\n  \"icons\": [\n    {\n      \"src\": \"logos/icon-72x72.png\",\n      \"sizes\": \"72x72\",\n      \"type\": \"image/png\"\n    },\n    {\n      \"src\": \"logos/icon-96x96.png\",\n      \"sizes\": \"96x96\",\n      \"type\": \"image/png\"\n    },\n    {\n      \"src\": \"logos/icon-128x128.png\",\n      \"sizes\": \"128x128\",\n      \"type\": \"image/png\"\n    },\n    {\n      \"src\": \"logos/icon-144x144.png\",\n      \"sizes\": \"144x144\",\n      \"type\": \"image/png\"\n    },\n    {\n      \"src\": \"logos/icon-152x152.png\",\n      \"sizes\": \"152x152\",\n      \"type\": \"image/png\"\n    },\n    {\n      \"src\": \"logos/icon-192x192.png\",\n      \"sizes\": \"192x192\",\n      \"type\": \"image/png\"\n    },\n    {\n      \"src\": \"logos/icon-384x384.png\",\n      \"sizes\": \"384x384\",\n      \"type\": \"image/png\"\n    },\n    {\n      \"src\": \"logos/icon-512x512.png\",\n      \"sizes\": \"512x512\",\n      \"type\": \"image/png\"\n    }\n  ]\n}"
  },
  {
    "path": ".vuepress/styles/index.styl",
    "content": "img, svg {\n  max-width: 100%;\n  display: block;\n  margin-left: auto;\n  margin-right: auto;\n}\n\nimg.inline\n  display: inline;\n\n.nav-item .icon.outbound {\n  display: none !important;\n}\n\n\n\n\n\n.navbar {\n  box-shadow: 0px 1px 10px 0px rgba(221,221,221,0.1);\n  top: 0px;\n  position: fixed;\n  z-index: 222;\n  width:100%;\n  padding-right: 0;\n\n\n  border-bottom: 0px solid;\n  border-color: lightgrey;\n  /*box-shadow: 0px 1px 10px 0px rgba(255,255,255,0.8); #white version*/\n  \n}\n.navbar .container {\n  max-width: 2000px;\n}\n\n.home-link {\n  font-size: 2em;\n}\n\n.nav-links {\n  font-size: 1.1em;\n  margin: 0px 14px 0px 12px;\n  \n}\n\n.nav-item a:hover {\n    background-color: #eeeeee55;\n    color: black;\n    box-shadow: 0px 3px 0px -1px #206287; /*amai blau 206287, neon blau 206287*/\n  }\n\n/* Style the active/current link*/\n.nav-item .router-link-active {\n  border-bottom: 0 !important;\n  box-shadow: 0px 6px 0px -1px #206287;\n  color: black;\n  font-weight: bold;\n  font-family: \"DM Mono\", -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica,\n  Arial, sans-serif;\n}\n\n.nav-link, .repo-link {\n  padding: 0.5em 0.5em;\n}\n\n@media only screen and (max-width: 720px) {\n  .nav-links, .nav-item {\n    margin-left: 0;\n    padding-left:0 !important;\n  }\n  .nav-link {\n        padding: 0.35rem 1rem 0.35rem 1.25rem;\n  }\n  .nav-item .router-link-active {\n     box-shadow: 0 0 0 0 #ffffffff;\n     border-left: 0.25rem solid #1f6286;\n  }\n\n  .repo-link {\n    margin-left:0;\n    padding: 0.35rem 1rem 0.35rem 1.25rem !important;\n  }\n}"
  },
  {
    "path": ".vuepress/styles/palette.styl",
    "content": "$accentColor = #1f6286\n$contentWidth = 882px"
  },
  {
    "path": "LICENSE",
    "content": "MIT License\n\nCopyright (c) 2021 AMAI GmbH\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "contributing.md",
    "content": "# Contribution\n\n## The Goal\n\nOur goal is **not** to have the biggest list of everything available out there.\nOur goal is to have a list of things that anybody would have to learn if they were to enter the field today.\n\n## Contributing\n\nYour contributions to this repo are always welcome!\nBear in mind, that this repo is *highly opinionated*, *unbiased* and *curated*.\nYour opinion on value of any resource may not match the opinion of the curators.\n\n**No PR will be discarded without explanation!**\n\n## How are these roadmaps made?\n\n> Roadmaps are made using [draw.io](https://www.draw.io/)\n\n* Clone the repository\n* Open [draw.io](https://www.draw.io/) and drop the xml file of the image that you want to change in the browser to open it\n* Add your changes and add a link to each new content\n* Export the xml file `File > Export as > XML > uncheck \"compressed\" > Export` and put it in the `images` directory\n* Export the svg file `File > Export as > SVG > uncheck \"Include a copy of my diagram\" > Export` and put it in the `images` directory\n* Make sure that the width and height of the SVG match the actual image content to avoid unnecessary whitespace around the image\n* Commit your changes and open a PR\n\n## Guidelines\n\n* **Adding everything available out there is not the goal!**  \nThe roadmaps represent the skillset most valuable in present time meaning that if you were to enter any of the listed fields today, that's what you would learn first. Although there is an endless amount of techniques, tools and components that were important in the past or appear promising to become relevant in the future, prioritize the skills that are generally most relevant for today's demand. Use your critical thinking to filter out non-essential stuff. Give honest arguments for why the resource should be included.\n* **One item per Pull Request**  \nThere may be a discussion related to an item you want to add. Adding just a single item per pull request makes it much easier for everyone involved.\n* Write meaningful commit messages\n* Look at the existing issues/pull requests before opening new ones\n"
  },
  {
    "path": "images/big_data_engineer.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<mxfile modified=\"2020-11-29T18:34:23.980Z\" host=\"app.diagrams.net\" agent=\"5.0 (Macintosh; Intel Mac OS X 11_0_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.67 Safari/537.36\" etag=\"8S7JSTCZP56uaENDcZV7\" compressed=\"false\" version=\"13.10.4\" type=\"device\">\n  <diagram id=\"tnxyiyi4WRpZzoaliO9H\" name=\"Page-2\">\n    <mxGraphModel dx=\"1033\" dy=\"1129\" grid=\"1\" gridSize=\"5\" guides=\"1\" tooltips=\"1\" connect=\"1\" arrows=\"1\" fold=\"1\" page=\"1\" pageScale=\"1\" pageWidth=\"590\" pageHeight=\"1500\" math=\"0\" shadow=\"0\">\n      <root>\n        <mxCell id=\"6rCNIvlzMnQTXOo2ZaPR-0\" />\n        <mxCell id=\"6rCNIvlzMnQTXOo2ZaPR-1\" parent=\"6rCNIvlzMnQTXOo2ZaPR-0\" />\n        <mxCell id=\"6rCNIvlzMnQTXOo2ZaPR-2\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;strokeColor=#1F6286;endArrow=none;endFill=0;textDirection=ltr;\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" source=\"6rCNIvlzMnQTXOo2ZaPR-3\" target=\"6rCNIvlzMnQTXOo2ZaPR-5\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <Array as=\"points\">\n              <mxPoint x=\"369\" y=\"180\" />\n              <mxPoint x=\"270\" y=\"180\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"6rCNIvlzMnQTXOo2ZaPR-3\" value=\"&lt;h1 style=&quot;font-size: 24px&quot;&gt;&lt;font style=&quot;font-size: 24px&quot;&gt;Big Data Engineer&lt;/font&gt;&lt;/h1&gt;\" style=\"rounded=1;whiteSpace=nowrap;html=1;strokeColor=none;textDirection=ltr;fontSize=24;fontStyle=0;fillColor=none;\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" vertex=\"1\">\n          <mxGeometry x=\"245\" y=\"100\" width=\"250\" height=\"60\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"6rCNIvlzMnQTXOo2ZaPR-4\" value=\"\" style=\"curved=1;endArrow=none;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;dashed=1;fillColor=#dae8fc;strokeColor=#1F6286;endFill=0;\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" target=\"6rCNIvlzMnQTXOo2ZaPR-3\" edge=\"1\">\n          <mxGeometry width=\"50\" height=\"50\" relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"365\" as=\"sourcePoint\" />\n            <mxPoint x=\"295\" y=\"40\" as=\"targetPoint\" />\n            <Array as=\"points\">\n              <mxPoint x=\"405\" y=\"20\" />\n              <mxPoint x=\"345\" y=\"70\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"Architectural Patterns &amp;amp; Best Practices (video)\" link=\"https://www.youtube.com/watch?v=ovPheIbY7U8\" id=\"6rCNIvlzMnQTXOo2ZaPR-5\">\n          <mxCell style=\"rounded=1;html=1;fontColor=#FFFFFF;textDirection=ltr;fontSize=12;strokeColor=#000000;labelBackgroundColor=none;endFill=0;endArrow=none;fillColor=#1F6286;whiteSpace=wrap;shadow=1;\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" vertex=\"1\">\n            <mxGeometry x=\"185\" y=\"200\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"6rCNIvlzMnQTXOo2ZaPR-22\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;strokeColor=#1F6286;endArrow=none;endFill=0;textDirection=ltr;\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" source=\"6rCNIvlzMnQTXOo2ZaPR-5\" target=\"6rCNIvlzMnQTXOo2ZaPR-24\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"270\" y=\"240\" as=\"sourcePoint\" />\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"Horizontal vs vertical scaling\" link=\"https://www.esds.co.in/blog/what-is-the-difference-between-horizontal-vertical-scaling/#sthash.iubDpt2n.5N21DzoW.dpbs\" id=\"6rCNIvlzMnQTXOo2ZaPR-24\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;strokeColor=#000000;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" vertex=\"1\">\n            <mxGeometry x=\"315\" y=\"300.5\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Map Reduce\" link=\"https://de.wikipedia.org/wiki/MapReduce\" id=\"6rCNIvlzMnQTXOo2ZaPR-39\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;strokeColor=#000000;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" vertex=\"1\">\n            <mxGeometry x=\"315\" y=\"342\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Data Replication\" link=\"https://www.geeksforgeeks.org/data-replication-in-dbms/\" id=\"6rCNIvlzMnQTXOo2ZaPR-54\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;strokeColor=#000000;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" vertex=\"1\">\n            <mxGeometry x=\"315\" y=\"383\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Job &amp;amp; Task Tracker\" link=\"https://www.includehelp.com/big-data/mapreduces-engine-job-tracker-and-task-tracker-in-hadoop.aspx\" id=\"6rCNIvlzMnQTXOo2ZaPR-65\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;strokeColor=#000000;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" vertex=\"1\">\n            <mxGeometry x=\"315\" y=\"465\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Name &amp;amp; Data Nodes\" link=\"https://pediaa.com/what-is-the-difference-between-namenode-and-datanode-in-hadoop/\" id=\"6rCNIvlzMnQTXOo2ZaPR-67\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;strokeColor=#000000;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" vertex=\"1\">\n            <mxGeometry x=\"315\" y=\"424\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"6rCNIvlzMnQTXOo2ZaPR-74\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" source=\"6rCNIvlzMnQTXOo2ZaPR-65\" target=\"6rCNIvlzMnQTXOo2ZaPR-104\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"399.66666666666697\" y=\"495.66666666666674\" as=\"sourcePoint\" />\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"Check the Awesome Big Data List\" link=\"https://github.com/onurakpolat/awesome-bigdata\" id=\"6rCNIvlzMnQTXOo2ZaPR-104\">\n          <mxCell style=\"rounded=1;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;strokeColor=#000000;labelBackgroundColor=none;endFill=0;endArrow=none;whiteSpace=wrap;shadow=1;\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" vertex=\"1\">\n            <mxGeometry x=\"185\" y=\"556\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Hadoop (large data)\" link=\"https://hadoop.apache.org/\" id=\"6rCNIvlzMnQTXOo2ZaPR-105\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;strokeColor=#000000;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" vertex=\"1\">\n            <mxGeometry x=\"185\" y=\"596\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Spark (in memory)\" link=\"https://spark.apache.org/\" id=\"6rCNIvlzMnQTXOo2ZaPR-107\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;strokeColor=#000000;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" vertex=\"1\">\n            <mxGeometry x=\"185\" y=\"636\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"6rCNIvlzMnQTXOo2ZaPR-119\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" source=\"6rCNIvlzMnQTXOo2ZaPR-120\" target=\"6rCNIvlzMnQTXOo2ZaPR-105\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"&lt;span style=&quot;font-size: 11px;&quot;&gt;HDFS&lt;/span&gt;\" link=\"https://hadoop.apache.org/docs/current/hadoop-project-dist/hadoop-hdfs/HdfsDesign.html\" id=\"6rCNIvlzMnQTXOo2ZaPR-120\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;strokeColor=#000000;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" vertex=\"1\">\n            <mxGeometry x=\"400\" y=\"572\" width=\"175\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"6rCNIvlzMnQTXOo2ZaPR-121\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" source=\"6rCNIvlzMnQTXOo2ZaPR-123\" target=\"6rCNIvlzMnQTXOo2ZaPR-105\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <Array as=\"points\">\n              <mxPoint x=\"378\" y=\"612\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"&lt;span style=&quot;font-size: 11px&quot;&gt;Loading data with &lt;a href=&quot;https://sqoop.apache.org/&quot; style=&quot;font-size: 11px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot; color=&quot;#ffffff&quot;&gt;Sqoop &lt;/font&gt;&lt;/a&gt;and &lt;a href=&quot;https://pig.apache.org/&quot; style=&quot;font-size: 11px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot; color=&quot;#ffffff&quot;&gt;Pig&lt;/font&gt;&lt;/a&gt;&lt;/span&gt;\" id=\"6rCNIvlzMnQTXOo2ZaPR-123\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;strokeColor=#000000;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" vertex=\"1\">\n            <mxGeometry x=\"400\" y=\"602\" width=\"175\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"&lt;font color=&quot;#000000&quot;&gt;Big Data Architectures&lt;/font&gt;\" link=\"https://docs.microsoft.com/de-de/azure/architecture/data-guide/big-data/\" id=\"6rCNIvlzMnQTXOo2ZaPR-133\">\n          <mxCell style=\"text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=nowrap;rounded=0;labelBackgroundColor=none;fontSize=16;fontColor=#FFFFFF;fontStyle=1\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" vertex=\"1\">\n            <mxGeometry x=\"85\" y=\"175\" width=\"180\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"6rCNIvlzMnQTXOo2ZaPR-134\" value=\"&lt;font color=&quot;#000000&quot; style=&quot;font-size: 16px&quot;&gt;Principles&lt;/font&gt;\" style=\"text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=nowrap;rounded=0;labelBackgroundColor=none;fontSize=16;fontColor=#FFFFFF;fontStyle=1\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" vertex=\"1\">\n          <mxGeometry x=\"395.5\" y=\"273.5\" width=\"110\" height=\"20\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"6rCNIvlzMnQTXOo2ZaPR-135\" value=\"&lt;font color=&quot;#000000&quot; style=&quot;font-size: 16px&quot;&gt;Tools&lt;/font&gt;\" style=\"text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=nowrap;rounded=0;labelBackgroundColor=none;fontSize=16;fontColor=#FFFFFF;fontStyle=1\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" vertex=\"1\">\n          <mxGeometry x=\"150\" y=\"525\" width=\"110\" height=\"31\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"RAPIDS (on GPU)\" link=\"https://rapids.ai/\" id=\"6rCNIvlzMnQTXOo2ZaPR-152\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;strokeColor=#000000;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" vertex=\"1\">\n            <mxGeometry x=\"185\" y=\"676\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"&lt;font color=&quot;#ffffff&quot;&gt;&lt;a href=&quot;https://flume.apache.org/&quot;&gt;&lt;font color=&quot;#ffffff&quot;&gt;Flume&lt;/font&gt;&lt;/a&gt;, Scribe: For Unstruct Data&lt;/font&gt;\" id=\"6rCNIvlzMnQTXOo2ZaPR-154\">\n          <mxCell style=\"rounded=1;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;strokeColor=#000000;labelBackgroundColor=none;endFill=0;endArrow=none;whiteSpace=wrap;shadow=1;\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" vertex=\"1\">\n            <mxGeometry x=\"185\" y=\"716\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Data Warehouse with &lt;a href=&quot;https://hive.apache.org/&quot;&gt;&lt;font color=&quot;#ffffff&quot;&gt;Hive&lt;/font&gt;&lt;/a&gt;\" id=\"6rCNIvlzMnQTXOo2ZaPR-155\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;strokeColor=#000000;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" vertex=\"1\">\n            <mxGeometry x=\"185\" y=\"756\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Elastic (EKL) Stack\" link=\"https://www.elastic.co/\" id=\"6rCNIvlzMnQTXOo2ZaPR-156\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;strokeColor=#000000;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" vertex=\"1\">\n            <mxGeometry x=\"185\" y=\"796\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Avro\" link=\"https://en.wikipedia.org/wiki/Apache_Avro\" id=\"6rCNIvlzMnQTXOo2ZaPR-158\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;strokeColor=#000000;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" vertex=\"1\">\n            <mxGeometry x=\"185\" y=\"836\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Flink\" link=\"https://flink.apache.org/\" id=\"6rCNIvlzMnQTXOo2ZaPR-159\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;strokeColor=#000000;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" vertex=\"1\">\n            <mxGeometry x=\"185\" y=\"876\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"MLFlow\" link=\"https://mlflow.org/\" id=\"6rCNIvlzMnQTXOo2ZaPR-160\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;strokeColor=#000000;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" vertex=\"1\">\n            <mxGeometry x=\"185\" y=\"1076\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"&lt;a href=&quot;https://kafka.apache.org/&quot;&gt;&lt;font color=&quot;#ffffff&quot;&gt;Kafka &lt;/font&gt;&lt;/a&gt;&amp;amp; &lt;a href=&quot;https://www.confluent.io/product/ksql/&quot;&gt;&lt;font color=&quot;#ffffff&quot;&gt;KSQL&lt;/font&gt;&lt;/a&gt;\" id=\"6rCNIvlzMnQTXOo2ZaPR-161\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;strokeColor=#000000;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" vertex=\"1\">\n            <mxGeometry x=\"185\" y=\"1116\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Databases\" link=\"https://www.datamation.com/data-center/slideshows/16-open-source-big-data-databases.html\" id=\"6rCNIvlzMnQTXOo2ZaPR-162\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;strokeColor=#000000;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" vertex=\"1\">\n            <mxGeometry x=\"185\" y=\"1156\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"&lt;span style=&quot;font-size: 11px;&quot;&gt;Storm: Hadoop Realtime&lt;/span&gt;\" link=\"https://de.hortonworks.com/apache/storm/\" id=\"Gbb27ZSeOEuHX0l6B958-0\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;strokeColor=#000000;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" vertex=\"1\">\n            <mxGeometry x=\"400\" y=\"631\" width=\"175\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Gbb27ZSeOEuHX0l6B958-4\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" source=\"Gbb27ZSeOEuHX0l6B958-0\" target=\"6rCNIvlzMnQTXOo2ZaPR-105\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"404.9677419354839\" y=\"586.516129032258\" as=\"sourcePoint\" />\n            <mxPoint x=\"359.9677419354839\" y=\"616.0322580645161\" as=\"targetPoint\" />\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"Gbb27ZSeOEuHX0l6B958-10\" style=\"edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.16;exitY=0.55;exitDx=0;exitDy=0;exitPerimeter=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;endArrow=none;endFill=0;curved=1;dashed=1;\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" source=\"Gbb27ZSeOEuHX0l6B958-8\" target=\"6rCNIvlzMnQTXOo2ZaPR-156\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"Gbb27ZSeOEuHX0l6B958-8\" value=\"to get data (e.g. logging), search, analyze &lt;br&gt;&amp;nbsp; &amp;nbsp;and visualize it in realtime\" style=\"ellipse;shape=cloud;html=1;whiteSpace=wrap;\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" vertex=\"1\">\n          <mxGeometry x=\"415\" y=\"710\" width=\"170\" height=\"105\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"&lt;span style=&quot;font-size: 11px;&quot;&gt;Cassandra&lt;/span&gt;\" link=\"http://cassandra.apache.org/\" id=\"Gbb27ZSeOEuHX0l6B958-11\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;strokeColor=#000000;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" vertex=\"1\">\n            <mxGeometry x=\"0.8620689655172669\" y=\"1145.5\" width=\"155\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"&lt;span style=&quot;font-size: 11px&quot;&gt;&lt;a href=&quot;https://www.mongodb.com/&quot; style=&quot;font-size: 11px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot; color=&quot;#ffffff&quot;&gt;MongoDB&lt;/font&gt;&lt;/a&gt;, &lt;a href=&quot;https://neo4j.com/&quot; style=&quot;font-size: 11px&quot;&gt;&lt;font style=&quot;font-size: 11px&quot; color=&quot;#ffffff&quot;&gt;Neo4j&lt;/font&gt;&lt;/a&gt;&lt;/span&gt;\" id=\"Gbb27ZSeOEuHX0l6B958-13\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;strokeColor=#000000;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" vertex=\"1\">\n            <mxGeometry x=\"0.8620689655172669\" y=\"1174\" width=\"155\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Gbb27ZSeOEuHX0l6B958-15\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=12;fontColor=#FFFFFF;fillColor=#878787;labelBackgroundColor=none;\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" source=\"6rCNIvlzMnQTXOo2ZaPR-162\" target=\"Gbb27ZSeOEuHX0l6B958-11\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"149.90476190476193\" y=\"1091.0238095238096\" as=\"sourcePoint\" />\n            <mxPoint x=\"105.14285714285711\" y=\"1120.547619047619\" as=\"targetPoint\" />\n            <Array as=\"points\">\n              <mxPoint x=\"175\" y=\"1170\" />\n              <mxPoint x=\"175\" y=\"1155\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"Gbb27ZSeOEuHX0l6B958-16\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=-0.008;exitY=0.499;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=12;fontColor=#FFFFFF;exitPerimeter=0;fillColor=#878787;labelBackgroundColor=none;\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" source=\"6rCNIvlzMnQTXOo2ZaPR-162\" target=\"Gbb27ZSeOEuHX0l6B958-13\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"189.93959731543623\" y=\"1174.9731543624162\" as=\"sourcePoint\" />\n            <mxPoint x=\"160.81208053691273\" y=\"1159.5369127516778\" as=\"targetPoint\" />\n            <Array as=\"points\">\n              <mxPoint x=\"175\" y=\"1170\" />\n              <mxPoint x=\"175\" y=\"1185\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"Scalability\" link=\"https://dzone.com/articles/big-database-1-scalability\" id=\"Gbb27ZSeOEuHX0l6B958-17\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;strokeColor=#000000;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" vertex=\"1\">\n            <mxGeometry x=\"185\" y=\"1196\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"&lt;span style=&quot;font-size: 11px;&quot;&gt;ZooKeeper&lt;/span&gt;\" link=\"https://en.wikipedia.org/wiki/Apache_ZooKeeper\" id=\"Gbb27ZSeOEuHX0l6B958-18\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;strokeColor=#000000;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" vertex=\"1\">\n            <mxGeometry x=\"399.86206896551727\" y=\"1185.5\" width=\"155\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Kubernetes\" link=\"https://kubernetes.io/\" id=\"Gbb27ZSeOEuHX0l6B958-19\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;strokeColor=#000000;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" vertex=\"1\">\n            <mxGeometry x=\"399.86206896551727\" y=\"1214\" width=\"155\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Gbb27ZSeOEuHX0l6B958-20\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=12;fontColor=#FFFFFF;fillColor=#878787;labelBackgroundColor=none;\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" source=\"Gbb27ZSeOEuHX0l6B958-18\" target=\"Gbb27ZSeOEuHX0l6B958-17\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"405\" y=\"1180.1666666666665\" as=\"sourcePoint\" />\n            <mxPoint x=\"360\" y=\"1209.5\" as=\"targetPoint\" />\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"Gbb27ZSeOEuHX0l6B958-21\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=12;fontColor=#FFFFFF;fillColor=#878787;labelBackgroundColor=none;\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" source=\"Gbb27ZSeOEuHX0l6B958-19\" target=\"Gbb27ZSeOEuHX0l6B958-17\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"405\" y=\"1244.5\" as=\"sourcePoint\" />\n            <mxPoint x=\"360\" y=\"1214.8333333333333\" as=\"targetPoint\" />\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"Cloud Services\" link=\"https://medium.com/@iced_burn/service-comparison-for-gcp-aws-ms-azure-ca030dc42ee9\" id=\"Gbb27ZSeOEuHX0l6B958-22\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;strokeColor=#000000;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" vertex=\"1\">\n            <mxGeometry x=\"185\" y=\"1236\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"&lt;span style=&quot;font-size: 11px;&quot;&gt;AWS SageMaker&lt;/span&gt;\" link=\"https://aws.amazon.com/de/sagemaker/\" id=\"Gbb27ZSeOEuHX0l6B958-23\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;strokeColor=#000000;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" vertex=\"1\">\n            <mxGeometry y=\"1212.5\" width=\"155\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Google ML Engine\" link=\"https://cloud.google.com/ml-engine/\" id=\"Gbb27ZSeOEuHX0l6B958-24\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;strokeColor=#000000;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" vertex=\"1\">\n            <mxGeometry y=\"1240.5\" width=\"155\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"&lt;span style=&quot;font-size: 11px;&quot;&gt;Microsoft Azure&lt;br style=&quot;font-size: 11px;&quot;&gt;Machine Learning Studio&lt;/span&gt;\" link=\"https://studio.azureml.net/\" id=\"Gbb27ZSeOEuHX0l6B958-25\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;strokeColor=#000000;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" vertex=\"1\">\n            <mxGeometry y=\"1268\" width=\"155\" height=\"27\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Gbb27ZSeOEuHX0l6B958-26\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=12;fontColor=#FFFFFF;fillColor=#878787;labelBackgroundColor=none;\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" source=\"Gbb27ZSeOEuHX0l6B958-22\" target=\"Gbb27ZSeOEuHX0l6B958-23\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"184\" y=\"1231.5\" as=\"sourcePoint\" />\n            <mxPoint x=\"155\" y=\"1216.1666666666667\" as=\"targetPoint\" />\n            <Array as=\"points\">\n              <mxPoint x=\"174\" y=\"1250\" />\n              <mxPoint x=\"174\" y=\"1221\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"Gbb27ZSeOEuHX0l6B958-27\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=12;fontColor=#FFFFFF;fillColor=#878787;labelBackgroundColor=none;\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" source=\"Gbb27ZSeOEuHX0l6B958-22\" target=\"Gbb27ZSeOEuHX0l6B958-24\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"190\" y=\"1255\" as=\"sourcePoint\" />\n            <mxPoint x=\"160\" y=\"1225.6666666666667\" as=\"targetPoint\" />\n            <Array as=\"points\">\n              <mxPoint x=\"155\" y=\"1250\" />\n              <mxPoint x=\"155\" y=\"1250\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"Gbb27ZSeOEuHX0l6B958-28\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" source=\"Gbb27ZSeOEuHX0l6B958-22\" target=\"Gbb27ZSeOEuHX0l6B958-25\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"195\" y=\"1295.5\" as=\"sourcePoint\" />\n            <mxPoint x=\"165\" y=\"1266.1666666666667\" as=\"targetPoint\" />\n            <Array as=\"points\">\n              <mxPoint x=\"175\" y=\"1250\" />\n              <mxPoint x=\"175\" y=\"1283\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"pe1DaiiPhDVsQ9KaHMsJ-1\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;dashed=1;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" source=\"NtcXeDbWIDkagvIsFP0r-0\" target=\"pe1DaiiPhDVsQ9KaHMsJ-2\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"270\" y=\"1307\" as=\"sourcePoint\" />\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"pe1DaiiPhDVsQ9KaHMsJ-2\" value=\"&lt;h1 style=&quot;font-size: 21px;&quot;&gt;&lt;font style=&quot;font-size: 21px;&quot;&gt;keep exploring and stay up-to-date&lt;/font&gt;&lt;/h1&gt;\" style=\"rounded=1;html=1;strokeColor=none;textDirection=ltr;fontSize=21;fontStyle=0;whiteSpace=wrap;fillColor=none;\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" vertex=\"1\">\n          <mxGeometry x=\"300\" y=\"1377\" width=\"218\" height=\"60\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"Awesome Production ML\" link=\"https://github.com/EthicalML/awesome-production-machine-learning\" id=\"NtcXeDbWIDkagvIsFP0r-0\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;strokeColor=#000000;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\" vertex=\"1\">\n            <mxGeometry x=\"185\" y=\"1276\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Dask\" link=\"https://en.wikipedia.org/wiki/Dask_(software)\" id=\"tQygiCXw8bVEuVCE99vQ-0\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;strokeColor=#000000;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" vertex=\"1\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\">\n            <mxGeometry x=\"185\" y=\"916\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Numba\" link=\"https://en.wikipedia.org/wiki/Numba\" id=\"tQygiCXw8bVEuVCE99vQ-1\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;strokeColor=#000000;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" vertex=\"1\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\">\n            <mxGeometry x=\"185\" y=\"956\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Onnx\" link=\"https://en.wikipedia.org/wiki/Open_Neural_Network_Exchange\" id=\"tQygiCXw8bVEuVCE99vQ-2\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;strokeColor=#000000;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" vertex=\"1\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\">\n            <mxGeometry x=\"185\" y=\"996\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"OpenVino\" link=\"https://en.wikipedia.org/wiki/OpenVINO\" id=\"tQygiCXw8bVEuVCE99vQ-3\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;strokeColor=#000000;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" vertex=\"1\" parent=\"6rCNIvlzMnQTXOo2ZaPR-1\">\n            <mxGeometry x=\"185\" y=\"1036\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n      </root>\n    </mxGraphModel>\n  </diagram>\n</mxfile>\n"
  },
  {
    "path": "images/data_engineer.xml",
    "content": "<mxfile modified=\"2020-10-24T21:33:13.560Z\" host=\"app.diagrams.net\" agent=\"5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.111 Safari/537.36\" etag=\"8HxiIHxZ2hHsBhRLQS0u\" compressed=\"false\" version=\"13.8.1\" type=\"device\">\n  <diagram id=\"eZRcFlvA4Ic9hnSg1Msx\" name=\"Page-5\">\n    <mxGraphModel dx=\"1422\" dy=\"1640\" grid=\"1\" gridSize=\"5\" guides=\"1\" tooltips=\"1\" connect=\"1\" arrows=\"1\" fold=\"1\" page=\"1\" pageScale=\"1\" pageWidth=\"360\" pageHeight=\"935\" math=\"0\" shadow=\"0\">\n      <root>\n        <mxCell id=\"spth0DDon3vnfrdNG20L-0\" />\n        <mxCell id=\"spth0DDon3vnfrdNG20L-1\" parent=\"spth0DDon3vnfrdNG20L-0\" />\n        <mxCell id=\"spth0DDon3vnfrdNG20L-2\" value=\"&lt;h1 style=&quot;font-size: 24px&quot;&gt;&lt;font style=&quot;font-size: 24px&quot;&gt;Data Engineer&lt;/font&gt;&lt;/h1&gt;\" style=\"rounded=1;whiteSpace=nowrap;html=1;strokeColor=none;textDirection=ltr;fontSize=24;fontStyle=0\" parent=\"spth0DDon3vnfrdNG20L-1\" vertex=\"1\">\n          <mxGeometry x=\"105.5\" y=\"99.5\" width=\"180\" height=\"60\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"spth0DDon3vnfrdNG20L-3\" value=\"\" style=\"curved=1;endArrow=none;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;dashed=1;fillColor=#dae8fc;strokeColor=#1F6286;endFill=0;\" parent=\"spth0DDon3vnfrdNG20L-1\" target=\"spth0DDon3vnfrdNG20L-2\" edge=\"1\">\n          <mxGeometry width=\"50\" height=\"50\" relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"192\" y=\"-0.5\" as=\"sourcePoint\" />\n            <mxPoint x=\"122\" y=\"39.5\" as=\"targetPoint\" />\n            <Array as=\"points\">\n              <mxPoint x=\"232\" y=\"19.5\" />\n              <mxPoint x=\"172\" y=\"69.5\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"spth0DDon3vnfrdNG20L-4\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;strokeColor=#1F6286;endArrow=none;endFill=0;textDirection=ltr;\" parent=\"spth0DDon3vnfrdNG20L-1\" source=\"spth0DDon3vnfrdNG20L-2\" target=\"spth0DDon3vnfrdNG20L-5\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"196\" y=\"199.5\" as=\"sourcePoint\" />\n            <Array as=\"points\">\n              <mxPoint x=\"195\" y=\"179.5\" />\n              <mxPoint x=\"97\" y=\"179.5\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"spth0DDon3vnfrdNG20L-5\" value=\"Summary of Data Formats\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;\" parent=\"spth0DDon3vnfrdNG20L-1\" vertex=\"1\">\n          <mxGeometry x=\"12\" y=\"204.5\" width=\"170\" height=\"40\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"Data Discovery\" id=\"spth0DDon3vnfrdNG20L-7\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;\" parent=\"spth0DDon3vnfrdNG20L-1\" vertex=\"1\">\n            <mxGeometry x=\"12\" y=\"254.5\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Data Source &amp;amp; Acquisition\" id=\"spth0DDon3vnfrdNG20L-8\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;\" parent=\"spth0DDon3vnfrdNG20L-1\" vertex=\"1\">\n            <mxGeometry x=\"12\" y=\"304.5\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Data Integration\" id=\"spth0DDon3vnfrdNG20L-9\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;\" parent=\"spth0DDon3vnfrdNG20L-1\" vertex=\"1\">\n            <mxGeometry x=\"12\" y=\"354.5\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Data Fusion\" id=\"spth0DDon3vnfrdNG20L-10\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;\" parent=\"spth0DDon3vnfrdNG20L-1\" vertex=\"1\">\n            <mxGeometry x=\"12\" y=\"404.5\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Transformation &amp;amp; Enrichment\" id=\"spth0DDon3vnfrdNG20L-11\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;\" parent=\"spth0DDon3vnfrdNG20L-1\" vertex=\"1\">\n            <mxGeometry x=\"12\" y=\"454.5\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"OpenRefine\" link=\"http://openrefine.org/\" id=\"spth0DDon3vnfrdNG20L-12\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;\" parent=\"spth0DDon3vnfrdNG20L-1\" vertex=\"1\">\n            <mxGeometry x=\"12\" y=\"554.5\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Data Survey\" id=\"spth0DDon3vnfrdNG20L-14\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;\" parent=\"spth0DDon3vnfrdNG20L-1\" vertex=\"1\">\n            <mxGeometry x=\"12\" y=\"504.5\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"How much Data\" id=\"spth0DDon3vnfrdNG20L-16\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;\" parent=\"spth0DDon3vnfrdNG20L-1\" vertex=\"1\">\n            <mxGeometry x=\"12\" y=\"604.5\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Using ETL\" id=\"spth0DDon3vnfrdNG20L-17\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;\" parent=\"spth0DDon3vnfrdNG20L-1\" vertex=\"1\">\n            <mxGeometry x=\"12\" y=\"654.5\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Data Lake vs Data Warehouse\" link=\"https://martinfowler.com/bliki/DataLake.html\" id=\"spth0DDon3vnfrdNG20L-18\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;\" parent=\"spth0DDon3vnfrdNG20L-1\" vertex=\"1\">\n            <mxGeometry x=\"12\" y=\"704.5\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Dockerize your Python Application\" link=\"https://runnable.com/docker/python/dockerize-your-python-application\" id=\"spth0DDon3vnfrdNG20L-19\">\n          <mxCell style=\"rounded=1;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;whiteSpace=wrap;\" parent=\"spth0DDon3vnfrdNG20L-1\" vertex=\"1\">\n            <mxGeometry x=\"12\" y=\"754.5\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"igHCT9EcDnu6rs0czpqZ-0\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;dashed=1;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;\" parent=\"spth0DDon3vnfrdNG20L-1\" source=\"spth0DDon3vnfrdNG20L-19\" target=\"igHCT9EcDnu6rs0czpqZ-1\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"226.64705882352928\" y=\"938.7941176470588\" as=\"sourcePoint\" />\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"igHCT9EcDnu6rs0czpqZ-1\" value=\"&lt;h1 style=&quot;font-size: 21px;&quot;&gt;&lt;font style=&quot;font-size: 21px;&quot;&gt;keep exploring and stay up-to-date&lt;/font&gt;&lt;/h1&gt;\" style=\"rounded=1;html=1;strokeColor=none;textDirection=ltr;fontSize=21;fontStyle=0;whiteSpace=wrap;\" parent=\"spth0DDon3vnfrdNG20L-1\" vertex=\"1\">\n          <mxGeometry x=\"137\" y=\"864.5\" width=\"218\" height=\"60\" as=\"geometry\" />\n        </mxCell>\n      </root>\n    </mxGraphModel>\n  </diagram>\n</mxfile>\n"
  },
  {
    "path": "images/datascience.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<mxfile modified=\"2021-03-05T15:47:26.215Z\" host=\"app.diagrams.net\" agent=\"5.0 (Macintosh; Intel Mac OS X 11_2_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.72 Safari/537.36\" etag=\"PH9G8er7G4pyWMXw1H3-\" compressed=\"false\" version=\"14.4.4\" type=\"device\">\n  <diagram id=\"rtSr3QTENstnuI61b4uq\" name=\"Page-1\">\n    <mxGraphModel dx=\"786\" dy=\"1072\" grid=\"1\" gridSize=\"5\" guides=\"1\" tooltips=\"1\" connect=\"1\" arrows=\"1\" fold=\"1\" page=\"1\" pageScale=\"1\" pageWidth=\"840\" pageHeight=\"2500\" math=\"0\" shadow=\"0\">\n      <root>\n        <mxCell id=\"0\" />\n        <mxCell id=\"1\" parent=\"0\" />\n        <mxCell id=\"TaBsdL_WbFngfGy-Ndm6-1\" value=\"&lt;h1 style=&quot;font-size: 24px&quot;&gt;&lt;font style=&quot;font-size: 24px&quot;&gt;Data Scientist&lt;/font&gt;&lt;/h1&gt;\" style=\"rounded=1;whiteSpace=nowrap;html=1;strokeColor=none;textDirection=ltr;fontSize=24;fontStyle=0;fillColor=none;\" parent=\"1\" vertex=\"1\">\n          <mxGeometry x=\"295\" y=\"100\" width=\"180\" height=\"60\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"TaBsdL_WbFngfGy-Ndm6-2\" value=\"\" style=\"curved=1;endArrow=none;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;dashed=1;strokeColor=#1F6286;endFill=0;fontSize=24;fontColor=#FFFFFF;\" parent=\"1\" target=\"TaBsdL_WbFngfGy-Ndm6-1\" edge=\"1\">\n          <mxGeometry width=\"50\" height=\"50\" relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"381.5\" y=\"21\" as=\"sourcePoint\" />\n            <mxPoint x=\"311.5\" y=\"61\" as=\"targetPoint\" />\n            <Array as=\"points\">\n              <mxPoint x=\"412.5\" y=\"46\" />\n              <mxPoint x=\"367.5\" y=\"71\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-34\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;strokeColor=#1F6286;endArrow=none;endFill=0;textDirection=ltr;fontSize=10;fontColor=#FFFFFF;\" parent=\"1\" source=\"TaBsdL_WbFngfGy-Ndm6-1\" target=\"Cq76QrIc5dfTi0YlTipQ-33\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"344\" y=\"520\" as=\"sourcePoint\" />\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"Probability Theory\" link=\"https://seeing-theory.brown.edu/index.html\" id=\"Cq76QrIc5dfTi0YlTipQ-33\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"389\" y=\"300.5\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-45\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;textDirection=ltr;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-35\" target=\"Cq76QrIc5dfTi0YlTipQ-33\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"&lt;font style=&quot;font-size: 10px;&quot;&gt;Probability distribution&lt;/font&gt;\" link=\"https://en.wikipedia.org/wiki/Probability_distribution\" id=\"Cq76QrIc5dfTi0YlTipQ-35\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"39\" y=\"308\" width=\"230\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-44\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;entryX=0;entryY=0.5;entryDx=0;entryDy=0;fontSize=10;fontColor=#FFFFFF;textDirection=ltr;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-36\" target=\"Cq76QrIc5dfTi0YlTipQ-33\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-36\" value=\"&lt;font style=&quot;font-size: 10px&quot;&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/Randomness&quot; target=&quot;Cq76QrIc5dfTi0YlTipQ-33&quot;&gt;&lt;font color=&quot;#ffffff&quot;&gt;Randomness&lt;/font&gt;&lt;/a&gt;, &lt;a href=&quot;https://en.wikipedia.org/wiki/Random_variable&quot; target=&quot;Cq76QrIc5dfTi0YlTipQ-33&quot;&gt;&lt;font color=&quot;#ffffff&quot;&gt;random variable&lt;/font&gt;&lt;/a&gt; and &lt;br style=&quot;font-size: 10px&quot;&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/Simple_random_sample&quot; target=&quot;Cq76QrIc5dfTi0YlTipQ-33&quot;&gt;&lt;font color=&quot;#ffffff&quot;&gt;random sample&lt;/font&gt;&lt;/a&gt;&lt;/font&gt;\" style=\"rounded=1;whiteSpace=nowrap;html=1;align=center;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n          <mxGeometry x=\"39\" y=\"269.5000000000001\" width=\"230\" height=\"30\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-46\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;entryX=0;entryY=0.5;entryDx=0;entryDy=0;fontSize=10;fontColor=#FFFFFF;textDirection=ltr;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-37\" target=\"Cq76QrIc5dfTi0YlTipQ-33\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-37\" value=\"&lt;font style=&quot;font-size: 10px&quot;&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/Conditional_probability&quot;&gt;&lt;font color=&quot;#ffffff&quot;&gt;Conditional probability&lt;/font&gt;&lt;/a&gt; and &lt;br style=&quot;font-size: 10px&quot;&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/Bayes%27_theorem&quot;&gt;&lt;font color=&quot;#ffffff&quot;&gt;Bayes&#39; theorem&lt;/font&gt;&lt;/a&gt;&lt;/font&gt;\" style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n          <mxGeometry x=\"39\" y=\"336\" width=\"230\" height=\"30\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-50\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;endArrow=none;endFill=0;strokeColor=#1F6286;dashed=1;dashPattern=1 2;fontSize=10;fontColor=#FFFFFF;textDirection=ltr;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-38\" target=\"Cq76QrIc5dfTi0YlTipQ-33\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"&lt;font style=&quot;font-size: 10px;&quot;&gt;(Statistical) independence&lt;/font&gt;\" link=\"https://en.wikipedia.org/wiki/Conditional_probability#Statistical_independence\" id=\"Cq76QrIc5dfTi0YlTipQ-38\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"39\" y=\"374\" width=\"230\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-51\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;textDirection=ltr;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-39\" target=\"Cq76QrIc5dfTi0YlTipQ-33\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"&lt;font style=&quot;font-size: 10px;&quot;&gt;iid&lt;/font&gt;\" link=\"https://en.wikipedia.org/wiki/Independent_and_identically_distributed_random_variables\" id=\"Cq76QrIc5dfTi0YlTipQ-39\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"39\" y=\"405\" width=\"230\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-52\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;textDirection=ltr;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-40\" target=\"Cq76QrIc5dfTi0YlTipQ-33\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-40\" value=\"&lt;span style=&quot;font-size: 10px;&quot;&gt;cdf, pdf, pmf&lt;/span&gt;\" style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;labelBackgroundColor=none;endFill=0;endArrow=none;\" parent=\"1\" vertex=\"1\">\n          <mxGeometry x=\"39\" y=\"435.0000000000001\" width=\"230\" height=\"20\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-94\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;textDirection=ltr;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-48\" target=\"Cq76QrIc5dfTi0YlTipQ-87\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <Array as=\"points\">\n              <mxPoint x=\"604\" y=\"366\" />\n              <mxPoint x=\"604\" y=\"70\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-95\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;textDirection=ltr;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-48\" target=\"Cq76QrIc5dfTi0YlTipQ-88\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <Array as=\"points\">\n              <mxPoint x=\"604\" y=\"366\" />\n              <mxPoint x=\"604\" y=\"95\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"Continuous distributions (pdf&#39;s)\" link=\"https://en.wikipedia.org/wiki/Probability_distribution#Continuous_probability_distribution\" id=\"Cq76QrIc5dfTi0YlTipQ-48\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"389\" y=\"350\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-84\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1B3CB3;fontSize=10;fontColor=#FFFFFF;textDirection=ltr;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-80\" target=\"Cq76QrIc5dfTi0YlTipQ-40\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <Array as=\"points\">\n              <mxPoint x=\"24\" y=\"470\" />\n              <mxPoint x=\"24\" y=\"445\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"&lt;font style=&quot;font-size: 10px&quot;&gt;Cumulative distribution function (cdf)&lt;/font&gt;\" link=\"https://en.wikipedia.org/wiki/Cumulative_distribution_function\" id=\"Cq76QrIc5dfTi0YlTipQ-80\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=10;fontColor=#FFFFFF;fillColor=#878787;textDirection=ltr;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"89\" y=\"462.5\" width=\"180\" height=\"15\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-85\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1B3CB3;fontSize=10;fontColor=#FFFFFF;textDirection=ltr;entryX=0;entryY=0.5;entryDx=0;entryDy=0;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-82\" target=\"Cq76QrIc5dfTi0YlTipQ-40\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"39\" y=\"450\" as=\"targetPoint\" />\n            <Array as=\"points\">\n              <mxPoint x=\"19\" y=\"490\" />\n              <mxPoint x=\"19\" y=\"445\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"&lt;span style=&quot;text-align: left; white-space: nowrap; font-size: 10px;&quot;&gt;Probability density function (pdf)&lt;/span&gt;\" link=\"https://en.wikipedia.org/wiki/Probability_density_function\" id=\"Cq76QrIc5dfTi0YlTipQ-82\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=10;fontColor=#FFFFFF;fillColor=#878787;textDirection=ltr;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"89\" y=\"482.5\" width=\"180\" height=\"15\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-86\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1B3CB3;fontSize=10;entryX=0;entryY=0.5;entryDx=0;entryDy=0;fontColor=#FFFFFF;textDirection=ltr;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-83\" target=\"Cq76QrIc5dfTi0YlTipQ-40\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"Probability mass function (pmf)\" link=\"https://en.wikipedia.org/wiki/Probability_mass_function\" id=\"Cq76QrIc5dfTi0YlTipQ-83\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=10;fontColor=#FFFFFF;fillColor=#878787;textDirection=ltr;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"89\" y=\"502.5\" width=\"180\" height=\"15\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Normal / Gaussian\" link=\"https://en.wikipedia.org/wiki/Normal_distribution\" id=\"Cq76QrIc5dfTi0YlTipQ-87\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"708.5\" y=\"60\" width=\"120\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Uniform (continuous)\" link=\"https://en.wikipedia.org/wiki/Uniform_distribution_(continuous)\" id=\"Cq76QrIc5dfTi0YlTipQ-88\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"708.5\" y=\"85\" width=\"120\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-96\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;textDirection=ltr;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-90\" target=\"Cq76QrIc5dfTi0YlTipQ-48\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <Array as=\"points\">\n              <mxPoint x=\"604\" y=\"120\" />\n              <mxPoint x=\"604\" y=\"366\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"Beta\" link=\"https://en.wikipedia.org/wiki/Beta_distribution\" id=\"Cq76QrIc5dfTi0YlTipQ-90\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"708.5\" y=\"110\" width=\"120\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-97\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;textDirection=ltr;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-91\" target=\"Cq76QrIc5dfTi0YlTipQ-48\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <Array as=\"points\">\n              <mxPoint x=\"604\" y=\"145\" />\n              <mxPoint x=\"604\" y=\"366\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"Dirichlet\" link=\"https://en.wikipedia.org/wiki/Dirichlet_distribution\" id=\"Cq76QrIc5dfTi0YlTipQ-91\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"708.5\" y=\"135\" width=\"120\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-98\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;textDirection=ltr;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-92\" target=\"Cq76QrIc5dfTi0YlTipQ-48\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <Array as=\"points\">\n              <mxPoint x=\"604\" y=\"170\" />\n              <mxPoint x=\"604\" y=\"366\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"Exponential\" link=\"https://en.wikipedia.org/wiki/Exponential_distribution\" id=\"Cq76QrIc5dfTi0YlTipQ-92\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"709\" y=\"160\" width=\"120\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-99\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;textDirection=ltr;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-102\" target=\"Cq76QrIc5dfTi0YlTipQ-48\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <Array as=\"points\">\n              <mxPoint x=\"604\" y=\"195\" />\n              <mxPoint x=\"604\" y=\"366\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"&lt;font face=&quot;sans-serif&quot;&gt;Uniform (discrete)&lt;/font&gt;\" link=\"https://en.wikipedia.org/wiki/Discrete_uniform_distribution\" id=\"Cq76QrIc5dfTi0YlTipQ-93\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"708.5\" y=\"231\" width=\"120\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-278\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-100\" target=\"Cq76QrIc5dfTi0YlTipQ-93\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"Discrete distributions (pmf&#39;s)\" link=\"https://support.minitab.com/en-us/minitab-express/1/help-and-how-to/basic-statistics/probability-distributions/supporting-topics/basics/continuous-and-discrete-probability-distributions/#what-is-a-discrete-distribution\" id=\"Cq76QrIc5dfTi0YlTipQ-100\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"389\" y=\"400\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"&lt;font style=&quot;font-size: 10px&quot;&gt;&lt;span style=&quot;font-family: sans-serif ; white-space: nowrap&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span class=&quot;nowrap&quot; style=&quot;font-family: sans-serif&quot;&gt;&lt;span style=&quot;font-family: serif&quot;&gt;&lt;i&gt;χ&lt;/i&gt;&lt;/span&gt;&lt;sup style=&quot;line-height: 1&quot;&gt;2&lt;/sup&gt;&lt;span style=&quot;line-height: 1&quot;&gt;&amp;nbsp;(chi-squared)&lt;/span&gt;&lt;/span&gt;&lt;/font&gt;\" link=\"https://en.wikipedia.org/wiki/Chi-squared_distribution\" id=\"Cq76QrIc5dfTi0YlTipQ-102\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"708.5\" y=\"185\" width=\"120\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-279\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-103\" target=\"Cq76QrIc5dfTi0YlTipQ-100\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"&lt;font face=&quot;sans-serif&quot;&gt;Binomial&lt;/font&gt;\" link=\"https://en.wikipedia.org/wiki/Binomial_distribution\" id=\"Cq76QrIc5dfTi0YlTipQ-103\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"708.5\" y=\"256.5\" width=\"120\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-280\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-106\" target=\"Cq76QrIc5dfTi0YlTipQ-100\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"&lt;font face=&quot;sans-serif&quot;&gt;Multinomial&lt;/font&gt;\" link=\"https://en.wikipedia.org/wiki/Multinomial_distribution\" id=\"Cq76QrIc5dfTi0YlTipQ-106\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"708.5\" y=\"281.5\" width=\"120\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-281\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-107\" target=\"Cq76QrIc5dfTi0YlTipQ-100\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"&lt;font face=&quot;sans-serif&quot;&gt;Hypergeometric&lt;/font&gt;\" link=\"https://en.wikipedia.org/wiki/Hypergeometric_distribution\" id=\"Cq76QrIc5dfTi0YlTipQ-107\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"708.5\" y=\"306.5\" width=\"120\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-282\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-108\" target=\"Cq76QrIc5dfTi0YlTipQ-100\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"&lt;font face=&quot;sans-serif&quot;&gt;Poisson&lt;/font&gt;\" link=\"https://en.wikipedia.org/wiki/Poisson_distribution\" id=\"Cq76QrIc5dfTi0YlTipQ-108\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"708.5\" y=\"331.5\" width=\"120\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"&lt;font face=&quot;sans-serif&quot;&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/Expected_value&quot;&gt;&lt;font color=&quot;#ffffff&quot;&gt;Expectation&lt;/font&gt;&lt;/a&gt;&lt;font&gt; and &lt;/font&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/Mean&quot;&gt;&lt;font color=&quot;#ffffff&quot;&gt;mean&lt;/font&gt;&lt;/a&gt;&lt;/font&gt;\" id=\"Cq76QrIc5dfTi0YlTipQ-109\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;labelBackgroundColor=none;textDirection=ltr;fontColor=#FFFFFF;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"644\" y=\"405\" width=\"184\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Important Laws\" id=\"Cq76QrIc5dfTi0YlTipQ-116\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"389\" y=\"500\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-284\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-117\" target=\"Cq76QrIc5dfTi0YlTipQ-109\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"Summary statistics\" id=\"Cq76QrIc5dfTi0YlTipQ-117\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"389\" y=\"450\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-172\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;textDirection=ltr;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-118\" target=\"Cq76QrIc5dfTi0YlTipQ-170\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <Array as=\"points\">\n              <mxPoint x=\"364\" y=\"571\" />\n              <mxPoint x=\"364\" y=\"670\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-173\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;textDirection=ltr;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-118\" target=\"Cq76QrIc5dfTi0YlTipQ-171\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <Array as=\"points\">\n              <mxPoint x=\"364\" y=\"571\" />\n              <mxPoint x=\"364\" y=\"700\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"Estimation\" link=\"https://en.wikipedia.org/wiki/Estimation_theory\" id=\"Cq76QrIc5dfTi0YlTipQ-118\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"389\" y=\"550\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-180\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;textDirection=ltr;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-119\" target=\"Cq76QrIc5dfTi0YlTipQ-176\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"Hypothesis Testing\" link=\"https://en.wikipedia.org/wiki/Statistical_hypothesis_testing\" id=\"Cq76QrIc5dfTi0YlTipQ-119\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"389\" y=\"600\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Confidence Interval (CI)&lt;span style=&quot;font-family: &amp;#34;helvetica&amp;#34; , &amp;#34;arial&amp;#34; , sans-serif ; font-size: 0px ; white-space: nowrap&quot;&gt;%3CmxGraphModel%3E%3Croot%3E%3CmxCell%20id%3D%220%22%2F%3E%3CmxCell%20id%3D%221%22%20parent%3D%220%22%2F%3E%3CUserObject%20label%3D%22Important%20Laws%22%20id%3D%222%22%3E%3CmxCell%20style%3D%22rounded%3D1%3BwhiteSpace%3Dwrap%3Bhtml%3D1%3B%22%20vertex%3D%221%22%20parent%3D%221%22%3E%3CmxGeometry%20x%3D%22360%22%20y%3D%22740%22%20width%3D%22170%22%20height%3D%2230%22%20as%3D%22geometry%22%2F%3E%3C%2FmxCell%3E%3C%2FUserObject%3E%3C%2Froot%3E%3C%2FmxGraphModel%3E&lt;/span&gt;\" link=\"https://en.wikipedia.org/wiki/Confidence_interval\" id=\"Cq76QrIc5dfTi0YlTipQ-120\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"389\" y=\"650\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Monte Carlo Method\" link=\"https://en.wikipedia.org/wiki/Monte_Carlo_method\" id=\"Cq76QrIc5dfTi0YlTipQ-121\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"389\" y=\"700\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-283\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-123\" target=\"Cq76QrIc5dfTi0YlTipQ-100\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"&lt;font face=&quot;sans-serif&quot;&gt;Geometric&lt;/font&gt;\" link=\"https://en.wikipedia.org/wiki/Geometric_distribution\" id=\"Cq76QrIc5dfTi0YlTipQ-123\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"708.5\" y=\"356.5\" width=\"120\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-285\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-124\" target=\"Cq76QrIc5dfTi0YlTipQ-117\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"&lt;font face=&quot;sans-serif&quot;&gt;&lt;font color=&quot;#ffffff&quot;&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/Variance&quot;&gt;&lt;font color=&quot;#ffffff&quot;&gt;Variance&lt;/font&gt;&lt;/a&gt; &lt;/font&gt;and &lt;a href=&quot;https://en.wikipedia.org/wiki/Standard_deviation&quot;&gt;&lt;font color=&quot;#ffffff&quot;&gt;standard deviation (sd)&lt;/font&gt;&lt;/a&gt;&lt;/font&gt;\" id=\"Cq76QrIc5dfTi0YlTipQ-124\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;labelBackgroundColor=none;textDirection=ltr;fontColor=#FFFFFF;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"644\" y=\"430\" width=\"184\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-286\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-125\" target=\"Cq76QrIc5dfTi0YlTipQ-117\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"&lt;font face=&quot;sans-serif&quot;&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/Covariance&quot;&gt;&lt;font color=&quot;#ffffff&quot;&gt;Covariance&lt;/font&gt;&lt;/a&gt;&lt;font&gt; and &lt;/font&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/Correlation_and_dependence&quot;&gt;&lt;font color=&quot;#ffffff&quot;&gt;correlation&lt;/font&gt;&lt;/a&gt;&lt;/font&gt;\" id=\"Cq76QrIc5dfTi0YlTipQ-125\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;labelBackgroundColor=none;textDirection=ltr;fontColor=#FFFFFF;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"644\" y=\"455\" width=\"185\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-287\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-126\" target=\"Cq76QrIc5dfTi0YlTipQ-117\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"&lt;font face=&quot;sans-serif&quot;&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/Median&quot;&gt;&lt;font color=&quot;#ffffff&quot;&gt;Median&lt;/font&gt;&lt;/a&gt;&lt;font&gt;, &lt;/font&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/Quartile&quot;&gt;&lt;font color=&quot;#ffffff&quot;&gt;quartile&lt;/font&gt;&lt;/a&gt;&lt;/font&gt;\" id=\"Cq76QrIc5dfTi0YlTipQ-126\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;labelBackgroundColor=none;textDirection=ltr;fontColor=#FFFFFF;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"644\" y=\"480\" width=\"185\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-288\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-127\" target=\"Cq76QrIc5dfTi0YlTipQ-117\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"&lt;font face=&quot;sans-serif&quot;&gt;&lt;span style=&quot;&quot;&gt;Interquartile range&lt;/span&gt;&lt;/font&gt;\" link=\"https://en.wikipedia.org/wiki/Interquartile_range\" id=\"Cq76QrIc5dfTi0YlTipQ-127\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;labelBackgroundColor=none;textDirection=ltr;fontColor=#FFFFFF;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"644\" y=\"505\" width=\"184\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-289\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-128\" target=\"Cq76QrIc5dfTi0YlTipQ-117\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"&lt;font face=&quot;sans-serif&quot;&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/Percentile&quot;&gt;&lt;font color=&quot;#ffffff&quot;&gt;Percentile&lt;/font&gt;&lt;/a&gt;&lt;font&gt; / &lt;/font&gt;&lt;a href=&quot;https://en.wikipedia.org/wiki/Quantile&quot;&gt;&lt;font color=&quot;#ffffff&quot;&gt;quantile&lt;/font&gt;&lt;/a&gt;&lt;/font&gt;\" id=\"Cq76QrIc5dfTi0YlTipQ-128\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;labelBackgroundColor=none;textDirection=ltr;fontColor=#FFFFFF;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"644\" y=\"530\" width=\"184\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-290\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-129\" target=\"Cq76QrIc5dfTi0YlTipQ-117\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"&lt;font face=&quot;sans-serif&quot;&gt;&lt;span style=&quot;&quot;&gt;Mode&lt;/span&gt;&lt;/font&gt;\" link=\"https://en.wikipedia.org/wiki/Mode_(statistics)\" id=\"Cq76QrIc5dfTi0YlTipQ-129\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;labelBackgroundColor=none;textDirection=ltr;fontColor=#FFFFFF;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"644\" y=\"555\" width=\"184\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-168\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;textDirection=ltr;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-166\" target=\"Cq76QrIc5dfTi0YlTipQ-116\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"&lt;span style=&quot;font-size: 10px&quot;&gt;Law of large numbers (LLN)&lt;/span&gt;\" link=\"https://en.wikipedia.org/wiki/Law_of_large_numbers\" id=\"Cq76QrIc5dfTi0YlTipQ-166\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"177\" y=\"565\" width=\"140\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-169\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;textDirection=ltr;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-167\" target=\"Cq76QrIc5dfTi0YlTipQ-116\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"&lt;span style=&quot;font-size: 10px&quot;&gt;Central limit theorem (CLT)&lt;/span&gt;\" link=\"https://en.wikipedia.org/wiki/Central_limit_theorem\" id=\"Cq76QrIc5dfTi0YlTipQ-167\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"177\" y=\"595\" width=\"140\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"&lt;span style=&quot;font-size: 10px&quot;&gt;Maximum Likelihood Estimation (MLE)&lt;/span&gt;\" link=\"https://en.wikipedia.org/wiki/Maximum_likelihood_estimation\" id=\"Cq76QrIc5dfTi0YlTipQ-170\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"132\" y=\"660\" width=\"185\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"&lt;span style=&quot;font-size: 10px&quot;&gt;Kernel Density Estimation (KDE)&lt;/span&gt;\" link=\"https://en.wikipedia.org/wiki/Kernel_density_estimation\" id=\"Cq76QrIc5dfTi0YlTipQ-171\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"132\" y=\"690\" width=\"185\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"&lt;font face=&quot;sans-serif&quot;&gt;&lt;span style=&quot;&quot;&gt;p-Value&lt;/span&gt;&lt;/font&gt;\" link=\"https://en.wikipedia.org/wiki/P-value\" id=\"Cq76QrIc5dfTi0YlTipQ-176\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;labelBackgroundColor=none;fontColor=#FFFFFF;textDirection=ltr;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"658.5\" y=\"605\" width=\"170\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-181\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;textDirection=ltr;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-177\" target=\"Cq76QrIc5dfTi0YlTipQ-119\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"&lt;font face=&quot;sans-serif&quot;&gt;&lt;span style=&quot;&quot;&gt;Chi&lt;sup&gt;2 &lt;/sup&gt;test&lt;/span&gt;&lt;/font&gt;\" link=\"https://en.wikipedia.org/wiki/Chi-squared_test\" id=\"Cq76QrIc5dfTi0YlTipQ-177\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;labelBackgroundColor=none;fontColor=#FFFFFF;textDirection=ltr;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"658.5\" y=\"630\" width=\"170\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-182\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;textDirection=ltr;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-178\" target=\"Cq76QrIc5dfTi0YlTipQ-119\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"&lt;font face=&quot;sans-serif&quot;&gt;&lt;span style=&quot;&quot;&gt;F-test&lt;/span&gt;&lt;/font&gt;\" link=\"https://en.wikipedia.org/wiki/F-test\" id=\"Cq76QrIc5dfTi0YlTipQ-178\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;labelBackgroundColor=none;fontColor=#FFFFFF;textDirection=ltr;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"658.5\" y=\"655\" width=\"170\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-183\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;textDirection=ltr;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-179\" target=\"Cq76QrIc5dfTi0YlTipQ-119\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"&lt;font face=&quot;sans-serif&quot;&gt;&lt;span style=&quot;&quot;&gt;t-test&lt;/span&gt;&lt;/font&gt;\" link=\"https://en.wikipedia.org/wiki/Student%27s_t-test#Independent_two-sample_t-test\" id=\"Cq76QrIc5dfTi0YlTipQ-179\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;labelBackgroundColor=none;fontColor=#FFFFFF;textDirection=ltr;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"659\" y=\"680\" width=\"170\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-228\" value=\"&lt;font color=&quot;#000000&quot; style=&quot;font-size: 16px;&quot;&gt;Statistics&lt;/font&gt;\" style=\"text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=nowrap;rounded=0;labelBackgroundColor=none;fontSize=16;fontColor=#FFFFFF;fontStyle=1\" parent=\"1\" vertex=\"1\">\n          <mxGeometry x=\"469.5\" y=\"273.5\" width=\"110\" height=\"20\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"Chart Suggestions thought starter\" link=\"https://extremepresentation.typepad.com/files/choosing-a-good-chart-09.pdf\" id=\"Cq76QrIc5dfTi0YlTipQ-230\">\n          <mxCell style=\"rounded=1;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;whiteSpace=wrap;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"275\" y=\"840\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-250\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;dashed=1;dashPattern=1 2;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-233\" target=\"Cq76QrIc5dfTi0YlTipQ-244\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-251\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;exitX=1;exitY=0.5;exitDx=0;exitDy=0;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-233\" target=\"Cq76QrIc5dfTi0YlTipQ-245\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"457\" y=\"896\" as=\"sourcePoint\" />\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"Python\" id=\"Cq76QrIc5dfTi0YlTipQ-233\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"275\" y=\"881\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"&lt;font face=&quot;sans-serif&quot;&gt;Matplotlib&lt;/font&gt;\" link=\"https://matplotlib.org/\" id=\"Cq76QrIc5dfTi0YlTipQ-244\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"487\" y=\"800\" width=\"140\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"&lt;font face=&quot;sans-serif&quot;&gt;plotnine (like ggplot in R)&lt;/font&gt;\" link=\"https://medium.com/@gscheithauer/data-visualization-in-python-like-in-rs-ggplot2-bc62f8debbf5\" id=\"Cq76QrIc5dfTi0YlTipQ-245\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"487\" y=\"826\" width=\"140\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-252\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;entryX=1;entryY=0.5;entryDx=0;entryDy=0;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-246\" target=\"i9OERWlP8GrdBMv_NWYt-13\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"422\" y=\"891\" as=\"targetPoint\" />\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"&lt;font face=&quot;sans-serif&quot;&gt;Vega-Lite&lt;/font&gt;\" link=\"https://vega.github.io/vega-lite/\" id=\"Cq76QrIc5dfTi0YlTipQ-246\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"487\" y=\"940\" width=\"140\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-253\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-247\" target=\"i9OERWlP8GrdBMv_NWYt-13\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"&lt;font face=&quot;sans-serif&quot;&gt;D3.js&lt;/font&gt;\" link=\"https://d3js.org/\" id=\"Cq76QrIc5dfTi0YlTipQ-247\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"487\" y=\"970\" width=\"140\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-254\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-248\" target=\"i9OERWlP8GrdBMv_NWYt-15\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"&lt;font face=&quot;sans-serif&quot;&gt;Tableau&lt;/font&gt;\" link=\"https://www.tableau.com/\" id=\"Cq76QrIc5dfTi0YlTipQ-248\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"487\" y=\"1034\" width=\"140\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-255\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-249\" target=\"i9OERWlP8GrdBMv_NWYt-14\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"&lt;font face=&quot;sans-serif&quot;&gt;Dash&lt;br&gt;&lt;/font&gt;\" link=\"https://plot.ly/dash/\" id=\"Cq76QrIc5dfTi0YlTipQ-249\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"487\" y=\"1000\" width=\"140\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-258\" value=\"&lt;font color=&quot;#000000&quot; style=&quot;font-size: 16px;&quot;&gt;Visualization&lt;/font&gt;\" style=\"text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=nowrap;rounded=0;labelBackgroundColor=none;fontSize=16;fontColor=#FFFFFF;fontStyle=1\" parent=\"1\" vertex=\"1\">\n          <mxGeometry x=\"245\" y=\"805\" width=\"110\" height=\"31\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-320\" value=\"&lt;h1 style=&quot;font-size: 24px&quot;&gt;&lt;font style=&quot;font-size: 24px&quot;&gt;Machine Learning&lt;/font&gt;&lt;/h1&gt;\" style=\"rounded=1;whiteSpace=nowrap;html=1;strokeColor=none;textDirection=ltr;fontSize=24;fontStyle=0;fillColor=none;\" parent=\"1\" vertex=\"1\">\n          <mxGeometry x=\"289.5\" y=\"1195\" width=\"180\" height=\"30\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-322\" value=\"\" style=\"curved=1;endArrow=none;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;dashed=1;strokeColor=#1F6286;endFill=0;exitX=0.5;exitY=1;exitDx=0;exitDy=0;fontSize=24;fontColor=#FFFFFF;\" parent=\"1\" source=\"i9OERWlP8GrdBMv_NWYt-15\" target=\"Cq76QrIc5dfTi0YlTipQ-320\" edge=\"1\">\n          <mxGeometry width=\"50\" height=\"50\" relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"313.5\" y=\"1040\" as=\"sourcePoint\" />\n            <mxPoint x=\"232\" y=\"1126\" as=\"targetPoint\" />\n            <Array as=\"points\">\n              <mxPoint x=\"360\" y=\"1140\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"Web\" id=\"i9OERWlP8GrdBMv_NWYt-13\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"275\" y=\"920\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Dashboards\" id=\"i9OERWlP8GrdBMv_NWYt-14\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"275\" y=\"960\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"BI\" id=\"i9OERWlP8GrdBMv_NWYt-15\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"275\" y=\"1000\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"&lt;font face=&quot;sans-serif&quot;&gt;PowerBI&lt;/font&gt;\" link=\"https://powerbi.microsoft.com\" id=\"i9OERWlP8GrdBMv_NWYt-16\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"487\" y=\"1064\" width=\"140\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"i9OERWlP8GrdBMv_NWYt-18\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;\" parent=\"1\" source=\"i9OERWlP8GrdBMv_NWYt-16\" target=\"i9OERWlP8GrdBMv_NWYt-15\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"492.0000000000002\" y=\"1025\" as=\"sourcePoint\" />\n            <mxPoint x=\"450\" y=\"1020\" as=\"targetPoint\" />\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"&lt;font face=&quot;sans-serif&quot;&gt;seaborn&lt;/font&gt;\" id=\"i9OERWlP8GrdBMv_NWYt-19\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=0;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"487\" y=\"876\" width=\"140\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"i9OERWlP8GrdBMv_NWYt-20\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-233\" target=\"i9OERWlP8GrdBMv_NWYt-19\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"450\" y=\"901\" as=\"sourcePoint\" />\n            <mxPoint x=\"485\" y=\"896\" as=\"targetPoint\" />\n            <Array as=\"points\">\n              <mxPoint x=\"465\" y=\"896\" />\n              <mxPoint x=\"465\" y=\"885\" />\n              <mxPoint x=\"487\" y=\"885\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"&lt;font face=&quot;sans-serif&quot;&gt;ipyvolume (3D data)&lt;/font&gt;\" link=\"https://github.com/maartenbreddels/ipyvolume\" id=\"i9OERWlP8GrdBMv_NWYt-21\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"487\" y=\"900\" width=\"140\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"i9OERWlP8GrdBMv_NWYt-22\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;entryX=0;entryY=0.5;entryDx=0;entryDy=0;exitX=1;exitY=0.5;exitDx=0;exitDy=0;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-233\" target=\"i9OERWlP8GrdBMv_NWYt-21\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"445\" y=\"896\" as=\"sourcePoint\" />\n            <mxPoint x=\"492.0000000000002\" y=\"896\" as=\"targetPoint\" />\n            <Array as=\"points\">\n              <mxPoint x=\"487\" y=\"896\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"&lt;font face=&quot;sans-serif&quot;&gt;streamlit&lt;/font&gt;\" link=\"https://github.com/streamlit/streamlit\" id=\"i9OERWlP8GrdBMv_NWYt-23\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"70\" y=\"925\" width=\"145\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"i9OERWlP8GrdBMv_NWYt-25\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;dashed=1;dashPattern=1 2;\" parent=\"1\" source=\"i9OERWlP8GrdBMv_NWYt-23\" target=\"Cq76QrIc5dfTi0YlTipQ-233\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"450\" y=\"901\" as=\"sourcePoint\" />\n            <mxPoint x=\"492\" y=\"840.0000000000002\" as=\"targetPoint\" />\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"i9OERWlP8GrdBMv_NWYt-27\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;\" parent=\"1\" source=\"i9OERWlP8GrdBMv_NWYt-23\" target=\"i9OERWlP8GrdBMv_NWYt-13\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"492\" y=\"1110\" as=\"sourcePoint\" />\n            <mxPoint x=\"450\" y=\"1020\" as=\"targetPoint\" />\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"i9OERWlP8GrdBMv_NWYt-28\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;\" parent=\"1\" source=\"i9OERWlP8GrdBMv_NWYt-23\" target=\"i9OERWlP8GrdBMv_NWYt-14\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"241\" y=\"935.0000000000002\" as=\"sourcePoint\" />\n            <mxPoint x=\"280\" y=\"940.0000000000002\" as=\"targetPoint\" />\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"i9OERWlP8GrdBMv_NWYt-29\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;entryX=0.5;entryY=0;entryDx=0;entryDy=0;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-121\" target=\"Cq76QrIc5dfTi0YlTipQ-230\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"395\" y=\"1120\" as=\"sourcePoint\" />\n            <mxPoint x=\"394.22\" y=\"1059.34\" as=\"targetPoint\" />\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"&lt;font face=&quot;sans-serif&quot;&gt;Bokeh&lt;/font&gt;\" link=\"https://docs.bokeh.org/en/latest/index.html\" id=\"54BXIMB1HT9zFDCucoSp-4\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"487\" y=\"851\" width=\"140\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Vvn9S6vuDq5gVfwxYzGB-1\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;exitX=1;exitY=0.5;exitDx=0;exitDy=0;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-233\" target=\"54BXIMB1HT9zFDCucoSp-4\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"450\" y=\"901\" as=\"sourcePoint\" />\n            <mxPoint x=\"492\" y=\"841\" as=\"targetPoint\" />\n            <Array as=\"points\">\n              <mxPoint x=\"465\" y=\"896\" />\n              <mxPoint x=\"465\" y=\"861\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n      </root>\n    </mxGraphModel>\n  </diagram>\n</mxfile>\n"
  },
  {
    "path": "images/deep_learning.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<mxfile modified=\"2020-11-29T11:07:19.978Z\" host=\"app.diagrams.net\" agent=\"5.0 (Macintosh; Intel Mac OS X 11_0_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.67 Safari/537.36\" etag=\"-GzPgjs0r40RWaYXxt7Q\" compressed=\"false\" version=\"13.10.4\" type=\"device\">\n  <diagram id=\"HEeXjzhvv4987mpRdfDT\" name=\"Page-3\">\n    <mxGraphModel dx=\"1033\" dy=\"1072\" grid=\"1\" gridSize=\"5\" guides=\"1\" tooltips=\"1\" connect=\"1\" arrows=\"1\" fold=\"1\" page=\"1\" pageScale=\"1\" pageWidth=\"459\" pageHeight=\"850\" math=\"0\" shadow=\"0\">\n      <root>\n        <mxCell id=\"jhC989v31fuuEPfAI_ox-0\" />\n        <mxCell id=\"jhC989v31fuuEPfAI_ox-1\" parent=\"jhC989v31fuuEPfAI_ox-0\" />\n        <mxCell id=\"KsJ2Czu0PXdUfGMdA1Ay-19\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=11;fontColor=#000000;\" parent=\"jhC989v31fuuEPfAI_ox-1\" source=\"jhC989v31fuuEPfAI_ox-2\" target=\"jhC989v31fuuEPfAI_ox-5\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"jhC989v31fuuEPfAI_ox-2\" value=\"&lt;h1 style=&quot;font-size: 24px&quot;&gt;&lt;font style=&quot;font-size: 24px&quot;&gt;Deep Learning&lt;/font&gt;&lt;/h1&gt;\" style=\"rounded=1;whiteSpace=nowrap;html=1;strokeColor=none;textDirection=ltr;fontSize=24;fontStyle=0;fillColor=none;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n          <mxGeometry x=\"156\" y=\"100.5\" width=\"221\" height=\"45\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"jhC989v31fuuEPfAI_ox-3\" value=\"\" style=\"curved=1;endArrow=none;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;dashed=1;fillColor=#dae8fc;strokeColor=#1F6286;endFill=0;\" parent=\"jhC989v31fuuEPfAI_ox-1\" target=\"jhC989v31fuuEPfAI_ox-2\" edge=\"1\">\n          <mxGeometry width=\"50\" height=\"50\" relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"256\" as=\"sourcePoint\" />\n            <mxPoint x=\"186\" y=\"40\" as=\"targetPoint\" />\n            <Array as=\"points\">\n              <mxPoint x=\"296\" y=\"20\" />\n              <mxPoint x=\"236\" y=\"70\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"Deep Learning Papers Reading Roadmap\" link=\"https://github.com/floodsung/Deep-Learning-Papers-Reading-Roadmap\" id=\"jhC989v31fuuEPfAI_ox-5\">\n          <mxCell style=\"rounded=1;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;whiteSpace=wrap;shadow=1;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n            <mxGeometry x=\"76\" y=\"200\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"jhC989v31fuuEPfAI_ox-6\" value=\"&lt;font color=&quot;#000000&quot; style=&quot;font-size: 16px&quot;&gt;Papers&lt;/font&gt;\" style=\"text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=nowrap;rounded=0;labelBackgroundColor=none;fontSize=16;fontColor=#FFFFFF;fontStyle=1\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n          <mxGeometry x=\"44\" y=\"169.5\" width=\"110\" height=\"20\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"Papers with code\" link=\"https://paperswithcode.com/\" id=\"jhC989v31fuuEPfAI_ox-13\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;shadow=1;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n            <mxGeometry x=\"76\" y=\"250\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"KsJ2Czu0PXdUfGMdA1Ay-3\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=11;fontColor=#000000;\" parent=\"jhC989v31fuuEPfAI_ox-1\" source=\"jhC989v31fuuEPfAI_ox-14\" target=\"jhC989v31fuuEPfAI_ox-20\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"Papers with code - state of the art\" link=\"https://paperswithcode.com/sota\" id=\"jhC989v31fuuEPfAI_ox-14\">\n          <mxCell style=\"rounded=1;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;whiteSpace=wrap;shadow=1;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n            <mxGeometry x=\"76\" y=\"300\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Understanding &lt;br&gt;Neural Networks\" link=\"https://towardsdatascience.com/understanding-neural-networks-19020b758230\" id=\"jhC989v31fuuEPfAI_ox-20\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;shadow=1;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n            <mxGeometry x=\"206\" y=\"400\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"jhC989v31fuuEPfAI_ox-21\" value=\"&lt;font color=&quot;#000000&quot; style=&quot;font-size: 16px&quot;&gt;Neural Networks&lt;/font&gt;\" style=\"text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=nowrap;rounded=0;labelBackgroundColor=none;fontSize=16;fontColor=#FFFFFF;fontStyle=1\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n          <mxGeometry x=\"307.25\" y=\"369.5\" width=\"110\" height=\"20\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"jhC989v31fuuEPfAI_ox-73\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=0;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=11;fontColor=#000000;\" parent=\"jhC989v31fuuEPfAI_ox-1\" source=\"jhC989v31fuuEPfAI_ox-74\" target=\"7da8nBfzd5TYYxSi2nP1-3\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"291\" y=\"440\" as=\"targetPoint\" />\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"Feedforward neural network\" link=\"https://en.wikipedia.org/wiki/Feedforward_neural_network\" id=\"jhC989v31fuuEPfAI_ox-74\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;shadow=1;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n            <mxGeometry x=\"82\" y=\"700.5\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Autoencoder\" link=\"https://en.wikipedia.org/wiki/Autoencoder\" id=\"jhC989v31fuuEPfAI_ox-75\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;shadow=1;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n            <mxGeometry x=\"82\" y=\"750.5\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Convolutional Neural Network&lt;br&gt;(CNN)\" link=\"https://towardsdatascience.com/a-comprehensive-guide-to-convolutional-neural-networks-the-eli5-way-3bd2b1164a53\" id=\"jhC989v31fuuEPfAI_ox-76\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;shadow=1;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n            <mxGeometry x=\"82\" y=\"800.5\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"jhC989v31fuuEPfAI_ox-77\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=11;fontColor=#000000;\" parent=\"jhC989v31fuuEPfAI_ox-1\" source=\"7da8nBfzd5TYYxSi2nP1-15\" target=\"7da8nBfzd5TYYxSi2nP1-16\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"Generative Adversarial Network (GAN)\" link=\"https://en.wikipedia.org/wiki/Generative_adversarial_network\" id=\"jhC989v31fuuEPfAI_ox-78\">\n          <mxCell style=\"rounded=1;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;whiteSpace=wrap;shadow=1;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n            <mxGeometry x=\"82\" y=\"999.5\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"jhC989v31fuuEPfAI_ox-79\" value=\"&lt;font color=&quot;#000000&quot; style=&quot;font-size: 16px&quot;&gt;Architectures&lt;br&gt;&lt;/font&gt;\" style=\"text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=nowrap;rounded=0;labelBackgroundColor=none;fontSize=16;fontColor=#FFFFFF;fontStyle=1\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n          <mxGeometry x=\"57\" y=\"669.5\" width=\"110\" height=\"20\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"Important Libraries\" id=\"jhC989v31fuuEPfAI_ox-80\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n            <mxGeometry x=\"82\" y=\"1670.0033333333336\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"jhC989v31fuuEPfAI_ox-81\" value=\"&lt;font color=&quot;#000000&quot; style=&quot;font-size: 16px&quot;&gt;Tools&lt;/font&gt;\" style=\"text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=nowrap;rounded=0;labelBackgroundColor=none;fontSize=16;fontColor=#FFFFFF;fontStyle=1\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n          <mxGeometry x=\"35\" y=\"1640.0033333333336\" width=\"110\" height=\"20\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"jhC989v31fuuEPfAI_ox-84\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;dashed=1;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;exitX=0.5;exitY=1;exitDx=0;exitDy=0;\" parent=\"jhC989v31fuuEPfAI_ox-1\" source=\"7da8nBfzd5TYYxSi2nP1-71\" target=\"jhC989v31fuuEPfAI_ox-86\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"340\" y=\"1845\" as=\"sourcePoint\" />\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"PyTorch\" link=\"https://pytorch.org/\" id=\"jhC989v31fuuEPfAI_ox-85\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;shadow=1;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n            <mxGeometry x=\"82\" y=\"1769.5033333333336\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"jhC989v31fuuEPfAI_ox-86\" value=\"&lt;h1 style=&quot;font-size: 22px;&quot;&gt;&lt;font style=&quot;font-size: 22px;&quot;&gt;keep exploring and stay up-to-date&lt;/font&gt;&lt;/h1&gt;\" style=\"rounded=1;html=1;strokeColor=none;textDirection=ltr;fontSize=22;fontStyle=0;whiteSpace=wrap;fillColor=none;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n          <mxGeometry x=\"70\" y=\"2200\" width=\"218\" height=\"60\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"KsJ2Czu0PXdUfGMdA1Ay-0\" value=\"\" style=\"verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.basic.6_point_star;rounded=1;labelBackgroundColor=none;fillColor=#FFFF00;fontSize=10;rotation=45;strokeColor=#d6b656;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n          <mxGeometry x=\"236\" y=\"192.5\" width=\"16\" height=\"15\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"KsJ2Czu0PXdUfGMdA1Ay-1\" value=\"\" style=\"verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.basic.6_point_star;rounded=1;labelBackgroundColor=none;fillColor=#FFFF00;fontSize=10;rotation=45;strokeColor=#d6b656;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n          <mxGeometry x=\"238\" y=\"242.5\" width=\"16\" height=\"15\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"KsJ2Czu0PXdUfGMdA1Ay-2\" value=\"\" style=\"verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.basic.6_point_star;rounded=1;labelBackgroundColor=none;fillColor=#FFFF00;fontSize=10;rotation=45;strokeColor=#d6b656;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n          <mxGeometry x=\"236\" y=\"292.5\" width=\"16\" height=\"15\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"Recurrent Neural Network&lt;br&gt;(RNN)\" link=\"https://en.wikipedia.org/wiki/Recurrent_neural_network\" id=\"KsJ2Czu0PXdUfGMdA1Ay-7\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;shadow=1;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n            <mxGeometry x=\"82\" y=\"850.5\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"KsJ2Czu0PXdUfGMdA1Ay-12\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;\" parent=\"jhC989v31fuuEPfAI_ox-1\" source=\"KsJ2Czu0PXdUfGMdA1Ay-9\" target=\"KsJ2Czu0PXdUfGMdA1Ay-7\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"&lt;span style=&quot;font-size: 11px;&quot;&gt;LSTM&lt;/span&gt;\" link=\"https://en.wikipedia.org/wiki/Long_short-term_memory\" id=\"KsJ2Czu0PXdUfGMdA1Ay-9\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;shadow=1;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n            <mxGeometry x=\"312\" y=\"845.5\" width=\"140\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"KsJ2Czu0PXdUfGMdA1Ay-13\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;\" parent=\"jhC989v31fuuEPfAI_ox-1\" source=\"KsJ2Czu0PXdUfGMdA1Ay-10\" target=\"KsJ2Czu0PXdUfGMdA1Ay-7\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"&lt;font style=&quot;font-size: 11px;&quot;&gt;GRU&lt;/font&gt;\" link=\"https://en.wikipedia.org/wiki/Gated_recurrent_unit\" id=\"KsJ2Czu0PXdUfGMdA1Ay-10\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;shadow=1;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n            <mxGeometry x=\"312\" y=\"875.5\" width=\"140\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"KsJ2Czu0PXdUfGMdA1Ay-15\" value=\"\" style=\"verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.basic.6_point_star;rounded=1;labelBackgroundColor=none;fillColor=#FFFF00;fontSize=10;rotation=45;strokeColor=#d6b656;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n          <mxGeometry x=\"244\" y=\"1762.17\" width=\"16\" height=\"15\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"Tensorflow\" link=\"https://www.tensorflow.org/\" id=\"KsJ2Czu0PXdUfGMdA1Ay-16\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;shadow=1;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n            <mxGeometry x=\"82\" y=\"1719.5033333333336\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"KsJ2Czu0PXdUfGMdA1Ay-17\" value=\"\" style=\"verticalLabelPosition=bottom;verticalAlign=top;html=1;shape=mxgraph.basic.6_point_star;rounded=1;labelBackgroundColor=none;fillColor=#FFFF00;fontSize=10;rotation=45;strokeColor=#d6b656;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n          <mxGeometry x=\"244\" y=\"1712.17\" width=\"16\" height=\"15\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"Loss Functions\" link=\"https://en.wikipedia.org/wiki/Loss_function\" id=\"7da8nBfzd5TYYxSi2nP1-0\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;shadow=1;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n            <mxGeometry x=\"206\" y=\"449.5\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Activation Functions\" link=\"https://en.wikipedia.org/wiki/Activation_function\" id=\"7da8nBfzd5TYYxSi2nP1-1\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;shadow=1;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n            <mxGeometry x=\"206\" y=\"499.5\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Weight Initialization\" link=\"https://towardsdatascience.com/weight-initialization-in-neural-networks-a-journey-from-the-basics-to-kaiming-954fb9b47c79\" id=\"7da8nBfzd5TYYxSi2nP1-2\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;shadow=1;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n            <mxGeometry x=\"207\" y=\"549.5\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Vanishing / Exploding&lt;br&gt;Gradient Problem\" link=\"https://en.wikipedia.org/wiki/Vanishing_gradient_problem\" id=\"7da8nBfzd5TYYxSi2nP1-3\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;shadow=1;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n            <mxGeometry x=\"207\" y=\"599.5\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"&lt;font style=&quot;font-size: 11px&quot;&gt;Pooling&lt;/font&gt;\" link=\"https://en.wikipedia.org/wiki/Convolutional_neural_network#Pooling_layer\" id=\"7da8nBfzd5TYYxSi2nP1-4\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;shadow=1;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n            <mxGeometry x=\"312\" y=\"804.5\" width=\"140\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"7da8nBfzd5TYYxSi2nP1-5\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;dashed=1;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;exitX=1;exitY=0.5;exitDx=0;exitDy=0;\" parent=\"jhC989v31fuuEPfAI_ox-1\" source=\"jhC989v31fuuEPfAI_ox-76\" target=\"7da8nBfzd5TYYxSi2nP1-4\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"286\" y=\"774.5\" as=\"sourcePoint\" />\n            <mxPoint x=\"318\" y=\"729.5\" as=\"targetPoint\" />\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"Transformer\" link=\"https://en.wikipedia.org/wiki/Transformer_(machine_learning_model)\" id=\"7da8nBfzd5TYYxSi2nP1-6\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;shadow=1;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n            <mxGeometry x=\"82\" y=\"899.5\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"&lt;font style=&quot;font-size: 11px&quot;&gt;Encoder&lt;/font&gt;\" link=\"https://en.wikipedia.org/wiki/Transformer_(machine_learning_model)#Encoder\" id=\"7da8nBfzd5TYYxSi2nP1-7\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;shadow=1;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n            <mxGeometry x=\"312\" y=\"914.5\" width=\"140\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"&lt;font style=&quot;font-size: 11px&quot;&gt;Decoder&lt;/font&gt;\" link=\"https://en.wikipedia.org/wiki/Transformer_(machine_learning_model)#Decoder\" id=\"7da8nBfzd5TYYxSi2nP1-8\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;shadow=1;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n            <mxGeometry x=\"312\" y=\"944.5\" width=\"140\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"&lt;font style=&quot;font-size: 11px&quot;&gt;Attention&lt;/font&gt;\" link=\"https://en.wikipedia.org/wiki/Transformer_(machine_learning_model)#Scaled_dot-product_attention\" id=\"7da8nBfzd5TYYxSi2nP1-9\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;shadow=1;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n            <mxGeometry x=\"312\" y=\"974.5\" width=\"140\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"7da8nBfzd5TYYxSi2nP1-11\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;\" parent=\"jhC989v31fuuEPfAI_ox-1\" source=\"7da8nBfzd5TYYxSi2nP1-7\" target=\"7da8nBfzd5TYYxSi2nP1-6\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"317\" y=\"905.5\" as=\"sourcePoint\" />\n            <mxPoint x=\"257\" y=\"875.5\" as=\"targetPoint\" />\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"7da8nBfzd5TYYxSi2nP1-12\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;\" parent=\"jhC989v31fuuEPfAI_ox-1\" source=\"7da8nBfzd5TYYxSi2nP1-8\" target=\"7da8nBfzd5TYYxSi2nP1-6\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"317\" y=\"924.5\" as=\"sourcePoint\" />\n            <mxPoint x=\"257\" y=\"929.5\" as=\"targetPoint\" />\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"7da8nBfzd5TYYxSi2nP1-13\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;\" parent=\"jhC989v31fuuEPfAI_ox-1\" source=\"7da8nBfzd5TYYxSi2nP1-9\" target=\"7da8nBfzd5TYYxSi2nP1-6\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"317\" y=\"954.5\" as=\"sourcePoint\" />\n            <mxPoint x=\"257\" y=\"929.5\" as=\"targetPoint\" />\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"Siamese Network\" link=\"https://en.wikipedia.org/wiki/Siamese_neural_network\" id=\"7da8nBfzd5TYYxSi2nP1-14\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;shadow=1;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n            <mxGeometry x=\"82\" y=\"949.5\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Residual Connections\" link=\"https://en.wikipedia.org/wiki/Residual_neural_network\" id=\"7da8nBfzd5TYYxSi2nP1-15\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;shadow=1;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n            <mxGeometry x=\"82\" y=\"1100\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Optimizers\" id=\"7da8nBfzd5TYYxSi2nP1-16\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;shadow=1;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n            <mxGeometry x=\"207\" y=\"1210.0033333333336\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"7da8nBfzd5TYYxSi2nP1-17\" value=\"&lt;font color=&quot;#000000&quot; style=&quot;font-size: 16px&quot;&gt;Training&lt;/font&gt;\" style=\"text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=nowrap;rounded=0;labelBackgroundColor=none;fontSize=16;fontColor=#FFFFFF;fontStyle=1\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n          <mxGeometry x=\"307.25\" y=\"1180.0033333333336\" width=\"110\" height=\"20\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"Learning Rate Schedule\" link=\"https://en.wikipedia.org/wiki/Learning_rate#Learning_rate_schedule\" id=\"7da8nBfzd5TYYxSi2nP1-18\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;shadow=1;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n            <mxGeometry x=\"207\" y=\"1260.0033333333336\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Batch Normalization\" link=\"https://en.wikipedia.org/wiki/Batch_normalization\" id=\"7da8nBfzd5TYYxSi2nP1-19\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;shadow=1;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n            <mxGeometry x=\"207\" y=\"1310.0033333333336\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Batch Size Effects\" link=\"https://medium.com/mini-distill/effect-of-batch-size-on-training-dynamics-21c14f7a716e\" id=\"7da8nBfzd5TYYxSi2nP1-20\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;shadow=1;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n            <mxGeometry x=\"207\" y=\"1360.0033333333336\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Regularization\" link=\"https://en.wikipedia.org/wiki/Regularization_(mathematics)\" id=\"7da8nBfzd5TYYxSi2nP1-21\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;shadow=1;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n            <mxGeometry x=\"206\" y=\"1410.0033333333336\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Multitask Learning\" link=\"https://en.wikipedia.org/wiki/Multi-task_learning\" id=\"7da8nBfzd5TYYxSi2nP1-22\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;shadow=1;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n            <mxGeometry x=\"206\" y=\"1460.0033333333336\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Transfer Learning\" link=\"https://en.wikipedia.org/wiki/Transfer_learning\" id=\"7da8nBfzd5TYYxSi2nP1-23\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;shadow=1;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n            <mxGeometry x=\"207\" y=\"1510.0033333333336\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Curriculum Learning\" link=\"https://arxiv.org/abs/1904.03626\" id=\"7da8nBfzd5TYYxSi2nP1-24\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;shadow=1;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n            <mxGeometry x=\"207\" y=\"1560.0033333333336\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"&lt;font style=&quot;font-size: 11px&quot;&gt;SGD&lt;/font&gt;\" link=\"https://en.wikipedia.org/wiki/Stochastic_gradient_descent\" id=\"7da8nBfzd5TYYxSi2nP1-25\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;shadow=1;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n            <mxGeometry x=\"5\" y=\"1210\" width=\"140\" height=\"14\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"&lt;font style=&quot;font-size: 11px&quot;&gt;Momentum&lt;/font&gt;\" link=\"https://en.wikipedia.org/wiki/Stochastic_gradient_descent#Momentum\" id=\"7da8nBfzd5TYYxSi2nP1-26\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;shadow=1;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n            <mxGeometry x=\"5\" y=\"1230\" width=\"140\" height=\"14\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"&lt;font style=&quot;font-size: 11px&quot;&gt;Adam&lt;/font&gt;\" link=\"https://en.wikipedia.org/wiki/Stochastic_gradient_descent#Adam\" id=\"7da8nBfzd5TYYxSi2nP1-27\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;shadow=1;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n            <mxGeometry x=\"5\" y=\"1250\" width=\"140\" height=\"14\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"&lt;font style=&quot;font-size: 11px&quot;&gt;AdaGrad&lt;/font&gt;\" link=\"https://en.wikipedia.org/wiki/Stochastic_gradient_descent#AdaGrad\" id=\"7da8nBfzd5TYYxSi2nP1-28\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;shadow=1;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n            <mxGeometry x=\"5\" y=\"1270\" width=\"140\" height=\"14\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"&lt;font style=&quot;font-size: 11px&quot;&gt;AdaDelta&lt;/font&gt;\" link=\"https://ruder.io/optimizing-gradient-descent/index.html#adadelta\" id=\"7da8nBfzd5TYYxSi2nP1-29\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;shadow=1;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n            <mxGeometry x=\"5\" y=\"1290\" width=\"140\" height=\"14\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"&lt;font style=&quot;font-size: 11px&quot;&gt;Nadam&lt;/font&gt;\" link=\"https://ruder.io/optimizing-gradient-descent/index.html#nadam\" id=\"7da8nBfzd5TYYxSi2nP1-30\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;shadow=1;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n            <mxGeometry x=\"5\" y=\"1310\" width=\"140\" height=\"14\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"&lt;font style=&quot;font-size: 11px&quot;&gt;RMSProp&lt;/font&gt;\" link=\"https://en.wikipedia.org/wiki/Stochastic_gradient_descent#RMSProp\" id=\"7da8nBfzd5TYYxSi2nP1-31\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;shadow=1;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n            <mxGeometry x=\"5\" y=\"1330\" width=\"140\" height=\"14\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"7da8nBfzd5TYYxSi2nP1-36\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;dashed=1;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;\" parent=\"jhC989v31fuuEPfAI_ox-1\" source=\"7da8nBfzd5TYYxSi2nP1-25\" target=\"7da8nBfzd5TYYxSi2nP1-16\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"317\" y=\"1040\" as=\"sourcePoint\" />\n            <mxPoint x=\"257\" y=\"975\" as=\"targetPoint\" />\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"7da8nBfzd5TYYxSi2nP1-37\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;dashed=1;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;\" parent=\"jhC989v31fuuEPfAI_ox-1\" source=\"7da8nBfzd5TYYxSi2nP1-26\" target=\"7da8nBfzd5TYYxSi2nP1-16\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"150\" y=\"1222\" as=\"sourcePoint\" />\n            <mxPoint x=\"212\" y=\"1235.0033333333336\" as=\"targetPoint\" />\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"7da8nBfzd5TYYxSi2nP1-38\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;dashed=1;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;\" parent=\"jhC989v31fuuEPfAI_ox-1\" source=\"7da8nBfzd5TYYxSi2nP1-27\" target=\"7da8nBfzd5TYYxSi2nP1-16\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"150\" y=\"1242\" as=\"sourcePoint\" />\n            <mxPoint x=\"212\" y=\"1235.0033333333336\" as=\"targetPoint\" />\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"7da8nBfzd5TYYxSi2nP1-39\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;dashed=1;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;entryX=0;entryY=0.5;entryDx=0;entryDy=0;\" parent=\"jhC989v31fuuEPfAI_ox-1\" source=\"7da8nBfzd5TYYxSi2nP1-28\" target=\"7da8nBfzd5TYYxSi2nP1-16\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"150\" y=\"1262\" as=\"sourcePoint\" />\n            <mxPoint x=\"170\" y=\"1340\" as=\"targetPoint\" />\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"7da8nBfzd5TYYxSi2nP1-40\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;dashed=1;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;entryX=0;entryY=0.5;entryDx=0;entryDy=0;\" parent=\"jhC989v31fuuEPfAI_ox-1\" source=\"7da8nBfzd5TYYxSi2nP1-29\" target=\"7da8nBfzd5TYYxSi2nP1-16\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"150\" y=\"1282\" as=\"sourcePoint\" />\n            <mxPoint x=\"140\" y=\"1405\" as=\"targetPoint\" />\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"7da8nBfzd5TYYxSi2nP1-41\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;dashed=1;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;entryX=0;entryY=0.5;entryDx=0;entryDy=0;\" parent=\"jhC989v31fuuEPfAI_ox-1\" source=\"7da8nBfzd5TYYxSi2nP1-30\" target=\"7da8nBfzd5TYYxSi2nP1-16\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"150\" y=\"1302\" as=\"sourcePoint\" />\n            <mxPoint x=\"160\" y=\"1205\" as=\"targetPoint\" />\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"7da8nBfzd5TYYxSi2nP1-42\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;dashed=1;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;entryX=0;entryY=0.5;entryDx=0;entryDy=0;\" parent=\"jhC989v31fuuEPfAI_ox-1\" source=\"7da8nBfzd5TYYxSi2nP1-31\" target=\"7da8nBfzd5TYYxSi2nP1-16\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"150\" y=\"1322\" as=\"sourcePoint\" />\n            <mxPoint x=\"165\" y=\"1185\" as=\"targetPoint\" />\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"&lt;font style=&quot;font-size: 11px&quot;&gt;Early Stopping&lt;/font&gt;\" link=\"https://en.wikipedia.org/wiki/Early_stopping\" id=\"7da8nBfzd5TYYxSi2nP1-52\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;shadow=1;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n            <mxGeometry x=\"5\" y=\"1383\" width=\"140\" height=\"14\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"&lt;font style=&quot;font-size: 11px&quot;&gt;Dropout&lt;/font&gt;\" link=\"https://en.wikipedia.org/wiki/Dilution_(neural_networks)\" id=\"7da8nBfzd5TYYxSi2nP1-53\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;shadow=1;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n            <mxGeometry x=\"5\" y=\"1403\" width=\"140\" height=\"14\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"&lt;font style=&quot;font-size: 11px&quot;&gt;Parameter Penalties&lt;/font&gt;\" link=\"https://www.statisticshowto.com/regularization/\" id=\"7da8nBfzd5TYYxSi2nP1-54\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;shadow=1;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n            <mxGeometry x=\"5\" y=\"1423\" width=\"140\" height=\"14\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"&lt;font style=&quot;font-size: 11px&quot;&gt;Data Augmentation&lt;/font&gt;\" link=\"https://en.wikipedia.org/wiki/Data_augmentation\" id=\"7da8nBfzd5TYYxSi2nP1-55\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;shadow=1;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n            <mxGeometry x=\"5\" y=\"1443\" width=\"140\" height=\"14\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"&lt;font style=&quot;font-size: 11px&quot;&gt;Adversarial Training&lt;/font&gt;\" link=\"https://arxiv.org/pdf/1412.6572.pdf\" id=\"7da8nBfzd5TYYxSi2nP1-56\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;shadow=1;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n            <mxGeometry x=\"5\" y=\"1463\" width=\"140\" height=\"14\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"7da8nBfzd5TYYxSi2nP1-59\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;dashed=1;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;\" parent=\"jhC989v31fuuEPfAI_ox-1\" source=\"7da8nBfzd5TYYxSi2nP1-52\" target=\"7da8nBfzd5TYYxSi2nP1-21\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"150\" y=\"1222\" as=\"sourcePoint\" />\n            <mxPoint x=\"212\" y=\"1235.0033333333336\" as=\"targetPoint\" />\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"7da8nBfzd5TYYxSi2nP1-60\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;dashed=1;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;entryX=0;entryY=0.5;entryDx=0;entryDy=0;\" parent=\"jhC989v31fuuEPfAI_ox-1\" source=\"7da8nBfzd5TYYxSi2nP1-53\" target=\"7da8nBfzd5TYYxSi2nP1-21\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"150\" y=\"1395\" as=\"sourcePoint\" />\n            <mxPoint x=\"170\" y=\"1495\" as=\"targetPoint\" />\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"7da8nBfzd5TYYxSi2nP1-61\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;dashed=1;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;entryX=0;entryY=0.5;entryDx=0;entryDy=0;\" parent=\"jhC989v31fuuEPfAI_ox-1\" source=\"7da8nBfzd5TYYxSi2nP1-54\" target=\"7da8nBfzd5TYYxSi2nP1-21\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"150\" y=\"1415\" as=\"sourcePoint\" />\n            <mxPoint x=\"211\" y=\"1435.0033333333336\" as=\"targetPoint\" />\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"7da8nBfzd5TYYxSi2nP1-62\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;dashed=1;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;entryX=0;entryY=0.5;entryDx=0;entryDy=0;\" parent=\"jhC989v31fuuEPfAI_ox-1\" source=\"7da8nBfzd5TYYxSi2nP1-55\" target=\"7da8nBfzd5TYYxSi2nP1-21\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"150\" y=\"1435\" as=\"sourcePoint\" />\n            <mxPoint x=\"185\" y=\"1405\" as=\"targetPoint\" />\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"7da8nBfzd5TYYxSi2nP1-63\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;dashed=1;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;entryX=0;entryY=0.5;entryDx=0;entryDy=0;\" parent=\"jhC989v31fuuEPfAI_ox-1\" source=\"7da8nBfzd5TYYxSi2nP1-56\" target=\"7da8nBfzd5TYYxSi2nP1-21\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"150\" y=\"1455\" as=\"sourcePoint\" />\n            <mxPoint x=\"185\" y=\"1390\" as=\"targetPoint\" />\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"7da8nBfzd5TYYxSi2nP1-64\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=11;fontColor=#000000;\" parent=\"jhC989v31fuuEPfAI_ox-1\" source=\"7da8nBfzd5TYYxSi2nP1-24\" target=\"jhC989v31fuuEPfAI_ox-80\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"172\" y=\"1145\" as=\"sourcePoint\" />\n            <mxPoint x=\"297\" y=\"1215.0033333333336\" as=\"targetPoint\" />\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"Tensorboard\" link=\"https://www.tensorflow.org/tensorboard\" id=\"7da8nBfzd5TYYxSi2nP1-65\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;shadow=1;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n            <mxGeometry x=\"82\" y=\"1820.0033333333336\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"MLFlow\" link=\"https://mlflow.org/\" id=\"7da8nBfzd5TYYxSi2nP1-66\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;shadow=1;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n            <mxGeometry x=\"82\" y=\"1870.5033333333336\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Distillation\" link=\"https://en.wikipedia.org/wiki/Knowledge_distillation\" id=\"7da8nBfzd5TYYxSi2nP1-69\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;shadow=1;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n            <mxGeometry x=\"207\" y=\"1990\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"7da8nBfzd5TYYxSi2nP1-70\" value=\"&lt;font color=&quot;#000000&quot; style=&quot;font-size: 16px&quot;&gt;Model optimization&lt;br&gt;(advanced)&lt;br&gt;&lt;/font&gt;\" style=\"text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=nowrap;rounded=0;labelBackgroundColor=none;fontSize=16;fontColor=#FFFFFF;fontStyle=1\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n          <mxGeometry x=\"307.25\" y=\"1950\" width=\"110\" height=\"20\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"Neural Architecture&lt;br&gt;Search (NAS)\" link=\"https://en.wikipedia.org/wiki/Neural_architecture_search\" id=\"7da8nBfzd5TYYxSi2nP1-71\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;shadow=1;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n            <mxGeometry x=\"207\" y=\"2089.5\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Quantization\" link=\"https://towardsdatascience.com/speeding-up-deep-learning-with-quantization-3fe3538cbb9\" id=\"7da8nBfzd5TYYxSi2nP1-73\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;shadow=1;\" parent=\"jhC989v31fuuEPfAI_ox-1\" vertex=\"1\">\n            <mxGeometry x=\"207\" y=\"2039.5\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"7da8nBfzd5TYYxSi2nP1-75\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=0;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=11;fontColor=#000000;\" parent=\"jhC989v31fuuEPfAI_ox-1\" source=\"7da8nBfzd5TYYxSi2nP1-69\" target=\"7da8nBfzd5TYYxSi2nP1-66\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"297\" y=\"1605.0033333333336\" as=\"sourcePoint\" />\n            <mxPoint x=\"172\" y=\"1675.0033333333336\" as=\"targetPoint\" />\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"&lt;span style=&quot;font-size: 11px&quot;&gt;Awesome Deep Learning&lt;/span&gt;\" link=\"https://github.com/ChristosChristofidis/awesome-deep-learning\" id=\"HgFxAsb2VZQsEirVh3CM-2\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;shadow=1;\" vertex=\"1\" parent=\"jhC989v31fuuEPfAI_ox-1\">\n            <mxGeometry x=\"312\" y=\"1665\" width=\"140\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"&lt;font style=&quot;font-size: 11px&quot;&gt;Huggingface Transformers&lt;/font&gt;\" link=\"https://github.com/huggingface/transformers\" id=\"HgFxAsb2VZQsEirVh3CM-4\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;shadow=1;\" vertex=\"1\" parent=\"jhC989v31fuuEPfAI_ox-1\">\n            <mxGeometry x=\"312\" y=\"1695\" width=\"140\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"HgFxAsb2VZQsEirVh3CM-5\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;dashed=1;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;entryX=0;entryY=0.5;entryDx=0;entryDy=0;\" edge=\"1\" parent=\"jhC989v31fuuEPfAI_ox-1\" source=\"jhC989v31fuuEPfAI_ox-80\" target=\"HgFxAsb2VZQsEirVh3CM-2\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"295\" y=\"1655.5\" as=\"sourcePoint\" />\n            <mxPoint x=\"356\" y=\"1615.5033333333336\" as=\"targetPoint\" />\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"HgFxAsb2VZQsEirVh3CM-6\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;dashed=1;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;entryX=0;entryY=0.5;entryDx=0;entryDy=0;\" edge=\"1\" parent=\"jhC989v31fuuEPfAI_ox-1\" target=\"HgFxAsb2VZQsEirVh3CM-4\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"255\" y=\"1690.5\" as=\"sourcePoint\" />\n            <mxPoint x=\"211\" y=\"1435.0033333333336\" as=\"targetPoint\" />\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"Evolving Architectures / NEAT\" link=\"https://www.youtube.com/watch?v=b3D8jPmcw-g\" id=\"HgFxAsb2VZQsEirVh3CM-8\">\n          <mxCell style=\"rounded=1;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;whiteSpace=wrap;shadow=1;\" vertex=\"1\" parent=\"jhC989v31fuuEPfAI_ox-1\">\n            <mxGeometry x=\"82\" y=\"1050\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n      </root>\n    </mxGraphModel>\n  </diagram>\n</mxfile>\n"
  },
  {
    "path": "images/fundamentals.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<mxfile modified=\"2021-03-05T15:49:19.478Z\" host=\"app.diagrams.net\" agent=\"5.0 (Macintosh; Intel Mac OS X 11_2_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.72 Safari/537.36\" etag=\"_uz0Kk7wXTIXvWMaiXO8\" compressed=\"false\" version=\"14.4.4\" type=\"device\">\n  <diagram id=\"rtSr3QTENstnuI61b4uq\" name=\"Page-1\">\n    <mxGraphModel dx=\"786\" dy=\"1072\" grid=\"1\" gridSize=\"5\" guides=\"1\" tooltips=\"1\" connect=\"1\" arrows=\"1\" fold=\"1\" page=\"1\" pageScale=\"1\" pageWidth=\"840\" pageHeight=\"2500\" math=\"0\" shadow=\"0\">\n      <root>\n        <mxCell id=\"0\" />\n        <mxCell id=\"1\" parent=\"0\" />\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-20\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;strokeColor=#1F6286;endArrow=none;endFill=0;textDirection=ltr;fontSize=10;fontColor=#FFFFFF;\" parent=\"1\" source=\"TaBsdL_WbFngfGy-Ndm6-1\" target=\"Cq76QrIc5dfTi0YlTipQ-5\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <Array as=\"points\">\n              <mxPoint x=\"443\" y=\"170\" />\n              <mxPoint x=\"344\" y=\"170\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"TaBsdL_WbFngfGy-Ndm6-1\" value=\"&lt;h1 style=&quot;font-size: 24px&quot;&gt;&lt;font style=&quot;font-size: 24px&quot;&gt;Fundamentals&lt;/font&gt;&lt;/h1&gt;\" style=\"rounded=1;whiteSpace=nowrap;html=1;strokeColor=none;textDirection=ltr;fontSize=24;fontStyle=0;fillColor=none;\" parent=\"1\" vertex=\"1\">\n          <mxGeometry x=\"352.5\" y=\"79\" width=\"180\" height=\"60\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"TaBsdL_WbFngfGy-Ndm6-2\" value=\"\" style=\"curved=1;endArrow=none;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;dashed=1;strokeColor=#1F6286;endFill=0;fontSize=24;fontColor=#FFFFFF;\" parent=\"1\" target=\"TaBsdL_WbFngfGy-Ndm6-1\" edge=\"1\">\n          <mxGeometry width=\"50\" height=\"50\" relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"439\" as=\"sourcePoint\" />\n            <mxPoint x=\"369\" y=\"40\" as=\"targetPoint\" />\n            <Array as=\"points\">\n              <mxPoint x=\"470\" y=\"25\" />\n              <mxPoint x=\"425\" y=\"50\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"Matrices &amp;amp; Linear Algebra Fundamentals\" link=\"https://www.khanacademy.org/math/linear-algebra\" id=\"Cq76QrIc5dfTi0YlTipQ-5\">\n          <mxCell style=\"rounded=1;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;whiteSpace=wrap;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"259\" y=\"200\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-186\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;textDirection=ltr;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-6\" target=\"Cq76QrIc5dfTi0YlTipQ-7\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-6\" value=\"Database Basics\" style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;\" parent=\"1\" vertex=\"1\">\n          <mxGeometry x=\"259\" y=\"250\" width=\"170\" height=\"30\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"&lt;font style=&quot;font-size: 10px;&quot;&gt;Relational vs. non-relational databases&lt;/font&gt;\" link=\"https://www.dataversity.net/review-pros-cons-different-databases-relational-versus-non-relational/\" id=\"Cq76QrIc5dfTi0YlTipQ-7\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#878787;fontColor=#FFFFFF;fontSize=11;textDirection=ltr;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"484\" y=\"230\" width=\"210\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-187\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;textDirection=ltr;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-8\" target=\"Cq76QrIc5dfTi0YlTipQ-6\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"&lt;font style=&quot;font-size: 10px;&quot;&gt;SQL + Joins (Inner, Outer, Cross, Theta Join)&lt;/font&gt;\" link=\"https://en.wikipedia.org/wiki/Join_(SQL)\" id=\"Cq76QrIc5dfTi0YlTipQ-8\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#878787;fontSize=11;textDirection=ltr;fontColor=#FFFFFF;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"484\" y=\"255\" width=\"210\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-188\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;textDirection=ltr;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-9\" target=\"Cq76QrIc5dfTi0YlTipQ-6\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"&lt;font style=&quot;font-size: 10px;&quot;&gt;NoSQL&lt;/font&gt;\" link=\"https://en.wikipedia.org/wiki/NoSQL\" id=\"Cq76QrIc5dfTi0YlTipQ-9\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#878787;fontSize=11;textDirection=ltr;fontColor=#FFFFFF;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"484\" y=\"280\" width=\"210\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-18\" value=\"Tabular Data\" style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;\" parent=\"1\" vertex=\"1\">\n          <mxGeometry x=\"259\" y=\"290\" width=\"170\" height=\"30\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-21\" value=\"Data Frames &amp;amp; Series&lt;span style=&quot;font-family: &amp;#34;helvetica&amp;#34; , &amp;#34;arial&amp;#34; , sans-serif ; font-size: 0px ; white-space: nowrap&quot;&gt;%3CmxGraphModel%3E%3Croot%3E%3CmxCell%20id%3D%220%22%2F%3E%3CmxCell%20id%3D%221%22%20parent%3D%220%22%2F%3E%3CmxCell%20id%3D%222%22%20value%3D%22Tabular%20Data%22%20style%3D%22rounded%3D1%3BwhiteSpace%3Dwrap%3Bhtml%3D1%3B%22%20vertex%3D%221%22%20parent%3D%221%22%3E%3CmxGeometry%20x%3D%22170%22%20y%3D%22350%22%20width%3D%22170%22%20height%3D%2230%22%20as%3D%22geometry%22%2F%3E%3C%2FmxCell%3E%3C%2Froot%3E%3C%2FmxGraphModel%3E&lt;/span&gt;\" style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;\" parent=\"1\" vertex=\"1\">\n          <mxGeometry x=\"259\" y=\"330\" width=\"170\" height=\"30\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"Extract, Transform, Load (ETL)\" link=\"https://en.wikipedia.org/wiki/Extract,_transform,_load\" id=\"Cq76QrIc5dfTi0YlTipQ-22\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"259\" y=\"370\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-25\" value=\"Reporting vs BI vs Analytics\" style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;\" parent=\"1\" vertex=\"1\">\n          <mxGeometry x=\"259\" y=\"410\" width=\"170\" height=\"30\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-26\" value=\"Data Formats\" style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;\" parent=\"1\" vertex=\"1\">\n          <mxGeometry x=\"259\" y=\"450\" width=\"170\" height=\"30\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-184\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;textDirection=ltr;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-27\" target=\"Cq76QrIc5dfTi0YlTipQ-26\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"&lt;font style=&quot;font-size: 10px&quot;&gt;JSON&lt;/font&gt;\" link=\"http://json.org/\" id=\"Cq76QrIc5dfTi0YlTipQ-27\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"159\" y=\"429\" width=\"50\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-185\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;textDirection=ltr;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-28\" target=\"Cq76QrIc5dfTi0YlTipQ-26\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"&lt;font style=&quot;font-size: 10px&quot;&gt;XML&lt;/font&gt;\" link=\"https://en.wikipedia.org/wiki/XML\" id=\"Cq76QrIc5dfTi0YlTipQ-28\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"159\" y=\"455\" width=\"50\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Regular Expressions (RegEx)\" link=\"https://en.wikipedia.org/wiki/Regular_expression\" id=\"Cq76QrIc5dfTi0YlTipQ-32\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"259\" y=\"490\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-192\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-32\" target=\"Cq76QrIc5dfTi0YlTipQ-191\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"474\" y=\"1010\" as=\"sourcePoint\" />\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-201\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;dashed=1;dashPattern=1 2;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-191\" target=\"Cq76QrIc5dfTi0YlTipQ-195\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <Array as=\"points\">\n              <mxPoint x=\"361\" y=\"659\" />\n              <mxPoint x=\"361\" y=\"615\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"Python Basics\" link=\"https://realpython.com/tutorials/basics/\" id=\"Cq76QrIc5dfTi0YlTipQ-191\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"392\" y=\"644.5\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Important libraries\" link=\"https://github.com/vinta/awesome-python\" id=\"Cq76QrIc5dfTi0YlTipQ-193\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"392\" y=\"684.5\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-231\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;entryX=0.5;entryY=0;entryDx=0;entryDy=0;\" parent=\"1\" source=\"i9OERWlP8GrdBMv_NWYt-6\" target=\"20nADvUfljp0ZlTacGp7-1\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"Virtual Environments\" link=\"https://docs.python-guide.org/dev/virtualenvs/\" id=\"Cq76QrIc5dfTi0YlTipQ-194\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"392\" y=\"724.5\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"&lt;font face=&quot;sans-serif&quot;&gt;Expressions&lt;/font&gt;\" id=\"Cq76QrIc5dfTi0YlTipQ-195\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;labelBackgroundColor=none;endFill=0;endArrow=none;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"135\" y=\"605\" width=\"211\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-202\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-196\" target=\"Cq76QrIc5dfTi0YlTipQ-191\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <Array as=\"points\">\n              <mxPoint x=\"361\" y=\"646\" />\n              <mxPoint x=\"361\" y=\"659\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"&lt;font face=&quot;sans-serif&quot;&gt;Variables&lt;/font&gt;\" id=\"Cq76QrIc5dfTi0YlTipQ-196\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;labelBackgroundColor=none;endFill=0;endArrow=none;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"135\" y=\"636\" width=\"211\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-203\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-197\" target=\"Cq76QrIc5dfTi0YlTipQ-191\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <Array as=\"points\">\n              <mxPoint x=\"361\" y=\"676\" />\n              <mxPoint x=\"361\" y=\"659\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"&lt;font face=&quot;sans-serif&quot;&gt;Data Structures&lt;/font&gt;\" id=\"Cq76QrIc5dfTi0YlTipQ-197\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;labelBackgroundColor=none;endFill=0;endArrow=none;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"135\" y=\"666\" width=\"211\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-204\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-198\" target=\"Cq76QrIc5dfTi0YlTipQ-191\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <Array as=\"points\">\n              <mxPoint x=\"361\" y=\"706\" />\n              <mxPoint x=\"361\" y=\"659\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"&lt;font face=&quot;sans-serif&quot;&gt;Functions&lt;/font&gt;\" id=\"Cq76QrIc5dfTi0YlTipQ-198\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;labelBackgroundColor=none;endFill=0;endArrow=none;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"135\" y=\"696\" width=\"211\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-205\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-199\" target=\"Cq76QrIc5dfTi0YlTipQ-191\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <Array as=\"points\">\n              <mxPoint x=\"361\" y=\"736\" />\n              <mxPoint x=\"361\" y=\"659\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"&lt;font face=&quot;sans-serif&quot;&gt;Install packages (via pip, conda or similar)&lt;/font&gt;\" id=\"Cq76QrIc5dfTi0YlTipQ-199\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;labelBackgroundColor=none;endFill=0;endArrow=none;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"135\" y=\"726\" width=\"211\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-206\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-200\" target=\"Cq76QrIc5dfTi0YlTipQ-191\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <Array as=\"points\">\n              <mxPoint x=\"361\" y=\"766\" />\n              <mxPoint x=\"361\" y=\"659\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"&lt;font face=&quot;sans-serif&quot;&gt;&lt;font&gt;Codestyle, e.g. &lt;/font&gt;&lt;a href=&quot;https://www.python.org/dev/peps/pep-0008/&quot;&gt;&lt;font color=&quot;#ffffff&quot;&gt;PEP8&lt;/font&gt;&lt;/a&gt;&lt;/font&gt;\" id=\"Cq76QrIc5dfTi0YlTipQ-200\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"135\" y=\"756\" width=\"211\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-213\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1B3CB3;fontSize=10;fontColor=#FFFFFF;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-211\" target=\"Cq76QrIc5dfTi0YlTipQ-193\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <Array as=\"points\">\n              <mxPoint x=\"576\" y=\"686\" />\n              <mxPoint x=\"576\" y=\"700\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"&lt;span style=&quot;font-size: 10px&quot;&gt;Numpy&lt;/span&gt;\" link=\"https://www.numpy.org/\" id=\"Cq76QrIc5dfTi0YlTipQ-211\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"598.5\" y=\"676\" width=\"140\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-214\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1B3CB3;fontSize=10;fontColor=#FFFFFF;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-212\" target=\"Cq76QrIc5dfTi0YlTipQ-193\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <Array as=\"points\">\n              <mxPoint x=\"579\" y=\"716\" />\n              <mxPoint x=\"579\" y=\"700\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"&lt;span style=&quot;font-size: 10px&quot;&gt;Pandas&lt;/span&gt;\" link=\"https://pandas.pydata.org/pandas-docs/stable/getting_started/\" id=\"Cq76QrIc5dfTi0YlTipQ-212\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"598.5\" y=\"706\" width=\"140\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-225\" value=\"&lt;font color=&quot;#000000&quot;&gt;Basics&lt;/font&gt;\" style=\"text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=nowrap;rounded=0;labelBackgroundColor=none;fontSize=16;fontColor=#FFFFFF;fontStyle=1\" parent=\"1\" vertex=\"1\">\n          <mxGeometry x=\"240\" y=\"173\" width=\"90\" height=\"20\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-229\" value=\"&lt;font color=&quot;#000000&quot; style=&quot;font-size: 16px&quot;&gt;Python&amp;nbsp; &amp;nbsp;Programming&lt;/font&gt;\" style=\"text;html=1;strokeColor=none;fillColor=none;align=left;verticalAlign=middle;whiteSpace=nowrap;rounded=0;labelBackgroundColor=none;fontSize=16;fontColor=#FFFFFF;fontStyle=1\" parent=\"1\" vertex=\"1\">\n          <mxGeometry x=\"413\" y=\"612.5\" width=\"205\" height=\"31\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-232\" value=\"&lt;font color=&quot;#000000&quot; style=&quot;font-size: 16px&quot;&gt;Exploratory Data Analysis / &lt;br&gt;Data Munging / - Wrangling&lt;/font&gt;\" style=\"text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=nowrap;rounded=0;labelBackgroundColor=none;fontSize=16;fontColor=#FFFFFF;fontStyle=1\" parent=\"1\" vertex=\"1\">\n          <mxGeometry x=\"160\" y=\"1050\" width=\"221\" height=\"45\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-257\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;entryX=0.5;entryY=0;entryDx=0;entryDy=0;exitX=0.547;exitY=1;exitDx=0;exitDy=0;exitPerimeter=0;\" parent=\"1\" source=\"i9OERWlP8GrdBMv_NWYt-5\" target=\"Cq76QrIc5dfTi0YlTipQ-267\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"575\" y=\"1025\" as=\"sourcePoint\" />\n            <mxPoint x=\"460\" y=\"1080\" as=\"targetPoint\" />\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"&lt;font color=&quot;#ffffff&quot;&gt;&lt;a href=&quot;https://towardsdatascience.com/dimensionality-reduction-for-machine-learning-80a46c2ebb7e&quot;&gt;&lt;font color=&quot;#ffffff&quot;&gt;&lt;i&gt;Dimensionality &lt;/i&gt;&lt;/font&gt;&lt;/a&gt;&amp;amp; &lt;a href=&quot;https://www.geeksforgeeks.org/numerosity-reduction-in-data-mining/&quot;&gt;&lt;font color=&quot;#ffffff&quot;&gt;Numerosity &lt;/font&gt;&lt;/a&gt;Reduction&lt;/font&gt;\" id=\"Cq76QrIc5dfTi0YlTipQ-256\">\n          <mxCell style=\"rounded=1;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;whiteSpace=wrap;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"321\" y=\"1144\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Normalization\" link=\"https://en.wikipedia.org/wiki/Normalization_(statistics)\" id=\"Cq76QrIc5dfTi0YlTipQ-259\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"321\" y=\"1189\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Data Scrubbing, &lt;br&gt;Handling Missing Values\" link=\"https://towardsdatascience.com/the-ultimate-guide-to-data-cleaning-3969843991d4\" id=\"Cq76QrIc5dfTi0YlTipQ-260\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"321\" y=\"1233\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Unbiased Estimators\" link=\"https://www.statisticshowto.datasciencecentral.com/unbiased/\" id=\"Cq76QrIc5dfTi0YlTipQ-261\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"321\" y=\"1278\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Binning sparse values\" link=\"https://towardsdatascience.com/understanding-feature-engineering-part-1-continuous-numeric-data-da4e47099a7b\" id=\"Cq76QrIc5dfTi0YlTipQ-262\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"321\" y=\"1322\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Feature Extraction\" link=\"https://medium.com/@mehulved1503/feature-selection-and-feature-extraction-in-machine-learning-an-overview-57891c595e96\" id=\"Cq76QrIc5dfTi0YlTipQ-263\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"321\" y=\"1366\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Denoising\" link=\"https://yusout.com/2019/04/29/dealing-with-noisy-data-in-data-science/\" id=\"Cq76QrIc5dfTi0YlTipQ-264\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"321\" y=\"1411\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Sampling\" link=\"https://en.wikipedia.org/wiki/Sampling_(statistics)\" id=\"Cq76QrIc5dfTi0YlTipQ-265\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"321\" y=\"1455\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Principal Component Analysis (PCA)\" link=\"https://en.wikipedia.org/wiki/Principal_component_analysis\" id=\"Cq76QrIc5dfTi0YlTipQ-267\">\n          <mxCell style=\"rounded=1;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;whiteSpace=wrap;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"321\" y=\"1100\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-322\" value=\"\" style=\"curved=1;endArrow=none;html=1;dashed=1;strokeColor=#1F6286;endFill=0;exitX=0.5;exitY=1;exitDx=0;exitDy=0;fontSize=24;fontColor=#FFFFFF;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-265\" target=\"mwhga6FKiBwJO0drZFbt-1\" edge=\"1\">\n          <mxGeometry width=\"50\" height=\"50\" relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"321\" y=\"1471\" as=\"sourcePoint\" />\n            <mxPoint x=\"605\" y=\"1580\" as=\"targetPoint\" />\n            <Array as=\"points\">\n              <mxPoint x=\"410\" y=\"1565\" />\n              <mxPoint x=\"283\" y=\"1585\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"Cq76QrIc5dfTi0YlTipQ-323\" value=\"\" style=\"curved=1;endArrow=none;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;dashed=1;strokeColor=#1F6286;endFill=0;exitX=0.5;exitY=1;exitDx=0;exitDy=0;fontSize=24;fontColor=#FFFFFF;\" parent=\"1\" source=\"Cq76QrIc5dfTi0YlTipQ-265\" target=\"mwhga6FKiBwJO0drZFbt-2\" edge=\"1\">\n          <mxGeometry width=\"50\" height=\"50\" relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"395\" y=\"1446\" as=\"sourcePoint\" />\n            <mxPoint x=\"578.5\" y=\"1650\" as=\"targetPoint\" />\n            <Array as=\"points\">\n              <mxPoint x=\"406\" y=\"1565\" />\n              <mxPoint x=\"535\" y=\"1585\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"&lt;font style=&quot;font-size: 10px&quot;&gt;CSV&lt;/font&gt;\" link=\"https://en.wikipedia.org/wiki/Comma-separated_values\" id=\"i9OERWlP8GrdBMv_NWYt-1\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"159\" y=\"482\" width=\"50\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"i9OERWlP8GrdBMv_NWYt-2\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;textDirection=ltr;\" parent=\"1\" source=\"i9OERWlP8GrdBMv_NWYt-1\" target=\"Cq76QrIc5dfTi0YlTipQ-26\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"214\" y=\"483\" as=\"sourcePoint\" />\n            <mxPoint x=\"264\" y=\"470\" as=\"targetPoint\" />\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"Awesome Public Datasets\" link=\"https://github.com/awesomedata/awesome-public-datasets\" id=\"i9OERWlP8GrdBMv_NWYt-4\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"485\" y=\"935\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Kaggle\" link=\"https://www.kaggle.com/\" id=\"i9OERWlP8GrdBMv_NWYt-5\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1f6286;fontColor=#FFFFFF;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"485\" y=\"970\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"i9OERWlP8GrdBMv_NWYt-6\" value=\"Jupyter Notebooks / Lab\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;\" parent=\"1\" vertex=\"1\">\n          <mxGeometry x=\"391\" y=\"766\" width=\"170\" height=\"30\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"i9OERWlP8GrdBMv_NWYt-31\" value=\"&lt;font color=&quot;#000000&quot; style=&quot;font-size: 16px&quot;&gt;Data Sources&lt;/font&gt;\" style=\"text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=nowrap;rounded=0;labelBackgroundColor=none;fontSize=16;fontColor=#FFFFFF;fontStyle=1\" parent=\"1\" vertex=\"1\">\n          <mxGeometry x=\"590\" y=\"830\" width=\"110\" height=\"31\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"RTNuT0qv83HE0F3EV0GY-2\" value=\"&lt;font style=&quot;font-size: 10px&quot; color=&quot;#999999&quot;&gt;Some boxes link to additional resources&lt;/font&gt;\" style=\"text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#FF8000;\" parent=\"1\" vertex=\"1\">\n          <mxGeometry x=\"35\" y=\"248\" width=\"204\" height=\"20\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"axYppKmcBhjd9RSlsNxy-1\" style=\"edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;endArrow=oval;endFill=1;strokeColor=#FF8000;dashed=1;dashPattern=1 2;shadow=0;\" parent=\"1\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"253.26\" y=\"385\" as=\"targetPoint\" />\n            <mxPoint x=\"140\" y=\"310\" as=\"sourcePoint\" />\n            <Array as=\"points\">\n              <mxPoint x=\"140\" y=\"310\" />\n              <mxPoint x=\"140\" y=\"385\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"RTNuT0qv83HE0F3EV0GY-3\" value=\"&lt;font style=&quot;font-size: 16px&quot;&gt;&lt;font style=&quot;font-size: 16px&quot;&gt;Interactive version on&lt;br&gt;&lt;a href=&quot;https://i.am.ai/roadmap/&quot; style=&quot;font-weight: bold&quot;&gt;&lt;font color=&quot;#ff8000&quot; style=&quot;font-size: 16px&quot;&gt;i.am.ai/roadmap&lt;/font&gt;&lt;/a&gt;&lt;/font&gt;&lt;br&gt;&lt;/font&gt;\" style=\"text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;fontColor=#FF8000;\" parent=\"1\" vertex=\"1\">\n          <mxGeometry x=\"35\" y=\"270\" width=\"204\" height=\"30\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"mwhga6FKiBwJO0drZFbt-1\" value=\"&lt;font color=&quot;#000000&quot;&gt;Data Scientist&lt;/font&gt;\" style=\"text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=nowrap;rounded=0;labelBackgroundColor=none;fontSize=16;fontColor=#FFFFFF;fontStyle=1\" parent=\"1\" vertex=\"1\">\n          <mxGeometry x=\"201\" y=\"1653\" width=\"150\" height=\"45\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"mwhga6FKiBwJO0drZFbt-2\" value=\"&lt;font color=&quot;#000000&quot;&gt;Data Engineer&lt;/font&gt;\" style=\"text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=nowrap;rounded=0;labelBackgroundColor=none;fontSize=16;fontColor=#FFFFFF;fontStyle=1\" parent=\"1\" vertex=\"1\">\n          <mxGeometry x=\"464\" y=\"1653\" width=\"150\" height=\"45\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"Data Mining\" link=\"https://www.dummies.com/programming/big-data/data-science/data-mining-for-dummies-cheat-sheet/\" id=\"20nADvUfljp0ZlTacGp7-1\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"485\" y=\"865\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Web Scraping\" link=\"https://towardsdatascience.com/big-data-what-is-web-scraping-and-how-to-use-it-74e7e8b58fd6\" id=\"20nADvUfljp0ZlTacGp7-2\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"485\" y=\"900\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n      </root>\n    </mxGraphModel>\n  </diagram>\n</mxfile>\n"
  },
  {
    "path": "images/intro.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<mxfile modified=\"2022-02-10T12:13:54.573Z\" host=\"app.diagrams.net\" agent=\"5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/97.0.4692.99 Safari/537.36\" etag=\"yAav1cBSL1TkbgiCvZFN\" compressed=\"false\" version=\"15.2.9\" type=\"device\">\n  <diagram id=\"-Y90kLDtCIYLgzMOPb3_\" name=\"Page-1\">\n    <mxGraphModel dx=\"1422\" dy=\"705\" grid=\"1\" gridSize=\"10\" guides=\"1\" tooltips=\"1\" connect=\"1\" arrows=\"1\" fold=\"1\" page=\"1\" pageScale=\"1\" pageWidth=\"827\" pageHeight=\"459\" math=\"0\" shadow=\"0\">\n      <root>\n        <mxCell id=\"0\" />\n        <mxCell id=\"1\" parent=\"0\" />\n        <UserObject label=\"GIT - Version Control\" link=\"https://git-scm.com/\" id=\"3oOMFXwpDthQT0sGTSB_-2\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1f6286;fontColor=#FFFFFF;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"10\" y=\"104\" width=\"210\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Papers With Code\" link=\"https://paperswithcode.com/\" id=\"3oOMFXwpDthQT0sGTSB_-6\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1f6286;fontColor=#FFFFFF;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"10\" y=\"63\" width=\"210\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Personal Recommendation!&lt;br&gt;\" id=\"3oOMFXwpDthQT0sGTSB_-12\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1f6286;fontColor=#FFFFFF;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"610\" y=\"63\" width=\"210\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Available Options&lt;br&gt;\" id=\"3oOMFXwpDthQT0sGTSB_-13\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#878787;strokeColor=#000000;fontColor=#FFFFFF;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"610\" y=\"104\" width=\"210\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Data Scientist&lt;br&gt;\" link=\"#data-science-roadmap\" id=\"3oOMFXwpDthQT0sGTSB_-14\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#878787;strokeColor=#000000;fontColor=#FFFFFF;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"270\" y=\"240\" width=\"111\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"3oOMFXwpDthQT0sGTSB_-15\" value=\"\" style=\"endArrow=none;html=1;strokeWidth=2;strokeColor=#1F6286;startArrow=block;startFill=1;entryX=0.5;entryY=1;entryDx=0;entryDy=0;exitX=0.5;exitY=0;exitDx=0;exitDy=0;\" parent=\"1\" source=\"3oOMFXwpDthQT0sGTSB_-21\" target=\"3oOMFXwpDthQT0sGTSB_-14\" edge=\"1\">\n          <mxGeometry width=\"50\" height=\"50\" relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"315\" y=\"301\" as=\"sourcePoint\" />\n            <mxPoint x=\"314.5\" y=\"241\" as=\"targetPoint\" />\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"Big Data Engineer&lt;br&gt;\" link=\"#big-data-engineer-roadmap\" id=\"3oOMFXwpDthQT0sGTSB_-17\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#878787;strokeColor=#000000;fontColor=#FFFFFF;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"449\" y=\"301\" width=\"111\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Machine Learning&lt;br&gt;\" link=\"#machine-learning-roadmap\" id=\"3oOMFXwpDthQT0sGTSB_-21\">\n          <mxCell style=\"rounded=1;html=1;fillColor=#878787;strokeColor=#000000;fontColor=#FFFFFF;whiteSpace=wrap;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"270\" y=\"301\" width=\"111\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Deep Learning&lt;br&gt;\" link=\"#deep-learning-roadmap\" id=\"3oOMFXwpDthQT0sGTSB_-22\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#878787;strokeColor=#000000;fontColor=#FFFFFF;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"270\" y=\"361\" width=\"111\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"3oOMFXwpDthQT0sGTSB_-23\" value=\"\" style=\"endArrow=none;html=1;strokeWidth=2;exitX=0;exitY=0.5;exitDx=0;exitDy=0;curved=1;shadow=0;comic=0;startArrow=blockThin;startFill=1;strokeColor=#287FAD;dashed=1;entryX=0.5;entryY=1;entryDx=0;entryDy=0;\" parent=\"1\" source=\"3oOMFXwpDthQT0sGTSB_-22\" target=\"gQKesuVpX4WZQqMmXACk-9\" edge=\"1\">\n          <mxGeometry width=\"50\" height=\"50\" relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"364.17647058823536\" y=\"194.64705882352928\" as=\"sourcePoint\" />\n            <mxPoint x=\"400\" y=\"190\" as=\"targetPoint\" />\n            <Array as=\"points\">\n              <mxPoint x=\"210\" y=\"330\" />\n              <mxPoint x=\"260\" y=\"172\" />\n              <mxPoint x=\"414\" y=\"220\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"3oOMFXwpDthQT0sGTSB_-26\" value=\"\" style=\"endArrow=none;html=1;strokeWidth=2;strokeColor=#1F6286;startArrow=block;startFill=1;entryX=0.5;entryY=1;entryDx=0;entryDy=0;exitX=0.5;exitY=0;exitDx=0;exitDy=0;\" parent=\"1\" source=\"3oOMFXwpDthQT0sGTSB_-22\" target=\"3oOMFXwpDthQT0sGTSB_-21\" edge=\"1\">\n          <mxGeometry width=\"50\" height=\"50\" relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"325\" y=\"311\" as=\"sourcePoint\" />\n            <mxPoint x=\"325\" y=\"241\" as=\"targetPoint\" />\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"Data Engineer&lt;br&gt;\" link=\"#data-engineer-roadmap\" id=\"3oOMFXwpDthQT0sGTSB_-28\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#878787;strokeColor=#000000;fontColor=#FFFFFF;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"449\" y=\"240\" width=\"111\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"3oOMFXwpDthQT0sGTSB_-36\" value=\"\" style=\"endArrow=none;dashed=1;html=1;dashPattern=1 1;strokeWidth=4;strokeColor=#1F6286;\" parent=\"1\" edge=\"1\">\n          <mxGeometry width=\"50\" height=\"50\" relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"504.20999999999975\" y=\"381\" as=\"sourcePoint\" />\n            <mxPoint x=\"504.20999999999975\" y=\"331.0000000000002\" as=\"targetPoint\" />\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"gQKesuVpX4WZQqMmXACk-1\" value=\"\" style=\"endArrow=none;dashed=1;html=1;dashPattern=1 1;strokeWidth=4;strokeColor=#1F6286;\" parent=\"1\" edge=\"1\">\n          <mxGeometry width=\"50\" height=\"50\" relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"325.20999999999975\" y=\"447\" as=\"sourcePoint\" />\n            <mxPoint x=\"325.20999999999975\" y=\"397.0000000000002\" as=\"targetPoint\" />\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"gQKesuVpX4WZQqMmXACk-2\" value=\"\" style=\"endArrow=none;html=1;strokeColor=#FFFFFF;fontSize=11;fontColor=#FFFFFF;\" parent=\"1\" edge=\"1\">\n          <mxGeometry width=\"50\" height=\"50\" relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"250\" y=\"10\" as=\"sourcePoint\" />\n            <mxPoint x=\"560\" y=\"10\" as=\"targetPoint\" />\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"gQKesuVpX4WZQqMmXACk-7\" value=\"Required for any path\" style=\"rounded=0;whiteSpace=nowrap;html=1;strokeColor=#FFFFFF;fillColor=none;fontSize=14;fontColor=#000000;align=center;fontStyle=1;shadow=0;glass=0;comic=0;\" parent=\"1\" vertex=\"1\">\n          <mxGeometry x=\"30\" y=\"33.75\" width=\"160\" height=\"22.5\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"gQKesuVpX4WZQqMmXACk-8\" value=\"AI Expert in 2022\" style=\"rounded=0;whiteSpace=nowrap;html=1;strokeColor=#FFFFFF;fillColor=none;fontSize=24;fontColor=#000000;align=center;fontStyle=1\" parent=\"1\" vertex=\"1\">\n          <mxGeometry x=\"314\" y=\"10\" width=\"200\" height=\"40\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"gQKesuVpX4WZQqMmXACk-9\" value=\"Choose your path\" style=\"rounded=0;whiteSpace=nowrap;html=1;strokeColor=#FFFFFF;fillColor=none;fontSize=14;fontColor=#000000;align=center;fontStyle=1\" parent=\"1\" vertex=\"1\">\n          <mxGeometry x=\"349\" y=\"159.5\" width=\"130\" height=\"25\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"gQKesuVpX4WZQqMmXACk-10\" value=\"Legend\" style=\"rounded=0;whiteSpace=nowrap;html=1;strokeColor=#FFFFFF;fillColor=none;fontSize=14;fontColor=#000000;align=center;fontStyle=1\" parent=\"1\" vertex=\"1\">\n          <mxGeometry x=\"670\" y=\"36.25\" width=\"80\" height=\"20\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"Semantic Versioning\" link=\"https://semver.org/\" id=\"8HipHq_RoTziRcoMrEiH-1\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1f6286;fontColor=#FFFFFF;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"10\" y=\"144.5\" width=\"210\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Keep a Changelog\" link=\"https://keepachangelog.com\" id=\"8HipHq_RoTziRcoMrEiH-2\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1f6286;fontColor=#FFFFFF;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"10\" y=\"184.5\" width=\"210\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Fundamentals\" link=\"#fundamentals\" id=\"qldJKWdAueBzsav_uKPz-1\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#878787;strokeColor=#000000;fontColor=#FFFFFF;shadow=1;\" parent=\"1\" vertex=\"1\">\n            <mxGeometry x=\"369\" y=\"90\" width=\"90\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"qldJKWdAueBzsav_uKPz-3\" value=\"\" style=\"endArrow=none;html=1;strokeWidth=2;strokeColor=#1F6286;curved=1;shadow=0;comic=0;startArrow=blockThin;startFill=1;entryX=0.5;entryY=1;entryDx=0;entryDy=0;exitX=0.5;exitY=0;exitDx=0;exitDy=0;\" parent=\"1\" source=\"qldJKWdAueBzsav_uKPz-1\" target=\"gQKesuVpX4WZQqMmXACk-8\" edge=\"1\">\n          <mxGeometry width=\"50\" height=\"50\" relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"414\" y=\"95\" as=\"sourcePoint\" />\n            <mxPoint x=\"410\" y=\"185\" as=\"targetPoint\" />\n            <Array as=\"points\">\n              <mxPoint x=\"414\" y=\"75\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"qldJKWdAueBzsav_uKPz-4\" value=\"\" style=\"endArrow=none;html=1;strokeWidth=2;strokeColor=#1F6286;curved=1;shadow=0;comic=0;startArrow=blockThin;startFill=1;entryX=0.5;entryY=1;entryDx=0;entryDy=0;exitX=0.5;exitY=0;exitDx=0;exitDy=0;\" parent=\"1\" source=\"gQKesuVpX4WZQqMmXACk-9\" target=\"qldJKWdAueBzsav_uKPz-1\" edge=\"1\">\n          <mxGeometry width=\"50\" height=\"50\" relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"424\" y=\"109.5\" as=\"sourcePoint\" />\n            <mxPoint x=\"424\" y=\"60\" as=\"targetPoint\" />\n            <Array as=\"points\" />\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"qldJKWdAueBzsav_uKPz-8\" value=\"\" style=\"endArrow=none;html=1;strokeWidth=2;strokeColor=#1F6286;curved=1;shadow=0;comic=0;startArrow=blockThin;startFill=1;exitX=0.5;exitY=0;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;\" parent=\"1\" source=\"3oOMFXwpDthQT0sGTSB_-28\" target=\"gQKesuVpX4WZQqMmXACk-9\" edge=\"1\">\n          <mxGeometry width=\"50\" height=\"50\" relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"480\" y=\"210\" as=\"sourcePoint\" />\n            <mxPoint x=\"410\" y=\"180\" as=\"targetPoint\" />\n            <Array as=\"points\">\n              <mxPoint x=\"505\" y=\"200\" />\n              <mxPoint x=\"414\" y=\"210\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"3oOMFXwpDthQT0sGTSB_-16\" value=\"\" style=\"endArrow=none;html=1;strokeWidth=2;strokeColor=#1F6286;exitX=0.5;exitY=0;exitDx=0;exitDy=0;curved=1;shadow=0;comic=0;startArrow=blockThin;startFill=1;entryX=0.5;entryY=1;entryDx=0;entryDy=0;\" parent=\"1\" source=\"3oOMFXwpDthQT0sGTSB_-14\" target=\"gQKesuVpX4WZQqMmXACk-9\" edge=\"1\">\n          <mxGeometry width=\"50\" height=\"50\" relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"364\" y=\"295\" as=\"sourcePoint\" />\n            <mxPoint x=\"400\" y=\"190\" as=\"targetPoint\" />\n            <Array as=\"points\">\n              <mxPoint x=\"326\" y=\"200\" />\n              <mxPoint x=\"414\" y=\"210\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"qldJKWdAueBzsav_uKPz-9\" value=\"\" style=\"group;rotation=0;\" parent=\"1\" vertex=\"1\" connectable=\"0\">\n          <mxGeometry x=\"204\" y=\"268\" width=\"50\" height=\"50\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"3oOMFXwpDthQT0sGTSB_-24\" value=\"\" style=\"endArrow=none;html=1;strokeWidth=4;fillColor=#f8cecc;strokeColor=#FF0000;\" parent=\"qldJKWdAueBzsav_uKPz-9\" edge=\"1\">\n          <mxGeometry width=\"50\" height=\"50\" relative=\"1\" as=\"geometry\">\n            <mxPoint y=\"50\" as=\"sourcePoint\" />\n            <mxPoint x=\"50\" as=\"targetPoint\" />\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"3oOMFXwpDthQT0sGTSB_-25\" value=\"\" style=\"endArrow=none;html=1;strokeWidth=4;fillColor=#f8cecc;strokeColor=#FF0000;\" parent=\"qldJKWdAueBzsav_uKPz-9\" edge=\"1\">\n          <mxGeometry width=\"50\" height=\"50\" relative=\"1\" as=\"geometry\">\n            <mxPoint as=\"sourcePoint\" />\n            <mxPoint x=\"50\" y=\"50\" as=\"targetPoint\" />\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"qldJKWdAueBzsav_uKPz-10\" value=\"\" style=\"endArrow=none;html=1;strokeWidth=2;strokeColor=#1F6286;startArrow=block;startFill=1;entryX=0.5;entryY=1;entryDx=0;entryDy=0;\" parent=\"1\" source=\"3oOMFXwpDthQT0sGTSB_-17\" target=\"3oOMFXwpDthQT0sGTSB_-28\" edge=\"1\">\n          <mxGeometry width=\"50\" height=\"50\" relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"335.5\" y=\"311\" as=\"sourcePoint\" />\n            <mxPoint x=\"335.5\" y=\"280\" as=\"targetPoint\" />\n          </mxGeometry>\n        </mxCell>\n      </root>\n    </mxGraphModel>\n  </diagram>\n</mxfile>\n"
  },
  {
    "path": "images/machine_learning.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<mxfile modified=\"2021-12-23T18:04:14.678Z\" host=\"app.diagrams.net\" agent=\"5.0 (Windows)\" etag=\"NNe9CGg27ofJprU9lvEt\" compressed=\"false\" version=\"16.0.3\" type=\"device\">\n  <diagram id=\"fr6Ozu_w740tUXcH1CqF\" name=\"Page-2\">\n    <mxGraphModel dx=\"1038\" dy=\"536\" grid=\"1\" gridSize=\"5\" guides=\"1\" tooltips=\"1\" connect=\"1\" arrows=\"1\" fold=\"1\" page=\"1\" pageScale=\"1\" pageWidth=\"760\" pageHeight=\"1400\" math=\"0\" shadow=\"0\">\n      <root>\n        <mxCell id=\"htyU483B0FxtcKePXL7N-0\" />\n        <mxCell id=\"htyU483B0FxtcKePXL7N-1\" parent=\"htyU483B0FxtcKePXL7N-0\" />\n        <mxCell id=\"LjkIiOLdTd1e1bAVqWXk-0\" value=\"&lt;h1 style=&quot;font-size: 24px&quot;&gt;&lt;font style=&quot;font-size: 24px&quot;&gt;Machine Learning&lt;/font&gt;&lt;/h1&gt;\" style=\"rounded=1;whiteSpace=nowrap;html=1;strokeColor=none;textDirection=ltr;fontSize=24;fontStyle=0;fillColor=none;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n          <mxGeometry x=\"248\" y=\"96\" width=\"180\" height=\"60\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"LjkIiOLdTd1e1bAVqWXk-1\" value=\"\" style=\"curved=1;endArrow=none;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;dashed=1;fillColor=#dae8fc;strokeColor=#1F6286;endFill=0;\" parent=\"htyU483B0FxtcKePXL7N-1\" target=\"LjkIiOLdTd1e1bAVqWXk-0\" edge=\"1\">\n          <mxGeometry width=\"50\" height=\"50\" relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"335\" y=\"6\" as=\"sourcePoint\" />\n            <mxPoint x=\"265\" y=\"46\" as=\"targetPoint\" />\n            <Array as=\"points\">\n              <mxPoint x=\"375\" y=\"26\" />\n              <mxPoint x=\"315\" y=\"76\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"VuwxzfYgwRlIY4JZtxAH-0\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;strokeColor=#1F6286;endArrow=none;endFill=0;textDirection=ltr;\" parent=\"htyU483B0FxtcKePXL7N-1\" source=\"LjkIiOLdTd1e1bAVqWXk-0\" target=\"VuwxzfYgwRlIY4JZtxAH-1\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"338.42857142857156\" y=\"166.14285714285734\" as=\"sourcePoint\" />\n            <Array as=\"points\">\n              <mxPoint x=\"338\" y=\"186\" />\n              <mxPoint x=\"240\" y=\"186\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"VuwxzfYgwRlIY4JZtxAH-1\" value=\"Concepts, Inputs &amp;amp; Attributes\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;shadow=0;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n          <mxGeometry x=\"155\" y=\"206\" width=\"170\" height=\"40\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"VuwxzfYgwRlIY4JZtxAH-2\" value=\"&lt;font color=&quot;#000000&quot; style=&quot;font-size: 16px&quot;&gt;General&lt;/font&gt;\" style=\"text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=nowrap;rounded=0;labelBackgroundColor=none;fontSize=16;fontColor=#FFFFFF;fontStyle=1\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n          <mxGeometry x=\"127.5\" y=\"179\" width=\"110\" height=\"20\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"DHKLtlYprhqel7ysIQaG-0\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;textDirection=ltr;\" parent=\"htyU483B0FxtcKePXL7N-1\" source=\"VuwxzfYgwRlIY4JZtxAH-1\" target=\"DHKLtlYprhqel7ysIQaG-1\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"325.5714285714289\" y=\"270.42857142857156\" as=\"sourcePoint\" />\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"&lt;font style=&quot;font-size: 11px;&quot;&gt;Categorical Variables&lt;/font&gt;\" id=\"DHKLtlYprhqel7ysIQaG-1\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fillColor=#878787;fontColor=#FFFFFF;fontSize=11;textDirection=ltr;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n            <mxGeometry x=\"365\" y=\"191\" width=\"210\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"DHKLtlYprhqel7ysIQaG-2\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;textDirection=ltr;\" parent=\"htyU483B0FxtcKePXL7N-1\" source=\"DHKLtlYprhqel7ysIQaG-3\" target=\"VuwxzfYgwRlIY4JZtxAH-1\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"325.5714285714289\" y=\"270.42857142857156\" as=\"targetPoint\" />\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"&lt;font style=&quot;font-size: 11px;&quot;&gt;Ordinal Variables&lt;/font&gt;\" id=\"DHKLtlYprhqel7ysIQaG-3\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fillColor=#878787;fontSize=11;textDirection=ltr;fontColor=#FFFFFF;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n            <mxGeometry x=\"365\" y=\"216\" width=\"210\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"DHKLtlYprhqel7ysIQaG-4\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;textDirection=ltr;\" parent=\"htyU483B0FxtcKePXL7N-1\" source=\"DHKLtlYprhqel7ysIQaG-5\" target=\"VuwxzfYgwRlIY4JZtxAH-1\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"325.5714285714289\" y=\"270.42857142857156\" as=\"targetPoint\" />\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"&lt;font style=&quot;font-size: 11px;&quot;&gt;Numerical Variables&lt;/font&gt;\" id=\"DHKLtlYprhqel7ysIQaG-5\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fillColor=#878787;fontSize=11;textDirection=ltr;fontColor=#FFFFFF;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n            <mxGeometry x=\"365\" y=\"241\" width=\"210\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Cost functions and &lt;br&gt;gradient descent\" link=\"https://towardsdatascience.com/machine-learning-fundamentals-via-linear-regression-41a5d11f5220\" id=\"DHKLtlYprhqel7ysIQaG-6\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;shadow=1;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n            <mxGeometry x=\"155\" y=\"256\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Overfitting / Underfitting\" link=\"https://towardsdatascience.com/overfitting-vs-underfitting-a-conceptual-explanation-d94ee20ca7f9\" linkTarget=\"_blank\" id=\"VYEq6nQbCD_IG90U4M3M-0\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;shadow=1;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n            <mxGeometry x=\"155\" y=\"306\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Training, validation &lt;br&gt;and test data\" link=\"https://en.wikipedia.org/wiki/Training,_validation,_and_test_sets\" id=\"VYEq6nQbCD_IG90U4M3M-1\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;shadow=1;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n            <mxGeometry x=\"155\" y=\"356\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Precision vs Recall\" link=\"https://towardsdatascience.com/precision-vs-recall-386cf9f89488\" id=\"VYEq6nQbCD_IG90U4M3M-2\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;shadow=1;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n            <mxGeometry x=\"155\" y=\"406\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Bias &amp;amp; Variance\" link=\"https://becominghuman.ai/machine-learning-bias-vs-variance-641f924e6c57\" id=\"VYEq6nQbCD_IG90U4M3M-3\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;shadow=1;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n            <mxGeometry x=\"155\" y=\"456\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Lift\" link=\"https://en.wikipedia.org/wiki/Lift_(data_mining)\" id=\"VYEq6nQbCD_IG90U4M3M-4\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;shadow=1;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n            <mxGeometry x=\"155\" y=\"506\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"VYEq6nQbCD_IG90U4M3M-5\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;strokeColor=#1F6286;endArrow=none;endFill=0;textDirection=ltr;\" parent=\"htyU483B0FxtcKePXL7N-1\" source=\"VYEq6nQbCD_IG90U4M3M-4\" target=\"VYEq6nQbCD_IG90U4M3M-6\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"509.98275862068976\" y=\"575.9655172413793\" as=\"sourcePoint\" />\n            <Array as=\"points\">\n              <mxPoint x=\"240\" y=\"576\" />\n              <mxPoint x=\"370\" y=\"576\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"Supervised Learning\" link=\"https://en.wikipedia.org/wiki/Supervised_learning\" id=\"VYEq6nQbCD_IG90U4M3M-6\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;shadow=1;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n            <mxGeometry x=\"285\" y=\"606\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"VYEq6nQbCD_IG90U4M3M-7\" value=\"&lt;font color=&quot;#000000&quot; style=&quot;font-size: 16px&quot;&gt;Methods&lt;/font&gt;\" style=\"text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=nowrap;rounded=0;labelBackgroundColor=none;fontSize=16;fontColor=#FFFFFF;fontStyle=1\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n          <mxGeometry x=\"359.5\" y=\"578\" width=\"110\" height=\"20\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"Unsupervised Learning\" link=\"https://en.wikipedia.org/wiki/Unsupervised_learning\" id=\"VYEq6nQbCD_IG90U4M3M-8\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;shadow=1;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n            <mxGeometry x=\"285\" y=\"656\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"VYEq6nQbCD_IG90U4M3M-9\" value=\"Ensemble Learning\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n          <mxGeometry x=\"285\" y=\"706\" width=\"170\" height=\"40\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"VYEq6nQbCD_IG90U4M3M-10\" value=\"Reinforcement Learning\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n          <mxGeometry x=\"285\" y=\"756\" width=\"170\" height=\"40\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"HnN437S74T-ZC1-G-TRg-10\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;\" parent=\"htyU483B0FxtcKePXL7N-1\" source=\"cgMZx1r-UadFNIfda-r5-0\" target=\"VYEq6nQbCD_IG90U4M3M-6\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"&lt;font style=&quot;font-size: 10px&quot;&gt;Regression&lt;/font&gt;\" link=\"https://en.wikipedia.org/wiki/Regression_analysis\" id=\"cgMZx1r-UadFNIfda-r5-0\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;shadow=1;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n            <mxGeometry x=\"25\" y=\"579\" width=\"180\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"HnN437S74T-ZC1-G-TRg-11\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;\" parent=\"htyU483B0FxtcKePXL7N-1\" source=\"cgMZx1r-UadFNIfda-r5-1\" target=\"VYEq6nQbCD_IG90U4M3M-6\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"&lt;span style=&quot;font-size: 10px&quot;&gt;Classification&lt;/span&gt;\" link=\"https://towardsdatascience.com/machine-learning-classifiers-a5cc4e1b0623\" id=\"cgMZx1r-UadFNIfda-r5-1\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;shadow=1;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n            <mxGeometry x=\"25\" y=\"655\" width=\"180\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"&lt;font style=&quot;font-size: 10px&quot;&gt;Classification Rate&lt;/font&gt;\" id=\"cgMZx1r-UadFNIfda-r5-3\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=10;fontColor=#FFFFFF;fillColor=#878787;textDirection=ltr;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n            <mxGeometry x=\"65\" y=\"680\" width=\"130\" height=\"15\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"cgMZx1r-UadFNIfda-r5-4\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;textDirection=ltr;entryX=0;entryY=0.5;entryDx=0;entryDy=0;\" parent=\"htyU483B0FxtcKePXL7N-1\" source=\"cgMZx1r-UadFNIfda-r5-5\" target=\"cgMZx1r-UadFNIfda-r5-1\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"-65\" y=\"820.5\" as=\"targetPoint\" />\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"&lt;span style=&quot;text-align: left ; white-space: nowrap&quot;&gt;Decision Trees&lt;/span&gt;\" link=\"https://hackernoon.com/what-is-a-decision-tree-in-machine-learning-15ce51dc445d\" id=\"cgMZx1r-UadFNIfda-r5-5\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=10;fontColor=#FFFFFF;fillColor=#878787;textDirection=ltr;shadow=1;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n            <mxGeometry x=\"65\" y=\"700\" width=\"130\" height=\"15\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"cgMZx1r-UadFNIfda-r5-6\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;entryX=0;entryY=0.5;entryDx=0;entryDy=0;fontColor=#FFFFFF;textDirection=ltr;\" parent=\"htyU483B0FxtcKePXL7N-1\" source=\"cgMZx1r-UadFNIfda-r5-7\" target=\"cgMZx1r-UadFNIfda-r5-1\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"Naïve Bayes Classifiers\" link=\"https://www.analyticsvidhya.com/blog/2017/09/naive-bayes-explained/\" id=\"cgMZx1r-UadFNIfda-r5-7\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=10;fontColor=#FFFFFF;fillColor=#878787;textDirection=ltr;shadow=1;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n            <mxGeometry x=\"65\" y=\"740\" width=\"130\" height=\"15\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"HnN437S74T-ZC1-G-TRg-6\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;\" parent=\"htyU483B0FxtcKePXL7N-1\" source=\"HnN437S74T-ZC1-G-TRg-1\" target=\"cgMZx1r-UadFNIfda-r5-0\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"&lt;span style=&quot;text-align: left ; white-space: nowrap&quot;&gt;Linear Regression&lt;/span&gt;\" link=\"https://towardsdatascience.com/linear-regression-detailed-view-ea73175f6e86\" id=\"HnN437S74T-ZC1-G-TRg-1\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=10;fontColor=#FFFFFF;fillColor=#878787;textDirection=ltr;shadow=1;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n            <mxGeometry x=\"65\" y=\"605\" width=\"130\" height=\"15\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"HnN437S74T-ZC1-G-TRg-7\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;\" parent=\"htyU483B0FxtcKePXL7N-1\" source=\"HnN437S74T-ZC1-G-TRg-2\" target=\"cgMZx1r-UadFNIfda-r5-0\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"Poisson Regression\" link=\"https://en.wikipedia.org/wiki/Poisson_regression\" id=\"HnN437S74T-ZC1-G-TRg-2\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=10;fontColor=#FFFFFF;fillColor=#878787;textDirection=ltr;shadow=1;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n            <mxGeometry x=\"65\" y=\"625\" width=\"130\" height=\"15\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"HnN437S74T-ZC1-G-TRg-8\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;\" parent=\"htyU483B0FxtcKePXL7N-1\" source=\"HnN437S74T-ZC1-G-TRg-3\" target=\"cgMZx1r-UadFNIfda-r5-1\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"&lt;span style=&quot;text-align: left ; white-space: nowrap&quot;&gt;K-Nearest Neighbour&lt;/span&gt;\" link=\"https://towardsdatascience.com/machine-learning-basics-with-the-k-nearest-neighbors-algorithm-6a6e71d01761\" id=\"HnN437S74T-ZC1-G-TRg-3\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=10;fontColor=#FFFFFF;fillColor=#878787;textDirection=ltr;shadow=1;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n            <mxGeometry x=\"65\" y=\"760\" width=\"130\" height=\"15\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"HnN437S74T-ZC1-G-TRg-9\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;\" parent=\"htyU483B0FxtcKePXL7N-1\" source=\"HnN437S74T-ZC1-G-TRg-4\" target=\"cgMZx1r-UadFNIfda-r5-1\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"SVM\" id=\"HnN437S74T-ZC1-G-TRg-4\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=10;fontColor=#FFFFFF;fillColor=#878787;textDirection=ltr;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n            <mxGeometry x=\"65\" y=\"780\" width=\"130\" height=\"15\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"HnN437S74T-ZC1-G-TRg-21\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;\" parent=\"htyU483B0FxtcKePXL7N-1\" source=\"HnN437S74T-ZC1-G-TRg-12\" target=\"HnN437S74T-ZC1-G-TRg-15\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <Array as=\"points\">\n              <mxPoint x=\"740\" y=\"430.5\" />\n              <mxPoint x=\"740\" y=\"453.5\" />\n              <mxPoint x=\"710\" y=\"453.5\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"HnN437S74T-ZC1-G-TRg-29\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;\" parent=\"htyU483B0FxtcKePXL7N-1\" source=\"HnN437S74T-ZC1-G-TRg-12\" target=\"VYEq6nQbCD_IG90U4M3M-8\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <Array as=\"points\">\n              <mxPoint x=\"480\" y=\"431\" />\n              <mxPoint x=\"480\" y=\"675\" />\n              <mxPoint x=\"455\" y=\"675\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"&lt;font style=&quot;font-size: 11px;&quot;&gt;Clustering&lt;/font&gt;\" id=\"HnN437S74T-ZC1-G-TRg-12\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n            <mxGeometry x=\"495\" y=\"420.5\" width=\"230\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"HnN437S74T-ZC1-G-TRg-30\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;\" parent=\"htyU483B0FxtcKePXL7N-1\" source=\"HnN437S74T-ZC1-G-TRg-13\" target=\"VYEq6nQbCD_IG90U4M3M-8\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <Array as=\"points\">\n              <mxPoint x=\"475\" y=\"631\" />\n              <mxPoint x=\"475\" y=\"676\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"HnN437S74T-ZC1-G-TRg-13\" value=\"&lt;span style=&quot;font-size: 11px;&quot;&gt;Association Rule Learning&lt;/span&gt;\" style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n          <mxGeometry x=\"495\" y=\"615.5000000000001\" width=\"230\" height=\"20\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"HnN437S74T-ZC1-G-TRg-28\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;\" parent=\"htyU483B0FxtcKePXL7N-1\" source=\"HnN437S74T-ZC1-G-TRg-14\" target=\"HnN437S74T-ZC1-G-TRg-27\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <Array as=\"points\">\n              <mxPoint x=\"735\" y=\"725\" />\n              <mxPoint x=\"735\" y=\"748\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"HnN437S74T-ZC1-G-TRg-31\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;\" parent=\"htyU483B0FxtcKePXL7N-1\" source=\"HnN437S74T-ZC1-G-TRg-14\" target=\"VYEq6nQbCD_IG90U4M3M-8\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <Array as=\"points\">\n              <mxPoint x=\"480\" y=\"725\" />\n              <mxPoint x=\"480\" y=\"676\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"&lt;font style=&quot;font-size: 11px;&quot;&gt;Dimensionality Reduction&lt;/font&gt;\" id=\"HnN437S74T-ZC1-G-TRg-14\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n            <mxGeometry x=\"495\" y=\"715\" width=\"230\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"&lt;font style=&quot;font-size: 10px&quot;&gt;Hierarchical Clustering&lt;/font&gt;\" link=\"https://towardsdatascience.com/understanding-the-concept-of-hierarchical-clustering-technique-c6e8243758ec\" id=\"HnN437S74T-ZC1-G-TRg-15\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=10;fontColor=#FFFFFF;fillColor=#878787;textDirection=ltr;shadow=1;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n            <mxGeometry x=\"505.0689655172414\" y=\"445.5\" width=\"180\" height=\"15\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"HnN437S74T-ZC1-G-TRg-22\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;\" parent=\"htyU483B0FxtcKePXL7N-1\" source=\"HnN437S74T-ZC1-G-TRg-16\" target=\"HnN437S74T-ZC1-G-TRg-12\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"&lt;span style=&quot;text-align: left; white-space: nowrap; font-size: 10px;&quot;&gt;K-Means Clustering&lt;/span&gt;\" link=\"https://towardsdatascience.com/understanding-k-means-clustering-in-machine-learning-6a6e67336aa1\" id=\"HnN437S74T-ZC1-G-TRg-16\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=10;fontColor=#FFFFFF;fillColor=#878787;textDirection=ltr;shadow=1;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n            <mxGeometry x=\"505.0689655172414\" y=\"465.5\" width=\"180\" height=\"15\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"HnN437S74T-ZC1-G-TRg-23\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;\" parent=\"htyU483B0FxtcKePXL7N-1\" source=\"HnN437S74T-ZC1-G-TRg-17\" target=\"HnN437S74T-ZC1-G-TRg-12\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"DBSCAN\" id=\"HnN437S74T-ZC1-G-TRg-17\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=10;fontColor=#FFFFFF;fillColor=#878787;textDirection=ltr;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n            <mxGeometry x=\"505.0689655172414\" y=\"485.5\" width=\"180\" height=\"15\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"HnN437S74T-ZC1-G-TRg-24\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;\" parent=\"htyU483B0FxtcKePXL7N-1\" source=\"HnN437S74T-ZC1-G-TRg-18\" target=\"HnN437S74T-ZC1-G-TRg-12\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"&lt;span style=&quot;text-align: left; white-space: nowrap; font-size: 10px;&quot;&gt;Fuzzy C-Means&lt;/span&gt;\" id=\"HnN437S74T-ZC1-G-TRg-18\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=10;fontColor=#FFFFFF;fillColor=#878787;textDirection=ltr;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n            <mxGeometry x=\"505.0689655172414\" y=\"523\" width=\"180\" height=\"15\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"HnN437S74T-ZC1-G-TRg-25\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;\" parent=\"htyU483B0FxtcKePXL7N-1\" source=\"HnN437S74T-ZC1-G-TRg-19\" target=\"HnN437S74T-ZC1-G-TRg-12\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"Mean Shift\" id=\"HnN437S74T-ZC1-G-TRg-19\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=10;fontColor=#FFFFFF;fillColor=#878787;textDirection=ltr;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n            <mxGeometry x=\"505.0689655172414\" y=\"543\" width=\"180\" height=\"15\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"HnN437S74T-ZC1-G-TRg-26\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;\" parent=\"htyU483B0FxtcKePXL7N-1\" source=\"HnN437S74T-ZC1-G-TRg-20\" target=\"HnN437S74T-ZC1-G-TRg-12\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"Agglomerative\" id=\"HnN437S74T-ZC1-G-TRg-20\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=10;fontColor=#FFFFFF;fillColor=#878787;textDirection=ltr;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n            <mxGeometry x=\"505.0689655172414\" y=\"563\" width=\"180\" height=\"15\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"Principal Component Analysis (PCA)\" link=\"https://en.wikipedia.org/wiki/Principal_component_analysis\" id=\"HnN437S74T-ZC1-G-TRg-27\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=10;fontColor=#FFFFFF;fillColor=#878787;textDirection=ltr;shadow=1;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n            <mxGeometry x=\"505.0689655172414\" y=\"740\" width=\"180\" height=\"15\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"HnN437S74T-ZC1-G-TRg-35\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;\" parent=\"htyU483B0FxtcKePXL7N-1\" source=\"HnN437S74T-ZC1-G-TRg-32\" target=\"VYEq6nQbCD_IG90U4M3M-9\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"&lt;font style=&quot;font-size: 10px&quot;&gt;Boosting&lt;/font&gt;\" link=\"https://medium.com/greyatom/a-quick-guide-to-boosting-in-ml-acf7c1585cb5\" id=\"HnN437S74T-ZC1-G-TRg-32\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;shadow=1;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n            <mxGeometry x=\"525\" y=\"865\" width=\"180\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"HnN437S74T-ZC1-G-TRg-36\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;\" parent=\"htyU483B0FxtcKePXL7N-1\" source=\"HnN437S74T-ZC1-G-TRg-33\" target=\"VYEq6nQbCD_IG90U4M3M-9\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"HnN437S74T-ZC1-G-TRg-33\" value=\"&lt;span style=&quot;font-size: 10px&quot;&gt;Bagging&lt;/span&gt;\" style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n          <mxGeometry x=\"525\" y=\"890\" width=\"180\" height=\"20\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"HnN437S74T-ZC1-G-TRg-37\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;\" parent=\"htyU483B0FxtcKePXL7N-1\" source=\"HnN437S74T-ZC1-G-TRg-34\" target=\"VYEq6nQbCD_IG90U4M3M-9\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"&lt;font style=&quot;font-size: 10px&quot;&gt;Stacking&lt;/font&gt;\" id=\"HnN437S74T-ZC1-G-TRg-34\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n            <mxGeometry x=\"525\" y=\"915\" width=\"180\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"HnN437S74T-ZC1-G-TRg-39\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;\" parent=\"htyU483B0FxtcKePXL7N-1\" source=\"HnN437S74T-ZC1-G-TRg-38\" target=\"VYEq6nQbCD_IG90U4M3M-10\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"&lt;font style=&quot;font-size: 11px;&quot;&gt;Q-Learning&lt;/font&gt;\" id=\"HnN437S74T-ZC1-G-TRg-38\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n            <mxGeometry x=\"125\" y=\"827\" width=\"115\" height=\"20\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"HnN437S74T-ZC1-G-TRg-44\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=0;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=11;fontColor=#000000;\" parent=\"htyU483B0FxtcKePXL7N-1\" source=\"HnN437S74T-ZC1-G-TRg-40\" target=\"VYEq6nQbCD_IG90U4M3M-10\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"HnN437S74T-ZC1-G-TRg-40\" value=\"Sentiment Analysis\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n          <mxGeometry x=\"155\" y=\"895\" width=\"170\" height=\"40\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"HnN437S74T-ZC1-G-TRg-41\" value=\"Collaborative Filtering\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n          <mxGeometry x=\"155\" y=\"945\" width=\"170\" height=\"40\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"Tagging\" link=\"https://collaboro.com/tagging-machine-learning/\" id=\"HnN437S74T-ZC1-G-TRg-42\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;shadow=1;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n            <mxGeometry x=\"155\" y=\"995\" width=\"170\" height=\"40\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"HnN437S74T-ZC1-G-TRg-52\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=11;fontColor=#000000;\" parent=\"htyU483B0FxtcKePXL7N-1\" source=\"HnN437S74T-ZC1-G-TRg-43\" target=\"-F556bFNc2k-Ru-i3tAO-0\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"370\" y=\"1145.3333333333335\" as=\"targetPoint\" />\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"HnN437S74T-ZC1-G-TRg-43\" value=\"Prediction\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;fontColor=#FFFFFF;textDirection=ltr;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n          <mxGeometry x=\"155\" y=\"1045\" width=\"170\" height=\"40\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"HnN437S74T-ZC1-G-TRg-45\" value=\"&lt;font color=&quot;#000000&quot; style=&quot;font-size: 16px&quot;&gt;Use Cases&lt;/font&gt;\" style=\"text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=nowrap;rounded=0;labelBackgroundColor=none;fontSize=16;fontColor=#FFFFFF;fontStyle=1\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n          <mxGeometry x=\"135\" y=\"869\" width=\"110\" height=\"20\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"HnN437S74T-ZC1-G-TRg-47\" value=\"&lt;font color=&quot;#000000&quot; style=&quot;font-size: 16px&quot;&gt;Tools&lt;/font&gt;\" style=\"text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=nowrap;rounded=0;labelBackgroundColor=none;fontSize=16;fontColor=#FFFFFF;fontStyle=1\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n          <mxGeometry x=\"359.5\" y=\"1148.3333333333335\" width=\"110\" height=\"20\" as=\"geometry\" />\n        </mxCell>\n        <mxCell id=\"8k3ckbDMY0iMJvgjdjPt-3\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;dashed=1;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;\" parent=\"htyU483B0FxtcKePXL7N-1\" source=\"-F556bFNc2k-Ru-i3tAO-0\" target=\"8k3ckbDMY0iMJvgjdjPt-0\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"scikit-learn\" link=\"https://scikit-learn.org/stable/\" id=\"HnN437S74T-ZC1-G-TRg-50\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n            <mxGeometry x=\"495\" y=\"1155\" width=\"115\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"8k3ckbDMY0iMJvgjdjPt-0\" value=\"&lt;h1 style=&quot;font-size: 24px&quot;&gt;&lt;font style=&quot;font-size: 24px&quot;&gt;Deep Learning&lt;/font&gt;&lt;/h1&gt;\" style=\"rounded=1;whiteSpace=nowrap;html=1;strokeColor=none;textDirection=ltr;fontSize=24;fontStyle=0;fillColor=none;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n          <mxGeometry x=\"113\" y=\"1312\" width=\"218\" height=\"44\" as=\"geometry\" />\n        </mxCell>\n        <UserObject label=\"Important libraries\" link=\"https://github.com/vinta/awesome-python\" id=\"-F556bFNc2k-Ru-i3tAO-0\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontColor=#FFFFFF;fillColor=#1F6286;textDirection=ltr;shadow=1;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n            <mxGeometry x=\"285\" y=\"1176\" width=\"170\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <UserObject label=\"spacy (NLP)\" link=\"https://spacy.io/\" id=\"vBW06ndySzswqmp4JF8F-0\">\n          <mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fontSize=11;fillColor=#878787;textDirection=ltr;fontColor=#FFFFFF;labelBackgroundColor=none;endFill=0;endArrow=none;shadow=1;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n            <mxGeometry x=\"495\" y=\"1195\" width=\"115\" height=\"30\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"vBW06ndySzswqmp4JF8F-3\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;entryX=1;entryY=0.5;entryDx=0;entryDy=0;\" parent=\"htyU483B0FxtcKePXL7N-1\" source=\"vBW06ndySzswqmp4JF8F-0\" target=\"-F556bFNc2k-Ru-i3tAO-0\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"500\" y=\"1146\" as=\"sourcePoint\" />\n            <mxPoint x=\"460\" y=\"1231\" as=\"targetPoint\" />\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"vBW06ndySzswqmp4JF8F-5\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;entryX=1;entryY=0.5;entryDx=0;entryDy=0;\" parent=\"htyU483B0FxtcKePXL7N-1\" source=\"HnN437S74T-ZC1-G-TRg-50\" target=\"-F556bFNc2k-Ru-i3tAO-0\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"500\" y=\"1236\" as=\"sourcePoint\" />\n            <mxPoint x=\"460\" y=\"1196\" as=\"targetPoint\" />\n          </mxGeometry>\n        </mxCell>\n        <mxCell id=\"C0GYUPX-Kj8wl-CPSkV5-0\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;\" parent=\"htyU483B0FxtcKePXL7N-1\" target=\"C0GYUPX-Kj8wl-CPSkV5-1\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <Array as=\"points\">\n              <mxPoint x=\"740\" y=\"625\" />\n              <mxPoint x=\"740\" y=\"648\" />\n              <mxPoint x=\"710\" y=\"648\" />\n            </Array>\n            <mxPoint x=\"725\" y=\"625\" as=\"sourcePoint\" />\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"&lt;font style=&quot;font-size: 10px&quot;&gt;Apriori Algorithm&lt;/font&gt;\" link=\"https://towardsdatascience.com/understanding-the-concept-of-hierarchical-clustering-technique-c6e8243758ec\" id=\"C0GYUPX-Kj8wl-CPSkV5-1\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=10;fontColor=#FFFFFF;fillColor=#878787;textDirection=ltr;shadow=0;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n            <mxGeometry x=\"505.0689655172414\" y=\"640\" width=\"180\" height=\"15\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"C0GYUPX-Kj8wl-CPSkV5-2\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;\" parent=\"htyU483B0FxtcKePXL7N-1\" source=\"C0GYUPX-Kj8wl-CPSkV5-3\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"725\" y=\"625\" as=\"targetPoint\" />\n            <Array as=\"points\">\n              <mxPoint x=\"740\" y=\"668\" />\n              <mxPoint x=\"740\" y=\"625\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"&lt;span style=&quot;text-align: left ; white-space: nowrap ; font-size: 10px&quot;&gt;ECLAT algorithm&lt;/span&gt;\" link=\"https://towardsdatascience.com/understanding-k-means-clustering-in-machine-learning-6a6e67336aa1\" id=\"C0GYUPX-Kj8wl-CPSkV5-3\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=10;fontColor=#FFFFFF;fillColor=#878787;textDirection=ltr;shadow=0;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n            <mxGeometry x=\"505.0689655172414\" y=\"660\" width=\"180\" height=\"15\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"C0GYUPX-Kj8wl-CPSkV5-4\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;entryX=1;entryY=0.5;entryDx=0;entryDy=0;\" parent=\"htyU483B0FxtcKePXL7N-1\" source=\"C0GYUPX-Kj8wl-CPSkV5-5\" target=\"HnN437S74T-ZC1-G-TRg-13\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"770\" y=\"670\" as=\"targetPoint\" />\n            <Array as=\"points\">\n              <mxPoint x=\"740\" y=\"688\" />\n              <mxPoint x=\"740\" y=\"626\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"FP Trees\" link=\"http://www.hypertextbookshop.com/dataminingbook/public_version/contents/chapters/chapter002/section006/blue/page001.html\" id=\"C0GYUPX-Kj8wl-CPSkV5-5\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=10;fontColor=#FFFFFF;fillColor=#878787;textDirection=ltr;shadow=1;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n            <mxGeometry x=\"505.0689655172414\" y=\"680\" width=\"180\" height=\"15\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"C0GYUPX-Kj8wl-CPSkV5-9\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;\" parent=\"htyU483B0FxtcKePXL7N-1\" source=\"HnN437S74T-ZC1-G-TRg-14\" target=\"C0GYUPX-Kj8wl-CPSkV5-10\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <Array as=\"points\">\n              <mxPoint x=\"740\" y=\"725\" />\n              <mxPoint x=\"740\" y=\"768\" />\n            </Array>\n            <mxPoint x=\"725\" y=\"745\" as=\"sourcePoint\" />\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"&lt;font style=&quot;font-size: 10px&quot;&gt;Random Projection&lt;/font&gt;\" id=\"C0GYUPX-Kj8wl-CPSkV5-10\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=10;fontColor=#FFFFFF;fillColor=#878787;textDirection=ltr;shadow=0;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n            <mxGeometry x=\"505.0689655172414\" y=\"760\" width=\"180\" height=\"15\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"C0GYUPX-Kj8wl-CPSkV5-11\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;\" parent=\"htyU483B0FxtcKePXL7N-1\" source=\"C0GYUPX-Kj8wl-CPSkV5-12\" target=\"HnN437S74T-ZC1-G-TRg-14\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"725\" y=\"745\" as=\"targetPoint\" />\n            <Array as=\"points\">\n              <mxPoint x=\"740\" y=\"788\" />\n              <mxPoint x=\"740\" y=\"725\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"&lt;span style=&quot;text-align: left ; white-space: nowrap ; font-size: 10px&quot;&gt;NMF&lt;/span&gt;\" id=\"C0GYUPX-Kj8wl-CPSkV5-12\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=10;fontColor=#FFFFFF;fillColor=#878787;textDirection=ltr;shadow=0;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n            <mxGeometry x=\"505.0689655172414\" y=\"780\" width=\"180\" height=\"15\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"C0GYUPX-Kj8wl-CPSkV5-13\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;\" parent=\"htyU483B0FxtcKePXL7N-1\" source=\"C0GYUPX-Kj8wl-CPSkV5-14\" target=\"HnN437S74T-ZC1-G-TRg-14\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"725\" y=\"745\" as=\"targetPoint\" />\n            <Array as=\"points\">\n              <mxPoint x=\"740\" y=\"808\" />\n              <mxPoint x=\"740\" y=\"725\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"T-SNE\" id=\"C0GYUPX-Kj8wl-CPSkV5-14\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=10;fontColor=#FFFFFF;fillColor=#878787;textDirection=ltr;shadow=0;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n            <mxGeometry x=\"505.0689655172414\" y=\"800\" width=\"180\" height=\"15\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"C0GYUPX-Kj8wl-CPSkV5-15\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;\" parent=\"htyU483B0FxtcKePXL7N-1\" source=\"C0GYUPX-Kj8wl-CPSkV5-16\" target=\"HnN437S74T-ZC1-G-TRg-14\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"725\" y=\"745\" as=\"targetPoint\" />\n            <Array as=\"points\">\n              <mxPoint x=\"740\" y=\"828\" />\n              <mxPoint x=\"740\" y=\"725\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"&lt;div style=&quot;text-align: left&quot;&gt;&lt;span&gt;UMAP&lt;/span&gt;&lt;/div&gt;\" id=\"C0GYUPX-Kj8wl-CPSkV5-16\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=10;fontColor=#FFFFFF;fillColor=#878787;textDirection=ltr;shadow=0;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n            <mxGeometry x=\"505.0689655172414\" y=\"820\" width=\"180\" height=\"15\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"C0GYUPX-Kj8wl-CPSkV5-17\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;\" parent=\"htyU483B0FxtcKePXL7N-1\" source=\"C0GYUPX-Kj8wl-CPSkV5-18\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"725\" y=\"430\" as=\"targetPoint\" />\n            <Array as=\"points\">\n              <mxPoint x=\"745\" y=\"512\" />\n              <mxPoint x=\"745\" y=\"430\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"&lt;span style=&quot;text-align: left ; white-space: nowrap ; font-size: 10px&quot;&gt;HDBSCAN&lt;/span&gt;\" id=\"C0GYUPX-Kj8wl-CPSkV5-18\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=10;fontColor=#FFFFFF;fillColor=#878787;textDirection=ltr;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n            <mxGeometry x=\"505.0389655172414\" y=\"504.5\" width=\"180\" height=\"15\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"C0GYUPX-Kj8wl-CPSkV5-19\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=1;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;\" parent=\"htyU483B0FxtcKePXL7N-1\" source=\"C0GYUPX-Kj8wl-CPSkV5-20\" target=\"HnN437S74T-ZC1-G-TRg-12\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"724.9699999999998\" y=\"450.5\" as=\"targetPoint\" />\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"OPTICS\" id=\"C0GYUPX-Kj8wl-CPSkV5-20\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=10;fontColor=#FFFFFF;fillColor=#878787;textDirection=ltr;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n            <mxGeometry x=\"505.0389655172414\" y=\"583\" width=\"180\" height=\"15\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"C0GYUPX-Kj8wl-CPSkV5-21\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;\" parent=\"htyU483B0FxtcKePXL7N-1\" source=\"C0GYUPX-Kj8wl-CPSkV5-22\" target=\"cgMZx1r-UadFNIfda-r5-1\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"24.999999999999886\" y=\"700\" as=\"targetPoint\" />\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"Gaussian Mixture Models\" id=\"C0GYUPX-Kj8wl-CPSkV5-22\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=10;fontColor=#FFFFFF;fillColor=#878787;textDirection=ltr;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n            <mxGeometry x=\"65\" y=\"800\" width=\"130\" height=\"15\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"C0GYUPX-Kj8wl-CPSkV5-23\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=24;fontColor=#FFFFFF;\" parent=\"htyU483B0FxtcKePXL7N-1\" source=\"C0GYUPX-Kj8wl-CPSkV5-24\" target=\"cgMZx1r-UadFNIfda-r5-1\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <Array as=\"points\">\n              <mxPoint x=\"5\" y=\"728\" />\n              <mxPoint x=\"5\" y=\"665\" />\n            </Array>\n            <mxPoint x=\"24.999999999999886\" y=\"702\" as=\"targetPoint\" />\n          </mxGeometry>\n        </mxCell>\n        <UserObject label=\"&lt;font style=&quot;font-size: 10px&quot;&gt;Logistic Regression&lt;/font&gt;\" link=\"https://towardsdatascience.com/logistic-regression-detailed-overview-46c4da4303bc\" id=\"C0GYUPX-Kj8wl-CPSkV5-24\">\n          <mxCell style=\"rounded=0;whiteSpace=nowrap;html=1;fontSize=10;fontColor=#FFFFFF;fillColor=#878787;textDirection=ltr;shadow=1;\" parent=\"htyU483B0FxtcKePXL7N-1\" vertex=\"1\">\n            <mxGeometry x=\"65\" y=\"720\" width=\"130\" height=\"15\" as=\"geometry\" />\n          </mxCell>\n        </UserObject>\n        <mxCell id=\"C0GYUPX-Kj8wl-CPSkV5-28\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;orthogonalLoop=1;jettySize=auto;html=1;exitX=0;exitY=0.5;exitDx=0;exitDy=0;dashed=1;dashPattern=1 2;endArrow=none;endFill=0;strokeColor=#1F6286;fontSize=10;fontColor=#FFFFFF;textDirection=ltr;entryX=0;entryY=0.5;entryDx=0;entryDy=0;\" parent=\"htyU483B0FxtcKePXL7N-1\" source=\"cgMZx1r-UadFNIfda-r5-3\" target=\"cgMZx1r-UadFNIfda-r5-1\" edge=\"1\">\n          <mxGeometry relative=\"1\" as=\"geometry\">\n            <mxPoint x=\"14.999999999999886\" y=\"648.5\" as=\"targetPoint\" />\n            <mxPoint x=\"54.999999999999886\" y=\"690.9999999999998\" as=\"sourcePoint\" />\n            <Array as=\"points\">\n              <mxPoint x=\"10\" y=\"688\" />\n              <mxPoint x=\"10\" y=\"665\" />\n            </Array>\n          </mxGeometry>\n        </mxCell>\n      </root>\n    </mxGraphModel>\n  </diagram>\n</mxfile>\n"
  },
  {
    "path": "images/machinelearning.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<mxGraphModel dx=\"4694\" dy=\"3086\" grid=\"1\" gridSize=\"10\" guides=\"1\" tooltips=\"1\" connect=\"1\" arrows=\"1\" fold=\"1\" page=\"1\" pageScale=\"1\" pageWidth=\"3300\" pageHeight=\"2339\" background=\"#ffffff\" math=\"0\" shadow=\"0\"><root><mxCell id=\"0\"/><mxCell id=\"1\" parent=\"0\"/><mxCell id=\"5\" style=\"edgeStyle=orthogonalEdgeStyle;rounded=0;html=1;exitX=1;exitY=0.5;entryX=0.5;entryY=1;jettySize=auto;orthogonalLoop=1;fontSize=15;elbow=vertical;curved=1;\" parent=\"1\" source=\"2\" target=\"4\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"6\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;exitX=0;exitY=0.5;jettySize=auto;orthogonalLoop=1;fontSize=15;\" parent=\"1\" source=\"2\" target=\"3\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"25\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;exitX=0.25;exitY=1;entryX=1;entryY=0.5;jettySize=auto;orthogonalLoop=1;fontSize=15;\" parent=\"1\" source=\"2\" target=\"18\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"26\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;exitX=0.5;exitY=1;entryX=0.5;entryY=0;jettySize=auto;orthogonalLoop=1;fontSize=15;\" parent=\"1\" source=\"2\" target=\"23\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"27\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;exitX=0.75;exitY=1;entryX=0;entryY=0.5;jettySize=auto;orthogonalLoop=1;fontSize=15;\" parent=\"1\" source=\"2\" target=\"20\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><UserObject label=\"Machine Learning\" id=\"2\"><mxCell style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;strokeColor=#000000;fontSize=18;fontStyle=1;fontColor=#FFFFFF;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"330\" y=\"80\" width=\"120\" height=\"60\" as=\"geometry\"/></mxCell></UserObject><mxCell id=\"9\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;exitX=0;exitY=0.5;entryX=0.5;entryY=1;jettySize=auto;orthogonalLoop=1;fontSize=15;\" parent=\"1\" source=\"3\" target=\"7\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"10\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;exitX=1;exitY=0.5;entryX=0.5;entryY=1;jettySize=auto;orthogonalLoop=1;fontSize=15;\" parent=\"1\" source=\"3\" target=\"8\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"3\" value=\"Supervised Learning\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;strokeColor=#000000;fontSize=14;fontColor=#FFFFFF;fontStyle=1\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"110\" y=\"-50\" width=\"120\" height=\"60\" as=\"geometry\"/></mxCell><mxCell id=\"12\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;exitX=0.5;exitY=0;jettySize=auto;orthogonalLoop=1;fontSize=15;\" parent=\"1\" source=\"4\" target=\"11\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"14\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;exitX=1;exitY=0.5;entryX=0;entryY=0.5;jettySize=auto;orthogonalLoop=1;fontSize=15;\" parent=\"1\" source=\"4\" target=\"13\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"16\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;exitX=0.75;exitY=0;entryX=0;entryY=0.5;jettySize=auto;orthogonalLoop=1;fontSize=15;\" parent=\"1\" source=\"4\" target=\"15\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"4\" value=\"Unsupervised Learning\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#878787;strokeColor=#000000;fontSize=14;fontStyle=1;fontColor=#FFFFFF;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"560\" y=\"-50\" width=\"120\" height=\"60\" as=\"geometry\"/></mxCell><mxCell id=\"113\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;exitX=0;exitY=0.5;entryX=1;entryY=0.5;endArrow=none;endFill=0;jettySize=auto;orthogonalLoop=1;fontSize=12;\" parent=\"1\" source=\"7\" target=\"112\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"115\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;entryX=0.5;entryY=1;endArrow=none;endFill=0;jettySize=auto;orthogonalLoop=1;fontSize=12;\" parent=\"1\" source=\"7\" target=\"110\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"116\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;exitX=0.25;exitY=0;entryX=0.5;entryY=1;endArrow=none;endFill=0;jettySize=auto;orthogonalLoop=1;fontSize=12;\" parent=\"1\" source=\"7\" target=\"109\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"7\" value=\"Regression\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;strokeColor=#000000;fontSize=12;fontColor=#FFFFFF;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"-50\" y=\"-120\" width=\"120\" height=\"40\" as=\"geometry\"/></mxCell><mxCell id=\"122\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;exitX=0;exitY=0.5;entryX=1;entryY=0.5;endArrow=none;endFill=0;jettySize=auto;orthogonalLoop=1;fontSize=12;\" parent=\"1\" source=\"8\" target=\"117\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"124\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;exitX=0;exitY=0.25;entryX=1;entryY=0.5;endArrow=none;endFill=0;jettySize=auto;orthogonalLoop=1;fontSize=12;\" parent=\"1\" source=\"8\" target=\"118\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"125\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;exitX=0.25;exitY=0;entryX=1;entryY=0.5;endArrow=none;endFill=0;jettySize=auto;orthogonalLoop=1;fontSize=12;\" parent=\"1\" source=\"8\" target=\"121\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"126\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;exitX=0.75;exitY=0;entryX=0.5;entryY=1;endArrow=none;endFill=0;jettySize=auto;orthogonalLoop=1;fontSize=12;\" parent=\"1\" source=\"8\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"><mxPoint x=\"390.1176470588234\" y=\"-170.41176470588243\" as=\"targetPoint\"/></mxGeometry></mxCell><mxCell id=\"127\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;exitX=0.5;exitY=0;entryX=0.5;entryY=1;endArrow=none;endFill=0;jettySize=auto;orthogonalLoop=1;fontSize=12;\" parent=\"1\" source=\"8\" target=\"119\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"8\" value=\"Classification\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;strokeColor=#000000;fontSize=12;fontColor=#FFFFFF;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"255\" y=\"-120\" width=\"120\" height=\"40\" as=\"geometry\"/></mxCell><mxCell id=\"139\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;exitX=0.25;exitY=0;entryX=0.5;entryY=1;endArrow=none;endFill=0;jettySize=auto;orthogonalLoop=1;fontSize=12;\" parent=\"1\" source=\"11\" target=\"129\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"140\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;exitX=0;exitY=0.5;entryX=0.5;entryY=1;endArrow=none;endFill=0;jettySize=auto;orthogonalLoop=1;fontSize=12;\" parent=\"1\" source=\"11\" target=\"134\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"142\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;exitX=0.25;exitY=1;entryX=1;entryY=0.5;endArrow=none;endFill=0;jettySize=auto;orthogonalLoop=1;fontSize=12;\" parent=\"1\" source=\"11\" target=\"133\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"11\" value=\"Clustering\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#878787;strokeColor=#000000;fontSize=12;fontColor=#FFFFFF;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"560\" y=\"-170\" width=\"120\" height=\"40\" as=\"geometry\"/></mxCell><mxCell id=\"156\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;exitX=0.75;exitY=0;entryX=0;entryY=0.5;endArrow=none;endFill=0;jettySize=auto;orthogonalLoop=1;fontSize=12;\" parent=\"1\" source=\"13\" target=\"150\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"157\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;exitX=1;exitY=0.25;entryX=0;entryY=0.5;endArrow=none;endFill=0;jettySize=auto;orthogonalLoop=1;fontSize=12;\" parent=\"1\" source=\"13\" target=\"151\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"159\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;exitX=1;exitY=0.5;entryX=0;entryY=0.5;endArrow=none;endFill=0;jettySize=auto;orthogonalLoop=1;fontSize=12;\" parent=\"1\" source=\"13\" target=\"152\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"161\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;exitX=1;exitY=0.75;entryX=0;entryY=0.5;endArrow=none;endFill=0;jettySize=auto;orthogonalLoop=1;fontSize=12;\" parent=\"1\" source=\"13\" target=\"153\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"162\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;exitX=0.75;exitY=1;entryX=0.5;entryY=0;endArrow=none;endFill=0;jettySize=auto;orthogonalLoop=1;fontSize=12;\" parent=\"1\" source=\"13\" target=\"154\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"13\" value=\"Dimensionality Reduction\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#878787;strokeColor=#000000;fontSize=12;fontColor=#FFFFFF;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"770\" y=\"-40\" width=\"120\" height=\"40\" as=\"geometry\"/></mxCell><mxCell id=\"15\" value=\"Association Rule Learning\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#878787;strokeColor=#000000;fontSize=12;fontColor=#FFFFFF;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"760\" y=\"-150\" width=\"120\" height=\"40\" as=\"geometry\"/></mxCell><mxCell id=\"88\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;exitX=0.5;exitY=1;entryX=0.5;entryY=0;endArrow=none;endFill=0;jettySize=auto;orthogonalLoop=1;fontSize=12;\" parent=\"1\" source=\"18\" target=\"84\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"90\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;exitX=0;exitY=0.5;entryX=1;entryY=0.5;endArrow=none;endFill=0;jettySize=auto;orthogonalLoop=1;fontSize=12;\" parent=\"1\" source=\"18\" target=\"82\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"92\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;exitX=0.5;exitY=0;entryX=0.5;entryY=1;endArrow=none;endFill=0;jettySize=auto;orthogonalLoop=1;fontSize=12;\" parent=\"1\" source=\"18\" target=\"80\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"93\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;exitX=0.25;exitY=0;entryX=1;entryY=0.5;endArrow=none;endFill=0;jettySize=auto;orthogonalLoop=1;fontSize=12;\" parent=\"1\" source=\"18\" target=\"81\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"94\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;exitX=0;exitY=0.75;entryX=0.5;entryY=0;endArrow=none;endFill=0;jettySize=auto;orthogonalLoop=1;fontSize=12;\" parent=\"1\" source=\"18\" target=\"83\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"18\" value=\"Reinforcement Learning\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#878787;strokeColor=#000000;fontSize=14;fontStyle=1;fontColor=#FFFFFF;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"40\" y=\"170\" width=\"120\" height=\"60\" as=\"geometry\"/></mxCell><mxCell id=\"45\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;exitX=0.5;exitY=0;entryX=0;entryY=0.5;jettySize=auto;orthogonalLoop=1;fontSize=12;\" parent=\"1\" source=\"20\" target=\"41\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"46\" value=\"\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;jettySize=auto;orthogonalLoop=1;fontSize=12;\" parent=\"1\" source=\"20\" target=\"42\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"49\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;exitX=0.5;exitY=1;entryX=0;entryY=0.5;jettySize=auto;orthogonalLoop=1;fontSize=12;\" parent=\"1\" source=\"20\" target=\"43\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"20\" value=\"Ensemble Learning\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#878787;strokeColor=#000000;fontSize=14;fontStyle=1;fontColor=#FFFFFF;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"610\" y=\"170\" width=\"120\" height=\"60\" as=\"geometry\"/></mxCell><mxCell id=\"32\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;exitX=0;exitY=0.5;jettySize=auto;orthogonalLoop=1;fontSize=12;\" parent=\"1\" source=\"23\" target=\"31\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"34\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;exitX=0.25;exitY=1;entryX=0.5;entryY=0;jettySize=auto;orthogonalLoop=1;fontSize=12;\" parent=\"1\" source=\"23\" target=\"33\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"37\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;exitX=0.5;exitY=1;entryX=0.5;entryY=0;jettySize=auto;orthogonalLoop=1;fontSize=12;\" parent=\"1\" source=\"23\" target=\"35\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"38\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;exitX=0.75;exitY=1;entryX=0.5;entryY=0;jettySize=auto;orthogonalLoop=1;fontSize=12;\" parent=\"1\" source=\"23\" target=\"36\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"40\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;exitX=1;exitY=0.5;entryX=0.5;entryY=0;jettySize=auto;orthogonalLoop=1;fontSize=12;\" parent=\"1\" source=\"23\" target=\"39\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"23\" value=\"Neural Networks and Deep Learning\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;strokeColor=#000000;fontSize=14;fontStyle=1;fontColor=#FFFFFF;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"330\" y=\"270\" width=\"120\" height=\"60\" as=\"geometry\"/></mxCell><mxCell id=\"61\" value=\"\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;jettySize=auto;orthogonalLoop=1;fontSize=12;endArrow=none;endFill=0;\" parent=\"1\" source=\"31\" target=\"60\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"31\" value=\"Convolutional Neural Networks (CNN)\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;strokeColor=#000000;fontSize=12;fontColor=#FFFFFF;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"60\" y=\"370\" width=\"120\" height=\"40\" as=\"geometry\"/></mxCell><mxCell id=\"60\" value=\"DCNN\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#ffffff;strokeColor=#000000;fontSize=12;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"30\" y=\"440\" width=\"80\" height=\"20\" as=\"geometry\"/></mxCell><mxCell id=\"65\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;exitX=0.25;exitY=1;entryX=0.5;entryY=0;endArrow=none;endFill=0;jettySize=auto;orthogonalLoop=1;fontSize=12;\" parent=\"1\" source=\"33\" target=\"62\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"66\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;entryX=0.5;entryY=0;endArrow=none;endFill=0;jettySize=auto;orthogonalLoop=1;fontSize=12;exitX=0.5;exitY=1;\" parent=\"1\" source=\"33\" target=\"63\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"><mxPoint x=\"210\" y=\"480\" as=\"sourcePoint\"/></mxGeometry></mxCell><mxCell id=\"67\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;exitX=0.75;exitY=1;entryX=0.5;entryY=0;endArrow=none;endFill=0;jettySize=auto;orthogonalLoop=1;fontSize=12;\" parent=\"1\" source=\"33\" target=\"64\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"33\" value=\"Recurrent Neural Networks (RNN)\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;strokeColor=#000000;fontSize=12;fontColor=#FFFFFF;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"170\" y=\"440\" width=\"120\" height=\"40\" as=\"geometry\"/></mxCell><mxCell id=\"35\" value=\"Generative Adversarial Networks (GAN)\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#1F6286;strokeColor=#000000;fontSize=12;fontColor=#FFFFFF;gradientColor=none;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"330\" y=\"440\" width=\"120\" height=\"40\" as=\"geometry\"/></mxCell><mxCell id=\"36\" value=\"Autoencoders\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#878787;strokeColor=#000000;fontSize=12;fontColor=#FFFFFF;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"480\" y=\"440\" width=\"120\" height=\"40\" as=\"geometry\"/></mxCell><mxCell id=\"39\" value=\"Perceptrons\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#878787;strokeColor=#000000;fontSize=12;fontColor=#FFFFFF;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"590\" y=\"370\" width=\"120\" height=\"40\" as=\"geometry\"/></mxCell><mxCell id=\"41\" value=\"Stacking\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#878787;strokeColor=#000000;fontSize=12;fontColor=#FFFFFF;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"750\" y=\"90\" width=\"120\" height=\"40\" as=\"geometry\"/></mxCell><mxCell id=\"98\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;exitX=1;exitY=0.5;entryX=0.5;entryY=1;endArrow=none;endFill=0;jettySize=auto;orthogonalLoop=1;fontSize=12;\" parent=\"1\" source=\"42\" target=\"97\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"42\" value=\"Bagging\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#878787;strokeColor=#000000;fontSize=12;fontColor=#FFFFFF;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"820\" y=\"180\" width=\"120\" height=\"40\" as=\"geometry\"/></mxCell><mxCell id=\"104\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;exitX=0.5;exitY=1;entryX=0.5;entryY=0;endArrow=none;endFill=0;jettySize=auto;orthogonalLoop=1;fontSize=12;\" parent=\"1\" source=\"43\" target=\"103\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"105\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;exitX=0.75;exitY=1;entryX=0.5;entryY=0;endArrow=none;endFill=0;jettySize=auto;orthogonalLoop=1;fontSize=12;\" parent=\"1\" source=\"43\" target=\"101\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"106\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;exitX=1;exitY=0.75;entryX=0;entryY=0.5;endArrow=none;endFill=0;jettySize=auto;orthogonalLoop=1;fontSize=12;\" parent=\"1\" source=\"43\" target=\"100\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"107\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;exitX=1;exitY=0.25;entryX=0;entryY=0.5;endArrow=none;endFill=0;jettySize=auto;orthogonalLoop=1;fontSize=12;\" parent=\"1\" source=\"43\" target=\"99\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"43\" value=\"Boosting\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#878787;strokeColor=#000000;fontSize=12;fontColor=#FFFFFF;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"750\" y=\"270\" width=\"120\" height=\"40\" as=\"geometry\"/></mxCell><mxCell id=\"62\" value=\"LSM\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#ffffff;strokeColor=#000000;fontSize=12;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"130\" y=\"520\" width=\"80\" height=\"20\" as=\"geometry\"/></mxCell><mxCell id=\"63\" value=\"LSTM\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#ffffff;strokeColor=#000000;fontSize=12;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"190\" y=\"550\" width=\"80\" height=\"20\" as=\"geometry\"/></mxCell><mxCell id=\"64\" value=\"GRU\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#ffffff;strokeColor=#000000;fontSize=12;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"250\" y=\"520\" width=\"80\" height=\"20\" as=\"geometry\"/></mxCell><mxCell id=\"71\" value=\"\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;endArrow=none;endFill=0;jettySize=auto;orthogonalLoop=1;fontSize=12;\" parent=\"1\" source=\"69\" target=\"36\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"69\" value=\"seq2seq\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#ffffff;strokeColor=#000000;fontSize=12;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"500\" y=\"500\" width=\"80\" height=\"20\" as=\"geometry\"/></mxCell><mxCell id=\"80\" value=\"Q-Learning\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#ffffff;strokeColor=#000000;fontSize=12;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"80\" y=\"110\" width=\"80\" height=\"20\" as=\"geometry\"/></mxCell><mxCell id=\"81\" value=\"DQN\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#ffffff;strokeColor=#000000;fontSize=12;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"-50\" y=\"140\" width=\"80\" height=\"20\" as=\"geometry\"/></mxCell><mxCell id=\"82\" value=\"SARSA\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#ffffff;strokeColor=#000000;fontSize=12;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"-70\" y=\"190\" width=\"80\" height=\"20\" as=\"geometry\"/></mxCell><mxCell id=\"83\" value=\"Genetic Algorithm\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#ffffff;strokeColor=#000000;fontSize=12;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"-70\" y=\"260\" width=\"110\" height=\"20\" as=\"geometry\"/></mxCell><mxCell id=\"84\" value=\"A3C\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#ffffff;strokeColor=#000000;fontSize=12;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"60\" y=\"260\" width=\"80\" height=\"20\" as=\"geometry\"/></mxCell><mxCell id=\"97\" value=\"Random Forest\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#ffffff;strokeColor=#000000;fontSize=12;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"940\" y=\"130\" width=\"100\" height=\"20\" as=\"geometry\"/></mxCell><mxCell id=\"99\" value=\"XGBoost\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#ffffff;strokeColor=#000000;fontSize=12;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"910\" y=\"250\" width=\"80\" height=\"20\" as=\"geometry\"/></mxCell><mxCell id=\"100\" value=\"LightGBM\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#ffffff;strokeColor=#000000;fontSize=12;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"920\" y=\"310\" width=\"80\" height=\"20\" as=\"geometry\"/></mxCell><mxCell id=\"101\" value=\"CatBoost\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#ffffff;strokeColor=#000000;fontSize=12;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"860\" y=\"360\" width=\"80\" height=\"20\" as=\"geometry\"/></mxCell><mxCell id=\"103\" value=\"AdaBoost\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#ffffff;strokeColor=#000000;fontSize=12;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"750\" y=\"350\" width=\"80\" height=\"20\" as=\"geometry\"/></mxCell><mxCell id=\"109\" value=\"Linear&lt;br&gt;Regression\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#ffffff;strokeColor=#000000;fontSize=12;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"-105\" y=\"-200\" width=\"70\" height=\"40\" as=\"geometry\"/></mxCell><mxCell id=\"110\" value=\"Polynomial&lt;br&gt;Regression\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#ffffff;strokeColor=#000000;fontSize=12;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"10\" y=\"-200\" width=\"80\" height=\"40\" as=\"geometry\"/></mxCell><mxCell id=\"112\" value=\"Ridge/Lasso&lt;br&gt;Regression\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#ffffff;strokeColor=#000000;fontSize=12;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"-160\" y=\"-120\" width=\"80\" height=\"40\" as=\"geometry\"/></mxCell><mxCell id=\"117\" value=\"K-NN\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#ffffff;strokeColor=#000000;fontSize=12;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"155\" y=\"-110\" width=\"80\" height=\"20\" as=\"geometry\"/></mxCell><mxCell id=\"118\" value=\"Naive Bayes\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#ffffff;strokeColor=#000000;fontSize=12;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"125\" y=\"-160\" width=\"80\" height=\"20\" as=\"geometry\"/></mxCell><mxCell id=\"119\" value=\"SVM\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#ffffff;strokeColor=#000000;fontSize=12;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"275\" y=\"-240\" width=\"80\" height=\"20\" as=\"geometry\"/></mxCell><mxCell id=\"120\" value=\"Decision&lt;br&gt;Trees\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#ffffff;strokeColor=#000000;fontSize=12;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"345\" y=\"-210\" width=\"65\" height=\"40\" as=\"geometry\"/></mxCell><mxCell id=\"121\" value=\"Logistic&lt;br&gt;Regression\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#ffffff;strokeColor=#000000;fontSize=12;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"155\" y=\"-220\" width=\"80\" height=\"40\" as=\"geometry\"/></mxCell><mxCell id=\"129\" value=\"K-Means\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#ffffff;strokeColor=#000000;fontSize=12;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"510\" y=\"-230\" width=\"80\" height=\"20\" as=\"geometry\"/></mxCell><mxCell id=\"137\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;exitX=0.5;exitY=1;entryX=0.5;entryY=0;endArrow=none;endFill=0;jettySize=auto;orthogonalLoop=1;fontSize=12;\" parent=\"1\" source=\"130\" target=\"11\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"130\" value=\"DBSCAN\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#ffffff;strokeColor=#000000;fontSize=12;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"580\" y=\"-270\" width=\"80\" height=\"20\" as=\"geometry\"/></mxCell><mxCell id=\"138\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;exitX=0.5;exitY=1;entryX=0.75;entryY=0;endArrow=none;endFill=0;jettySize=auto;orthogonalLoop=1;fontSize=12;\" parent=\"1\" source=\"131\" target=\"11\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"131\" value=\"Agglomerative\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#ffffff;strokeColor=#000000;fontSize=12;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"650\" y=\"-230\" width=\"90\" height=\"20\" as=\"geometry\"/></mxCell><mxCell id=\"133\" value=\"Fuzzy C-Means\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#ffffff;strokeColor=#000000;fontSize=12;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"470\" y=\"-110\" width=\"90\" height=\"20\" as=\"geometry\"/></mxCell><mxCell id=\"134\" value=\"Mean Shift\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#ffffff;strokeColor=#000000;fontSize=12;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"455\" y=\"-200\" width=\"90\" height=\"20\" as=\"geometry\"/></mxCell><mxCell id=\"149\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;exitX=0;exitY=0.5;entryX=0.75;entryY=0;endArrow=none;endFill=0;jettySize=auto;orthogonalLoop=1;fontSize=12;\" parent=\"1\" source=\"143\" target=\"15\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"143\" value=\"Euclat\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#ffffff;strokeColor=#000000;fontSize=12;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"900\" y=\"-200\" width=\"90\" height=\"20\" as=\"geometry\"/></mxCell><mxCell id=\"148\" value=\"\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;endArrow=none;endFill=0;jettySize=auto;orthogonalLoop=1;fontSize=12;\" parent=\"1\" source=\"144\" target=\"15\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"144\" value=\"Apriori\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#ffffff;strokeColor=#000000;fontSize=12;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"920\" y=\"-140\" width=\"90\" height=\"20\" as=\"geometry\"/></mxCell><mxCell id=\"147\" value=\"\" style=\"edgeStyle=orthogonalEdgeStyle;curved=1;rounded=0;html=1;endArrow=none;endFill=0;jettySize=auto;orthogonalLoop=1;fontSize=12;\" parent=\"1\" source=\"145\" target=\"15\" edge=\"1\"><mxGeometry relative=\"1\" as=\"geometry\"/></mxCell><mxCell id=\"145\" value=\"FP Growth\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#ffffff;strokeColor=#000000;fontSize=12;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"775\" y=\"-220\" width=\"90\" height=\"20\" as=\"geometry\"/></mxCell><mxCell id=\"150\" value=\"t-SNE\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#ffffff;strokeColor=#000000;fontSize=12;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"880\" y=\"-90\" width=\"90\" height=\"20\" as=\"geometry\"/></mxCell><mxCell id=\"151\" value=\"PCA\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#ffffff;strokeColor=#000000;fontSize=12;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"935\" y=\"-60\" width=\"90\" height=\"20\" as=\"geometry\"/></mxCell><mxCell id=\"152\" value=\"LSA\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#ffffff;strokeColor=#000000;fontSize=12;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"955\" y=\"-30\" width=\"90\" height=\"20\" as=\"geometry\"/></mxCell><mxCell id=\"153\" value=\"SVD\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#ffffff;strokeColor=#000000;fontSize=12;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"940\" y=\"10\" width=\"90\" height=\"20\" as=\"geometry\"/></mxCell><mxCell id=\"154\" value=\"LDA\" style=\"rounded=1;whiteSpace=nowrap;html=1;fillColor=#ffffff;strokeColor=#000000;fontSize=12;\" parent=\"1\" vertex=\"1\"><mxGeometry x=\"815\" y=\"30\" width=\"90\" height=\"20\" as=\"geometry\"/></mxCell></root></mxGraphModel>"
  },
  {
    "path": "package.json",
    "content": "{\n  \"name\": \"ai-expert-roadmap\",\n  \"version\": \"1.0.0\",\n  \"description\": \"\",\n  \"scripts\": {\n    \"start\": \"vuepress dev . --no-cache\",\n    \"build\": \"vuepress build . --no-cache\",\n    \"export\": \"EXPORT_PDF=True && vuepress export && mv site.pdf ./public/roadmap/AI_Expert_Roadmap_2021.pdf\"\n  },\n  \"author\": \"Jürgen Stumpp\",\n  \"devDependencies\": {\n    \"vuepress\": \"^1.9.10\",\n    \"@snowdog/vuepress-plugin-pdf-export\": \"^1.1.0\"\n  },\n  \"main\": \"index.js\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git@github.com:AMAI-GmbH/AI-Expert-Roadmap.git\"\n  },\n  \"license\": \"MIT\"\n}\n"
  },
  {
    "path": "readme.md",
    "content": "<p align=\"center\">\n  <a href=\"https://github.com/AMAI-GmbH/AI-Expert-Roadmap\">\n    <img src=\"https://uploads-ssl.webflow.com/58e6a2b25c28230d367487ad/5c32232ecb585fcc5c4645e1_icon_machine-learning.svg\" alt=\"Developer Roadmap\" width=\"96\" height=\"96\">\n  </a>\n  <h2 align=\"center\">i.am.ai<br>AI Expert Roadmap</h2>\n  <p align=\"center\">Roadmap to becoming an Artificial Intelligence Expert in 2022</p>\n  <p align=\"center\">\n      <a href=\"https://twitter.com/home?status=https://i.am.ai/roadmap Roadmap to becoming an Artificial Intelligence Expert in 2022\" target=\"_blank\"><img src=\"https://img.shields.io/badge/tweet-blue.svg?logo=twitter&logoColor=white\" style=\"display: inherit;\"/></a>\n      <a href=\"https://www.linkedin.com/shareArticle?mini=true&url=https://i.am.ai/roadmap&title=&summary=Roadmap to becoming an Artificial Intelligence Expert in 2022&source=\" target=\"_blank\"><img src=\"https://img.shields.io/badge/post-blue.svg?logo=linkedin&logoColor=white\" style=\"display: inherit;\"/></a>\n      <a href=\"https://github.com/AMAI-GmbH/AI-Expert-Roadmap\"><img src=\"https://img.shields.io/badge/Roadmap-2022-yellowgreen.svg\" style=\"display: inherit;\"/></a>\n      <a href=\"https://am.ai?utm_source=GitHub&utm_medium=Referral&utm_campaign=AI+Expert+Roadmap+Badge\" target=\"_blank\"><img alt=\"AMAI GmbH\" src=\"https://img.shields.io/badge/Author-AMAI GmbH-blue.svg\" style=\"display: inherit;\"/></a>\n<a href=\"https://opensource.org/licenses/MIT/\" target=\"_blank\"><img alt=\"MIT License\" src=\"https://img.shields.io/badge/License-MIT-blue.svg\" style=\"display: inherit;\"/></a>\n  </p>\n  <br>\n</p>\n\nBelow you find a set of charts demonstrating the paths that you can take and the technologies that you would want to adopt in order to become a data scientist, machine learning or an AI expert. We made these charts for our new employees to make them AI Experts but we wanted to share them here to help the community.\n\nIf you are interested to become an AI EXPERT at [AMAI](https://www.linkedin.com/company/amai-gmbh/?utm_source=GitHub&utm_medium=Referral&utm_campaign=AI+Expert+Roadmap+Become+Expert) in Germany, or you want to [hire an AI Expert](https://am.ai?utm_source=GitHub&utm_medium=Referral&utm_campaign=AI+Expert+Roadmap+Hire+Expert), please say [hi@am.ai](mailto:hi@am.ai).\n\n## Note\n\n👉 An **interactive version with links to follow** about each bullet of the list can be found at [i.am.ai/roadmap](https://i.am.ai/roadmap?utm_source=GitHub&utm_medium=Referral&utm_campaign=AI+Expert+Roadmap+Interactive) 👈\n\nTo receive updates [star :star:](https://github.com/AMAI-GmbH/AI-Expert-Roadmap/stargazers) and watch :eyes: the [GitHub Repo](https://github.com/AMAI-GmbH/AI-Expert-Roadmap/) to get notified, when we add new content to stay on the top of the most recent research.\n\nFollow our [AI Newsletter](https://i.am.ai/newsletter?utm_source=GitHub&utm_medium=Referral&utm_campaign=AI+Expert+Roadmap+Newsletter) to stay up to date with the latest developments in AI. We cover new use cases and research topics.\n\n## Disclaimer\n\nThe purpose of these roadmaps is to give you an idea about the landscape and to guide you if you are confused about what to learn next and not to encourage you to pick what is hip and trendy. You should grow some understanding of why one tool would be better suited for some cases than the other and remember hip and trendy never means best suited for the job.\n\n## Introduction\n\n<p align=\"center\">\n  <a href=\"https://i.am.ai/roadmap#introduction?utm_source=GitHub&utm_medium=Referral&utm_campaign=AI+Expert+Roadmap+Introduction\" target=\"_blank\">\n      <img src=\"./images/intro.svg\"/>\n  </a>\n</p>\n\n## Fundamentals\n\n<p align=\"center\">\n  <a href=\"https://i.am.ai/roadmap#fundamentals?utm_source=GitHub&utm_medium=Referral&utm_campaign=AI+Expert+Roadmap+Fundamentals\" target=\"_blank\">\n      <img src=\"./images/fundamentals.svg\"/>\n  </a>\n</p>\n\n## Data Science Roadmap\n\n<p align=\"center\">\n  <a href=\"https://i.am.ai/roadmap#data-science-roadmap?utm_source=GitHub&utm_medium=Referral&utm_campaign=AI+Expert+Roadmap+DataScience\" target=\"_blank\">\n      <img src=\"./images/datascience.svg\"/>\n  </a>\n</p>\n\n## Machine Learning Roadmap\n\n<p align=\"center\">\n  <a href=\"https://i.am.ai/roadmap#machine-learning-roadmap?utm_source=GitHub&utm_medium=Referral&utm_campaign=AI+Expert+Roadmap+MachineLearning\" target=\"_blank\">\n      <img src=\"./images/machine_learning.svg\"/>\n  </a>\n</p>\n\n## Deep Learning Roadmap\n\n<p align=\"center\">\n  <a href=\"https://i.am.ai/roadmap#deep-learning-roadmap?utm_source=GitHub&utm_medium=Referral&utm_campaign=AI+Expert+Roadmap+DeepLearning\" target=\"_blank\">\n      <img src=\"./images/deep_learning.svg\"/>\n  </a>\n</p>\n\n## Data Engineer Roadmap\n\n<p align=\"center\">\n  <a href=\"https://i.am.ai/roadmap#data-engineer-roadmap?utm_source=GitHub&utm_medium=Referral&utm_campaign=AI+Expert+Roadmap+DataEngineer\" target=\"_blank\">\n      <img src=\"./images/data_engineer.svg\"/>\n  </a>\n</p>\n\n## Big Data Engineer Roadmap\n\n<p align=\"center\">\n  <a href=\"https://i.am.ai/roadmap#big-data-engineer-roadmap?utm_source=GitHub&utm_medium=Referral&utm_campaign=AI+Expert+Roadmap+BigDataEngineer\" target=\"_blank\">\n      <img src=\"./images/big_data_engineer.svg\"/>\n  </a>\n</p>\n\n## 🚦 Wrap Up\n\nIf you think any of the roadmaps can be improved, please do open a PR with any updates and submit any issues. Also, we will continue to improve this, so you might want to watch/star this repository to revisit.\n\n## 🙌 Contribution\n\n> Have a look at the [contribution docs](./contributing.md) for how to update any of the roadmaps\n\n* Open pull request with improvements\n* Discuss ideas in issues\n* Spread the word\n* Reach out with any feedback\n\n## Supported By\n\n<a href=\"https://www.linkedin.com/company/amai-gmbh/?utm_source=GitHub&utm_medium=Referral&utm_campaign=AI+Expert+Roadmap+SupportedBy\" target=\"_blank\"><img alt=\"AMAI GmbH\" src=\"./images/logos/amai.svg\" style=\"display: inherit;max-width: 150px;\"/></a>\n<a href=\"https://digitalhub-ai.de?utm_source=GitHub&utm_medium=Referral&utm_campaign=AI+Expert+Roadmap\" target=\"_blank\"><img alt=\"AMAI GmbH\" src=\"./images/logos/de-hub.svg\" style=\"display: inherit; max-width: 150px;\"/></a>\n"
  }
]