Skip to content

Instantly share code, notes, and snippets.

@parasj
Created January 9, 2020 21:22
Show Gist options
  • Save parasj/7c3529a8f1b363b83fdb91a61bc08112 to your computer and use it in GitHub Desktop.
Save parasj/7c3529a8f1b363b83fdb91a61bc08112 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg version="1.1" width="1200" height="2694" onload="init(evt)" viewBox="0 0 1200 2694" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><!--Flame graph stack visualization. See https://github.com/brendangregg/FlameGraph for latest version, and http://www.brendangregg.com/flamegraphs.html for examples.--><!--NOTES: --><defs><linearGradient id="background" y1="0" y2="1" x1="0" x2="0"><stop stop-color="#eeeeee" offset="5%"/><stop stop-color="#eeeeb0" offset="95%"/></linearGradient></defs><style type="text/css">
text { font-family:"Verdana"; font-size:12px; fill:rgb(0,0,0); }
#title { text-anchor:middle; font-size:17px; }
#search { opacity:0.1; cursor:pointer; }
#search:hover, #search.show { opacity:1; }
#subtitle { text-anchor:middle; font-color:rgb(160,160,160); }
#unzoom { cursor:pointer; }
#frames > *:hover { stroke:black; stroke-width:0.5; cursor:pointer; }
.hide { display:none; }
.parent { opacity:0.5; }
</style><script type="text/ecmascript"><![CDATA[var nametype = 'Function:';
var fontsize = 12;
var fontwidth = 0.59;
var xpad = 10;
var inverted = true;
var searchcolor = 'rgb(230,0,230)';
var fluiddrawing = true;]]><![CDATA["use strict";
var details, searchbtn, unzoombtn, matchedtxt, svg, searching, frames;
function init(evt) {
details = document.getElementById("details").firstChild;
searchbtn = document.getElementById("search");
unzoombtn = document.getElementById("unzoom");
matchedtxt = document.getElementById("matched");
svg = document.getElementsByTagName("svg")[0];
frames = document.getElementById("frames");
searching = 0;
// Use GET parameters to restore a flamegraph's state.
var restore_state = function() {
var params = get_params();
if (params.x && params.y)
zoom(find_group(document.querySelector('[x="' + params.x + '"][y="' + params.y + '"]')));
if (params.s)
search(params.s);
};
if (fluiddrawing) {
// Make width dynamic so the SVG fits its parent's width.
svg.removeAttribute("width");
// Edge requires us to have a viewBox that gets updated with size changes.
var isEdge = /Edge\/\d./i.test(navigator.userAgent);
if (!isEdge) {
svg.removeAttribute("viewBox");
}
var update_for_width_change = function() {
if (isEdge) {
svg.attributes.viewBox.value = "0 0 " + svg.width.baseVal.value + " " + svg.height.baseVal.value;
}
// Keep consistent padding on left and right of frames container.
frames.attributes.width.value = svg.width.baseVal.value - xpad * 2;
// Text truncation needs to be adjusted for the current width.
var el = frames.children;
for(var i = 0; i < el.length; i++) {
update_text(el[i]);
}
// Keep search elements at a fixed distance from right edge.
var svgWidth = svg.width.baseVal.value;
searchbtn.attributes.x.value = svgWidth - xpad - 100;
matchedtxt.attributes.x.value = svgWidth - xpad - 100;
};
window.addEventListener('resize', function() {
update_for_width_change();
});
// This needs to be done asynchronously for Safari to work.
setTimeout(function() {
unzoom();
update_for_width_change();
restore_state();
}, 0);
} else {
restore_state();
}
}
// event listeners
window.addEventListener("click", function(e) {
var target = find_group(e.target);
if (target) {
if (target.nodeName == "a") {
if (e.ctrlKey === false) return;
e.preventDefault();
}
if (target.classList.contains("parent")) unzoom();
zoom(target);
// set parameters for zoom state
var el = target.querySelector("rect");
if (el && el.attributes && el.attributes.y && el.attributes._orig_x) {
var params = get_params()
params.x = el.attributes._orig_x.value;
params.y = el.attributes.y.value;
history.replaceState(null, null, parse_params(params));
}
}
else if (e.target.id == "unzoom") {
unzoom();
// remove zoom state
var params = get_params();
if (params.x) delete params.x;
if (params.y) delete params.y;
history.replaceState(null, null, parse_params(params));
}
else if (e.target.id == "search") search_prompt();
}, false)
// mouse-over for info
// show
window.addEventListener("mouseover", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = nametype + " " + g_to_text(target);
}, false)
// clear
window.addEventListener("mouseout", function(e) {
var target = find_group(e.target);
if (target) details.nodeValue = ' ';
}, false)
// ctrl-F for search
window.addEventListener("keydown",function (e) {
if (e.keyCode === 114 || (e.ctrlKey && e.keyCode === 70)) {
e.preventDefault();
search_prompt();
}
}, false)
// functions
function get_params() {
var params = {};
var paramsarr = window.location.search.substr(1).split('&');
for (var i = 0; i < paramsarr.length; ++i) {
var tmp = paramsarr[i].split("=");
if (!tmp[0] || !tmp[1]) continue;
params[tmp[0]] = decodeURIComponent(tmp[1]);
}
return params;
}
function parse_params(params) {
var uri = "?";
for (var key in params) {
uri += key + '=' + encodeURIComponent(params[key]) + '&';
}
if (uri.slice(-1) == "&")
uri = uri.substring(0, uri.length - 1);
if (uri == '?')
uri = window.location.href.split('?')[0];
return uri;
}
function find_child(node, selector) {
var children = node.querySelectorAll(selector);
if (children.length) return children[0];
return;
}
function find_group(node) {
var parent = node.parentElement;
if (!parent) return;
if (parent.id == "frames") return node;
return find_group(parent);
}
function orig_save(e, attr, val) {
if (e.attributes["_orig_" + attr] != undefined) return;
if (e.attributes[attr] == undefined) return;
if (val == undefined) val = e.attributes[attr].value;
e.setAttribute("_orig_" + attr, val);
}
function orig_load(e, attr) {
if (e.attributes["_orig_"+attr] == undefined) return;
e.attributes[attr].value = e.attributes["_orig_" + attr].value;
e.removeAttribute("_orig_" + attr);
}
function g_to_text(e) {
var text = find_child(e, "title").firstChild.nodeValue;
return (text)
}
function g_to_func(e) {
var func = g_to_text(e);
// if there's any manipulation we want to do to the function
// name before it's searched, do it here before returning.
return (func);
}
function update_text(e) {
var r = find_child(e, "rect");
var t = find_child(e, "text");
var w = parseFloat(r.attributes.width.value) * frames.attributes.width.value / 100 - 3;
var txt = find_child(e, "title").textContent.replace(/\([^(]*\)$/,"");
t.attributes.x.value = format_percent((parseFloat(r.attributes.x.value) + (100 * 3 / frames.attributes.width.value)));
// Smaller than this size won't fit anything
if (w < 2 * fontsize * fontwidth) {
t.textContent = "";
return;
}
t.textContent = txt;
// Fit in full text width
if (/^ *\$/.test(txt) || t.getComputedTextLength() < w)
return;
for (var x = txt.length - 2; x > 0; x--) {
if (t.getSubStringLength(0, x + 2) <= w) {
t.textContent = txt.substring(0, x) + "..";
return;
}
}
t.textContent = "";
}
// zoom
function zoom_reset(e) {
if (e.attributes != undefined) {
orig_load(e, "x");
orig_load(e, "width");
}
if (e.childNodes == undefined) return;
for(var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_reset(c[i]);
}
}
function zoom_child(e, x, ratio) {
if (e.attributes != undefined) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = format_percent((parseFloat(e.attributes.x.value) - x) * ratio);
if (e.tagName == "text") {
e.attributes.x.value = format_percent(parseFloat(find_child(e.parentNode, "rect[x]").attributes.x.value) + (100 * 3 / frames.attributes.width.value));
}
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = format_percent(parseFloat(e.attributes.width.value) * ratio);
}
}
if (e.childNodes == undefined) return;
for(var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_child(c[i], x, ratio);
}
}
function zoom_parent(e) {
if (e.attributes) {
if (e.attributes.x != undefined) {
orig_save(e, "x");
e.attributes.x.value = "0.0%";
}
if (e.attributes.width != undefined) {
orig_save(e, "width");
e.attributes.width.value = "100.0%";
}
}
if (e.childNodes == undefined) return;
for(var i = 0, c = e.childNodes; i < c.length; i++) {
zoom_parent(c[i]);
}
}
function zoom(node) {
var attr = find_child(node, "rect").attributes;
var width = parseFloat(attr.width.value);
var xmin = parseFloat(attr.x.value);
var xmax = xmin + width;
var ymin = parseFloat(attr.y.value);
var ratio = 100 / width;
// XXX: Workaround for JavaScript float issues (fix me)
var fudge = 0.001;
unzoombtn.classList.remove("hide");
var el = frames.children;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var a = find_child(e, "rect").attributes;
var ex = parseFloat(a.x.value);
var ew = parseFloat(a.width.value);
// Is it an ancestor
if (!inverted) {
var upstack = parseFloat(a.y.value) > ymin;
} else {
var upstack = parseFloat(a.y.value) < ymin;
}
if (upstack) {
// Direct ancestor
if (ex <= xmin && (ex+ew+fudge) >= xmax) {
e.classList.add("parent");
zoom_parent(e);
update_text(e);
}
// not in current path
else
e.classList.add("hide");
}
// Children maybe
else {
// no common path
if (ex < xmin || ex + fudge >= xmax) {
e.classList.add("hide");
}
else {
zoom_child(e, xmin, ratio);
update_text(e);
}
}
}
}
function unzoom() {
unzoombtn.classList.add("hide");
var el = frames.children;
for(var i = 0; i < el.length; i++) {
el[i].classList.remove("parent");
el[i].classList.remove("hide");
zoom_reset(el[i]);
update_text(el[i]);
}
}
// search
function reset_search() {
var el = document.querySelectorAll("#frames rect");
for (var i = 0; i < el.length; i++) {
orig_load(el[i], "fill")
}
var params = get_params();
delete params.s;
history.replaceState(null, null, parse_params(params));
}
function search_prompt() {
if (!searching) {
var term = prompt("Enter a search term (regexp " +
"allowed, eg: ^ext4_)", "");
if (term != null) {
search(term)
}
} else {
reset_search();
searching = 0;
searchbtn.classList.remove("show");
searchbtn.firstChild.nodeValue = "Search"
matchedtxt.classList.add("hide");
matchedtxt.firstChild.nodeValue = ""
}
}
function search(term) {
var re = new RegExp(term);
var el = frames.children;
var matches = new Object();
var maxwidth = 0;
for (var i = 0; i < el.length; i++) {
var e = el[i];
var func = g_to_func(e);
var rect = find_child(e, "rect");
if (func == null || rect == null)
continue;
// Save max width. Only works as we have a root frame
var w = parseFloat(rect.attributes.width.value);
if (w > maxwidth)
maxwidth = w;
if (func.match(re)) {
// highlight
var x = parseFloat(rect.attributes.x.value);
orig_save(rect, "fill");
rect.attributes.fill.value = searchcolor;
// remember matches
if (matches[x] == undefined) {
matches[x] = w;
} else {
if (w > matches[x]) {
// overwrite with parent
matches[x] = w;
}
}
searching = 1;
}
}
if (!searching)
return;
var params = get_params();
params.s = term;
history.replaceState(null, null, parse_params(params));
searchbtn.classList.add("show");
searchbtn.firstChild.nodeValue = "Reset Search";
// calculate percent matched, excluding vertical overlap
var count = 0;
var lastx = -1;
var lastw = 0;
var keys = Array();
for (k in matches) {
if (matches.hasOwnProperty(k))
keys.push(k);
}
// sort the matched frames by their x location
// ascending, then width descending
keys.sort(function(a, b){
return a - b;
});
// Step through frames saving only the biggest bottom-up frames
// thanks to the sort order. This relies on the tree property
// where children are always smaller than their parents.
var fudge = 0.0001; // JavaScript floating point
for (var k in keys) {
var x = parseFloat(keys[k]);
var w = matches[keys[k]];
if (x >= lastx + lastw - fudge) {
count += w;
lastx = x;
lastw = w;
}
}
// display matched percent
matchedtxt.classList.remove("hide");
var pct = 100 * count / maxwidth;
if (pct != 100) pct = pct.toFixed(1);
matchedtxt.firstChild.nodeValue = "Matched: " + pct + "%";
}
function format_percent(n) {
return n.toFixed(4) + "%";
}
]]></script><rect x="0" y="0" width="100%" height="2694" fill="url(#background)"/><text id="title" x="50.0000%" y="24.00">py-spy</text><text id="details" x="10" y="2677.00"> </text><text id="unzoom" class="hide" x="10" y="24.00">Reset Zoom</text><text id="search" x="1090" y="24.00">Search</text><text id="matched" x="1090" y="2677.00"> </text><svg id="frames" x="10" width="1180"><g><title>&lt;module&gt; (tensorflow_core/python/__init__.py:47) (82 samples, 1.05%)</title><rect x="0.8452%" y="436" width="1.0501%" height="15" fill="rgb(227,0,7)"/><text x="1.0952%" y="446.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (82 samples, 1.05%)</title><rect x="0.8452%" y="452" width="1.0501%" height="15" fill="rgb(217,0,24)"/><text x="1.0952%" y="462.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (82 samples, 1.05%)</title><rect x="0.8452%" y="468" width="1.0501%" height="15" fill="rgb(221,193,54)"/><text x="1.0952%" y="478.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (82 samples, 1.05%)</title><rect x="0.8452%" y="484" width="1.0501%" height="15" fill="rgb(248,212,6)"/><text x="1.0952%" y="494.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (81 samples, 1.04%)</title><rect x="0.8580%" y="500" width="1.0373%" height="15" fill="rgb(208,68,35)"/><text x="1.1080%" y="510.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (81 samples, 1.04%)</title><rect x="0.8580%" y="516" width="1.0373%" height="15" fill="rgb(232,128,0)"/><text x="1.1080%" y="526.50"></text></g><g><title>&lt;module&gt; (tensorflow_core/python/__init__.py:49) (188 samples, 2.41%)</title><rect x="1.8952%" y="436" width="2.4075%" height="15" fill="rgb(207,160,47)"/><text x="2.1452%" y="446.50">&lt;m..</text></g><g><title>_handle_fromlist (&lt;frozen importlib._bootstrap&gt;:1035) (188 samples, 2.41%)</title><rect x="1.8952%" y="452" width="2.4075%" height="15" fill="rgb(228,23,34)"/><text x="2.1452%" y="462.50">_h..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (188 samples, 2.41%)</title><rect x="1.8952%" y="468" width="2.4075%" height="15" fill="rgb(218,30,26)"/><text x="2.1452%" y="478.50">_c..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (188 samples, 2.41%)</title><rect x="1.8952%" y="484" width="2.4075%" height="15" fill="rgb(220,122,19)"/><text x="2.1452%" y="494.50">_f..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (188 samples, 2.41%)</title><rect x="1.8952%" y="500" width="2.4075%" height="15" fill="rgb(250,228,42)"/><text x="2.1452%" y="510.50">_f..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (188 samples, 2.41%)</title><rect x="1.8952%" y="516" width="2.4075%" height="15" fill="rgb(240,193,28)"/><text x="2.1452%" y="526.50">_l..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (188 samples, 2.41%)</title><rect x="1.8952%" y="532" width="2.4075%" height="15" fill="rgb(216,20,37)"/><text x="2.1452%" y="542.50">ex..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (188 samples, 2.41%)</title><rect x="1.8952%" y="548" width="2.4075%" height="15" fill="rgb(206,188,39)"/><text x="2.1452%" y="558.50">_c..</text></g><g><title>&lt;module&gt; (tensorflow_core/python/pywrap_tensorflow.py:58) (188 samples, 2.41%)</title><rect x="1.8952%" y="564" width="2.4075%" height="15" fill="rgb(217,207,13)"/><text x="2.1452%" y="574.50">&lt;m..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (188 samples, 2.41%)</title><rect x="1.8952%" y="580" width="2.4075%" height="15" fill="rgb(231,73,38)"/><text x="2.1452%" y="590.50">_f..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (188 samples, 2.41%)</title><rect x="1.8952%" y="596" width="2.4075%" height="15" fill="rgb(225,20,46)"/><text x="2.1452%" y="606.50">_f..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (188 samples, 2.41%)</title><rect x="1.8952%" y="612" width="2.4075%" height="15" fill="rgb(210,31,41)"/><text x="2.1452%" y="622.50">_l..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (188 samples, 2.41%)</title><rect x="1.8952%" y="628" width="2.4075%" height="15" fill="rgb(221,200,47)"/><text x="2.1452%" y="638.50">ex..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (188 samples, 2.41%)</title><rect x="1.8952%" y="644" width="2.4075%" height="15" fill="rgb(226,26,5)"/><text x="2.1452%" y="654.50">_c..</text></g><g><title>&lt;module&gt; (tensorflow_core/python/pywrap_tensorflow_internal.py:28) (183 samples, 2.34%)</title><rect x="1.9593%" y="660" width="2.3434%" height="15" fill="rgb(249,33,26)"/><text x="2.2093%" y="670.50">&lt;..</text></g><g><title>swig_import_helper (tensorflow_core/python/pywrap_tensorflow_internal.py:24) (183 samples, 2.34%)</title><rect x="1.9593%" y="676" width="2.3434%" height="15" fill="rgb(235,183,28)"/><text x="2.2093%" y="686.50">s..</text></g><g><title>load_module (imp.py:242) (183 samples, 2.34%)</title><rect x="1.9593%" y="692" width="2.3434%" height="15" fill="rgb(221,5,38)"/><text x="2.2093%" y="702.50">l..</text></g><g><title>load_dynamic (imp.py:342) (183 samples, 2.34%)</title><rect x="1.9593%" y="708" width="2.3434%" height="15" fill="rgb(247,18,42)"/><text x="2.2093%" y="718.50">l..</text></g><g><title>_load (&lt;frozen importlib._bootstrap&gt;:696) (183 samples, 2.34%)</title><rect x="1.9593%" y="724" width="2.3434%" height="15" fill="rgb(241,131,45)"/><text x="2.2093%" y="734.50">_..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:670) (183 samples, 2.34%)</title><rect x="1.9593%" y="740" width="2.3434%" height="15" fill="rgb(249,31,29)"/><text x="2.2093%" y="750.50">_..</text></g><g><title>module_from_spec (&lt;frozen importlib._bootstrap&gt;:583) (183 samples, 2.34%)</title><rect x="1.9593%" y="756" width="2.3434%" height="15" fill="rgb(225,111,53)"/><text x="2.2093%" y="766.50">m..</text></g><g><title>create_module (&lt;frozen importlib._bootstrap_external&gt;:1043) (183 samples, 2.34%)</title><rect x="1.9593%" y="772" width="2.3434%" height="15" fill="rgb(238,160,17)"/><text x="2.2093%" y="782.50">c..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (183 samples, 2.34%)</title><rect x="1.9593%" y="788" width="2.3434%" height="15" fill="rgb(214,148,48)"/><text x="2.2093%" y="798.50">_..</text></g><g><title>&lt;module&gt; (pkg_resources/__init__.py:3251) (142 samples, 1.82%)</title><rect x="4.4308%" y="724" width="1.8184%" height="15" fill="rgb(232,36,49)"/><text x="4.6808%" y="734.50">&lt;..</text></g><g><title>_call_aside (pkg_resources/__init__.py:3235) (142 samples, 1.82%)</title><rect x="4.4308%" y="740" width="1.8184%" height="15" fill="rgb(209,103,24)"/><text x="4.6808%" y="750.50">_..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (191 samples, 2.45%)</title><rect x="4.3796%" y="548" width="2.4459%" height="15" fill="rgb(229,88,8)"/><text x="4.6296%" y="558.50">_f..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (191 samples, 2.45%)</title><rect x="4.3796%" y="564" width="2.4459%" height="15" fill="rgb(213,181,19)"/><text x="4.6296%" y="574.50">_f..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (191 samples, 2.45%)</title><rect x="4.3796%" y="580" width="2.4459%" height="15" fill="rgb(254,191,54)"/><text x="4.6296%" y="590.50">_l..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (191 samples, 2.45%)</title><rect x="4.3796%" y="596" width="2.4459%" height="15" fill="rgb(241,83,37)"/><text x="4.6296%" y="606.50">ex..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (191 samples, 2.45%)</title><rect x="4.3796%" y="612" width="2.4459%" height="15" fill="rgb(233,36,39)"/><text x="4.6296%" y="622.50">_c..</text></g><g><title>&lt;module&gt; (protobuf/__init__.py:37) (191 samples, 2.45%)</title><rect x="4.3796%" y="628" width="2.4459%" height="15" fill="rgb(226,3,54)"/><text x="4.6296%" y="638.50">&lt;m..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (191 samples, 2.45%)</title><rect x="4.3796%" y="644" width="2.4459%" height="15" fill="rgb(245,192,40)"/><text x="4.6296%" y="654.50">_f..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (191 samples, 2.45%)</title><rect x="4.3796%" y="660" width="2.4459%" height="15" fill="rgb(238,167,29)"/><text x="4.6296%" y="670.50">_f..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (191 samples, 2.45%)</title><rect x="4.3796%" y="676" width="2.4459%" height="15" fill="rgb(232,182,51)"/><text x="4.6296%" y="686.50">_l..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (191 samples, 2.45%)</title><rect x="4.3796%" y="692" width="2.4459%" height="15" fill="rgb(231,60,39)"/><text x="4.6296%" y="702.50">ex..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (191 samples, 2.45%)</title><rect x="4.3796%" y="708" width="2.4459%" height="15" fill="rgb(208,69,12)"/><text x="4.6296%" y="718.50">_c..</text></g><g><title>&lt;module&gt; (tensorflow_core/core/framework/graph_pb2.py:7) (202 samples, 2.59%)</title><rect x="4.3796%" y="532" width="2.5868%" height="15" fill="rgb(235,93,37)"/><text x="4.6296%" y="542.50">&lt;m..</text></g><g><title>&lt;module&gt; (tensorflow_core/python/__init__.py:52) (212 samples, 2.71%)</title><rect x="4.3027%" y="436" width="2.7148%" height="15" fill="rgb(213,116,39)"/><text x="4.5527%" y="446.50">&lt;m..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (212 samples, 2.71%)</title><rect x="4.3027%" y="452" width="2.7148%" height="15" fill="rgb(222,207,29)"/><text x="4.5527%" y="462.50">_f..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (212 samples, 2.71%)</title><rect x="4.3027%" y="468" width="2.7148%" height="15" fill="rgb(206,96,30)"/><text x="4.5527%" y="478.50">_f..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (212 samples, 2.71%)</title><rect x="4.3027%" y="484" width="2.7148%" height="15" fill="rgb(218,138,4)"/><text x="4.5527%" y="494.50">_l..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (212 samples, 2.71%)</title><rect x="4.3027%" y="500" width="2.7148%" height="15" fill="rgb(250,191,14)"/><text x="4.5527%" y="510.50">ex..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (212 samples, 2.71%)</title><rect x="4.3027%" y="516" width="2.7148%" height="15" fill="rgb(239,60,40)"/><text x="4.5527%" y="526.50">_c..</text></g><g><title>&lt;module&gt; (tensorflow_core/python/__init__.py:63) (82 samples, 1.05%)</title><rect x="7.2096%" y="436" width="1.0501%" height="15" fill="rgb(206,27,48)"/><text x="7.4596%" y="446.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (82 samples, 1.05%)</title><rect x="7.2096%" y="452" width="1.0501%" height="15" fill="rgb(225,35,8)"/><text x="7.4596%" y="462.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (82 samples, 1.05%)</title><rect x="7.2096%" y="468" width="1.0501%" height="15" fill="rgb(250,213,24)"/><text x="7.4596%" y="478.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (82 samples, 1.05%)</title><rect x="7.2096%" y="484" width="1.0501%" height="15" fill="rgb(247,123,22)"/><text x="7.4596%" y="494.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (82 samples, 1.05%)</title><rect x="7.2096%" y="500" width="1.0501%" height="15" fill="rgb(231,138,38)"/><text x="7.4596%" y="510.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (82 samples, 1.05%)</title><rect x="7.2096%" y="516" width="1.0501%" height="15" fill="rgb(231,145,46)"/><text x="7.4596%" y="526.50"></text></g><g><title>&lt;module&gt; (tensorflow_core/python/training/optimizer.py:27) (94 samples, 1.20%)</title><rect x="8.3365%" y="1012" width="1.2037%" height="15" fill="rgb(251,118,11)"/><text x="8.5865%" y="1022.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (94 samples, 1.20%)</title><rect x="8.3365%" y="1028" width="1.2037%" height="15" fill="rgb(217,147,25)"/><text x="8.5865%" y="1038.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (94 samples, 1.20%)</title><rect x="8.3365%" y="1044" width="1.2037%" height="15" fill="rgb(247,81,37)"/><text x="8.5865%" y="1054.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (94 samples, 1.20%)</title><rect x="8.3365%" y="1060" width="1.2037%" height="15" fill="rgb(209,12,38)"/><text x="8.5865%" y="1070.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (94 samples, 1.20%)</title><rect x="8.3365%" y="1076" width="1.2037%" height="15" fill="rgb(227,1,9)"/><text x="8.5865%" y="1086.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (94 samples, 1.20%)</title><rect x="8.3365%" y="1092" width="1.2037%" height="15" fill="rgb(248,47,43)"/><text x="8.5865%" y="1102.50"></text></g><g><title>&lt;module&gt; (tensorflow_core/python/ops/standard_ops.py:105) (101 samples, 1.29%)</title><rect x="8.3365%" y="532" width="1.2934%" height="15" fill="rgb(221,10,30)"/><text x="8.5865%" y="542.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (101 samples, 1.29%)</title><rect x="8.3365%" y="548" width="1.2934%" height="15" fill="rgb(210,229,1)"/><text x="8.5865%" y="558.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (101 samples, 1.29%)</title><rect x="8.3365%" y="564" width="1.2934%" height="15" fill="rgb(222,148,37)"/><text x="8.5865%" y="574.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (101 samples, 1.29%)</title><rect x="8.3365%" y="580" width="1.2934%" height="15" fill="rgb(234,67,33)"/><text x="8.5865%" y="590.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (101 samples, 1.29%)</title><rect x="8.3365%" y="596" width="1.2934%" height="15" fill="rgb(247,98,35)"/><text x="8.5865%" y="606.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (101 samples, 1.29%)</title><rect x="8.3365%" y="612" width="1.2934%" height="15" fill="rgb(247,138,52)"/><text x="8.5865%" y="622.50"></text></g><g><title>&lt;module&gt; (tensorflow_core/python/ops/template.py:29) (101 samples, 1.29%)</title><rect x="8.3365%" y="628" width="1.2934%" height="15" fill="rgb(213,79,30)"/><text x="8.5865%" y="638.50"></text></g><g><title>_handle_fromlist (&lt;frozen importlib._bootstrap&gt;:1035) (101 samples, 1.29%)</title><rect x="8.3365%" y="644" width="1.2934%" height="15" fill="rgb(246,177,23)"/><text x="8.5865%" y="654.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (101 samples, 1.29%)</title><rect x="8.3365%" y="660" width="1.2934%" height="15" fill="rgb(230,62,27)"/><text x="8.5865%" y="670.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (101 samples, 1.29%)</title><rect x="8.3365%" y="676" width="1.2934%" height="15" fill="rgb(216,154,8)"/><text x="8.5865%" y="686.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (101 samples, 1.29%)</title><rect x="8.3365%" y="692" width="1.2934%" height="15" fill="rgb(244,35,45)"/><text x="8.5865%" y="702.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (101 samples, 1.29%)</title><rect x="8.3365%" y="708" width="1.2934%" height="15" fill="rgb(251,115,12)"/><text x="8.5865%" y="718.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (101 samples, 1.29%)</title><rect x="8.3365%" y="724" width="1.2934%" height="15" fill="rgb(240,54,50)"/><text x="8.5865%" y="734.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (101 samples, 1.29%)</title><rect x="8.3365%" y="740" width="1.2934%" height="15" fill="rgb(233,84,52)"/><text x="8.5865%" y="750.50"></text></g><g><title>&lt;module&gt; (tensorflow_core/python/training/tracking/util.py:51) (101 samples, 1.29%)</title><rect x="8.3365%" y="756" width="1.2934%" height="15" fill="rgb(207,117,47)"/><text x="8.5865%" y="766.50"></text></g><g><title>_handle_fromlist (&lt;frozen importlib._bootstrap&gt;:1035) (101 samples, 1.29%)</title><rect x="8.3365%" y="772" width="1.2934%" height="15" fill="rgb(249,43,39)"/><text x="8.5865%" y="782.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (101 samples, 1.29%)</title><rect x="8.3365%" y="788" width="1.2934%" height="15" fill="rgb(209,38,44)"/><text x="8.5865%" y="798.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (101 samples, 1.29%)</title><rect x="8.3365%" y="804" width="1.2934%" height="15" fill="rgb(236,212,23)"/><text x="8.5865%" y="814.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (101 samples, 1.29%)</title><rect x="8.3365%" y="820" width="1.2934%" height="15" fill="rgb(242,79,21)"/><text x="8.5865%" y="830.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (101 samples, 1.29%)</title><rect x="8.3365%" y="836" width="1.2934%" height="15" fill="rgb(211,96,35)"/><text x="8.5865%" y="846.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (101 samples, 1.29%)</title><rect x="8.3365%" y="852" width="1.2934%" height="15" fill="rgb(253,215,40)"/><text x="8.5865%" y="862.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (101 samples, 1.29%)</title><rect x="8.3365%" y="868" width="1.2934%" height="15" fill="rgb(211,81,21)"/><text x="8.5865%" y="878.50"></text></g><g><title>&lt;module&gt; (tensorflow_core/python/training/tracking/graph_view.py:27) (101 samples, 1.29%)</title><rect x="8.3365%" y="884" width="1.2934%" height="15" fill="rgb(208,190,38)"/><text x="8.5865%" y="894.50"></text></g><g><title>_handle_fromlist (&lt;frozen importlib._bootstrap&gt;:1035) (101 samples, 1.29%)</title><rect x="8.3365%" y="900" width="1.2934%" height="15" fill="rgb(235,213,38)"/><text x="8.5865%" y="910.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (101 samples, 1.29%)</title><rect x="8.3365%" y="916" width="1.2934%" height="15" fill="rgb(237,122,38)"/><text x="8.5865%" y="926.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (101 samples, 1.29%)</title><rect x="8.3365%" y="932" width="1.2934%" height="15" fill="rgb(244,218,35)"/><text x="8.5865%" y="942.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (101 samples, 1.29%)</title><rect x="8.3365%" y="948" width="1.2934%" height="15" fill="rgb(240,68,47)"/><text x="8.5865%" y="958.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (101 samples, 1.29%)</title><rect x="8.3365%" y="964" width="1.2934%" height="15" fill="rgb(210,16,53)"/><text x="8.5865%" y="974.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (101 samples, 1.29%)</title><rect x="8.3365%" y="980" width="1.2934%" height="15" fill="rgb(235,124,12)"/><text x="8.5865%" y="990.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (101 samples, 1.29%)</title><rect x="8.3365%" y="996" width="1.2934%" height="15" fill="rgb(224,169,11)"/><text x="8.5865%" y="1006.50"></text></g><g><title>&lt;module&gt; (tensorflow_core/python/data/ops/optional_ops.py:24) (86 samples, 1.10%)</title><rect x="10.0269%" y="1860" width="1.1013%" height="15" fill="rgb(250,166,2)"/><text x="10.2769%" y="1870.50"></text></g><g><title>_handle_fromlist (&lt;frozen importlib._bootstrap&gt;:1035) (86 samples, 1.10%)</title><rect x="10.0269%" y="1876" width="1.1013%" height="15" fill="rgb(242,216,29)"/><text x="10.2769%" y="1886.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (86 samples, 1.10%)</title><rect x="10.0269%" y="1892" width="1.1013%" height="15" fill="rgb(230,116,27)"/><text x="10.2769%" y="1902.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (86 samples, 1.10%)</title><rect x="10.0269%" y="1908" width="1.1013%" height="15" fill="rgb(228,99,48)"/><text x="10.2769%" y="1918.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (86 samples, 1.10%)</title><rect x="10.0269%" y="1924" width="1.1013%" height="15" fill="rgb(253,11,6)"/><text x="10.2769%" y="1934.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (86 samples, 1.10%)</title><rect x="10.0269%" y="1940" width="1.1013%" height="15" fill="rgb(247,143,39)"/><text x="10.2769%" y="1950.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (86 samples, 1.10%)</title><rect x="10.0269%" y="1956" width="1.1013%" height="15" fill="rgb(236,97,10)"/><text x="10.2769%" y="1966.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (86 samples, 1.10%)</title><rect x="10.0269%" y="1972" width="1.1013%" height="15" fill="rgb(233,208,19)"/><text x="10.2769%" y="1982.50"></text></g><g><title>&lt;module&gt; (tensorflow_core/python/data/util/structure.py:33) (86 samples, 1.10%)</title><rect x="10.0269%" y="1988" width="1.1013%" height="15" fill="rgb(216,164,2)"/><text x="10.2769%" y="1998.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (86 samples, 1.10%)</title><rect x="10.0269%" y="2004" width="1.1013%" height="15" fill="rgb(220,129,5)"/><text x="10.2769%" y="2014.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (86 samples, 1.10%)</title><rect x="10.0269%" y="2020" width="1.1013%" height="15" fill="rgb(242,17,10)"/><text x="10.2769%" y="2030.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (86 samples, 1.10%)</title><rect x="10.0269%" y="2036" width="1.1013%" height="15" fill="rgb(242,107,0)"/><text x="10.2769%" y="2046.50"></text></g><g><title>&lt;module&gt; (tensorflow_core/python/data/ops/iterator_ops.py:23) (88 samples, 1.13%)</title><rect x="10.0141%" y="1732" width="1.1269%" height="15" fill="rgb(251,28,31)"/><text x="10.2641%" y="1742.50"></text></g><g><title>_handle_fromlist (&lt;frozen importlib._bootstrap&gt;:1035) (88 samples, 1.13%)</title><rect x="10.0141%" y="1748" width="1.1269%" height="15" fill="rgb(233,223,10)"/><text x="10.2641%" y="1758.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (88 samples, 1.13%)</title><rect x="10.0141%" y="1764" width="1.1269%" height="15" fill="rgb(215,21,27)"/><text x="10.2641%" y="1774.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (88 samples, 1.13%)</title><rect x="10.0141%" y="1780" width="1.1269%" height="15" fill="rgb(232,23,21)"/><text x="10.2641%" y="1790.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (88 samples, 1.13%)</title><rect x="10.0141%" y="1796" width="1.1269%" height="15" fill="rgb(244,5,23)"/><text x="10.2641%" y="1806.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (88 samples, 1.13%)</title><rect x="10.0141%" y="1812" width="1.1269%" height="15" fill="rgb(226,81,46)"/><text x="10.2641%" y="1822.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (87 samples, 1.11%)</title><rect x="10.0269%" y="1828" width="1.1141%" height="15" fill="rgb(247,70,30)"/><text x="10.2769%" y="1838.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (87 samples, 1.11%)</title><rect x="10.0269%" y="1844" width="1.1141%" height="15" fill="rgb(212,68,19)"/><text x="10.2769%" y="1854.50"></text></g><g><title>&lt;module&gt; (tensorflow_core/python/data/ops/dataset_ops.py:38) (102 samples, 1.31%)</title><rect x="10.0141%" y="1604" width="1.3062%" height="15" fill="rgb(240,187,13)"/><text x="10.2641%" y="1614.50"></text></g><g><title>_handle_fromlist (&lt;frozen importlib._bootstrap&gt;:1035) (102 samples, 1.31%)</title><rect x="10.0141%" y="1620" width="1.3062%" height="15" fill="rgb(223,113,26)"/><text x="10.2641%" y="1630.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (102 samples, 1.31%)</title><rect x="10.0141%" y="1636" width="1.3062%" height="15" fill="rgb(206,192,2)"/><text x="10.2641%" y="1646.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (102 samples, 1.31%)</title><rect x="10.0141%" y="1652" width="1.3062%" height="15" fill="rgb(241,108,4)"/><text x="10.2641%" y="1662.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (102 samples, 1.31%)</title><rect x="10.0141%" y="1668" width="1.3062%" height="15" fill="rgb(247,173,49)"/><text x="10.2641%" y="1678.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (102 samples, 1.31%)</title><rect x="10.0141%" y="1684" width="1.3062%" height="15" fill="rgb(224,114,35)"/><text x="10.2641%" y="1694.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (102 samples, 1.31%)</title><rect x="10.0141%" y="1700" width="1.3062%" height="15" fill="rgb(245,159,27)"/><text x="10.2641%" y="1710.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (102 samples, 1.31%)</title><rect x="10.0141%" y="1716" width="1.3062%" height="15" fill="rgb(245,172,44)"/><text x="10.2641%" y="1726.50"></text></g><g><title>&lt;module&gt; (tensorflow_core/python/data/experimental/__init__.py:89) (118 samples, 1.51%)</title><rect x="9.9116%" y="1380" width="1.5111%" height="15" fill="rgb(236,23,11)"/><text x="10.1616%" y="1390.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (118 samples, 1.51%)</title><rect x="9.9116%" y="1396" width="1.5111%" height="15" fill="rgb(205,117,38)"/><text x="10.1616%" y="1406.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (118 samples, 1.51%)</title><rect x="9.9116%" y="1412" width="1.5111%" height="15" fill="rgb(237,72,25)"/><text x="10.1616%" y="1422.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (118 samples, 1.51%)</title><rect x="9.9116%" y="1428" width="1.5111%" height="15" fill="rgb(244,70,9)"/><text x="10.1616%" y="1438.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (118 samples, 1.51%)</title><rect x="9.9116%" y="1444" width="1.5111%" height="15" fill="rgb(217,125,39)"/><text x="10.1616%" y="1454.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (118 samples, 1.51%)</title><rect x="9.9116%" y="1460" width="1.5111%" height="15" fill="rgb(235,36,10)"/><text x="10.1616%" y="1470.50"></text></g><g><title>&lt;module&gt; (tensorflow_core/python/data/experimental/ops/batching.py:20) (118 samples, 1.51%)</title><rect x="9.9116%" y="1476" width="1.5111%" height="15" fill="rgb(251,123,47)"/><text x="10.1616%" y="1486.50"></text></g><g><title>_handle_fromlist (&lt;frozen importlib._bootstrap&gt;:1035) (118 samples, 1.51%)</title><rect x="9.9116%" y="1492" width="1.5111%" height="15" fill="rgb(221,13,13)"/><text x="10.1616%" y="1502.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (118 samples, 1.51%)</title><rect x="9.9116%" y="1508" width="1.5111%" height="15" fill="rgb(238,131,9)"/><text x="10.1616%" y="1518.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (118 samples, 1.51%)</title><rect x="9.9116%" y="1524" width="1.5111%" height="15" fill="rgb(211,50,8)"/><text x="10.1616%" y="1534.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (118 samples, 1.51%)</title><rect x="9.9116%" y="1540" width="1.5111%" height="15" fill="rgb(245,182,24)"/><text x="10.1616%" y="1550.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (118 samples, 1.51%)</title><rect x="9.9116%" y="1556" width="1.5111%" height="15" fill="rgb(242,14,37)"/><text x="10.1616%" y="1566.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (118 samples, 1.51%)</title><rect x="9.9116%" y="1572" width="1.5111%" height="15" fill="rgb(246,228,12)"/><text x="10.1616%" y="1582.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (118 samples, 1.51%)</title><rect x="9.9116%" y="1588" width="1.5111%" height="15" fill="rgb(213,55,15)"/><text x="10.1616%" y="1598.50"></text></g><g><title>&lt;module&gt; (tensorflow_core/python/autograph/__init__.py:35) (141 samples, 1.81%)</title><rect x="9.6811%" y="756" width="1.8056%" height="15" fill="rgb(209,9,3)"/><text x="9.9311%" y="766.50">&lt;..</text></g><g><title>_handle_fromlist (&lt;frozen importlib._bootstrap&gt;:1035) (141 samples, 1.81%)</title><rect x="9.6811%" y="772" width="1.8056%" height="15" fill="rgb(230,59,30)"/><text x="9.9311%" y="782.50">_..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (141 samples, 1.81%)</title><rect x="9.6811%" y="788" width="1.8056%" height="15" fill="rgb(209,121,21)"/><text x="9.9311%" y="798.50">_..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (141 samples, 1.81%)</title><rect x="9.6811%" y="804" width="1.8056%" height="15" fill="rgb(220,109,13)"/><text x="9.9311%" y="814.50">_..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (141 samples, 1.81%)</title><rect x="9.6811%" y="820" width="1.8056%" height="15" fill="rgb(232,18,1)"/><text x="9.9311%" y="830.50">_..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (141 samples, 1.81%)</title><rect x="9.6811%" y="836" width="1.8056%" height="15" fill="rgb(215,41,42)"/><text x="9.9311%" y="846.50">_..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (141 samples, 1.81%)</title><rect x="9.6811%" y="852" width="1.8056%" height="15" fill="rgb(224,123,36)"/><text x="9.9311%" y="862.50">e..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (141 samples, 1.81%)</title><rect x="9.6811%" y="868" width="1.8056%" height="15" fill="rgb(240,125,3)"/><text x="9.9311%" y="878.50">_..</text></g><g><title>&lt;module&gt; (tensorflow_core/python/autograph/operators/__init__.py:40) (141 samples, 1.81%)</title><rect x="9.6811%" y="884" width="1.8056%" height="15" fill="rgb(205,98,50)"/><text x="9.9311%" y="894.50">&lt;..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (141 samples, 1.81%)</title><rect x="9.6811%" y="900" width="1.8056%" height="15" fill="rgb(205,185,37)"/><text x="9.9311%" y="910.50">_..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (141 samples, 1.81%)</title><rect x="9.6811%" y="916" width="1.8056%" height="15" fill="rgb(238,207,15)"/><text x="9.9311%" y="926.50">_..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (141 samples, 1.81%)</title><rect x="9.6811%" y="932" width="1.8056%" height="15" fill="rgb(213,199,42)"/><text x="9.9311%" y="942.50">_..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (141 samples, 1.81%)</title><rect x="9.6811%" y="948" width="1.8056%" height="15" fill="rgb(235,201,11)"/><text x="9.9311%" y="958.50">e..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (141 samples, 1.81%)</title><rect x="9.6811%" y="964" width="1.8056%" height="15" fill="rgb(207,46,11)"/><text x="9.9311%" y="974.50">_..</text></g><g><title>&lt;module&gt; (tensorflow_core/python/autograph/operators/control_flow.py:65) (141 samples, 1.81%)</title><rect x="9.6811%" y="980" width="1.8056%" height="15" fill="rgb(241,35,35)"/><text x="9.9311%" y="990.50">&lt;..</text></g><g><title>_handle_fromlist (&lt;frozen importlib._bootstrap&gt;:1035) (141 samples, 1.81%)</title><rect x="9.6811%" y="996" width="1.8056%" height="15" fill="rgb(243,32,47)"/><text x="9.9311%" y="1006.50">_..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (141 samples, 1.81%)</title><rect x="9.6811%" y="1012" width="1.8056%" height="15" fill="rgb(247,202,23)"/><text x="9.9311%" y="1022.50">_..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (141 samples, 1.81%)</title><rect x="9.6811%" y="1028" width="1.8056%" height="15" fill="rgb(219,102,11)"/><text x="9.9311%" y="1038.50">_..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (141 samples, 1.81%)</title><rect x="9.6811%" y="1044" width="1.8056%" height="15" fill="rgb(243,110,44)"/><text x="9.9311%" y="1054.50">_..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (141 samples, 1.81%)</title><rect x="9.6811%" y="1060" width="1.8056%" height="15" fill="rgb(222,74,54)"/><text x="9.9311%" y="1070.50">_..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (141 samples, 1.81%)</title><rect x="9.6811%" y="1076" width="1.8056%" height="15" fill="rgb(216,99,12)"/><text x="9.9311%" y="1086.50">e..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (141 samples, 1.81%)</title><rect x="9.6811%" y="1092" width="1.8056%" height="15" fill="rgb(226,22,26)"/><text x="9.9311%" y="1102.50">_..</text></g><g><title>&lt;module&gt; (tensorflow_core/python/autograph/operators/py_builtins.py:30) (137 samples, 1.75%)</title><rect x="9.7324%" y="1108" width="1.7544%" height="15" fill="rgb(217,163,10)"/><text x="9.9824%" y="1118.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (137 samples, 1.75%)</title><rect x="9.7324%" y="1124" width="1.7544%" height="15" fill="rgb(213,25,53)"/><text x="9.9824%" y="1134.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:953) (137 samples, 1.75%)</title><rect x="9.7324%" y="1140" width="1.7544%" height="15" fill="rgb(252,105,26)"/><text x="9.9824%" y="1150.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (137 samples, 1.75%)</title><rect x="9.7324%" y="1156" width="1.7544%" height="15" fill="rgb(220,39,43)"/><text x="9.9824%" y="1166.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (137 samples, 1.75%)</title><rect x="9.7324%" y="1172" width="1.7544%" height="15" fill="rgb(229,68,48)"/><text x="9.9824%" y="1182.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (137 samples, 1.75%)</title><rect x="9.7324%" y="1188" width="1.7544%" height="15" fill="rgb(252,8,32)"/><text x="9.9824%" y="1198.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (137 samples, 1.75%)</title><rect x="9.7324%" y="1204" width="1.7544%" height="15" fill="rgb(223,20,43)"/><text x="9.9824%" y="1214.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (137 samples, 1.75%)</title><rect x="9.7324%" y="1220" width="1.7544%" height="15" fill="rgb(229,81,49)"/><text x="9.9824%" y="1230.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (137 samples, 1.75%)</title><rect x="9.7324%" y="1236" width="1.7544%" height="15" fill="rgb(236,28,36)"/><text x="9.9824%" y="1246.50"></text></g><g><title>&lt;module&gt; (tensorflow_core/python/data/__init__.py:25) (137 samples, 1.75%)</title><rect x="9.7324%" y="1252" width="1.7544%" height="15" fill="rgb(249,185,26)"/><text x="9.9824%" y="1262.50"></text></g><g><title>_handle_fromlist (&lt;frozen importlib._bootstrap&gt;:1035) (137 samples, 1.75%)</title><rect x="9.7324%" y="1268" width="1.7544%" height="15" fill="rgb(249,174,33)"/><text x="9.9824%" y="1278.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (137 samples, 1.75%)</title><rect x="9.7324%" y="1284" width="1.7544%" height="15" fill="rgb(233,201,37)"/><text x="9.9824%" y="1294.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (137 samples, 1.75%)</title><rect x="9.7324%" y="1300" width="1.7544%" height="15" fill="rgb(221,78,26)"/><text x="9.9824%" y="1310.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (137 samples, 1.75%)</title><rect x="9.7324%" y="1316" width="1.7544%" height="15" fill="rgb(250,127,30)"/><text x="9.9824%" y="1326.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (137 samples, 1.75%)</title><rect x="9.7324%" y="1332" width="1.7544%" height="15" fill="rgb(230,49,44)"/><text x="9.9824%" y="1342.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (137 samples, 1.75%)</title><rect x="9.7324%" y="1348" width="1.7544%" height="15" fill="rgb(229,67,23)"/><text x="9.9824%" y="1358.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (137 samples, 1.75%)</title><rect x="9.7324%" y="1364" width="1.7544%" height="15" fill="rgb(249,83,47)"/><text x="9.9824%" y="1374.50"></text></g><g><title>&lt;module&gt; (tensorflow_core/python/ops/standard_ops.py:25) (179 samples, 2.29%)</title><rect x="9.6811%" y="532" width="2.2922%" height="15" fill="rgb(215,43,3)"/><text x="9.9311%" y="542.50">&lt;..</text></g><g><title>_handle_fromlist (&lt;frozen importlib._bootstrap&gt;:1035) (179 samples, 2.29%)</title><rect x="9.6811%" y="548" width="2.2922%" height="15" fill="rgb(238,154,13)"/><text x="9.9311%" y="558.50">_..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (179 samples, 2.29%)</title><rect x="9.6811%" y="564" width="2.2922%" height="15" fill="rgb(219,56,2)"/><text x="9.9311%" y="574.50">_..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (179 samples, 2.29%)</title><rect x="9.6811%" y="580" width="2.2922%" height="15" fill="rgb(233,0,4)"/><text x="9.9311%" y="590.50">_..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (179 samples, 2.29%)</title><rect x="9.6811%" y="596" width="2.2922%" height="15" fill="rgb(235,30,7)"/><text x="9.9311%" y="606.50">_..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (179 samples, 2.29%)</title><rect x="9.6811%" y="612" width="2.2922%" height="15" fill="rgb(250,79,13)"/><text x="9.9311%" y="622.50">_..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (179 samples, 2.29%)</title><rect x="9.6811%" y="628" width="2.2922%" height="15" fill="rgb(211,146,34)"/><text x="9.9311%" y="638.50">e..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (179 samples, 2.29%)</title><rect x="9.6811%" y="644" width="2.2922%" height="15" fill="rgb(228,22,38)"/><text x="9.9311%" y="654.50">_..</text></g><g><title>&lt;module&gt; (tensorflow_core/python/autograph/__init__.py:35) (179 samples, 2.29%)</title><rect x="9.6811%" y="660" width="2.2922%" height="15" fill="rgb(235,168,5)"/><text x="9.9311%" y="670.50">&lt;..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (179 samples, 2.29%)</title><rect x="9.6811%" y="676" width="2.2922%" height="15" fill="rgb(221,155,16)"/><text x="9.9311%" y="686.50">_..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (179 samples, 2.29%)</title><rect x="9.6811%" y="692" width="2.2922%" height="15" fill="rgb(215,215,53)"/><text x="9.9311%" y="702.50">_..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (179 samples, 2.29%)</title><rect x="9.6811%" y="708" width="2.2922%" height="15" fill="rgb(223,4,10)"/><text x="9.9311%" y="718.50">_..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (179 samples, 2.29%)</title><rect x="9.6811%" y="724" width="2.2922%" height="15" fill="rgb(234,103,6)"/><text x="9.9311%" y="734.50">e..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (179 samples, 2.29%)</title><rect x="9.6811%" y="740" width="2.2922%" height="15" fill="rgb(227,97,0)"/><text x="9.9311%" y="750.50">_..</text></g><g><title>&lt;module&gt; (tensorflow_core/python/__init__.py:73) (311 samples, 3.98%)</title><rect x="8.2981%" y="436" width="3.9826%" height="15" fill="rgb(234,150,53)"/><text x="8.5481%" y="446.50">&lt;mod..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (310 samples, 3.97%)</title><rect x="8.3109%" y="452" width="3.9698%" height="15" fill="rgb(228,201,54)"/><text x="8.5609%" y="462.50">_fin..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (310 samples, 3.97%)</title><rect x="8.3109%" y="468" width="3.9698%" height="15" fill="rgb(222,22,37)"/><text x="8.5609%" y="478.50">_fin..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (310 samples, 3.97%)</title><rect x="8.3109%" y="484" width="3.9698%" height="15" fill="rgb(237,53,32)"/><text x="8.5609%" y="494.50">_loa..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (310 samples, 3.97%)</title><rect x="8.3109%" y="500" width="3.9698%" height="15" fill="rgb(233,25,53)"/><text x="8.5609%" y="510.50">exec..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (310 samples, 3.97%)</title><rect x="8.3109%" y="516" width="3.9698%" height="15" fill="rgb(210,40,34)"/><text x="8.5609%" y="526.50">_cal..</text></g><g><title>&lt;module&gt; (tensorflow_core/python/keras/engine/__init__.py:23) (136 samples, 1.74%)</title><rect x="12.8570%" y="1172" width="1.7416%" height="15" fill="rgb(241,220,44)"/><text x="13.1070%" y="1182.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (136 samples, 1.74%)</title><rect x="12.8570%" y="1188" width="1.7416%" height="15" fill="rgb(235,28,35)"/><text x="13.1070%" y="1198.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (136 samples, 1.74%)</title><rect x="12.8570%" y="1204" width="1.7416%" height="15" fill="rgb(210,56,17)"/><text x="13.1070%" y="1214.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (136 samples, 1.74%)</title><rect x="12.8570%" y="1220" width="1.7416%" height="15" fill="rgb(224,130,29)"/><text x="13.1070%" y="1230.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (136 samples, 1.74%)</title><rect x="12.8570%" y="1236" width="1.7416%" height="15" fill="rgb(235,212,8)"/><text x="13.1070%" y="1246.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (136 samples, 1.74%)</title><rect x="12.8570%" y="1252" width="1.7416%" height="15" fill="rgb(223,33,50)"/><text x="13.1070%" y="1262.50"></text></g><g><title>&lt;module&gt; (tensorflow_core/python/keras/engine/base_layer.py:56) (98 samples, 1.25%)</title><rect x="13.3436%" y="1268" width="1.2550%" height="15" fill="rgb(219,149,13)"/><text x="13.5936%" y="1278.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (98 samples, 1.25%)</title><rect x="13.3436%" y="1284" width="1.2550%" height="15" fill="rgb(250,156,29)"/><text x="13.5936%" y="1294.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:953) (98 samples, 1.25%)</title><rect x="13.3436%" y="1300" width="1.2550%" height="15" fill="rgb(216,193,19)"/><text x="13.5936%" y="1310.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (98 samples, 1.25%)</title><rect x="13.3436%" y="1316" width="1.2550%" height="15" fill="rgb(216,135,14)"/><text x="13.5936%" y="1326.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (98 samples, 1.25%)</title><rect x="13.3436%" y="1332" width="1.2550%" height="15" fill="rgb(241,47,5)"/><text x="13.5936%" y="1342.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (98 samples, 1.25%)</title><rect x="13.3436%" y="1348" width="1.2550%" height="15" fill="rgb(233,42,35)"/><text x="13.5936%" y="1358.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (98 samples, 1.25%)</title><rect x="13.3436%" y="1364" width="1.2550%" height="15" fill="rgb(231,13,6)"/><text x="13.5936%" y="1374.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (98 samples, 1.25%)</title><rect x="13.3436%" y="1380" width="1.2550%" height="15" fill="rgb(207,181,40)"/><text x="13.5936%" y="1390.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (98 samples, 1.25%)</title><rect x="13.3436%" y="1396" width="1.2550%" height="15" fill="rgb(254,173,49)"/><text x="13.5936%" y="1406.50"></text></g><g><title>&lt;module&gt; (chardet/universaldetector.py:47) (80 samples, 1.02%)</title><rect x="15.8279%" y="1812" width="1.0245%" height="15" fill="rgb(221,1,38)"/><text x="16.0779%" y="1822.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (80 samples, 1.02%)</title><rect x="15.8279%" y="1828" width="1.0245%" height="15" fill="rgb(206,124,46)"/><text x="16.0779%" y="1838.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (80 samples, 1.02%)</title><rect x="15.8279%" y="1844" width="1.0245%" height="15" fill="rgb(249,21,11)"/><text x="16.0779%" y="1854.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (80 samples, 1.02%)</title><rect x="15.8279%" y="1860" width="1.0245%" height="15" fill="rgb(222,201,40)"/><text x="16.0779%" y="1870.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (80 samples, 1.02%)</title><rect x="15.8279%" y="1876" width="1.0245%" height="15" fill="rgb(235,61,29)"/><text x="16.0779%" y="1886.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (80 samples, 1.02%)</title><rect x="15.8279%" y="1892" width="1.0245%" height="15" fill="rgb(219,207,3)"/><text x="16.0779%" y="1902.50"></text></g><g><title>&lt;module&gt; (requests/__init__.py:44) (104 samples, 1.33%)</title><rect x="15.5590%" y="1620" width="1.3318%" height="15" fill="rgb(222,56,46)"/><text x="15.8090%" y="1630.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (104 samples, 1.33%)</title><rect x="15.5590%" y="1636" width="1.3318%" height="15" fill="rgb(239,76,54)"/><text x="15.8090%" y="1646.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (104 samples, 1.33%)</title><rect x="15.5590%" y="1652" width="1.3318%" height="15" fill="rgb(231,124,27)"/><text x="15.8090%" y="1662.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (104 samples, 1.33%)</title><rect x="15.5590%" y="1668" width="1.3318%" height="15" fill="rgb(249,195,6)"/><text x="15.8090%" y="1678.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (104 samples, 1.33%)</title><rect x="15.5590%" y="1684" width="1.3318%" height="15" fill="rgb(237,174,47)"/><text x="15.8090%" y="1694.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (104 samples, 1.33%)</title><rect x="15.5590%" y="1700" width="1.3318%" height="15" fill="rgb(206,201,31)"/><text x="15.8090%" y="1710.50"></text></g><g><title>&lt;module&gt; (chardet/__init__.py:20) (104 samples, 1.33%)</title><rect x="15.5590%" y="1716" width="1.3318%" height="15" fill="rgb(231,57,52)"/><text x="15.8090%" y="1726.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (104 samples, 1.33%)</title><rect x="15.5590%" y="1732" width="1.3318%" height="15" fill="rgb(248,177,22)"/><text x="15.8090%" y="1742.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (104 samples, 1.33%)</title><rect x="15.5590%" y="1748" width="1.3318%" height="15" fill="rgb(215,211,37)"/><text x="15.8090%" y="1758.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (104 samples, 1.33%)</title><rect x="15.5590%" y="1764" width="1.3318%" height="15" fill="rgb(241,128,51)"/><text x="15.8090%" y="1774.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (93 samples, 1.19%)</title><rect x="15.6998%" y="1780" width="1.1909%" height="15" fill="rgb(227,165,31)"/><text x="15.9498%" y="1790.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (93 samples, 1.19%)</title><rect x="15.6998%" y="1796" width="1.1909%" height="15" fill="rgb(228,167,24)"/><text x="15.9498%" y="1806.50"></text></g><g><title>&lt;module&gt; (tensorflow_core/python/keras/callbacks.py:53) (249 samples, 3.19%)</title><rect x="14.5985%" y="1524" width="3.1886%" height="15" fill="rgb(228,143,12)"/><text x="14.8485%" y="1534.50">&lt;mo..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (249 samples, 3.19%)</title><rect x="14.5985%" y="1540" width="3.1886%" height="15" fill="rgb(249,149,8)"/><text x="14.8485%" y="1550.50">_fi..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (249 samples, 3.19%)</title><rect x="14.5985%" y="1556" width="3.1886%" height="15" fill="rgb(243,35,44)"/><text x="14.8485%" y="1566.50">_fi..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (249 samples, 3.19%)</title><rect x="14.5985%" y="1572" width="3.1886%" height="15" fill="rgb(246,89,9)"/><text x="14.8485%" y="1582.50">_lo..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (249 samples, 3.19%)</title><rect x="14.5985%" y="1588" width="3.1886%" height="15" fill="rgb(233,213,13)"/><text x="14.8485%" y="1598.50">exe..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (249 samples, 3.19%)</title><rect x="14.5985%" y="1604" width="3.1886%" height="15" fill="rgb(233,141,41)"/><text x="14.8485%" y="1614.50">_ca..</text></g><g><title>&lt;module&gt; (tensorflow_core/python/keras/distribute/distributed_training_utils.py:38) (251 samples, 3.21%)</title><rect x="14.5985%" y="1396" width="3.2142%" height="15" fill="rgb(239,167,4)"/><text x="14.8485%" y="1406.50">&lt;mo..</text></g><g><title>_handle_fromlist (&lt;frozen importlib._bootstrap&gt;:1035) (251 samples, 3.21%)</title><rect x="14.5985%" y="1412" width="3.2142%" height="15" fill="rgb(209,217,16)"/><text x="14.8485%" y="1422.50">_ha..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (251 samples, 3.21%)</title><rect x="14.5985%" y="1428" width="3.2142%" height="15" fill="rgb(219,88,35)"/><text x="14.8485%" y="1438.50">_ca..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (251 samples, 3.21%)</title><rect x="14.5985%" y="1444" width="3.2142%" height="15" fill="rgb(220,193,23)"/><text x="14.8485%" y="1454.50">_fi..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (251 samples, 3.21%)</title><rect x="14.5985%" y="1460" width="3.2142%" height="15" fill="rgb(230,90,52)"/><text x="14.8485%" y="1470.50">_fi..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (251 samples, 3.21%)</title><rect x="14.5985%" y="1476" width="3.2142%" height="15" fill="rgb(252,106,19)"/><text x="14.8485%" y="1486.50">_lo..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (251 samples, 3.21%)</title><rect x="14.5985%" y="1492" width="3.2142%" height="15" fill="rgb(206,74,20)"/><text x="14.8485%" y="1502.50">exe..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (251 samples, 3.21%)</title><rect x="14.5985%" y="1508" width="3.2142%" height="15" fill="rgb(230,138,44)"/><text x="14.8485%" y="1518.50">_ca..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:953) (389 samples, 4.98%)</title><rect x="12.8570%" y="1060" width="4.9814%" height="15" fill="rgb(235,182,43)"/><text x="13.1070%" y="1070.50">_find_..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (389 samples, 4.98%)</title><rect x="12.8570%" y="1076" width="4.9814%" height="15" fill="rgb(242,16,51)"/><text x="13.1070%" y="1086.50">_call_..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (389 samples, 4.98%)</title><rect x="12.8570%" y="1092" width="4.9814%" height="15" fill="rgb(248,9,4)"/><text x="13.1070%" y="1102.50">_find_..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (389 samples, 4.98%)</title><rect x="12.8570%" y="1108" width="4.9814%" height="15" fill="rgb(210,31,22)"/><text x="13.1070%" y="1118.50">_find_..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (389 samples, 4.98%)</title><rect x="12.8570%" y="1124" width="4.9814%" height="15" fill="rgb(239,54,39)"/><text x="13.1070%" y="1134.50">_load_..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (389 samples, 4.98%)</title><rect x="12.8570%" y="1140" width="4.9814%" height="15" fill="rgb(230,99,41)"/><text x="13.1070%" y="1150.50">exec_m..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (389 samples, 4.98%)</title><rect x="12.8570%" y="1156" width="4.9814%" height="15" fill="rgb(253,106,12)"/><text x="13.1070%" y="1166.50">_call_..</text></g><g><title>&lt;module&gt; (tensorflow_core/python/keras/engine/__init__.py:24) (253 samples, 3.24%)</title><rect x="14.5985%" y="1172" width="3.2399%" height="15" fill="rgb(213,46,41)"/><text x="14.8485%" y="1182.50">&lt;mo..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (253 samples, 3.24%)</title><rect x="14.5985%" y="1188" width="3.2399%" height="15" fill="rgb(215,133,35)"/><text x="14.8485%" y="1198.50">_fi..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (253 samples, 3.24%)</title><rect x="14.5985%" y="1204" width="3.2399%" height="15" fill="rgb(213,28,5)"/><text x="14.8485%" y="1214.50">_fi..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (253 samples, 3.24%)</title><rect x="14.5985%" y="1220" width="3.2399%" height="15" fill="rgb(215,77,49)"/><text x="14.8485%" y="1230.50">_lo..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (253 samples, 3.24%)</title><rect x="14.5985%" y="1236" width="3.2399%" height="15" fill="rgb(248,100,22)"/><text x="14.8485%" y="1246.50">exe..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (253 samples, 3.24%)</title><rect x="14.5985%" y="1252" width="3.2399%" height="15" fill="rgb(208,67,9)"/><text x="14.8485%" y="1262.50">_ca..</text></g><g><title>&lt;module&gt; (tensorflow_core/python/keras/engine/input_layer.py:25) (253 samples, 3.24%)</title><rect x="14.5985%" y="1268" width="3.2399%" height="15" fill="rgb(219,133,21)"/><text x="14.8485%" y="1278.50">&lt;mo..</text></g><g><title>_handle_fromlist (&lt;frozen importlib._bootstrap&gt;:1035) (253 samples, 3.24%)</title><rect x="14.5985%" y="1284" width="3.2399%" height="15" fill="rgb(246,46,29)"/><text x="14.8485%" y="1294.50">_ha..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (253 samples, 3.24%)</title><rect x="14.5985%" y="1300" width="3.2399%" height="15" fill="rgb(246,185,52)"/><text x="14.8485%" y="1310.50">_ca..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (253 samples, 3.24%)</title><rect x="14.5985%" y="1316" width="3.2399%" height="15" fill="rgb(252,136,11)"/><text x="14.8485%" y="1326.50">_fi..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (253 samples, 3.24%)</title><rect x="14.5985%" y="1332" width="3.2399%" height="15" fill="rgb(219,138,53)"/><text x="14.8485%" y="1342.50">_fi..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (253 samples, 3.24%)</title><rect x="14.5985%" y="1348" width="3.2399%" height="15" fill="rgb(211,51,23)"/><text x="14.8485%" y="1358.50">_lo..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (253 samples, 3.24%)</title><rect x="14.5985%" y="1364" width="3.2399%" height="15" fill="rgb(247,221,28)"/><text x="14.8485%" y="1374.50">exe..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (253 samples, 3.24%)</title><rect x="14.5985%" y="1380" width="3.2399%" height="15" fill="rgb(251,222,45)"/><text x="14.8485%" y="1390.50">_ca..</text></g><g><title>&lt;module&gt; (tensorflow_core/python/keras/utils/__init__.py:38) (435 samples, 5.57%)</title><rect x="12.8570%" y="932" width="5.5705%" height="15" fill="rgb(217,162,53)"/><text x="13.1070%" y="942.50">&lt;module..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (435 samples, 5.57%)</title><rect x="12.8570%" y="948" width="5.5705%" height="15" fill="rgb(229,93,14)"/><text x="13.1070%" y="958.50">_find_a..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (435 samples, 5.57%)</title><rect x="12.8570%" y="964" width="5.5705%" height="15" fill="rgb(209,67,49)"/><text x="13.1070%" y="974.50">_find_a..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (435 samples, 5.57%)</title><rect x="12.8570%" y="980" width="5.5705%" height="15" fill="rgb(213,87,29)"/><text x="13.1070%" y="990.50">_load_u..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (435 samples, 5.57%)</title><rect x="12.8570%" y="996" width="5.5705%" height="15" fill="rgb(205,151,52)"/><text x="13.1070%" y="1006.50">exec_mo..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (435 samples, 5.57%)</title><rect x="12.8570%" y="1012" width="5.5705%" height="15" fill="rgb(253,215,39)"/><text x="13.1070%" y="1022.50">_call_w..</text></g><g><title>&lt;module&gt; (tensorflow_core/python/keras/utils/multi_gpu_utils.py:22) (435 samples, 5.57%)</title><rect x="12.8570%" y="1028" width="5.5705%" height="15" fill="rgb(221,220,41)"/><text x="13.1070%" y="1038.50">&lt;module..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (435 samples, 5.57%)</title><rect x="12.8570%" y="1044" width="5.5705%" height="15" fill="rgb(218,133,21)"/><text x="13.1070%" y="1054.50">_find_a..</text></g><g><title>&lt;module&gt; (tensorflow_core/python/keras/__init__.py:26) (499 samples, 6.39%)</title><rect x="12.2807%" y="660" width="6.3901%" height="15" fill="rgb(221,193,43)"/><text x="12.5307%" y="670.50">&lt;module&gt;..</text></g><g><title>_handle_fromlist (&lt;frozen importlib._bootstrap&gt;:1035) (499 samples, 6.39%)</title><rect x="12.2807%" y="676" width="6.3901%" height="15" fill="rgb(240,128,52)"/><text x="12.5307%" y="686.50">_handle_..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (499 samples, 6.39%)</title><rect x="12.2807%" y="692" width="6.3901%" height="15" fill="rgb(253,114,12)"/><text x="12.5307%" y="702.50">_call_wi..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (499 samples, 6.39%)</title><rect x="12.2807%" y="708" width="6.3901%" height="15" fill="rgb(215,223,47)"/><text x="12.5307%" y="718.50">_find_an..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (499 samples, 6.39%)</title><rect x="12.2807%" y="724" width="6.3901%" height="15" fill="rgb(248,225,23)"/><text x="12.5307%" y="734.50">_find_an..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (499 samples, 6.39%)</title><rect x="12.2807%" y="740" width="6.3901%" height="15" fill="rgb(250,108,0)"/><text x="12.5307%" y="750.50">_load_un..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (499 samples, 6.39%)</title><rect x="12.2807%" y="756" width="6.3901%" height="15" fill="rgb(228,208,7)"/><text x="12.5307%" y="766.50">exec_mod..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (499 samples, 6.39%)</title><rect x="12.2807%" y="772" width="6.3901%" height="15" fill="rgb(244,45,10)"/><text x="12.5307%" y="782.50">_call_wi..</text></g><g><title>&lt;module&gt; (tensorflow_core/python/keras/activations.py:23) (490 samples, 6.27%)</title><rect x="12.3960%" y="788" width="6.2748%" height="15" fill="rgb(207,125,25)"/><text x="12.6460%" y="798.50">&lt;module&gt;..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (490 samples, 6.27%)</title><rect x="12.3960%" y="804" width="6.2748%" height="15" fill="rgb(210,195,18)"/><text x="12.6460%" y="814.50">_find_an..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:953) (490 samples, 6.27%)</title><rect x="12.3960%" y="820" width="6.2748%" height="15" fill="rgb(249,80,12)"/><text x="12.6460%" y="830.50">_find_an..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (490 samples, 6.27%)</title><rect x="12.3960%" y="836" width="6.2748%" height="15" fill="rgb(221,65,9)"/><text x="12.6460%" y="846.50">_call_wi..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (490 samples, 6.27%)</title><rect x="12.3960%" y="852" width="6.2748%" height="15" fill="rgb(235,49,36)"/><text x="12.6460%" y="862.50">_find_an..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (490 samples, 6.27%)</title><rect x="12.3960%" y="868" width="6.2748%" height="15" fill="rgb(225,32,20)"/><text x="12.6460%" y="878.50">_find_an..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (490 samples, 6.27%)</title><rect x="12.3960%" y="884" width="6.2748%" height="15" fill="rgb(215,141,46)"/><text x="12.6460%" y="894.50">_load_un..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (490 samples, 6.27%)</title><rect x="12.3960%" y="900" width="6.2748%" height="15" fill="rgb(250,160,47)"/><text x="12.6460%" y="910.50">exec_mod..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (490 samples, 6.27%)</title><rect x="12.3960%" y="916" width="6.2748%" height="15" fill="rgb(216,222,40)"/><text x="12.6460%" y="926.50">_call_wi..</text></g><g><title>&lt;module&gt; (tensorflow_core/python/__init__.py:83) (573 samples, 7.34%)</title><rect x="12.2807%" y="436" width="7.3377%" height="15" fill="rgb(234,217,39)"/><text x="12.5307%" y="446.50">&lt;module&gt; (..</text></g><g><title>_handle_fromlist (&lt;frozen importlib._bootstrap&gt;:1035) (573 samples, 7.34%)</title><rect x="12.2807%" y="452" width="7.3377%" height="15" fill="rgb(207,178,40)"/><text x="12.5307%" y="462.50">_handle_fr..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (573 samples, 7.34%)</title><rect x="12.2807%" y="468" width="7.3377%" height="15" fill="rgb(221,136,13)"/><text x="12.5307%" y="478.50">_call_with..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (573 samples, 7.34%)</title><rect x="12.2807%" y="484" width="7.3377%" height="15" fill="rgb(249,199,10)"/><text x="12.5307%" y="494.50">_find_and_..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (573 samples, 7.34%)</title><rect x="12.2807%" y="500" width="7.3377%" height="15" fill="rgb(249,222,13)"/><text x="12.5307%" y="510.50">_find_and_..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (573 samples, 7.34%)</title><rect x="12.2807%" y="516" width="7.3377%" height="15" fill="rgb(244,185,38)"/><text x="12.5307%" y="526.50">_load_unlo..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (573 samples, 7.34%)</title><rect x="12.2807%" y="532" width="7.3377%" height="15" fill="rgb(236,202,9)"/><text x="12.5307%" y="542.50">exec_modul..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (573 samples, 7.34%)</title><rect x="12.2807%" y="548" width="7.3377%" height="15" fill="rgb(250,229,37)"/><text x="12.5307%" y="558.50">_call_with..</text></g><g><title>&lt;module&gt; (tensorflow_core/python/keras/__init__.py:26) (573 samples, 7.34%)</title><rect x="12.2807%" y="564" width="7.3377%" height="15" fill="rgb(206,174,23)"/><text x="12.5307%" y="574.50">&lt;module&gt; (..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (573 samples, 7.34%)</title><rect x="12.2807%" y="580" width="7.3377%" height="15" fill="rgb(211,33,43)"/><text x="12.5307%" y="590.50">_find_and_..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (573 samples, 7.34%)</title><rect x="12.2807%" y="596" width="7.3377%" height="15" fill="rgb(245,58,50)"/><text x="12.5307%" y="606.50">_find_and_..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (573 samples, 7.34%)</title><rect x="12.2807%" y="612" width="7.3377%" height="15" fill="rgb(244,68,36)"/><text x="12.5307%" y="622.50">_load_unlo..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (573 samples, 7.34%)</title><rect x="12.2807%" y="628" width="7.3377%" height="15" fill="rgb(232,229,15)"/><text x="12.5307%" y="638.50">exec_modul..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (573 samples, 7.34%)</title><rect x="12.2807%" y="644" width="7.3377%" height="15" fill="rgb(254,30,23)"/><text x="12.5307%" y="654.50">_call_with..</text></g><g><title>&lt;module&gt; (tensorflow_core/__init__.py:40) (1,530 samples, 19.59%)</title><rect x="0.3201%" y="244" width="19.5928%" height="15" fill="rgb(235,160,14)"/><text x="0.5701%" y="254.50">&lt;module&gt; (tensorflow_core/__ini..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (1,530 samples, 19.59%)</title><rect x="0.3201%" y="260" width="19.5928%" height="15" fill="rgb(212,155,44)"/><text x="0.5701%" y="270.50">_find_and_load (&lt;frozen importl..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:959) (1,530 samples, 19.59%)</title><rect x="0.3201%" y="276" width="19.5928%" height="15" fill="rgb(226,2,50)"/><text x="0.5701%" y="286.50">_find_and_load_unlocked (&lt;froze..</text></g><g><title>__getattr__ (tensorflow/__init__.py:50) (1,530 samples, 19.59%)</title><rect x="0.3201%" y="292" width="19.5928%" height="15" fill="rgb(234,177,6)"/><text x="0.5701%" y="302.50">__getattr__ (tensorflow/__init_..</text></g><g><title>_load (tensorflow/__init__.py:44) (1,530 samples, 19.59%)</title><rect x="0.3201%" y="308" width="19.5928%" height="15" fill="rgb(217,24,9)"/><text x="0.5701%" y="318.50">_load (tensorflow/__init__.py:4..</text></g><g><title>import_module (importlib/__init__.py:127) (1,530 samples, 19.59%)</title><rect x="0.3201%" y="324" width="19.5928%" height="15" fill="rgb(220,13,46)"/><text x="0.5701%" y="334.50">import_module (importlib/__init..</text></g><g><title>_gcd_import (&lt;frozen importlib._bootstrap&gt;:1006) (1,530 samples, 19.59%)</title><rect x="0.3201%" y="340" width="19.5928%" height="15" fill="rgb(239,221,27)"/><text x="0.5701%" y="350.50">_gcd_import (&lt;frozen importlib...</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (1,530 samples, 19.59%)</title><rect x="0.3201%" y="356" width="19.5928%" height="15" fill="rgb(222,198,25)"/><text x="0.5701%" y="366.50">_find_and_load (&lt;frozen importl..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (1,529 samples, 19.58%)</title><rect x="0.3329%" y="372" width="19.5800%" height="15" fill="rgb(211,99,13)"/><text x="0.5829%" y="382.50">_find_and_load_unlocked (&lt;froze..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (1,529 samples, 19.58%)</title><rect x="0.3329%" y="388" width="19.5800%" height="15" fill="rgb(232,111,31)"/><text x="0.5829%" y="398.50">_load_unlocked (&lt;frozen importl..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (1,528 samples, 19.57%)</title><rect x="0.3458%" y="404" width="19.5672%" height="15" fill="rgb(245,82,37)"/><text x="0.5958%" y="414.50">exec_module (&lt;frozen importlib...</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (1,528 samples, 19.57%)</title><rect x="0.3458%" y="420" width="19.5672%" height="15" fill="rgb(227,149,46)"/><text x="0.5958%" y="430.50">_call_with_frames_removed (&lt;fro..</text></g><g><title>&lt;module&gt; (pandas/_libs/tslibs/__init__.py:3) (86 samples, 1.10%)</title><rect x="21.1167%" y="1556" width="1.1013%" height="15" fill="rgb(218,36,50)"/><text x="21.3667%" y="1566.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (86 samples, 1.10%)</title><rect x="21.1167%" y="1572" width="1.1013%" height="15" fill="rgb(226,80,48)"/><text x="21.3667%" y="1582.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (81 samples, 1.04%)</title><rect x="21.1807%" y="1588" width="1.0373%" height="15" fill="rgb(238,224,15)"/><text x="21.4307%" y="1598.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (81 samples, 1.04%)</title><rect x="21.1807%" y="1604" width="1.0373%" height="15" fill="rgb(241,136,10)"/><text x="21.4307%" y="1614.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:1050) (81 samples, 1.04%)</title><rect x="21.1807%" y="1620" width="1.0373%" height="15" fill="rgb(208,32,45)"/><text x="21.4307%" y="1630.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (81 samples, 1.04%)</title><rect x="21.1807%" y="1636" width="1.0373%" height="15" fill="rgb(207,135,9)"/><text x="21.4307%" y="1646.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (81 samples, 1.04%)</title><rect x="21.1807%" y="1652" width="1.0373%" height="15" fill="rgb(206,86,44)"/><text x="21.4307%" y="1662.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (93 samples, 1.19%)</title><rect x="21.1167%" y="1380" width="1.1909%" height="15" fill="rgb(245,177,15)"/><text x="21.3667%" y="1390.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (93 samples, 1.19%)</title><rect x="21.1167%" y="1396" width="1.1909%" height="15" fill="rgb(206,64,50)"/><text x="21.3667%" y="1406.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (93 samples, 1.19%)</title><rect x="21.1167%" y="1412" width="1.1909%" height="15" fill="rgb(234,36,40)"/><text x="21.3667%" y="1422.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (93 samples, 1.19%)</title><rect x="21.1167%" y="1428" width="1.1909%" height="15" fill="rgb(213,64,8)"/><text x="21.3667%" y="1438.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (93 samples, 1.19%)</title><rect x="21.1167%" y="1444" width="1.1909%" height="15" fill="rgb(210,75,36)"/><text x="21.3667%" y="1454.50"></text></g><g><title>&lt;module&gt; (pandas/_libs/__init__.py:3) (93 samples, 1.19%)</title><rect x="21.1167%" y="1460" width="1.1909%" height="15" fill="rgb(229,88,21)"/><text x="21.3667%" y="1470.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (93 samples, 1.19%)</title><rect x="21.1167%" y="1476" width="1.1909%" height="15" fill="rgb(252,204,47)"/><text x="21.3667%" y="1486.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (93 samples, 1.19%)</title><rect x="21.1167%" y="1492" width="1.1909%" height="15" fill="rgb(208,77,27)"/><text x="21.3667%" y="1502.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (93 samples, 1.19%)</title><rect x="21.1167%" y="1508" width="1.1909%" height="15" fill="rgb(221,76,26)"/><text x="21.3667%" y="1518.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (93 samples, 1.19%)</title><rect x="21.1167%" y="1524" width="1.1909%" height="15" fill="rgb(225,139,18)"/><text x="21.3667%" y="1534.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (93 samples, 1.19%)</title><rect x="21.1167%" y="1540" width="1.1909%" height="15" fill="rgb(230,137,11)"/><text x="21.3667%" y="1550.50"></text></g><g><title>&lt;module&gt; (pandas/__init__.py:30) (100 samples, 1.28%)</title><rect x="21.1167%" y="1364" width="1.2806%" height="15" fill="rgb(212,28,1)"/><text x="21.3667%" y="1374.50"></text></g><g><title>&lt;module&gt; (pandas/plotting/_matplotlib/boxplot.py:14) (120 samples, 1.54%)</title><rect x="22.5765%" y="2228" width="1.5367%" height="15" fill="rgb(248,164,17)"/><text x="22.8265%" y="2238.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (120 samples, 1.54%)</title><rect x="22.5765%" y="2244" width="1.5367%" height="15" fill="rgb(222,171,42)"/><text x="22.8265%" y="2254.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (120 samples, 1.54%)</title><rect x="22.5765%" y="2260" width="1.5367%" height="15" fill="rgb(243,84,45)"/><text x="22.8265%" y="2270.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (120 samples, 1.54%)</title><rect x="22.5765%" y="2276" width="1.5367%" height="15" fill="rgb(252,49,23)"/><text x="22.8265%" y="2286.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (120 samples, 1.54%)</title><rect x="22.5765%" y="2292" width="1.5367%" height="15" fill="rgb(215,19,7)"/><text x="22.8265%" y="2302.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (120 samples, 1.54%)</title><rect x="22.5765%" y="2308" width="1.5367%" height="15" fill="rgb(238,81,41)"/><text x="22.8265%" y="2318.50"></text></g><g><title>&lt;module&gt; (pandas/plotting/_matplotlib/core.py:34) (115 samples, 1.47%)</title><rect x="22.6405%" y="2324" width="1.4727%" height="15" fill="rgb(210,199,37)"/><text x="22.8905%" y="2334.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (115 samples, 1.47%)</title><rect x="22.6405%" y="2340" width="1.4727%" height="15" fill="rgb(244,192,49)"/><text x="22.8905%" y="2350.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (115 samples, 1.47%)</title><rect x="22.6405%" y="2356" width="1.4727%" height="15" fill="rgb(226,211,11)"/><text x="22.8905%" y="2366.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (115 samples, 1.47%)</title><rect x="22.6405%" y="2372" width="1.4727%" height="15" fill="rgb(236,162,54)"/><text x="22.8905%" y="2382.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (99 samples, 1.27%)</title><rect x="22.8454%" y="2388" width="1.2678%" height="15" fill="rgb(220,229,9)"/><text x="23.0954%" y="2398.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (99 samples, 1.27%)</title><rect x="22.8454%" y="2404" width="1.2678%" height="15" fill="rgb(250,87,22)"/><text x="23.0954%" y="2414.50"></text></g><g><title>&lt;module&gt; (pandas/plotting/_matplotlib/tools.py:5) (99 samples, 1.27%)</title><rect x="22.8454%" y="2420" width="1.2678%" height="15" fill="rgb(239,43,17)"/><text x="23.0954%" y="2430.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (99 samples, 1.27%)</title><rect x="22.8454%" y="2436" width="1.2678%" height="15" fill="rgb(231,177,25)"/><text x="23.0954%" y="2446.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (99 samples, 1.27%)</title><rect x="22.8454%" y="2452" width="1.2678%" height="15" fill="rgb(219,179,1)"/><text x="23.0954%" y="2462.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (99 samples, 1.27%)</title><rect x="22.8454%" y="2468" width="1.2678%" height="15" fill="rgb(238,219,53)"/><text x="23.0954%" y="2478.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (99 samples, 1.27%)</title><rect x="22.8454%" y="2484" width="1.2678%" height="15" fill="rgb(232,167,36)"/><text x="23.0954%" y="2494.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (99 samples, 1.27%)</title><rect x="22.8454%" y="2500" width="1.2678%" height="15" fill="rgb(244,19,51)"/><text x="23.0954%" y="2510.50"></text></g><g><title>&lt;module&gt; (matplotlib/table.py:25) (97 samples, 1.24%)</title><rect x="22.8710%" y="2516" width="1.2422%" height="15" fill="rgb(224,6,22)"/><text x="23.1210%" y="2526.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (97 samples, 1.24%)</title><rect x="22.8710%" y="2532" width="1.2422%" height="15" fill="rgb(224,145,5)"/><text x="23.1210%" y="2542.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (97 samples, 1.24%)</title><rect x="22.8710%" y="2548" width="1.2422%" height="15" fill="rgb(234,130,49)"/><text x="23.1210%" y="2558.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (97 samples, 1.24%)</title><rect x="22.8710%" y="2564" width="1.2422%" height="15" fill="rgb(254,6,2)"/><text x="23.1210%" y="2574.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (96 samples, 1.23%)</title><rect x="22.8839%" y="2580" width="1.2294%" height="15" fill="rgb(208,96,46)"/><text x="23.1339%" y="2590.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (96 samples, 1.23%)</title><rect x="22.8839%" y="2596" width="1.2294%" height="15" fill="rgb(239,3,39)"/><text x="23.1339%" y="2606.50"></text></g><g><title>&lt;module&gt; (pandas/plotting/__init__.py:59) (162 samples, 2.07%)</title><rect x="22.4997%" y="1940" width="2.0745%" height="15" fill="rgb(233,210,1)"/><text x="22.7497%" y="1950.50">&lt;..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (162 samples, 2.07%)</title><rect x="22.4997%" y="1956" width="2.0745%" height="15" fill="rgb(244,137,37)"/><text x="22.7497%" y="1966.50">_..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (162 samples, 2.07%)</title><rect x="22.4997%" y="1972" width="2.0745%" height="15" fill="rgb(240,136,2)"/><text x="22.7497%" y="1982.50">_..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (162 samples, 2.07%)</title><rect x="22.4997%" y="1988" width="2.0745%" height="15" fill="rgb(239,18,37)"/><text x="22.7497%" y="1998.50">_..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (162 samples, 2.07%)</title><rect x="22.4997%" y="2004" width="2.0745%" height="15" fill="rgb(218,185,22)"/><text x="22.7497%" y="2014.50">e..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (162 samples, 2.07%)</title><rect x="22.4997%" y="2020" width="2.0745%" height="15" fill="rgb(225,218,4)"/><text x="22.7497%" y="2030.50">_..</text></g><g><title>&lt;module&gt; (pandas/plotting/_core.py:17) (162 samples, 2.07%)</title><rect x="22.4997%" y="2036" width="2.0745%" height="15" fill="rgb(230,182,32)"/><text x="22.7497%" y="2046.50">&lt;..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (162 samples, 2.07%)</title><rect x="22.4997%" y="2052" width="2.0745%" height="15" fill="rgb(242,56,43)"/><text x="22.7497%" y="2062.50">_..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (162 samples, 2.07%)</title><rect x="22.4997%" y="2068" width="2.0745%" height="15" fill="rgb(233,99,24)"/><text x="22.7497%" y="2078.50">_..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (162 samples, 2.07%)</title><rect x="22.4997%" y="2084" width="2.0745%" height="15" fill="rgb(234,209,42)"/><text x="22.7497%" y="2094.50">_..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (162 samples, 2.07%)</title><rect x="22.4997%" y="2100" width="2.0745%" height="15" fill="rgb(227,7,12)"/><text x="22.7497%" y="2110.50">e..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (162 samples, 2.07%)</title><rect x="22.4997%" y="2116" width="2.0745%" height="15" fill="rgb(245,203,43)"/><text x="22.7497%" y="2126.50">_..</text></g><g><title>&lt;module&gt; (pandas/plotting/_matplotlib/__init__.py:3) (161 samples, 2.06%)</title><rect x="22.5125%" y="2132" width="2.0617%" height="15" fill="rgb(238,205,33)"/><text x="22.7625%" y="2142.50">&lt;..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (161 samples, 2.06%)</title><rect x="22.5125%" y="2148" width="2.0617%" height="15" fill="rgb(231,56,7)"/><text x="22.7625%" y="2158.50">_..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (161 samples, 2.06%)</title><rect x="22.5125%" y="2164" width="2.0617%" height="15" fill="rgb(244,186,29)"/><text x="22.7625%" y="2174.50">_..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (161 samples, 2.06%)</title><rect x="22.5125%" y="2180" width="2.0617%" height="15" fill="rgb(234,111,31)"/><text x="22.7625%" y="2190.50">_..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (161 samples, 2.06%)</title><rect x="22.5125%" y="2196" width="2.0617%" height="15" fill="rgb(241,149,10)"/><text x="22.7625%" y="2206.50">e..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (161 samples, 2.06%)</title><rect x="22.5125%" y="2212" width="2.0617%" height="15" fill="rgb(249,206,44)"/><text x="22.7625%" y="2222.50">_..</text></g><g><title>&lt;module&gt; (pandas/core/frame.py:115) (170 samples, 2.18%)</title><rect x="22.4357%" y="1748" width="2.1770%" height="15" fill="rgb(251,153,30)"/><text x="22.6857%" y="1758.50">&lt;..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (170 samples, 2.18%)</title><rect x="22.4357%" y="1764" width="2.1770%" height="15" fill="rgb(239,152,38)"/><text x="22.6857%" y="1774.50">_..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (170 samples, 2.18%)</title><rect x="22.4357%" y="1780" width="2.1770%" height="15" fill="rgb(249,139,47)"/><text x="22.6857%" y="1790.50">_..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (170 samples, 2.18%)</title><rect x="22.4357%" y="1796" width="2.1770%" height="15" fill="rgb(244,64,35)"/><text x="22.6857%" y="1806.50">_..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (170 samples, 2.18%)</title><rect x="22.4357%" y="1812" width="2.1770%" height="15" fill="rgb(216,46,15)"/><text x="22.6857%" y="1822.50">e..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (170 samples, 2.18%)</title><rect x="22.4357%" y="1828" width="2.1770%" height="15" fill="rgb(250,74,19)"/><text x="22.6857%" y="1838.50">_..</text></g><g><title>&lt;module&gt; (pandas/core/series.py:84) (167 samples, 2.14%)</title><rect x="22.4741%" y="1844" width="2.1386%" height="15" fill="rgb(249,42,33)"/><text x="22.7241%" y="1854.50">&lt;..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (167 samples, 2.14%)</title><rect x="22.4741%" y="1860" width="2.1386%" height="15" fill="rgb(242,149,17)"/><text x="22.7241%" y="1870.50">_..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (167 samples, 2.14%)</title><rect x="22.4741%" y="1876" width="2.1386%" height="15" fill="rgb(244,29,21)"/><text x="22.7241%" y="1886.50">_..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (167 samples, 2.14%)</title><rect x="22.4741%" y="1892" width="2.1386%" height="15" fill="rgb(220,130,37)"/><text x="22.7241%" y="1902.50">_..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (165 samples, 2.11%)</title><rect x="22.4997%" y="1908" width="2.1129%" height="15" fill="rgb(211,67,2)"/><text x="22.7497%" y="1918.50">e..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (165 samples, 2.11%)</title><rect x="22.4997%" y="1924" width="2.1129%" height="15" fill="rgb(235,68,52)"/><text x="22.7497%" y="1934.50">_..</text></g><g><title>&lt;module&gt; (pandas/core/groupby/generic.py:44) (206 samples, 2.64%)</title><rect x="22.3972%" y="1652" width="2.6380%" height="15" fill="rgb(246,142,3)"/><text x="22.6472%" y="1662.50">&lt;m..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (206 samples, 2.64%)</title><rect x="22.3972%" y="1668" width="2.6380%" height="15" fill="rgb(241,25,7)"/><text x="22.6472%" y="1678.50">_f..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (206 samples, 2.64%)</title><rect x="22.3972%" y="1684" width="2.6380%" height="15" fill="rgb(242,119,39)"/><text x="22.6472%" y="1694.50">_f..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (206 samples, 2.64%)</title><rect x="22.3972%" y="1700" width="2.6380%" height="15" fill="rgb(241,98,45)"/><text x="22.6472%" y="1710.50">_l..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (206 samples, 2.64%)</title><rect x="22.3972%" y="1716" width="2.6380%" height="15" fill="rgb(254,28,30)"/><text x="22.6472%" y="1726.50">ex..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (206 samples, 2.64%)</title><rect x="22.3972%" y="1732" width="2.6380%" height="15" fill="rgb(241,142,54)"/><text x="22.6472%" y="1742.50">_c..</text></g><g><title>&lt;module&gt; (pandas/core/api.py:24) (211 samples, 2.70%)</title><rect x="22.3972%" y="1460" width="2.7020%" height="15" fill="rgb(222,85,15)"/><text x="22.6472%" y="1470.50">&lt;m..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (211 samples, 2.70%)</title><rect x="22.3972%" y="1476" width="2.7020%" height="15" fill="rgb(210,85,47)"/><text x="22.6472%" y="1486.50">_f..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (211 samples, 2.70%)</title><rect x="22.3972%" y="1492" width="2.7020%" height="15" fill="rgb(224,206,25)"/><text x="22.6472%" y="1502.50">_f..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (211 samples, 2.70%)</title><rect x="22.3972%" y="1508" width="2.7020%" height="15" fill="rgb(243,201,19)"/><text x="22.6472%" y="1518.50">_l..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (211 samples, 2.70%)</title><rect x="22.3972%" y="1524" width="2.7020%" height="15" fill="rgb(236,59,4)"/><text x="22.6472%" y="1534.50">ex..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (211 samples, 2.70%)</title><rect x="22.3972%" y="1540" width="2.7020%" height="15" fill="rgb(254,179,45)"/><text x="22.6472%" y="1550.50">_c..</text></g><g><title>&lt;module&gt; (pandas/core/groupby/__init__.py:1) (211 samples, 2.70%)</title><rect x="22.3972%" y="1556" width="2.7020%" height="15" fill="rgb(226,14,10)"/><text x="22.6472%" y="1566.50">&lt;m..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (211 samples, 2.70%)</title><rect x="22.3972%" y="1572" width="2.7020%" height="15" fill="rgb(244,27,41)"/><text x="22.6472%" y="1582.50">_f..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (211 samples, 2.70%)</title><rect x="22.3972%" y="1588" width="2.7020%" height="15" fill="rgb(235,35,32)"/><text x="22.6472%" y="1598.50">_f..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (211 samples, 2.70%)</title><rect x="22.3972%" y="1604" width="2.7020%" height="15" fill="rgb(218,68,31)"/><text x="22.6472%" y="1614.50">_l..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (211 samples, 2.70%)</title><rect x="22.3972%" y="1620" width="2.7020%" height="15" fill="rgb(207,120,37)"/><text x="22.6472%" y="1630.50">ex..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (211 samples, 2.70%)</title><rect x="22.3972%" y="1636" width="2.7020%" height="15" fill="rgb(227,98,0)"/><text x="22.6472%" y="1646.50">_c..</text></g><g><title>&lt;module&gt; (tensorflow_estimator/_api/v1/estimator/__init__.py:12) (515 samples, 6.59%)</title><rect x="20.5532%" y="916" width="6.5950%" height="15" fill="rgb(207,7,3)"/><text x="20.8032%" y="926.50">&lt;module&gt; ..</text></g><g><title>_handle_fromlist (&lt;frozen importlib._bootstrap&gt;:1035) (515 samples, 6.59%)</title><rect x="20.5532%" y="932" width="6.5950%" height="15" fill="rgb(206,98,19)"/><text x="20.8032%" y="942.50">_handle_f..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (515 samples, 6.59%)</title><rect x="20.5532%" y="948" width="6.5950%" height="15" fill="rgb(217,5,26)"/><text x="20.8032%" y="958.50">_call_wit..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (515 samples, 6.59%)</title><rect x="20.5532%" y="964" width="6.5950%" height="15" fill="rgb(235,190,38)"/><text x="20.8032%" y="974.50">_find_and..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (515 samples, 6.59%)</title><rect x="20.5532%" y="980" width="6.5950%" height="15" fill="rgb(247,86,24)"/><text x="20.8032%" y="990.50">_find_and..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (515 samples, 6.59%)</title><rect x="20.5532%" y="996" width="6.5950%" height="15" fill="rgb(205,101,16)"/><text x="20.8032%" y="1006.50">_load_unl..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (515 samples, 6.59%)</title><rect x="20.5532%" y="1012" width="6.5950%" height="15" fill="rgb(246,168,33)"/><text x="20.8032%" y="1022.50">exec_modu..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (515 samples, 6.59%)</title><rect x="20.5532%" y="1028" width="6.5950%" height="15" fill="rgb(231,114,1)"/><text x="20.8032%" y="1038.50">_call_wit..</text></g><g><title>&lt;module&gt; (tensorflow_estimator/_api/v1/estimator/inputs/__init__.py:10) (515 samples, 6.59%)</title><rect x="20.5532%" y="1044" width="6.5950%" height="15" fill="rgb(207,184,53)"/><text x="20.8032%" y="1054.50">&lt;module&gt; ..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (515 samples, 6.59%)</title><rect x="20.5532%" y="1060" width="6.5950%" height="15" fill="rgb(224,95,51)"/><text x="20.8032%" y="1070.50">_find_and..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (515 samples, 6.59%)</title><rect x="20.5532%" y="1076" width="6.5950%" height="15" fill="rgb(212,188,45)"/><text x="20.8032%" y="1086.50">_find_and..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (515 samples, 6.59%)</title><rect x="20.5532%" y="1092" width="6.5950%" height="15" fill="rgb(223,154,38)"/><text x="20.8032%" y="1102.50">_load_unl..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (515 samples, 6.59%)</title><rect x="20.5532%" y="1108" width="6.5950%" height="15" fill="rgb(251,22,52)"/><text x="20.8032%" y="1118.50">exec_modu..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (515 samples, 6.59%)</title><rect x="20.5532%" y="1124" width="6.5950%" height="15" fill="rgb(229,209,22)"/><text x="20.8032%" y="1134.50">_call_wit..</text></g><g><title>&lt;module&gt; (tensorflow_estimator/python/estimator/inputs/numpy_io.py:26) (515 samples, 6.59%)</title><rect x="20.5532%" y="1140" width="6.5950%" height="15" fill="rgb(234,138,34)"/><text x="20.8032%" y="1150.50">&lt;module&gt; ..</text></g><g><title>_handle_fromlist (&lt;frozen importlib._bootstrap&gt;:1035) (515 samples, 6.59%)</title><rect x="20.5532%" y="1156" width="6.5950%" height="15" fill="rgb(212,95,11)"/><text x="20.8032%" y="1166.50">_handle_f..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (515 samples, 6.59%)</title><rect x="20.5532%" y="1172" width="6.5950%" height="15" fill="rgb(240,179,47)"/><text x="20.8032%" y="1182.50">_call_wit..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (515 samples, 6.59%)</title><rect x="20.5532%" y="1188" width="6.5950%" height="15" fill="rgb(240,163,11)"/><text x="20.8032%" y="1198.50">_find_and..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (515 samples, 6.59%)</title><rect x="20.5532%" y="1204" width="6.5950%" height="15" fill="rgb(236,37,12)"/><text x="20.8032%" y="1214.50">_find_and..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (515 samples, 6.59%)</title><rect x="20.5532%" y="1220" width="6.5950%" height="15" fill="rgb(232,164,16)"/><text x="20.8032%" y="1230.50">_load_unl..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (515 samples, 6.59%)</title><rect x="20.5532%" y="1236" width="6.5950%" height="15" fill="rgb(244,205,15)"/><text x="20.8032%" y="1246.50">exec_modu..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (515 samples, 6.59%)</title><rect x="20.5532%" y="1252" width="6.5950%" height="15" fill="rgb(223,117,47)"/><text x="20.8032%" y="1262.50">_call_wit..</text></g><g><title>&lt;module&gt; (tensorflow_estimator/python/estimator/inputs/queues/feeding_functions.py:40) (515 samples, 6.59%)</title><rect x="20.5532%" y="1268" width="6.5950%" height="15" fill="rgb(244,107,35)"/><text x="20.8032%" y="1278.50">&lt;module&gt; ..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (515 samples, 6.59%)</title><rect x="20.5532%" y="1284" width="6.5950%" height="15" fill="rgb(205,140,8)"/><text x="20.8032%" y="1294.50">_find_and..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (515 samples, 6.59%)</title><rect x="20.5532%" y="1300" width="6.5950%" height="15" fill="rgb(228,84,46)"/><text x="20.8032%" y="1310.50">_find_and..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (515 samples, 6.59%)</title><rect x="20.5532%" y="1316" width="6.5950%" height="15" fill="rgb(254,188,9)"/><text x="20.8032%" y="1326.50">_load_unl..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (515 samples, 6.59%)</title><rect x="20.5532%" y="1332" width="6.5950%" height="15" fill="rgb(206,112,54)"/><text x="20.8032%" y="1342.50">exec_modu..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (515 samples, 6.59%)</title><rect x="20.5532%" y="1348" width="6.5950%" height="15" fill="rgb(216,84,49)"/><text x="20.8032%" y="1358.50">_call_wit..</text></g><g><title>&lt;module&gt; (pandas/__init__.py:55) (371 samples, 4.75%)</title><rect x="22.3972%" y="1364" width="4.7509%" height="15" fill="rgb(214,194,35)"/><text x="22.6472%" y="1374.50">&lt;modul..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (371 samples, 4.75%)</title><rect x="22.3972%" y="1380" width="4.7509%" height="15" fill="rgb(249,28,3)"/><text x="22.6472%" y="1390.50">_find_..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (371 samples, 4.75%)</title><rect x="22.3972%" y="1396" width="4.7509%" height="15" fill="rgb(222,56,52)"/><text x="22.6472%" y="1406.50">_find_..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (371 samples, 4.75%)</title><rect x="22.3972%" y="1412" width="4.7509%" height="15" fill="rgb(245,217,50)"/><text x="22.6472%" y="1422.50">_load_..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (371 samples, 4.75%)</title><rect x="22.3972%" y="1428" width="4.7509%" height="15" fill="rgb(213,201,24)"/><text x="22.6472%" y="1438.50">exec_m..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (371 samples, 4.75%)</title><rect x="22.3972%" y="1444" width="4.7509%" height="15" fill="rgb(248,116,28)"/><text x="22.6472%" y="1454.50">_call_..</text></g><g><title>&lt;module&gt; (pandas/core/api.py:5) (140 samples, 1.79%)</title><rect x="25.3554%" y="1460" width="1.7928%" height="15" fill="rgb(219,72,43)"/><text x="25.6054%" y="1470.50">&lt;..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (140 samples, 1.79%)</title><rect x="25.3554%" y="1476" width="1.7928%" height="15" fill="rgb(209,138,14)"/><text x="25.6054%" y="1486.50">_..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:953) (140 samples, 1.79%)</title><rect x="25.3554%" y="1492" width="1.7928%" height="15" fill="rgb(222,18,33)"/><text x="25.6054%" y="1502.50">_..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (140 samples, 1.79%)</title><rect x="25.3554%" y="1508" width="1.7928%" height="15" fill="rgb(213,199,7)"/><text x="25.6054%" y="1518.50">_..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (140 samples, 1.79%)</title><rect x="25.3554%" y="1524" width="1.7928%" height="15" fill="rgb(250,110,10)"/><text x="25.6054%" y="1534.50">_..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (140 samples, 1.79%)</title><rect x="25.3554%" y="1540" width="1.7928%" height="15" fill="rgb(248,123,6)"/><text x="25.6054%" y="1550.50">_..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (140 samples, 1.79%)</title><rect x="25.3554%" y="1556" width="1.7928%" height="15" fill="rgb(206,91,31)"/><text x="25.6054%" y="1566.50">_..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (140 samples, 1.79%)</title><rect x="25.3554%" y="1572" width="1.7928%" height="15" fill="rgb(211,154,13)"/><text x="25.6054%" y="1582.50">e..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (140 samples, 1.79%)</title><rect x="25.3554%" y="1588" width="1.7928%" height="15" fill="rgb(225,148,7)"/><text x="25.6054%" y="1598.50">_..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:953) (543 samples, 6.95%)</title><rect x="20.3739%" y="580" width="6.9535%" height="15" fill="rgb(220,160,43)"/><text x="20.6239%" y="590.50">_find_and..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (543 samples, 6.95%)</title><rect x="20.3739%" y="596" width="6.9535%" height="15" fill="rgb(213,52,39)"/><text x="20.6239%" y="606.50">_call_wit..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (543 samples, 6.95%)</title><rect x="20.3739%" y="612" width="6.9535%" height="15" fill="rgb(243,137,7)"/><text x="20.6239%" y="622.50">_find_and..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:953) (543 samples, 6.95%)</title><rect x="20.3739%" y="628" width="6.9535%" height="15" fill="rgb(230,79,13)"/><text x="20.6239%" y="638.50">_find_and..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (543 samples, 6.95%)</title><rect x="20.3739%" y="644" width="6.9535%" height="15" fill="rgb(247,105,23)"/><text x="20.6239%" y="654.50">_call_wit..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (543 samples, 6.95%)</title><rect x="20.3739%" y="660" width="6.9535%" height="15" fill="rgb(223,179,41)"/><text x="20.6239%" y="670.50">_find_and..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:953) (543 samples, 6.95%)</title><rect x="20.3739%" y="676" width="6.9535%" height="15" fill="rgb(218,9,34)"/><text x="20.6239%" y="686.50">_find_and..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (543 samples, 6.95%)</title><rect x="20.3739%" y="692" width="6.9535%" height="15" fill="rgb(222,106,8)"/><text x="20.6239%" y="702.50">_call_wit..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (543 samples, 6.95%)</title><rect x="20.3739%" y="708" width="6.9535%" height="15" fill="rgb(211,220,0)"/><text x="20.6239%" y="718.50">_find_and..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (543 samples, 6.95%)</title><rect x="20.3739%" y="724" width="6.9535%" height="15" fill="rgb(229,52,16)"/><text x="20.6239%" y="734.50">_find_and..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (543 samples, 6.95%)</title><rect x="20.3739%" y="740" width="6.9535%" height="15" fill="rgb(212,155,18)"/><text x="20.6239%" y="750.50">_load_unl..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (543 samples, 6.95%)</title><rect x="20.3739%" y="756" width="6.9535%" height="15" fill="rgb(242,21,14)"/><text x="20.6239%" y="766.50">exec_modu..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (543 samples, 6.95%)</title><rect x="20.3739%" y="772" width="6.9535%" height="15" fill="rgb(222,19,48)"/><text x="20.6239%" y="782.50">_call_wit..</text></g><g><title>&lt;module&gt; (tensorflow_estimator/__init__.py:10) (543 samples, 6.95%)</title><rect x="20.3739%" y="788" width="6.9535%" height="15" fill="rgb(232,45,27)"/><text x="20.6239%" y="798.50">&lt;module&gt; ..</text></g><g><title>_handle_fromlist (&lt;frozen importlib._bootstrap&gt;:1035) (543 samples, 6.95%)</title><rect x="20.3739%" y="804" width="6.9535%" height="15" fill="rgb(249,103,42)"/><text x="20.6239%" y="814.50">_handle_f..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (543 samples, 6.95%)</title><rect x="20.3739%" y="820" width="6.9535%" height="15" fill="rgb(246,81,33)"/><text x="20.6239%" y="830.50">_call_wit..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (543 samples, 6.95%)</title><rect x="20.3739%" y="836" width="6.9535%" height="15" fill="rgb(252,33,42)"/><text x="20.6239%" y="846.50">_find_and..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (543 samples, 6.95%)</title><rect x="20.3739%" y="852" width="6.9535%" height="15" fill="rgb(209,212,41)"/><text x="20.6239%" y="862.50">_find_and..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (543 samples, 6.95%)</title><rect x="20.3739%" y="868" width="6.9535%" height="15" fill="rgb(207,154,6)"/><text x="20.6239%" y="878.50">_load_unl..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (542 samples, 6.94%)</title><rect x="20.3867%" y="884" width="6.9407%" height="15" fill="rgb(223,64,47)"/><text x="20.6367%" y="894.50">exec_modu..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (542 samples, 6.94%)</title><rect x="20.3867%" y="900" width="6.9407%" height="15" fill="rgb(211,161,38)"/><text x="20.6367%" y="910.50">_call_wit..</text></g><g><title>&lt;module&gt; (tensorflow_core/_api/v2/compat/v1/__init__.py:664) (547 samples, 7.00%)</title><rect x="20.3739%" y="500" width="7.0047%" height="15" fill="rgb(219,138,40)"/><text x="20.6239%" y="510.50">&lt;module&gt; ..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (547 samples, 7.00%)</title><rect x="20.3739%" y="516" width="7.0047%" height="15" fill="rgb(241,228,46)"/><text x="20.6239%" y="526.50">_find_and..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:953) (547 samples, 7.00%)</title><rect x="20.3739%" y="532" width="7.0047%" height="15" fill="rgb(223,209,38)"/><text x="20.6239%" y="542.50">_find_and..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (547 samples, 7.00%)</title><rect x="20.3739%" y="548" width="7.0047%" height="15" fill="rgb(236,164,45)"/><text x="20.6239%" y="558.50">_call_wit..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (547 samples, 7.00%)</title><rect x="20.3739%" y="564" width="7.0047%" height="15" fill="rgb(231,15,5)"/><text x="20.6239%" y="574.50">_find_and..</text></g><g><title>&lt;module&gt; (tensorflow_core/_api/v2/compat/__init__.py:23) (615 samples, 7.88%)</title><rect x="19.9385%" y="372" width="7.8755%" height="15" fill="rgb(252,35,15)"/><text x="20.1885%" y="382.50">&lt;module&gt; (t..</text></g><g><title>_handle_fromlist (&lt;frozen importlib._bootstrap&gt;:1035) (615 samples, 7.88%)</title><rect x="19.9385%" y="388" width="7.8755%" height="15" fill="rgb(248,181,18)"/><text x="20.1885%" y="398.50">_handle_fro..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (615 samples, 7.88%)</title><rect x="19.9385%" y="404" width="7.8755%" height="15" fill="rgb(233,39,42)"/><text x="20.1885%" y="414.50">_call_with_..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (615 samples, 7.88%)</title><rect x="19.9385%" y="420" width="7.8755%" height="15" fill="rgb(238,110,33)"/><text x="20.1885%" y="430.50">_find_and_l..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (615 samples, 7.88%)</title><rect x="19.9385%" y="436" width="7.8755%" height="15" fill="rgb(233,195,10)"/><text x="20.1885%" y="446.50">_find_and_l..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (615 samples, 7.88%)</title><rect x="19.9385%" y="452" width="7.8755%" height="15" fill="rgb(254,105,3)"/><text x="20.1885%" y="462.50">_load_unloc..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (615 samples, 7.88%)</title><rect x="19.9385%" y="468" width="7.8755%" height="15" fill="rgb(221,225,9)"/><text x="20.1885%" y="478.50">exec_module..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (615 samples, 7.88%)</title><rect x="19.9385%" y="484" width="7.8755%" height="15" fill="rgb(224,227,45)"/><text x="20.1885%" y="494.50">_call_with_..</text></g><g><title>&lt;module&gt; (botocore/session.py:28) (87 samples, 1.11%)</title><rect x="28.5952%" y="2340" width="1.1141%" height="15" fill="rgb(229,198,43)"/><text x="28.8452%" y="2350.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (87 samples, 1.11%)</title><rect x="28.5952%" y="2356" width="1.1141%" height="15" fill="rgb(206,209,35)"/><text x="28.8452%" y="2366.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (87 samples, 1.11%)</title><rect x="28.5952%" y="2372" width="1.1141%" height="15" fill="rgb(245,195,53)"/><text x="28.8452%" y="2382.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (87 samples, 1.11%)</title><rect x="28.5952%" y="2388" width="1.1141%" height="15" fill="rgb(240,92,26)"/><text x="28.8452%" y="2398.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (87 samples, 1.11%)</title><rect x="28.5952%" y="2404" width="1.1141%" height="15" fill="rgb(207,40,23)"/><text x="28.8452%" y="2414.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (87 samples, 1.11%)</title><rect x="28.5952%" y="2420" width="1.1141%" height="15" fill="rgb(223,111,35)"/><text x="28.8452%" y="2430.50"></text></g><g><title>&lt;module&gt; (botocore/configloader.py:19) (87 samples, 1.11%)</title><rect x="28.5952%" y="2436" width="1.1141%" height="15" fill="rgb(229,147,28)"/><text x="28.8452%" y="2446.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (87 samples, 1.11%)</title><rect x="28.5952%" y="2452" width="1.1141%" height="15" fill="rgb(211,29,28)"/><text x="28.8452%" y="2462.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (87 samples, 1.11%)</title><rect x="28.5952%" y="2468" width="1.1141%" height="15" fill="rgb(228,72,33)"/><text x="28.8452%" y="2478.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (87 samples, 1.11%)</title><rect x="28.5952%" y="2484" width="1.1141%" height="15" fill="rgb(205,214,31)"/><text x="28.8452%" y="2494.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (87 samples, 1.11%)</title><rect x="28.5952%" y="2500" width="1.1141%" height="15" fill="rgb(224,111,15)"/><text x="28.8452%" y="2510.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (87 samples, 1.11%)</title><rect x="28.5952%" y="2516" width="1.1141%" height="15" fill="rgb(253,21,26)"/><text x="28.8452%" y="2526.50"></text></g><g><title>&lt;module&gt; (botocore/compat.py:24) (85 samples, 1.09%)</title><rect x="28.6208%" y="2532" width="1.0885%" height="15" fill="rgb(245,139,43)"/><text x="28.8708%" y="2542.50"></text></g><g><title>_handle_fromlist (&lt;frozen importlib._bootstrap&gt;:1035) (85 samples, 1.09%)</title><rect x="28.6208%" y="2548" width="1.0885%" height="15" fill="rgb(252,170,7)"/><text x="28.8708%" y="2558.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (85 samples, 1.09%)</title><rect x="28.6208%" y="2564" width="1.0885%" height="15" fill="rgb(231,118,14)"/><text x="28.8708%" y="2574.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (85 samples, 1.09%)</title><rect x="28.6208%" y="2580" width="1.0885%" height="15" fill="rgb(238,83,0)"/><text x="28.8708%" y="2590.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (85 samples, 1.09%)</title><rect x="28.6208%" y="2596" width="1.0885%" height="15" fill="rgb(221,39,39)"/><text x="28.8708%" y="2606.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (85 samples, 1.09%)</title><rect x="28.6208%" y="2612" width="1.0885%" height="15" fill="rgb(222,119,46)"/><text x="28.8708%" y="2622.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (85 samples, 1.09%)</title><rect x="28.6208%" y="2628" width="1.0885%" height="15" fill="rgb(222,165,49)"/><text x="28.8708%" y="2638.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (85 samples, 1.09%)</title><rect x="28.6208%" y="2644" width="1.0885%" height="15" fill="rgb(219,113,52)"/><text x="28.8708%" y="2654.50"></text></g><g><title>&lt;module&gt; (boto3/session.py:17) (140 samples, 1.79%)</title><rect x="28.5952%" y="2244" width="1.7928%" height="15" fill="rgb(214,7,15)"/><text x="28.8452%" y="2254.50">&lt;..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (140 samples, 1.79%)</title><rect x="28.5952%" y="2260" width="1.7928%" height="15" fill="rgb(235,32,4)"/><text x="28.8452%" y="2270.50">_..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (140 samples, 1.79%)</title><rect x="28.5952%" y="2276" width="1.7928%" height="15" fill="rgb(238,90,54)"/><text x="28.8452%" y="2286.50">_..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (140 samples, 1.79%)</title><rect x="28.5952%" y="2292" width="1.7928%" height="15" fill="rgb(213,208,19)"/><text x="28.8452%" y="2302.50">_..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (140 samples, 1.79%)</title><rect x="28.5952%" y="2308" width="1.7928%" height="15" fill="rgb(233,156,4)"/><text x="28.8452%" y="2318.50">e..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (140 samples, 1.79%)</title><rect x="28.5952%" y="2324" width="1.7928%" height="15" fill="rgb(207,194,5)"/><text x="28.8452%" y="2334.50">_..</text></g><g><title>&lt;module&gt; (tensorboard/compat/tensorflow_stub/io/gfile.py:37) (170 samples, 2.18%)</title><rect x="28.5312%" y="2052" width="2.1770%" height="15" fill="rgb(206,111,30)"/><text x="28.7812%" y="2062.50">&lt;..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (170 samples, 2.18%)</title><rect x="28.5312%" y="2068" width="2.1770%" height="15" fill="rgb(243,70,54)"/><text x="28.7812%" y="2078.50">_..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (170 samples, 2.18%)</title><rect x="28.5312%" y="2084" width="2.1770%" height="15" fill="rgb(242,28,8)"/><text x="28.7812%" y="2094.50">_..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (170 samples, 2.18%)</title><rect x="28.5312%" y="2100" width="2.1770%" height="15" fill="rgb(219,106,18)"/><text x="28.7812%" y="2110.50">_..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (170 samples, 2.18%)</title><rect x="28.5312%" y="2116" width="2.1770%" height="15" fill="rgb(244,222,10)"/><text x="28.7812%" y="2126.50">e..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (170 samples, 2.18%)</title><rect x="28.5312%" y="2132" width="2.1770%" height="15" fill="rgb(236,179,52)"/><text x="28.7812%" y="2142.50">_..</text></g><g><title>&lt;module&gt; (boto3/__init__.py:16) (170 samples, 2.18%)</title><rect x="28.5312%" y="2148" width="2.1770%" height="15" fill="rgb(213,23,39)"/><text x="28.7812%" y="2158.50">&lt;..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (170 samples, 2.18%)</title><rect x="28.5312%" y="2164" width="2.1770%" height="15" fill="rgb(238,48,10)"/><text x="28.7812%" y="2174.50">_..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (170 samples, 2.18%)</title><rect x="28.5312%" y="2180" width="2.1770%" height="15" fill="rgb(251,196,23)"/><text x="28.7812%" y="2190.50">_..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (170 samples, 2.18%)</title><rect x="28.5312%" y="2196" width="2.1770%" height="15" fill="rgb(250,152,24)"/><text x="28.7812%" y="2206.50">_..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (165 samples, 2.11%)</title><rect x="28.5952%" y="2212" width="2.1129%" height="15" fill="rgb(209,150,17)"/><text x="28.8452%" y="2222.50">e..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (165 samples, 2.11%)</title><rect x="28.5952%" y="2228" width="2.1129%" height="15" fill="rgb(234,202,34)"/><text x="28.8452%" y="2238.50">_..</text></g><g><title>&lt;module&gt; (tensorboard/compat/tensorflow_stub/__init__.py:25) (189 samples, 2.42%)</title><rect x="28.4159%" y="1604" width="2.4203%" height="15" fill="rgb(253,148,53)"/><text x="28.6659%" y="1614.50">&lt;m..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (189 samples, 2.42%)</title><rect x="28.4159%" y="1620" width="2.4203%" height="15" fill="rgb(218,129,16)"/><text x="28.6659%" y="1630.50">_f..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (189 samples, 2.42%)</title><rect x="28.4159%" y="1636" width="2.4203%" height="15" fill="rgb(216,85,19)"/><text x="28.6659%" y="1646.50">_f..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (189 samples, 2.42%)</title><rect x="28.4159%" y="1652" width="2.4203%" height="15" fill="rgb(235,228,7)"/><text x="28.6659%" y="1662.50">_l..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (189 samples, 2.42%)</title><rect x="28.4159%" y="1668" width="2.4203%" height="15" fill="rgb(245,175,0)"/><text x="28.6659%" y="1678.50">ex..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (189 samples, 2.42%)</title><rect x="28.4159%" y="1684" width="2.4203%" height="15" fill="rgb(208,168,36)"/><text x="28.6659%" y="1694.50">_c..</text></g><g><title>&lt;module&gt; (tensorboard/compat/tensorflow_stub/dtypes.py:22) (189 samples, 2.42%)</title><rect x="28.4159%" y="1700" width="2.4203%" height="15" fill="rgb(246,171,24)"/><text x="28.6659%" y="1710.50">&lt;m..</text></g><g><title>_handle_fromlist (&lt;frozen importlib._bootstrap&gt;:1035) (189 samples, 2.42%)</title><rect x="28.4159%" y="1716" width="2.4203%" height="15" fill="rgb(215,142,24)"/><text x="28.6659%" y="1726.50">_h..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (189 samples, 2.42%)</title><rect x="28.4159%" y="1732" width="2.4203%" height="15" fill="rgb(250,187,7)"/><text x="28.6659%" y="1742.50">_c..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (189 samples, 2.42%)</title><rect x="28.4159%" y="1748" width="2.4203%" height="15" fill="rgb(228,66,33)"/><text x="28.6659%" y="1758.50">_f..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (189 samples, 2.42%)</title><rect x="28.4159%" y="1764" width="2.4203%" height="15" fill="rgb(234,215,21)"/><text x="28.6659%" y="1774.50">_f..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (189 samples, 2.42%)</title><rect x="28.4159%" y="1780" width="2.4203%" height="15" fill="rgb(222,191,20)"/><text x="28.6659%" y="1790.50">_l..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (189 samples, 2.42%)</title><rect x="28.4159%" y="1796" width="2.4203%" height="15" fill="rgb(245,79,54)"/><text x="28.6659%" y="1806.50">ex..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (189 samples, 2.42%)</title><rect x="28.4159%" y="1812" width="2.4203%" height="15" fill="rgb(240,10,37)"/><text x="28.6659%" y="1822.50">_c..</text></g><g><title>&lt;module&gt; (tensorboard/compat/tensorflow_stub/pywrap_tensorflow.py:25) (187 samples, 2.39%)</title><rect x="28.4415%" y="1828" width="2.3947%" height="15" fill="rgb(214,192,32)"/><text x="28.6915%" y="1838.50">&lt;m..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (187 samples, 2.39%)</title><rect x="28.4415%" y="1844" width="2.3947%" height="15" fill="rgb(209,36,54)"/><text x="28.6915%" y="1854.50">_f..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (187 samples, 2.39%)</title><rect x="28.4415%" y="1860" width="2.3947%" height="15" fill="rgb(220,10,11)"/><text x="28.6915%" y="1870.50">_f..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (187 samples, 2.39%)</title><rect x="28.4415%" y="1876" width="2.3947%" height="15" fill="rgb(221,106,17)"/><text x="28.6915%" y="1886.50">_l..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (187 samples, 2.39%)</title><rect x="28.4415%" y="1892" width="2.3947%" height="15" fill="rgb(251,142,44)"/><text x="28.6915%" y="1902.50">ex..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (187 samples, 2.39%)</title><rect x="28.4415%" y="1908" width="2.3947%" height="15" fill="rgb(238,13,15)"/><text x="28.6915%" y="1918.50">_c..</text></g><g><title>&lt;module&gt; (tensorboard/compat/tensorflow_stub/io/__init__.py:20) (187 samples, 2.39%)</title><rect x="28.4415%" y="1924" width="2.3947%" height="15" fill="rgb(208,107,27)"/><text x="28.6915%" y="1934.50">&lt;m..</text></g><g><title>_handle_fromlist (&lt;frozen importlib._bootstrap&gt;:1035) (187 samples, 2.39%)</title><rect x="28.4415%" y="1940" width="2.3947%" height="15" fill="rgb(205,136,37)"/><text x="28.6915%" y="1950.50">_h..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (187 samples, 2.39%)</title><rect x="28.4415%" y="1956" width="2.3947%" height="15" fill="rgb(250,205,27)"/><text x="28.6915%" y="1966.50">_c..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (187 samples, 2.39%)</title><rect x="28.4415%" y="1972" width="2.3947%" height="15" fill="rgb(210,80,43)"/><text x="28.6915%" y="1982.50">_f..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (187 samples, 2.39%)</title><rect x="28.4415%" y="1988" width="2.3947%" height="15" fill="rgb(247,160,36)"/><text x="28.6915%" y="1998.50">_f..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (187 samples, 2.39%)</title><rect x="28.4415%" y="2004" width="2.3947%" height="15" fill="rgb(234,13,49)"/><text x="28.6915%" y="2014.50">_l..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (187 samples, 2.39%)</title><rect x="28.4415%" y="2020" width="2.3947%" height="15" fill="rgb(234,122,0)"/><text x="28.6915%" y="2030.50">ex..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (187 samples, 2.39%)</title><rect x="28.4415%" y="2036" width="2.3947%" height="15" fill="rgb(207,146,38)"/><text x="28.6915%" y="2046.50">_c..</text></g><g><title>&lt;module&gt; (tensorboard/summary/v1.py:26) (227 samples, 2.91%)</title><rect x="28.0830%" y="1124" width="2.9069%" height="15" fill="rgb(207,177,25)"/><text x="28.3330%" y="1134.50">&lt;m..</text></g><g><title>_handle_fromlist (&lt;frozen importlib._bootstrap&gt;:1035) (227 samples, 2.91%)</title><rect x="28.0830%" y="1140" width="2.9069%" height="15" fill="rgb(211,178,42)"/><text x="28.3330%" y="1150.50">_h..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (227 samples, 2.91%)</title><rect x="28.0830%" y="1156" width="2.9069%" height="15" fill="rgb(230,69,54)"/><text x="28.3330%" y="1166.50">_c..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (227 samples, 2.91%)</title><rect x="28.0830%" y="1172" width="2.9069%" height="15" fill="rgb(214,135,41)"/><text x="28.3330%" y="1182.50">_f..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (225 samples, 2.88%)</title><rect x="28.1086%" y="1188" width="2.8813%" height="15" fill="rgb(237,67,25)"/><text x="28.3586%" y="1198.50">_f..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (225 samples, 2.88%)</title><rect x="28.1086%" y="1204" width="2.8813%" height="15" fill="rgb(222,189,50)"/><text x="28.3586%" y="1214.50">_l..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (225 samples, 2.88%)</title><rect x="28.1086%" y="1220" width="2.8813%" height="15" fill="rgb(245,148,34)"/><text x="28.3586%" y="1230.50">ex..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (225 samples, 2.88%)</title><rect x="28.1086%" y="1236" width="2.8813%" height="15" fill="rgb(222,29,6)"/><text x="28.3586%" y="1246.50">_c..</text></g><g><title>&lt;module&gt; (tensorboard/plugins/histogram/summary.py:38) (223 samples, 2.86%)</title><rect x="28.1342%" y="1252" width="2.8557%" height="15" fill="rgb(221,189,43)"/><text x="28.3842%" y="1262.50">&lt;m..</text></g><g><title>_handle_fromlist (&lt;frozen importlib._bootstrap&gt;:1035) (223 samples, 2.86%)</title><rect x="28.1342%" y="1268" width="2.8557%" height="15" fill="rgb(207,36,27)"/><text x="28.3842%" y="1278.50">_h..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (223 samples, 2.86%)</title><rect x="28.1342%" y="1284" width="2.8557%" height="15" fill="rgb(217,90,24)"/><text x="28.3842%" y="1294.50">_c..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (223 samples, 2.86%)</title><rect x="28.1342%" y="1300" width="2.8557%" height="15" fill="rgb(224,66,35)"/><text x="28.3842%" y="1310.50">_f..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (223 samples, 2.86%)</title><rect x="28.1342%" y="1316" width="2.8557%" height="15" fill="rgb(221,13,50)"/><text x="28.3842%" y="1326.50">_f..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (223 samples, 2.86%)</title><rect x="28.1342%" y="1332" width="2.8557%" height="15" fill="rgb(236,68,49)"/><text x="28.3842%" y="1342.50">_l..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (223 samples, 2.86%)</title><rect x="28.1342%" y="1348" width="2.8557%" height="15" fill="rgb(229,146,28)"/><text x="28.3842%" y="1358.50">ex..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (223 samples, 2.86%)</title><rect x="28.1342%" y="1364" width="2.8557%" height="15" fill="rgb(225,31,38)"/><text x="28.3842%" y="1374.50">_c..</text></g><g><title>&lt;module&gt; (tensorboard/plugins/histogram/summary_v2.py:37) (223 samples, 2.86%)</title><rect x="28.1342%" y="1380" width="2.8557%" height="15" fill="rgb(250,208,3)"/><text x="28.3842%" y="1390.50">&lt;m..</text></g><g><title>_handle_fromlist (&lt;frozen importlib._bootstrap&gt;:1035) (223 samples, 2.86%)</title><rect x="28.1342%" y="1396" width="2.8557%" height="15" fill="rgb(246,54,23)"/><text x="28.3842%" y="1406.50">_h..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (223 samples, 2.86%)</title><rect x="28.1342%" y="1412" width="2.8557%" height="15" fill="rgb(243,76,11)"/><text x="28.3842%" y="1422.50">_c..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (223 samples, 2.86%)</title><rect x="28.1342%" y="1428" width="2.8557%" height="15" fill="rgb(245,21,50)"/><text x="28.3842%" y="1438.50">_f..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (223 samples, 2.86%)</title><rect x="28.1342%" y="1444" width="2.8557%" height="15" fill="rgb(228,9,43)"/><text x="28.3842%" y="1454.50">_f..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (223 samples, 2.86%)</title><rect x="28.1342%" y="1460" width="2.8557%" height="15" fill="rgb(208,100,47)"/><text x="28.3842%" y="1470.50">_l..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (223 samples, 2.86%)</title><rect x="28.1342%" y="1476" width="2.8557%" height="15" fill="rgb(232,26,8)"/><text x="28.3842%" y="1486.50">ex..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (223 samples, 2.86%)</title><rect x="28.1342%" y="1492" width="2.8557%" height="15" fill="rgb(216,166,38)"/><text x="28.3842%" y="1502.50">_c..</text></g><g><title>&lt;module&gt; (tensorboard/util/tensor_util.py:24) (223 samples, 2.86%)</title><rect x="28.1342%" y="1508" width="2.8557%" height="15" fill="rgb(251,202,51)"/><text x="28.3842%" y="1518.50">&lt;m..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (223 samples, 2.86%)</title><rect x="28.1342%" y="1524" width="2.8557%" height="15" fill="rgb(254,216,34)"/><text x="28.3842%" y="1534.50">_f..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (223 samples, 2.86%)</title><rect x="28.1342%" y="1540" width="2.8557%" height="15" fill="rgb(251,32,27)"/><text x="28.3842%" y="1550.50">_f..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (223 samples, 2.86%)</title><rect x="28.1342%" y="1556" width="2.8557%" height="15" fill="rgb(208,127,28)"/><text x="28.3842%" y="1566.50">_l..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (223 samples, 2.86%)</title><rect x="28.1342%" y="1572" width="2.8557%" height="15" fill="rgb(224,137,22)"/><text x="28.3842%" y="1582.50">ex..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (223 samples, 2.86%)</title><rect x="28.1342%" y="1588" width="2.8557%" height="15" fill="rgb(254,70,32)"/><text x="28.3842%" y="1598.50">_c..</text></g><g><title>&lt;module&gt; (tensorflow_core/_api/v2/compat/v2/__init__.py:314) (244 samples, 3.12%)</title><rect x="27.9805%" y="852" width="3.1246%" height="15" fill="rgb(229,75,37)"/><text x="28.2305%" y="862.50">&lt;mo..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (244 samples, 3.12%)</title><rect x="27.9805%" y="868" width="3.1246%" height="15" fill="rgb(252,64,23)"/><text x="28.2305%" y="878.50">_fi..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:953) (244 samples, 3.12%)</title><rect x="27.9805%" y="884" width="3.1246%" height="15" fill="rgb(232,162,48)"/><text x="28.2305%" y="894.50">_fi..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (244 samples, 3.12%)</title><rect x="27.9805%" y="900" width="3.1246%" height="15" fill="rgb(246,160,12)"/><text x="28.2305%" y="910.50">_ca..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (244 samples, 3.12%)</title><rect x="27.9805%" y="916" width="3.1246%" height="15" fill="rgb(247,166,0)"/><text x="28.2305%" y="926.50">_fi..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (242 samples, 3.10%)</title><rect x="28.0061%" y="932" width="3.0990%" height="15" fill="rgb(249,219,21)"/><text x="28.2561%" y="942.50">_fi..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (242 samples, 3.10%)</title><rect x="28.0061%" y="948" width="3.0990%" height="15" fill="rgb(205,209,3)"/><text x="28.2561%" y="958.50">_lo..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (242 samples, 3.10%)</title><rect x="28.0061%" y="964" width="3.0990%" height="15" fill="rgb(243,44,1)"/><text x="28.2561%" y="974.50">exe..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (242 samples, 3.10%)</title><rect x="28.0061%" y="980" width="3.0990%" height="15" fill="rgb(206,159,16)"/><text x="28.2561%" y="990.50">_ca..</text></g><g><title>&lt;module&gt; (tensorboard/summary/__init__.py:25) (242 samples, 3.10%)</title><rect x="28.0061%" y="996" width="3.0990%" height="15" fill="rgb(244,77,30)"/><text x="28.2561%" y="1006.50">&lt;mo..</text></g><g><title>_handle_fromlist (&lt;frozen importlib._bootstrap&gt;:1035) (242 samples, 3.10%)</title><rect x="28.0061%" y="1012" width="3.0990%" height="15" fill="rgb(218,69,12)"/><text x="28.2561%" y="1022.50">_ha..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (242 samples, 3.10%)</title><rect x="28.0061%" y="1028" width="3.0990%" height="15" fill="rgb(212,87,7)"/><text x="28.2561%" y="1038.50">_ca..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (242 samples, 3.10%)</title><rect x="28.0061%" y="1044" width="3.0990%" height="15" fill="rgb(245,114,25)"/><text x="28.2561%" y="1054.50">_fi..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (242 samples, 3.10%)</title><rect x="28.0061%" y="1060" width="3.0990%" height="15" fill="rgb(210,61,42)"/><text x="28.2561%" y="1070.50">_fi..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (242 samples, 3.10%)</title><rect x="28.0061%" y="1076" width="3.0990%" height="15" fill="rgb(211,52,33)"/><text x="28.2561%" y="1086.50">_lo..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (242 samples, 3.10%)</title><rect x="28.0061%" y="1092" width="3.0990%" height="15" fill="rgb(234,58,33)"/><text x="28.2561%" y="1102.50">exe..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (242 samples, 3.10%)</title><rect x="28.0061%" y="1108" width="3.0990%" height="15" fill="rgb(220,115,36)"/><text x="28.2561%" y="1118.50">_ca..</text></g><g><title>&lt;module&gt; (tensorflow_core/_api/v2/compat/v2/__init__.py:32) (290 samples, 3.71%)</title><rect x="27.8141%" y="500" width="3.7137%" height="15" fill="rgb(243,153,54)"/><text x="28.0641%" y="510.50">&lt;mod..</text></g><g><title>_handle_fromlist (&lt;frozen importlib._bootstrap&gt;:1035) (290 samples, 3.71%)</title><rect x="27.8141%" y="516" width="3.7137%" height="15" fill="rgb(251,47,18)"/><text x="28.0641%" y="526.50">_han..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (290 samples, 3.71%)</title><rect x="27.8141%" y="532" width="3.7137%" height="15" fill="rgb(242,102,42)"/><text x="28.0641%" y="542.50">_cal..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (290 samples, 3.71%)</title><rect x="27.8141%" y="548" width="3.7137%" height="15" fill="rgb(234,31,38)"/><text x="28.0641%" y="558.50">_fin..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (290 samples, 3.71%)</title><rect x="27.8141%" y="564" width="3.7137%" height="15" fill="rgb(221,117,51)"/><text x="28.0641%" y="574.50">_fin..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (290 samples, 3.71%)</title><rect x="27.8141%" y="580" width="3.7137%" height="15" fill="rgb(212,20,18)"/><text x="28.0641%" y="590.50">_loa..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (290 samples, 3.71%)</title><rect x="27.8141%" y="596" width="3.7137%" height="15" fill="rgb(245,133,36)"/><text x="28.0641%" y="606.50">exec..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (290 samples, 3.71%)</title><rect x="27.8141%" y="612" width="3.7137%" height="15" fill="rgb(212,6,19)"/><text x="28.0641%" y="622.50">_cal..</text></g><g><title>&lt;module&gt; (tensorflow_core/_api/v2/compat/v2/compat/__init__.py:23) (290 samples, 3.71%)</title><rect x="27.8141%" y="628" width="3.7137%" height="15" fill="rgb(218,1,36)"/><text x="28.0641%" y="638.50">&lt;mod..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (290 samples, 3.71%)</title><rect x="27.8141%" y="644" width="3.7137%" height="15" fill="rgb(246,84,54)"/><text x="28.0641%" y="654.50">_fin..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (290 samples, 3.71%)</title><rect x="27.8141%" y="660" width="3.7137%" height="15" fill="rgb(242,110,6)"/><text x="28.0641%" y="670.50">_fin..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (290 samples, 3.71%)</title><rect x="27.8141%" y="676" width="3.7137%" height="15" fill="rgb(214,47,5)"/><text x="28.0641%" y="686.50">_loa..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (290 samples, 3.71%)</title><rect x="27.8141%" y="692" width="3.7137%" height="15" fill="rgb(218,159,25)"/><text x="28.0641%" y="702.50">exec..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (290 samples, 3.71%)</title><rect x="27.8141%" y="708" width="3.7137%" height="15" fill="rgb(215,211,28)"/><text x="28.0641%" y="718.50">_cal..</text></g><g><title>&lt;module&gt; (tensorflow_core/_api/v2/compat/__init__.py:24) (277 samples, 3.55%)</title><rect x="27.9805%" y="724" width="3.5472%" height="15" fill="rgb(238,59,32)"/><text x="28.2305%" y="734.50">&lt;mod..</text></g><g><title>_handle_fromlist (&lt;frozen importlib._bootstrap&gt;:1035) (277 samples, 3.55%)</title><rect x="27.9805%" y="740" width="3.5472%" height="15" fill="rgb(226,82,3)"/><text x="28.2305%" y="750.50">_han..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (277 samples, 3.55%)</title><rect x="27.9805%" y="756" width="3.5472%" height="15" fill="rgb(240,164,32)"/><text x="28.2305%" y="766.50">_cal..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (277 samples, 3.55%)</title><rect x="27.9805%" y="772" width="3.5472%" height="15" fill="rgb(232,46,7)"/><text x="28.2305%" y="782.50">_fin..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (277 samples, 3.55%)</title><rect x="27.9805%" y="788" width="3.5472%" height="15" fill="rgb(229,129,53)"/><text x="28.2305%" y="798.50">_fin..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (277 samples, 3.55%)</title><rect x="27.9805%" y="804" width="3.5472%" height="15" fill="rgb(234,188,29)"/><text x="28.2305%" y="814.50">_loa..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (277 samples, 3.55%)</title><rect x="27.9805%" y="820" width="3.5472%" height="15" fill="rgb(246,141,4)"/><text x="28.2305%" y="830.50">exec..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (277 samples, 3.55%)</title><rect x="27.9805%" y="836" width="3.5472%" height="15" fill="rgb(229,23,39)"/><text x="28.2305%" y="846.50">_cal..</text></g><g><title>&lt;module&gt; (tensorflow_core/__init__.py:45) (907 samples, 11.61%)</title><rect x="19.9385%" y="244" width="11.6148%" height="15" fill="rgb(206,12,3)"/><text x="20.1885%" y="254.50">&lt;module&gt; (tensorf..</text></g><g><title>_handle_fromlist (&lt;frozen importlib._bootstrap&gt;:1035) (907 samples, 11.61%)</title><rect x="19.9385%" y="260" width="11.6148%" height="15" fill="rgb(252,226,20)"/><text x="20.1885%" y="270.50">_handle_fromlist ..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (907 samples, 11.61%)</title><rect x="19.9385%" y="276" width="11.6148%" height="15" fill="rgb(216,123,35)"/><text x="20.1885%" y="286.50">_call_with_frames..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (907 samples, 11.61%)</title><rect x="19.9385%" y="292" width="11.6148%" height="15" fill="rgb(212,68,40)"/><text x="20.1885%" y="302.50">_find_and_load (&lt;..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (907 samples, 11.61%)</title><rect x="19.9385%" y="308" width="11.6148%" height="15" fill="rgb(254,125,32)"/><text x="20.1885%" y="318.50">_find_and_load_un..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (907 samples, 11.61%)</title><rect x="19.9385%" y="324" width="11.6148%" height="15" fill="rgb(253,97,22)"/><text x="20.1885%" y="334.50">_load_unlocked (&lt;..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (907 samples, 11.61%)</title><rect x="19.9385%" y="340" width="11.6148%" height="15" fill="rgb(241,101,14)"/><text x="20.1885%" y="350.50">exec_module (&lt;fro..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (907 samples, 11.61%)</title><rect x="19.9385%" y="356" width="11.6148%" height="15" fill="rgb(238,103,29)"/><text x="20.1885%" y="366.50">_call_with_frames..</text></g><g><title>&lt;module&gt; (tensorflow_core/_api/v2/compat/__init__.py:24) (292 samples, 3.74%)</title><rect x="27.8141%" y="372" width="3.7393%" height="15" fill="rgb(233,195,47)"/><text x="28.0641%" y="382.50">&lt;mod..</text></g><g><title>_handle_fromlist (&lt;frozen importlib._bootstrap&gt;:1035) (292 samples, 3.74%)</title><rect x="27.8141%" y="388" width="3.7393%" height="15" fill="rgb(246,218,30)"/><text x="28.0641%" y="398.50">_han..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (292 samples, 3.74%)</title><rect x="27.8141%" y="404" width="3.7393%" height="15" fill="rgb(219,145,47)"/><text x="28.0641%" y="414.50">_cal..</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (292 samples, 3.74%)</title><rect x="27.8141%" y="420" width="3.7393%" height="15" fill="rgb(243,12,26)"/><text x="28.0641%" y="430.50">_fin..</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (292 samples, 3.74%)</title><rect x="27.8141%" y="436" width="3.7393%" height="15" fill="rgb(214,87,16)"/><text x="28.0641%" y="446.50">_fin..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (292 samples, 3.74%)</title><rect x="27.8141%" y="452" width="3.7393%" height="15" fill="rgb(208,99,42)"/><text x="28.0641%" y="462.50">_loa..</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (292 samples, 3.74%)</title><rect x="27.8141%" y="468" width="3.7393%" height="15" fill="rgb(253,99,2)"/><text x="28.0641%" y="478.50">exec..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (292 samples, 3.74%)</title><rect x="27.8141%" y="484" width="3.7393%" height="15" fill="rgb(220,168,23)"/><text x="28.0641%" y="494.50">_cal..</text></g><g><title>&lt;module&gt; (isolate_sqrtn_bug.py:1) (2,474 samples, 31.68%)</title><rect x="0.0000%" y="52" width="31.6814%" height="15" fill="rgb(242,38,24)"/><text x="0.2500%" y="62.50">&lt;module&gt; (isolate_sqrtn_bug.py:1)</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (2,474 samples, 31.68%)</title><rect x="0.0000%" y="68" width="31.6814%" height="15" fill="rgb(225,182,9)"/><text x="0.2500%" y="78.50">_find_and_load (&lt;frozen importlib._bootstrap&gt;:983)</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (2,474 samples, 31.68%)</title><rect x="0.0000%" y="84" width="31.6814%" height="15" fill="rgb(243,178,37)"/><text x="0.2500%" y="94.50">_find_and_load_unlocked (&lt;frozen importlib._bootstr..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (2,474 samples, 31.68%)</title><rect x="0.0000%" y="100" width="31.6814%" height="15" fill="rgb(232,139,19)"/><text x="0.2500%" y="110.50">_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677)</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (2,473 samples, 31.67%)</title><rect x="0.0128%" y="116" width="31.6686%" height="15" fill="rgb(225,201,24)"/><text x="0.2628%" y="126.50">exec_module (&lt;frozen importlib._bootstrap_external&gt;..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (2,473 samples, 31.67%)</title><rect x="0.0128%" y="132" width="31.6686%" height="15" fill="rgb(221,47,46)"/><text x="0.2628%" y="142.50">_call_with_frames_removed (&lt;frozen importlib._boots..</text></g><g><title>&lt;module&gt; (tensorflow/__init__.py:98) (2,473 samples, 31.67%)</title><rect x="0.0128%" y="148" width="31.6686%" height="15" fill="rgb(249,23,13)"/><text x="0.2628%" y="158.50">&lt;module&gt; (tensorflow/__init__.py:98)</text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (2,473 samples, 31.67%)</title><rect x="0.0128%" y="164" width="31.6686%" height="15" fill="rgb(219,9,5)"/><text x="0.2628%" y="174.50">_find_and_load (&lt;frozen importlib._bootstrap&gt;:983)</text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (2,473 samples, 31.67%)</title><rect x="0.0128%" y="180" width="31.6686%" height="15" fill="rgb(254,171,16)"/><text x="0.2628%" y="190.50">_find_and_load_unlocked (&lt;frozen importlib._bootstr..</text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (2,473 samples, 31.67%)</title><rect x="0.0128%" y="196" width="31.6686%" height="15" fill="rgb(230,171,20)"/><text x="0.2628%" y="206.50">_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677)</text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (2,473 samples, 31.67%)</title><rect x="0.0128%" y="212" width="31.6686%" height="15" fill="rgb(210,71,41)"/><text x="0.2628%" y="222.50">exec_module (&lt;frozen importlib._bootstrap_external&gt;..</text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (2,473 samples, 31.67%)</title><rect x="0.0128%" y="228" width="31.6686%" height="15" fill="rgb(206,173,20)"/><text x="0.2628%" y="238.50">_call_with_frames_removed (&lt;frozen importlib._boots..</text></g><g><title>stack_fn (keras_applications/resnet_common.py:426) (229 samples, 2.93%)</title><rect x="32.1552%" y="148" width="2.9325%" height="15" fill="rgb(233,88,34)"/><text x="32.4052%" y="158.50">st..</text></g><g><title>stack1 (keras_applications/resnet_common.py:124) (155 samples, 1.98%)</title><rect x="33.1028%" y="164" width="1.9849%" height="15" fill="rgb(223,209,46)"/><text x="33.3528%" y="174.50">s..</text></g><g><title>stack_fn (keras_applications/resnet_common.py:427) (224 samples, 2.87%)</title><rect x="35.0877%" y="148" width="2.8685%" height="15" fill="rgb(250,43,18)"/><text x="35.3377%" y="158.50">st..</text></g><g><title>stack1 (keras_applications/resnet_common.py:124) (150 samples, 1.92%)</title><rect x="36.0353%" y="164" width="1.9209%" height="15" fill="rgb(208,13,10)"/><text x="36.2853%" y="174.50">s..</text></g><g><title>stack1 (keras_applications/resnet_common.py:122) (83 samples, 1.06%)</title><rect x="37.9562%" y="164" width="1.0629%" height="15" fill="rgb(212,200,36)"/><text x="38.2062%" y="174.50"></text></g><g><title>block1 (keras_applications/resnet_common.py:91) (84 samples, 1.08%)</title><rect x="40.4021%" y="180" width="1.0757%" height="15" fill="rgb(225,90,30)"/><text x="40.6521%" y="190.50"></text></g><g><title>stack_fn (keras_applications/resnet_common.py:428) (370 samples, 4.74%)</title><rect x="37.9562%" y="148" width="4.7381%" height="15" fill="rgb(236,182,39)"/><text x="38.2062%" y="158.50">stack_..</text></g><g><title>stack1 (keras_applications/resnet_common.py:124) (287 samples, 3.68%)</title><rect x="39.0191%" y="164" width="3.6752%" height="15" fill="rgb(212,144,35)"/><text x="39.2691%" y="174.50">stac..</text></g><g><title>stack1 (keras_applications/resnet_common.py:122) (104 samples, 1.33%)</title><rect x="42.6943%" y="164" width="1.3318%" height="15" fill="rgb(228,63,44)"/><text x="42.9443%" y="174.50"></text></g><g><title>ResNet (keras_applications/resnet_common.py:373) (1,060 samples, 13.57%)</title><rect x="32.1552%" y="132" width="13.5741%" height="15" fill="rgb(228,109,6)"/><text x="32.4052%" y="142.50">ResNet (keras_applica..</text></g><g><title>stack_fn (keras_applications/resnet_common.py:429) (237 samples, 3.03%)</title><rect x="42.6943%" y="148" width="3.0350%" height="15" fill="rgb(238,117,24)"/><text x="42.9443%" y="158.50">sta..</text></g><g><title>stack1 (keras_applications/resnet_common.py:124) (133 samples, 1.70%)</title><rect x="44.0261%" y="164" width="1.7032%" height="15" fill="rgb(242,26,26)"/><text x="44.2761%" y="174.50"></text></g><g><title>&lt;module&gt; (isolate_sqrtn_bug.py:16) (1,110 samples, 14.21%)</title><rect x="31.6814%" y="52" width="14.2144%" height="15" fill="rgb(221,92,48)"/><text x="31.9314%" y="62.50">&lt;module&gt; (isolate_sqrt..</text></g><g><title>get_keras_model (load_keras_model.py:86) (1,110 samples, 14.21%)</title><rect x="31.6814%" y="68" width="14.2144%" height="15" fill="rgb(209,209,32)"/><text x="31.9314%" y="78.50">get_keras_model (load_..</text></g><g><title>wrapper (tensorflow_core/python/keras/applications/__init__.py:49) (1,110 samples, 14.21%)</title><rect x="31.6814%" y="84" width="14.2144%" height="15" fill="rgb(221,70,22)"/><text x="31.9314%" y="94.50">wrapper (tensorflow_co..</text></g><g><title>ResNet50 (tensorflow_core/python/keras/applications/resnet.py:33) (1,110 samples, 14.21%)</title><rect x="31.6814%" y="100" width="14.2144%" height="15" fill="rgb(248,145,5)"/><text x="31.9314%" y="110.50">ResNet50 (tensorflow_c..</text></g><g><title>ResNet50 (keras_applications/resnet_common.py:435) (1,110 samples, 14.21%)</title><rect x="31.6814%" y="116" width="14.2144%" height="15" fill="rgb(226,116,26)"/><text x="31.9314%" y="126.50">ResNet50 (keras_applic..</text></g><g><title>_apply_op_helper (tensorflow_core/python/framework/op_def_library.py:527) (81 samples, 1.04%)</title><rect x="48.1752%" y="436" width="1.0373%" height="15" fill="rgb(244,5,17)"/><text x="48.4252%" y="446.50"></text></g><g><title>internal_convert_to_tensor (tensorflow_core/python/framework/ops.py:1296) (81 samples, 1.04%)</title><rect x="48.1752%" y="452" width="1.0373%" height="15" fill="rgb(252,159,33)"/><text x="48.4252%" y="462.50"></text></g><g><title>_dense_var_to_tensor (tensorflow_core/python/ops/resource_variable_ops.py:1789) (81 samples, 1.04%)</title><rect x="48.1752%" y="468" width="1.0373%" height="15" fill="rgb(206,71,0)"/><text x="48.4252%" y="478.50"></text></g><g><title>_dense_var_to_tensor (tensorflow_core/python/ops/resource_variable_ops.py:1214) (81 samples, 1.04%)</title><rect x="48.1752%" y="484" width="1.0373%" height="15" fill="rgb(233,118,54)"/><text x="48.4252%" y="494.50"></text></g><g><title>value (tensorflow_core/python/ops/resource_variable_ops.py:524) (80 samples, 1.02%)</title><rect x="48.1880%" y="500" width="1.0245%" height="15" fill="rgb(234,83,48)"/><text x="48.4380%" y="510.50"></text></g><g><title>fused_batch_norm_v3 (tensorflow_core/python/ops/gen_nn_ops.py:4620) (96 samples, 1.23%)</title><rect x="48.1240%" y="420" width="1.2294%" height="15" fill="rgb(228,3,54)"/><text x="48.3740%" y="430.50"></text></g><g><title>_fused_batch_norm (tensorflow_core/python/keras/layers/normalization.py:517) (132 samples, 1.69%)</title><rect x="47.7270%" y="340" width="1.6904%" height="15" fill="rgb(226,155,13)"/><text x="47.9770%" y="350.50"></text></g><g><title>smart_cond (tensorflow_core/python/keras/utils/tf_utils.py:59) (132 samples, 1.69%)</title><rect x="47.7270%" y="356" width="1.6904%" height="15" fill="rgb(241,28,37)"/><text x="47.9770%" y="366.50"></text></g><g><title>smart_cond (tensorflow_core/python/framework/smart_cond.py:56) (132 samples, 1.69%)</title><rect x="47.7270%" y="372" width="1.6904%" height="15" fill="rgb(233,93,10)"/><text x="47.9770%" y="382.50"></text></g><g><title>_fused_batch_norm_inference (tensorflow_core/python/keras/layers/normalization.py:514) (132 samples, 1.69%)</title><rect x="47.7270%" y="388" width="1.6904%" height="15" fill="rgb(225,113,19)"/><text x="47.9770%" y="398.50"></text></g><g><title>fused_batch_norm (tensorflow_core/python/ops/nn_impl.py:1509) (101 samples, 1.29%)</title><rect x="48.1240%" y="404" width="1.2934%" height="15" fill="rgb(241,2,18)"/><text x="48.3740%" y="414.50"></text></g><g><title>call (tensorflow_core/python/keras/layers/normalization.py:659) (140 samples, 1.79%)</title><rect x="47.7270%" y="324" width="1.7928%" height="15" fill="rgb(228,207,21)"/><text x="47.9770%" y="334.50">c..</text></g><g><title>tf__grads (tmp4iqpb6jf.py:11) (225 samples, 2.88%)</title><rect x="46.6513%" y="212" width="2.8813%" height="15" fill="rgb(213,211,35)"/><text x="46.9013%" y="222.50">tf..</text></g><g><title>converted_call (tensorflow_core/python/autograph/impl/api.py:439) (225 samples, 2.88%)</title><rect x="46.6513%" y="228" width="2.8813%" height="15" fill="rgb(209,83,10)"/><text x="46.9013%" y="238.50">co..</text></g><g><title>_call_unconverted (tensorflow_core/python/autograph/impl/api.py:332) (225 samples, 2.88%)</title><rect x="46.6513%" y="244" width="2.8813%" height="15" fill="rgb(209,164,1)"/><text x="46.9013%" y="254.50">_c..</text></g><g><title>__call__ (tensorflow_core/python/keras/engine/base_layer.py:847) (223 samples, 2.86%)</title><rect x="46.6769%" y="260" width="2.8557%" height="15" fill="rgb(213,184,43)"/><text x="46.9269%" y="270.50">__..</text></g><g><title>call (tensorflow_core/python/keras/engine/network.py:708) (223 samples, 2.86%)</title><rect x="46.6769%" y="276" width="2.8557%" height="15" fill="rgb(231,61,34)"/><text x="46.9269%" y="286.50">ca..</text></g><g><title>_run_internal_graph (tensorflow_core/python/keras/engine/network.py:860) (222 samples, 2.84%)</title><rect x="46.6897%" y="292" width="2.8429%" height="15" fill="rgb(235,75,3)"/><text x="46.9397%" y="302.50">_r..</text></g><g><title>__call__ (tensorflow_core/python/keras/engine/base_layer.py:847) (209 samples, 2.68%)</title><rect x="46.8562%" y="308" width="2.6764%" height="15" fill="rgb(220,106,47)"/><text x="47.1062%" y="318.50">__..</text></g><g><title>gradient (tensorflow_core/python/eager/backprop.py:1014) (123 samples, 1.58%)</title><rect x="49.5326%" y="260" width="1.5751%" height="15" fill="rgb(210,196,33)"/><text x="49.7826%" y="270.50"></text></g><g><title>imperative_grad (tensorflow_core/python/eager/imperative_grad.py:76) (123 samples, 1.58%)</title><rect x="49.5326%" y="276" width="1.5751%" height="15" fill="rgb(229,154,42)"/><text x="49.7826%" y="286.50"></text></g><g><title>converted_call (tensorflow_core/python/autograph/impl/api.py:439) (124 samples, 1.59%)</title><rect x="49.5326%" y="228" width="1.5879%" height="15" fill="rgb(228,114,26)"/><text x="49.7826%" y="238.50"></text></g><g><title>_call_unconverted (tensorflow_core/python/autograph/impl/api.py:332) (124 samples, 1.59%)</title><rect x="49.5326%" y="244" width="1.5879%" height="15" fill="rgb(208,144,1)"/><text x="49.7826%" y="254.50"></text></g><g><title>func_graph_from_py_func (tensorflow_core/python/framework/func_graph.py:915) (409 samples, 5.24%)</title><rect x="45.8958%" y="148" width="5.2375%" height="15" fill="rgb(239,112,37)"/><text x="46.1458%" y="158.50">func_g..</text></g><g><title>wrapped_fn (tensorflow_core/python/eager/def_function.py:358) (409 samples, 5.24%)</title><rect x="45.8958%" y="164" width="5.2375%" height="15" fill="rgb(210,96,50)"/><text x="46.1458%" y="174.50">wrappe..</text></g><g><title>wrapper (tensorflow_core/python/framework/func_graph.py:902) (409 samples, 5.24%)</title><rect x="45.8958%" y="180" width="5.2375%" height="15" fill="rgb(222,178,2)"/><text x="46.1458%" y="190.50">wrappe..</text></g><g><title>converted_call (tensorflow_core/python/autograph/impl/api.py:539) (350 samples, 4.48%)</title><rect x="46.6513%" y="196" width="4.4820%" height="15" fill="rgb(226,74,18)"/><text x="46.9013%" y="206.50">conve..</text></g><g><title>tf__grads (tmp4iqpb6jf.py:13) (125 samples, 1.60%)</title><rect x="49.5326%" y="212" width="1.6007%" height="15" fill="rgb(225,67,54)"/><text x="49.7826%" y="222.50"></text></g><g><title>_create_graph_function (tensorflow_core/python/eager/function.py:2041) (608 samples, 7.79%)</title><rect x="45.8958%" y="132" width="7.7859%" height="15" fill="rgb(251,92,32)"/><text x="46.1458%" y="142.50">_create_gra..</text></g><g><title>func_graph_from_py_func (tensorflow_core/python/framework/func_graph.py:956) (174 samples, 2.23%)</title><rect x="51.4535%" y="148" width="2.2282%" height="15" fill="rgb(228,149,22)"/><text x="51.7035%" y="158.50">f..</text></g><g><title>__exit__ (tensorflow_core/python/framework/auto_control_deps.py:357) (171 samples, 2.19%)</title><rect x="51.4919%" y="164" width="2.1898%" height="15" fill="rgb(243,54,13)"/><text x="51.7419%" y="174.50">_..</text></g><g><title>_add_control_inputs (tensorflow_core/python/framework/ops.py:2090) (161 samples, 2.06%)</title><rect x="51.6199%" y="180" width="2.0617%" height="15" fill="rgb(243,180,28)"/><text x="51.8699%" y="190.50">_..</text></g><g><title>get_concrete_function (tensorflow_core/python/eager/def_function.py:776) (638 samples, 8.17%)</title><rect x="45.8958%" y="68" width="8.1701%" height="15" fill="rgb(208,167,24)"/><text x="46.1458%" y="78.50">get_concret..</text></g><g><title>_initialize (tensorflow_core/python/eager/def_function.py:408) (638 samples, 8.17%)</title><rect x="45.8958%" y="84" width="8.1701%" height="15" fill="rgb(245,73,45)"/><text x="46.1458%" y="94.50">_initialize..</text></g><g><title>_get_concrete_function_internal_garbage_collected (tensorflow_core/python/eager/function.py:1848) (638 samples, 8.17%)</title><rect x="45.8958%" y="100" width="8.1701%" height="15" fill="rgb(237,203,48)"/><text x="46.1458%" y="110.50">_get_concre..</text></g><g><title>_maybe_define_function (tensorflow_core/python/eager/function.py:2150) (638 samples, 8.17%)</title><rect x="45.8958%" y="116" width="8.1701%" height="15" fill="rgb(211,197,16)"/><text x="46.1458%" y="126.50">_maybe_defi..</text></g><g><title>&lt;module&gt; (isolate_sqrtn_bug.py:25) (677 samples, 8.67%)</title><rect x="45.8958%" y="52" width="8.6695%" height="15" fill="rgb(243,99,51)"/><text x="46.1458%" y="62.50">&lt;module&gt; (is..</text></g><g><title>&lt;listcomp&gt; (graph_builder.py:81) (93 samples, 1.19%)</title><rect x="54.9622%" y="100" width="1.1909%" height="15" fill="rgb(215,123,29)"/><text x="55.2122%" y="110.50"></text></g><g><title>toposort (toposort.py:78) (85 samples, 1.09%)</title><rect x="55.0647%" y="116" width="1.0885%" height="15" fill="rgb(239,186,37)"/><text x="55.3147%" y="126.50"></text></g><g><title>make_graph (graph_builder.py:81) (95 samples, 1.22%)</title><rect x="54.9622%" y="84" width="1.2165%" height="15" fill="rgb(252,136,39)"/><text x="55.2122%" y="94.50"></text></g><g><title>&lt;module&gt; (isolate_sqrtn_bug.py:28) (127 samples, 1.63%)</title><rect x="54.5652%" y="52" width="1.6263%" height="15" fill="rgb(223,213,32)"/><text x="54.8152%" y="62.50"></text></g><g><title>dfgraph_from_tf_function (extraction.py:49) (96 samples, 1.23%)</title><rect x="54.9622%" y="68" width="1.2294%" height="15" fill="rgb(233,115,5)"/><text x="55.2122%" y="78.50"></text></g><g><title>articulation_points (dfgraph.py:102) (148 samples, 1.90%)</title><rect x="56.2044%" y="84" width="1.8952%" height="15" fill="rgb(207,226,44)"/><text x="56.4544%" y="94.50">a..</text></g><g><title>&lt;setcomp&gt; (dfgraph.py:102) (130 samples, 1.66%)</title><rect x="56.4349%" y="100" width="1.6647%" height="15" fill="rgb(208,126,0)"/><text x="56.6849%" y="110.50"></text></g><g><title>connected_components (graph.py:50) (893 samples, 11.44%)</title><rect x="61.2626%" y="100" width="11.4355%" height="15" fill="rgb(244,66,21)"/><text x="61.5126%" y="110.50">connected_compone..</text></g><g><title>edge_to_adj_list (graph.py:13) (89 samples, 1.14%)</title><rect x="72.6982%" y="100" width="1.1397%" height="15" fill="rgb(222,97,12)"/><text x="72.9482%" y="110.50"></text></g><g><title>edge_to_adj_list (graph.py:14) (438 samples, 5.61%)</title><rect x="73.8379%" y="100" width="5.6089%" height="15" fill="rgb(219,213,19)"/><text x="74.0879%" y="110.50">edge_to..</text></g><g><title>edge_to_adj_list (graph.py:16) (230 samples, 2.95%)</title><rect x="79.7029%" y="100" width="2.9453%" height="15" fill="rgb(252,169,30)"/><text x="79.9529%" y="110.50">ed..</text></g><g><title>articulation_points (dfgraph.py:103) (1,941 samples, 24.86%)</title><rect x="58.0996%" y="84" width="24.8559%" height="15" fill="rgb(206,32,51)"/><text x="58.3496%" y="94.50">articulation_points (dfgraph.py:103)</text></g><g><title>solve_chen_sqrtn (strategy_chen.py:38) (2,100 samples, 26.89%)</title><rect x="56.1916%" y="68" width="26.8920%" height="15" fill="rgb(250,172,42)"/><text x="56.4416%" y="78.50">solve_chen_sqrtn (strategy_chen.py:38)</text></g><g><title>solve_chen_sqrtn (strategy_chen.py:42) (423 samples, 5.42%)</title><rect x="83.3910%" y="68" width="5.4168%" height="15" fill="rgb(209,34,43)"/><text x="83.6410%" y="78.50">solve_c..</text></g><g><title>solve_r_opt (solver_common.py:99) (339 samples, 4.34%)</title><rect x="84.4666%" y="84" width="4.3411%" height="15" fill="rgb(223,11,35)"/><text x="84.7166%" y="94.50">solve..</text></g><g><title>schedule_from_rs (scheduler.py:110) (361 samples, 4.62%)</title><rect x="89.2176%" y="84" width="4.6229%" height="15" fill="rgb(251,219,26)"/><text x="89.4676%" y="94.50">sched..</text></g><g><title>run_operator (scheduler.py:52) (90 samples, 1.15%)</title><rect x="93.8532%" y="100" width="1.1525%" height="15" fill="rgb(231,119,3)"/><text x="94.1032%" y="110.50"></text></g><g><title>run_operator (scheduler.py:66) (206 samples, 2.64%)</title><rect x="95.4155%" y="100" width="2.6380%" height="15" fill="rgb(216,97,11)"/><text x="95.6655%" y="110.50">ru..</text></g><g><title>schedule_from_rs (scheduler.py:112) (340 samples, 4.35%)</title><rect x="93.8404%" y="84" width="4.3540%" height="15" fill="rgb(223,59,9)"/><text x="94.0904%" y="94.50">sched..</text></g><g><title>&lt;module&gt; (isolate_sqrtn_bug.py:33) (3,292 samples, 42.16%)</title><rect x="56.1916%" y="52" width="42.1565%" height="15" fill="rgb(233,93,31)"/><text x="56.4416%" y="62.50">&lt;module&gt; (isolate_sqrtn_bug.py:33)</text></g><g><title>solve_chen_sqrtn (strategy_chen.py:43) (745 samples, 9.54%)</title><rect x="88.8078%" y="68" width="9.5403%" height="15" fill="rgb(239,81,33)"/><text x="89.0578%" y="78.50">solve_chen_sqr..</text></g><g><title>&lt;module&gt; (keras_segmentation/__init__.py:3) (112 samples, 1.43%)</title><rect x="98.3993%" y="244" width="1.4342%" height="15" fill="rgb(213,120,34)"/><text x="98.6493%" y="254.50"></text></g><g><title>_handle_fromlist (&lt;frozen importlib._bootstrap&gt;:1035) (112 samples, 1.43%)</title><rect x="98.3993%" y="260" width="1.4342%" height="15" fill="rgb(243,49,53)"/><text x="98.6493%" y="270.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (112 samples, 1.43%)</title><rect x="98.3993%" y="276" width="1.4342%" height="15" fill="rgb(247,216,33)"/><text x="98.6493%" y="286.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (112 samples, 1.43%)</title><rect x="98.3993%" y="292" width="1.4342%" height="15" fill="rgb(226,26,14)"/><text x="98.6493%" y="302.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (112 samples, 1.43%)</title><rect x="98.3993%" y="308" width="1.4342%" height="15" fill="rgb(215,49,53)"/><text x="98.6493%" y="318.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (112 samples, 1.43%)</title><rect x="98.3993%" y="324" width="1.4342%" height="15" fill="rgb(245,162,40)"/><text x="98.6493%" y="334.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (112 samples, 1.43%)</title><rect x="98.3993%" y="340" width="1.4342%" height="15" fill="rgb(229,68,17)"/><text x="98.6493%" y="350.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (112 samples, 1.43%)</title><rect x="98.3993%" y="356" width="1.4342%" height="15" fill="rgb(213,182,10)"/><text x="98.6493%" y="366.50"></text></g><g><title>&lt;module&gt; (keras_segmentation/models/__init__.py:4) (112 samples, 1.43%)</title><rect x="98.3993%" y="372" width="1.4342%" height="15" fill="rgb(245,125,30)"/><text x="98.6493%" y="382.50"></text></g><g><title>_handle_fromlist (&lt;frozen importlib._bootstrap&gt;:1035) (112 samples, 1.43%)</title><rect x="98.3993%" y="388" width="1.4342%" height="15" fill="rgb(232,202,2)"/><text x="98.6493%" y="398.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (112 samples, 1.43%)</title><rect x="98.3993%" y="404" width="1.4342%" height="15" fill="rgb(237,140,51)"/><text x="98.6493%" y="414.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (112 samples, 1.43%)</title><rect x="98.3993%" y="420" width="1.4342%" height="15" fill="rgb(236,157,25)"/><text x="98.6493%" y="430.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (112 samples, 1.43%)</title><rect x="98.3993%" y="436" width="1.4342%" height="15" fill="rgb(219,209,0)"/><text x="98.6493%" y="446.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (112 samples, 1.43%)</title><rect x="98.3993%" y="452" width="1.4342%" height="15" fill="rgb(240,116,54)"/><text x="98.6493%" y="462.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (112 samples, 1.43%)</title><rect x="98.3993%" y="468" width="1.4342%" height="15" fill="rgb(216,10,36)"/><text x="98.6493%" y="478.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (112 samples, 1.43%)</title><rect x="98.3993%" y="484" width="1.4342%" height="15" fill="rgb(222,72,44)"/><text x="98.6493%" y="494.50"></text></g><g><title>&lt;module&gt; (load_keras_model.py:33) (113 samples, 1.45%)</title><rect x="98.3993%" y="148" width="1.4470%" height="15" fill="rgb(232,159,9)"/><text x="98.6493%" y="158.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (113 samples, 1.45%)</title><rect x="98.3993%" y="164" width="1.4470%" height="15" fill="rgb(210,39,32)"/><text x="98.6493%" y="174.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (113 samples, 1.45%)</title><rect x="98.3993%" y="180" width="1.4470%" height="15" fill="rgb(216,194,45)"/><text x="98.6493%" y="190.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (113 samples, 1.45%)</title><rect x="98.3993%" y="196" width="1.4470%" height="15" fill="rgb(218,18,35)"/><text x="98.6493%" y="206.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (113 samples, 1.45%)</title><rect x="98.3993%" y="212" width="1.4470%" height="15" fill="rgb(207,83,51)"/><text x="98.6493%" y="222.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (113 samples, 1.45%)</title><rect x="98.3993%" y="228" width="1.4470%" height="15" fill="rgb(225,63,43)"/><text x="98.6493%" y="238.50"></text></g><g><title>&lt;module&gt; (isolate_sqrtn_bug.py:8) (117 samples, 1.50%)</title><rect x="98.3865%" y="52" width="1.4983%" height="15" fill="rgb(207,57,36)"/><text x="98.6365%" y="62.50"></text></g><g><title>_find_and_load (&lt;frozen importlib._bootstrap&gt;:983) (117 samples, 1.50%)</title><rect x="98.3865%" y="68" width="1.4983%" height="15" fill="rgb(216,99,33)"/><text x="98.6365%" y="78.50"></text></g><g><title>_find_and_load_unlocked (&lt;frozen importlib._bootstrap&gt;:967) (116 samples, 1.49%)</title><rect x="98.3993%" y="84" width="1.4855%" height="15" fill="rgb(225,42,16)"/><text x="98.6493%" y="94.50"></text></g><g><title>_load_unlocked (&lt;frozen importlib._bootstrap&gt;:677) (116 samples, 1.49%)</title><rect x="98.3993%" y="100" width="1.4855%" height="15" fill="rgb(220,201,45)"/><text x="98.6493%" y="110.50"></text></g><g><title>exec_module (&lt;frozen importlib._bootstrap_external&gt;:728) (116 samples, 1.49%)</title><rect x="98.3993%" y="116" width="1.4855%" height="15" fill="rgb(225,33,4)"/><text x="98.6493%" y="126.50"></text></g><g><title>_call_with_frames_removed (&lt;frozen importlib._bootstrap&gt;:219) (116 samples, 1.49%)</title><rect x="98.3993%" y="132" width="1.4855%" height="15" fill="rgb(224,33,50)"/><text x="98.6493%" y="142.50"></text></g><g><title>all (7,809 samples, 100%)</title><rect x="0.0000%" y="36" width="100.0000%" height="15" fill="rgb(246,198,51)"/><text x="0.2500%" y="46.50"></text></g></svg></svg>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment