rapidfireai 0.0.1__py3-none-any.whl → 0.9.9__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of rapidfireai might be problematic. Click here for more details.
- rapidfireai/__init__.py +11 -5
- rapidfireai/automl/__init__.py +20 -0
- rapidfireai/automl/base.py +48 -0
- rapidfireai/automl/datatypes.py +42 -0
- rapidfireai/automl/grid_search.py +125 -0
- rapidfireai/automl/model_config.py +102 -0
- rapidfireai/automl/random_search.py +145 -0
- rapidfireai/backend/__init__.py +0 -0
- rapidfireai/backend/chunks.py +63 -0
- rapidfireai/backend/controller.py +637 -0
- rapidfireai/backend/scheduler.py +137 -0
- rapidfireai/backend/worker.py +272 -0
- rapidfireai/cli.py +380 -0
- rapidfireai/db/__init__.py +0 -0
- rapidfireai/db/db_interface.py +135 -0
- rapidfireai/db/rf_db.py +694 -0
- rapidfireai/db/tables.sql +64 -0
- rapidfireai/dispatcher/dispatcher.py +391 -0
- rapidfireai/dispatcher/gunicorn.conf.py +25 -0
- rapidfireai/experiment.py +168 -0
- rapidfireai/frontend/build/asset-manifest.json +276 -0
- rapidfireai/frontend/build/favicon.ico +0 -0
- rapidfireai/frontend/build/index.html +1 -0
- rapidfireai/frontend/build/manifest.json +15 -0
- rapidfireai/frontend/build/pdf.worker.js +1 -0
- rapidfireai/frontend/build/report.html +39 -0
- rapidfireai/frontend/build/static/css/1482.3b7bf531.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/2730.3f8937ff.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/318.0def90a7.css +7 -0
- rapidfireai/frontend/build/static/css/4762.9b7b71f7.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/4950.487ecc8b.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/5170.2574ce9d.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/6121.4d541986.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/6343.dd6979f2.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/6534.433c213f.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/6920.ffac4b2a.css +2 -0
- rapidfireai/frontend/build/static/css/7246.bf2f0c87.css +9 -0
- rapidfireai/frontend/build/static/css/7367.dd6979f2.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/8690.05d081e5.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/9531.d0910d3c.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/9780.363e4943.chunk.css +1 -0
- rapidfireai/frontend/build/static/css/main~d91a9049.c0be472c.css +1 -0
- rapidfireai/frontend/build/static/js/1000.e5ed264b.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1012.ac98ab59.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1079.6c13ac0d.js +1 -0
- rapidfireai/frontend/build/static/js/110.9059f3b8.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1142.872d0010.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1167.9a6da14c.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1248.60890b4f.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1262.83dc7673.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1273.56da3e13.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/1273.56da3e13.chunk.js.LICENSE.txt +9 -0
- rapidfireai/frontend/build/static/js/1303.7d19305c.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1351.45076ff3.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1355.b896a592.js +1 -0
- rapidfireai/frontend/build/static/js/1357.02c46a02.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1470.c51d60c6.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1482.23b74f50.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1500.19799d8d.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1648.d3b9edc7.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1860.7d96e3f9.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1909.5b1d9ff4.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/1928.44245110.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/1928.44245110.chunk.js.LICENSE.txt +11 -0
- rapidfireai/frontend/build/static/js/1933.deba26ca.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/21.aac92802.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2103.0ca12071.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2258.b3b8fab4.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2289.9ad51e87.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2323.7dd927d7.js +2 -0
- rapidfireai/frontend/build/static/js/2323.7dd927d7.js.LICENSE.txt +1 -0
- rapidfireai/frontend/build/static/js/2346.ed99ca72.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2386.0a660834.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2402.465048f9.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/243.5a83bbca.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2589.68571e16.js +1 -0
- rapidfireai/frontend/build/static/js/2647.65092bab.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2691.65d4a4e7.js +1 -0
- rapidfireai/frontend/build/static/js/2730.b38dd6f3.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2746.ef752da4.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2779.580d4491.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2799.fe5993b2.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2844.9708db79.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/2844.9708db79.chunk.js.LICENSE.txt +21 -0
- rapidfireai/frontend/build/static/js/2901.ee0c606b.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2932.7cc0689b.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/2932.7cc0689b.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/2956.a393c8cc.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2972.679bed05.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/2985.7e51cdfa.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/2985.7e51cdfa.chunk.js.LICENSE.txt +51 -0
- rapidfireai/frontend/build/static/js/3093.488df653.js +1 -0
- rapidfireai/frontend/build/static/js/3145.66ee61b9.js +1 -0
- rapidfireai/frontend/build/static/js/3170.a22f966a.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/3170.a22f966a.chunk.js.LICENSE.txt +21 -0
- rapidfireai/frontend/build/static/js/3307.f6fb258c.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3325.d5b03d65.js +1 -0
- rapidfireai/frontend/build/static/js/3334.2d6704df.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/3334.2d6704df.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/3387.bb8edad3.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3448.438e6579.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3460.735eea87.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3505.7fd3921a.js +2 -0
- rapidfireai/frontend/build/static/js/3505.7fd3921a.js.LICENSE.txt +9 -0
- rapidfireai/frontend/build/static/js/3510.cd167a00.js +2 -0
- rapidfireai/frontend/build/static/js/3510.cd167a00.js.LICENSE.txt +18 -0
- rapidfireai/frontend/build/static/js/3563.cc828e19.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/359.08960b84.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/359.08960b84.chunk.js.LICENSE.txt +4 -0
- rapidfireai/frontend/build/static/js/3608.403b4b79.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3652.cb8add7f.js +1 -0
- rapidfireai/frontend/build/static/js/3775.5230b157.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3817.53555d18.js +2 -0
- rapidfireai/frontend/build/static/js/3817.53555d18.js.LICENSE.txt +18 -0
- rapidfireai/frontend/build/static/js/3835.d9946ff9.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3964.874f0297.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3968.275cbc3d.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/3999.765cbd82.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4020.4452c046.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4138.2f6f6d9f.js +1 -0
- rapidfireai/frontend/build/static/js/4160.f424554c.js +1 -0
- rapidfireai/frontend/build/static/js/4180.50cea095.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4221.b0bba3f5.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4250.5bb49278.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4297.15777d8f.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4349.c965f2de.js +2 -0
- rapidfireai/frontend/build/static/js/4349.c965f2de.js.LICENSE.txt +1 -0
- rapidfireai/frontend/build/static/js/4484.4cbe5e7f.js +2 -0
- rapidfireai/frontend/build/static/js/4484.4cbe5e7f.js.LICENSE.txt +10 -0
- rapidfireai/frontend/build/static/js/4578.a8124588.js +1 -0
- rapidfireai/frontend/build/static/js/4596.89a97480.js +1 -0
- rapidfireai/frontend/build/static/js/4748.566f435a.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4762.928e8a90.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4768.7945be63.js +2 -0
- rapidfireai/frontend/build/static/js/4768.7945be63.js.LICENSE.txt +1 -0
- rapidfireai/frontend/build/static/js/4804.26b50dd4.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4850.62390a45.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4862.a0ccb221.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/491.5dc8ed40.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/492.9262f038.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/492.9262f038.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/4943.6d345fd3.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/4950.bc182e62.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5042.d4f0c65a.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/5042.d4f0c65a.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/5170.0065e96f.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5222.35c74a52.js +2 -0
- rapidfireai/frontend/build/static/js/5222.35c74a52.js.LICENSE.txt +10 -0
- rapidfireai/frontend/build/static/js/5223.3224f019.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/5223.3224f019.chunk.js.LICENSE.txt +3 -0
- rapidfireai/frontend/build/static/js/5229.7dd42316.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5286.4c1ad26b.js +1 -0
- rapidfireai/frontend/build/static/js/5486.21cff711.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5526.7b368956.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5605.1ee4d87b.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5682.40b42d8b.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5794.9433d867.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5826.38a56e8c.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/5826.38a56e8c.chunk.js.LICENSE.txt +1 -0
- rapidfireai/frontend/build/static/js/5862.50f42a0b.js +1 -0
- rapidfireai/frontend/build/static/js/5895.e26742f1.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/5919.edd4a5cf.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/598.a0e792ae.js +1 -0
- rapidfireai/frontend/build/static/js/6058.74162bf9.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/618.06051134.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/618.06051134.chunk.js.LICENSE.txt +21 -0
- rapidfireai/frontend/build/static/js/6335.9fca442d.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6336.e05e1154.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6343.2bcd28ff.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6363.a319b8f2.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6478.344abf25.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6504.1c004564.js +1 -0
- rapidfireai/frontend/build/static/js/6534.ec7e149b.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6715.55a5c19c.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6756.e6cb993c.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/6756.e6cb993c.chunk.js.LICENSE.txt +10 -0
- rapidfireai/frontend/build/static/js/6762.acfde9fd.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/6762.acfde9fd.chunk.js.LICENSE.txt +19 -0
- rapidfireai/frontend/build/static/js/6846.67103d0e.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6861.34cf0198.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/6899.0eaf36a8.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/6899.0eaf36a8.chunk.js.LICENSE.txt +5 -0
- rapidfireai/frontend/build/static/js/6933.8b564944.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/699.d0437920.js +1 -0
- rapidfireai/frontend/build/static/js/7076.4182f63a.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7186.42ad86d5.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7248.a46635fd.js +1 -0
- rapidfireai/frontend/build/static/js/725.6b15a14a.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7266.3575539d.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7270.0a1e84fc.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/7270.0a1e84fc.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/7367.7120474f.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7436.8e226055.js +1 -0
- rapidfireai/frontend/build/static/js/7504.ef223844.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7603.ee049fe3.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7670.2835b49a.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/7670.2835b49a.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/7721.7390b3cc.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7731.5796cced.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/775.660a5deb.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/775.660a5deb.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/7832.7976a3e4.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7844.72cc2e81.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/7948.48eab032.js +1 -0
- rapidfireai/frontend/build/static/js/7972.085079d4.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/7972.085079d4.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/8017.a9e7dc5a.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8023.75f1f3df.js +2 -0
- rapidfireai/frontend/build/static/js/8023.75f1f3df.js.LICENSE.txt +41 -0
- rapidfireai/frontend/build/static/js/8123.b69db974.js +1 -0
- rapidfireai/frontend/build/static/js/813.065a87e5.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/819.2056f122.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/819.2056f122.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/8262.04bc17d1.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8300.75adcc4f.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8336.b1d3e764.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8365.26cf64ea.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8398.8bca8e0e.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/8398.8bca8e0e.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/847.33ceed50.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/847.33ceed50.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/8486.8ec852a7.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8497.19378265.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8541.4c55c9f4.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8690.e305a804.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/8690.e305a804.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/8712.a9445fe6.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8763.61761e08.js +1 -0
- rapidfireai/frontend/build/static/js/8823.baf9bffd.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/8823.baf9bffd.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/8867.767462b7.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8953.c0f88dea.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/8960.357cb1eb.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/8960.357cb1eb.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/9.f4492795.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/9.f4492795.chunk.js.LICENSE.txt +12 -0
- rapidfireai/frontend/build/static/js/9079.88a8d2a3.js +1 -0
- rapidfireai/frontend/build/static/js/9082.37c40520.chunk.js +10 -0
- rapidfireai/frontend/build/static/js/9133.90ae330d.js +2 -0
- rapidfireai/frontend/build/static/js/9133.90ae330d.js.LICENSE.txt +8 -0
- rapidfireai/frontend/build/static/js/9151.1ac359d5.js +2 -0
- rapidfireai/frontend/build/static/js/9151.1ac359d5.js.LICENSE.txt +8 -0
- rapidfireai/frontend/build/static/js/9168.027bf2fd.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/9194.9c5cc548.chunk.js +10 -0
- rapidfireai/frontend/build/static/js/9244.026f4aee.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/936.2e02d037.js +2 -0
- rapidfireai/frontend/build/static/js/936.2e02d037.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/9369.7d1a0a1d.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/9427.7c8442e7.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/944.55948859.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/9499.c53a82da.js +2 -0
- rapidfireai/frontend/build/static/js/9499.c53a82da.js.LICENSE.txt +62 -0
- rapidfireai/frontend/build/static/js/9531.3ce05781.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/9547.92fac952.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/9547.92fac952.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/9620.b6e973a7.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/9645.6fddfa65.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/9669.d38dda6d.js +1 -0
- rapidfireai/frontend/build/static/js/9682.41b6b807.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/9720.19d5ae76.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/9720.19d5ae76.chunk.js.LICENSE.txt +23 -0
- rapidfireai/frontend/build/static/js/9723.d3c7fe9e.js +1 -0
- rapidfireai/frontend/build/static/js/9780.02a27630.chunk.js +10 -0
- rapidfireai/frontend/build/static/js/9808.d0ca9674.chunk.js +2 -0
- rapidfireai/frontend/build/static/js/9808.d0ca9674.chunk.js.LICENSE.txt +6 -0
- rapidfireai/frontend/build/static/js/9815.b8db3c5d.js +1 -0
- rapidfireai/frontend/build/static/js/9886.2940b53a.chunk.js +1 -0
- rapidfireai/frontend/build/static/js/main~1f912138.fa9d03b1.js +1 -0
- rapidfireai/frontend/build/static/js/main~43dd7041.2e00860d.js +1 -0
- rapidfireai/frontend/build/static/js/main~84781932.68deffff.js +1 -0
- rapidfireai/frontend/build/static/media/404-overflow.fad9a31861b0afba6f921ebb8e769688.svg +32 -0
- rapidfireai/frontend/build/static/media/RapidFire_Square_Bug.27ceb48296314a4bc0d4.png +0 -0
- rapidfireai/frontend/build/static/media/chart-bar.0fd4a63680fba840a7b69fbf07969f79.svg +7 -0
- rapidfireai/frontend/build/static/media/chart-contour.0d4b306f2669f3ad25375568935e3ce3.svg +5 -0
- rapidfireai/frontend/build/static/media/chart-difference.16174216d6f3b7c24f40e3541fe0ca2c.svg +20 -0
- rapidfireai/frontend/build/static/media/chart-image.cc434c4dc50780966344e2385a15f8fe.svg +6 -0
- rapidfireai/frontend/build/static/media/chart-line.0adaa2036bb4eb5956db6d0c7e925a3d.svg +4 -0
- rapidfireai/frontend/build/static/media/chart-parallel.da7dedf539b2af4b654d377c679173e4.svg +7 -0
- rapidfireai/frontend/build/static/media/chart-scatter.69118d0023a6ff3973f7fa913834ac47.svg +9 -0
- rapidfireai/frontend/build/static/media/default-error.f246ddf367c6fbd67942e5a13382a7f1.svg +26 -0
- rapidfireai/frontend/build/static/media/fontawesome-webfont.1e59d2330b4c6deb84b3.ttf +0 -0
- rapidfireai/frontend/build/static/media/fontawesome-webfont.20fd1704ea223900efa9.woff2 +0 -0
- rapidfireai/frontend/build/static/media/fontawesome-webfont.8b43027f47b20503057d.eot +0 -0
- rapidfireai/frontend/build/static/media/fontawesome-webfont.c1e38fd9e0e74ba58f7a.svg +2671 -0
- rapidfireai/frontend/build/static/media/fontawesome-webfont.f691f37e57f04c152e23.woff +0 -0
- rapidfireai/frontend/build/static/media/icon-visible-fill.8d34cd35303828fdfc15154f5536e63b.svg +7 -0
- rapidfireai/frontend/build/static/media/no-experiments.0e4f4a114ef73e7d81c09474aba64b6c.svg +22 -0
- rapidfireai/frontend/build/static/media/parallel-chart-placeholder.234ef0c5b220ef2a5a6fa5bafff173f7.svg +16 -0
- rapidfireai/frontend/build/static/media/permission-denied-lock.16036747d57cd663d7df223781a447b2.svg +14 -0
- rapidfireai/frontend/build/static/media/promo-modal-content.e3b2c6c568ac192b9bec54b838b54850.svg +30 -0
- rapidfireai/frontend/build/static/media/registered-model-grey-ok.8274b58d39504c8d1b8c358aa1c9aa35.svg +23 -0
- rapidfireai/frontend/build/static/media/warning.290a3b14118933547965e91ea61c5a61.svg +3 -0
- rapidfireai/frontend/proxy_middleware.py +233 -0
- rapidfireai/frontend/server.py +25 -0
- rapidfireai/ml/__init__.py +0 -0
- rapidfireai/ml/callbacks.py +176 -0
- rapidfireai/ml/checkpoint_utils.py +540 -0
- rapidfireai/ml/trainer.py +309 -0
- rapidfireai/start.sh +634 -0
- rapidfireai/utils/__init__.py +0 -0
- rapidfireai/utils/automl_utils.py +51 -0
- rapidfireai/utils/constants.py +141 -0
- rapidfireai/utils/datapaths.py +69 -0
- rapidfireai/utils/exceptions.py +82 -0
- rapidfireai/utils/experiment_utils.py +370 -0
- rapidfireai/utils/logging.py +87 -0
- rapidfireai/utils/mlflow_manager.py +121 -0
- rapidfireai/utils/serialize.py +15 -0
- rapidfireai/utils/shm_manager.py +469 -0
- rapidfireai/utils/trainer_config.py +23 -0
- rapidfireai/utils/worker_manager.py +219 -0
- rapidfireai/version.py +6 -0
- rapidfireai-0.9.9.dist-info/METADATA +242 -0
- rapidfireai-0.9.9.dist-info/RECORD +318 -0
- rapidfireai-0.9.9.dist-info/entry_points.txt +2 -0
- rapidfireai-0.0.1.dist-info/METADATA +0 -37
- rapidfireai-0.0.1.dist-info/RECORD +0 -6
- {rapidfireai-0.0.1.dist-info → rapidfireai-0.9.9.dist-info}/WHEEL +0 -0
- {rapidfireai-0.0.1.dist-info → rapidfireai-0.9.9.dist-info}/licenses/LICENSE +0 -0
- {rapidfireai-0.0.1.dist-info → rapidfireai-0.9.9.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";(self.webpackChunk_mlflow_mlflow=self.webpackChunk_mlflow_mlflow||[]).push([[1243],{44240:function(e,t,n){n.d(t,{$v:function(){return q},AR:function(){return ne},Ac:function(){return W},Aj:function(){return d},EJ:function(){return H},FY:function(){return re},FZ:function(){return y},Gh:function(){return g},I_:function(){return I},Jv:function(){return V},LN:function(){return P},Ly:function(){return C},M6:function(){return O},Nk:function(){return N},OY:function(){return G},P0:function(){return k},Pv:function(){return ie},Td:function(){return h},X3:function(){return B},XG:function(){return ee},Yi:function(){return z},Yk:function(){return te},aO:function(){return E},bS:function(){return oe},bc:function(){return S},bn:function(){return w},cN:function(){return M},db:function(){return D},e$:function(){return b},fP:function(){return Z},g1:function(){return Y},gT:function(){return f},gX:function(){return T},hD:function(){return F},hb:function(){return L},iz:function(){return R},lJ:function(){return v},mq:function(){return J},pA:function(){return x},pv:function(){return j},q1:function(){return $},rP:function(){return c},s2:function(){return _},vF:function(){return m},wT:function(){return X},wh:function(){return K},yc:function(){return p}});var r=n(60669),i=n(7204),o=n(47664),a=n(9133),u=n(50361),s=(n(53962),n(51079),n(17111),n(83342)),l=n(25866);const d=100,c="SEARCH_EXPERIMENTS_API",m=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:(0,i.yk)();return{type:c,payload:r.x.searchExperiments({max_results:2e4}),meta:{id:e}}},f="GET_EXPERIMENT_API",p=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:(0,i.yk)();return{type:f,payload:r.x.getExperiment({experiment_id:e}),meta:{id:t}}},g=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:void 0;arguments.length>2&&void 0!==arguments[2]||(0,i.yk)();return n=>n({type:"CREATE_EXPERIMENT_API",payload:r.x.createExperiment({name:e,artifact_location:t}),meta:{id:(0,i.yk)()}})},v=function(e){arguments.length>1&&void 0!==arguments[1]||(0,i.yk)();return t=>t({type:"DELETE_EXPERIMENT_API",payload:r.x.deleteExperiment({experiment_id:e}),meta:{id:(0,i.yk)()}})},h=function(e,t){arguments.length>2&&void 0!==arguments[2]||(0,i.yk)();return n=>n({type:"UPDATE_EXPERIMENT_API",payload:r.x.updateExperiment({experiment_id:e,new_name:t}),meta:{id:(0,i.yk)()}})},y=function(e,t){arguments.length>2&&void 0!==arguments[2]||(0,i.yk)();return n=>n({type:"UPDATE_RUN_API",payload:r.x.updateRun({run_id:e,run_name:t}),meta:{id:(0,i.yk)()}})},_="GET_RUN_API",E=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:(0,i.yk)();return{type:_,payload:r.x.getRun({run_id:e}),meta:{id:t}}},x=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:(0,i.yk)();return n=>n({type:"DELETE_RUN_API",payload:r.x.deleteRun({run_id:e}),meta:{id:(0,i.yk)()}}).then((()=>n(E(e,t))))},R=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:(0,i.yk)();return n=>n({type:"RESTORE_RUN_API",payload:r.x.restoreRun({run_id:e}),meta:{id:(0,i.yk)()}}).then((()=>n(E(e,t))))},T="SET_COMPARE_EXPERIMENTS",I=e=>{let{comparedExperimentIds:t,hasComparedExperimentsBefore:n}=e;return{type:T,payload:{comparedExperimentIds:t,hasComparedExperimentsBefore:n}}},A=e=>e.runs&&e.runs.length?Promise.all((e=>{const t=new Set;if(e){const n=new Set(e.map((e=>e.info.run_id)));e.forEach((e=>{e.data&&e.data.tags&&e.data.tags.forEach((e=>{"mlflow.parentRunId"!==e.key||n.has(e.value)||t.add(e.value)}))}))}return Array.from(t)})(e.runs).map((t=>r.x.getRun({run_id:t}).then((t=>{e.runs.push(t.run),e.runsMatchingFilter&&e.runsMatchingFilter.push(t.run)})).catch((e=>{if(e.getErrorCode()!==o.tG.RESOURCE_DOES_NOT_EXIST)throw e}))))).then((t=>e)):e,U=e=>{if(e.length<1)return null;return`run_id IN (${e.map((e=>`'${e}'`)).join(",")})`},S=e=>{let{experimentIds:t,filter:n,runViewType:i,maxResults:o,orderBy:s,pageToken:l,shouldFetchParents:c,runsPinned:m}=e;const f=[r.x.searchRuns({experiment_ids:t,filter:n,run_view_type:i,max_results:o||d,order_by:s,page_token:l})];return null!==m&&void 0!==m&&m.length&&f.push(r.x.searchRuns({experiment_ids:t,filter:U(m),run_view_type:u.qi.ALL})),Promise.all(f).then((e=>{var t;let[n,r={}]=e;const i=n;if(!(0,a.isObject)(i))throw new Error(`Invalid format of the runs search response: ${String(i)}`);return i.runsMatchingFilter=(null===(t=n.runs)||void 0===t?void 0:t.slice())||[],(0,a.isArray)(r.runs)&&((0,a.isArray)(i.runs)?i.runs.push(...r.runs):i.runs=r.runs.slice()),c?A(i):i}))},L="SEARCH_RUNS_API",w=e=>({type:L,payload:S(e),meta:{id:e.id||(0,i.yk)()}}),N="LOAD_MORE_RUNS_API",b=e=>({type:N,payload:S(e),meta:{id:e.id||(0,i.yk)()}}),O="LIST_ARTIFACTS_API",M=function(e,t){let n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:(0,i.yk)();return{type:O,payload:r.x.listArtifacts({run_uuid:e,...t&&{path:t}}),meta:{id:n,runUuid:e,path:t}}},k="LIST_IMAGES_API",P=function(e){let t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:(0,i.yk)();return(i,o)=>{const a=o().entities.imagesByRunUuid[e];return!t&&a?Promise.resolve():i({type:k,payload:r.x.listArtifacts({run_uuid:e,path:l.fp}),meta:{id:n,runUuid:e,path:l.fp}})}},J="GET_METRIC_HISTORY_API",C=function(e,t,n,o){let a=arguments.length>4&&void 0!==arguments[4]?arguments[4]:(0,i.yk)();return{type:J,payload:r.x.getMetricHistory({run_uuid:e,metric_key:decodeURIComponent(t),max_results:n,page_token:o}),meta:{id:a,runUuid:e,key:t,maxResults:n,pageToken:o}}},B="GET_METRIC_HISTORY_API_BULK",D="SET_TAG_API",V=function(e,t,n){let o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:(0,i.yk)();return{type:D,payload:r.x.setTag({run_uuid:e,key:t,value:n}),meta:{id:o,runUuid:e,key:t,value:n}}},$="DELETE_TAG_API",F=function(e,t,n){let o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:(0,i.yk)();const a=n.filter((e=>{let{key:n,value:r}=e;return!t.some((e=>{let{key:t,value:i}=e;return t===n&&r===i}))})),u=t.filter((e=>{let{key:t}=e;return!n.some((e=>{let{key:n}=e;return t===n}))}));return{type:"SET_RUN_TAGS_BULK",payload:Promise.all([...a.map((t=>{let{key:n,value:i}=t;return r.x.setTag({run_uuid:e,key:n,value:i})})),...u.map((t=>{let{key:n}=t;return r.x.deleteTag({run_id:e,key:n})}))]),meta:{id:o,runUuid:e,existingTags:t,newTags:n}}},j="SET_EXPERIMENT_TAG_API",H=function(e,t,n){let o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:(0,i.yk)();return{type:j,payload:r.x.setExperimentTag({experiment_id:e,key:t,value:n}),meta:{id:o,experimentId:e,key:t,value:n}}},K="CLOSE_ERROR_MODAL",G=()=>({type:K}),W="OPEN_ERROR_MODAL",z=e=>({type:W,text:e}),Y="SEARCH_DATASETS",X=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:(0,i.yk)();return{type:Y,payload:r.x.searchDatasets({experiment_ids:e}),meta:{id:t}}},q=e=>{let{experimentId:t,modelRouteName:n,modelParameters:i,promptTemplate:o,promptParameters:a,runName:u,modelInput:l,modelOutput:d,modelOutputParameters:c,tags:m=[]}=e;const f=e=>Object.entries(e).map((e=>{let[t,n]=e;return{key:t,value:n}})),p={experiment_id:t,run_name:u||void 0,tags:m,prompt_template:o,prompt_parameters:f(a),model_route:n,model_parameters:(g=i,Object.entries(g).map((e=>{let[t,n]=e;return{key:t,value:Array.isArray(n)?`[${n.join(", ")}]`:n}}))),model_input:l,model_output:d,model_output_parameters:f(c),mlflow_version:s.g};var g;return{type:Q,payload:r.x.createPromptLabRun(p),meta:{payload:p}}},Q="CREATE_PROMPT_LAB_RUN",Z="FETCH_CLUSTERS_REQUEST",ee="FETCH_CLUSTERS_SUCCESS",te="FETCH_CLUSTERS_FAILURE",ne="SET_PROXY_TARGET",re="UPDATE_MLFLOW_SERVER_STATUS",ie=e=>({type:re,payload:e}),oe=e=>({type:"UPDATE_DISPATCHER_STATUS",payload:e})},70403:function(e,t,n){n.d(t,{LE:function(){return f},MQ:function(){return m},cw:function(){return c}});var r=n(10811),i=n(25866),o=n(44240),a=n(31014),u=n(54346),s=n(85557);const l="experimentRunColors",d=()=>{const e=window.localStorage.getItem(l);try{return e?JSON.parse(e):{}}catch{return{}}},c=()=>{const e=(0,r.wA)();(0,a.useEffect)((()=>{e({type:s.n,values:d()})}),[e])},m=()=>{const e=(0,r.wA)();return(0,a.useCallback)((t=>{let{colorValue:n,runUuid:r,groupUuid:a}=t;const u=null!==a&&void 0!==a?a:r;if(u&&e({type:s.An,runOrGroupUuid:u,colorValue:n}),r&&e((0,o.Jv)(r,i.f7,n)),a){const e=d();e[a]=n,window.localStorage.setItem(l,JSON.stringify(e))}}),[e])},f=()=>{const e=(0,r.d4)((e=>e.entities.colorByRunUuid));return(0,a.useCallback)((function(){let t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"";return e[t]||(0,u.T6)(t)}),[e])}},58898:function(e,t,n){n.d(t,{HC:function(){return a},oy:function(){return u},uY:function(){return s}});var r=n(91144),i=n(25866),o=n(21616);const a=["selectedColumns","runsExpanded","runsPinned","runsHidden","runsHiddenMode","compareRunCharts","compareRunSections","viewMaximized","runListHidden","isAccordionReordered","groupBy","groupsExpanded","autoRefreshEnabled"];let u=function(e){return e.SHOWALL="SHOW_ALL",e.HIDEALL="HIDE_ALL",e.FIRST_10_RUNS="FIRST_10_RUNS",e.FIRST_20_RUNS="FIRST_20_RUNS",e.CUSTOM="CUSTOM",e}({});const s=()=>({selectedColumns:[(0,o.GF)(i.RO.ATTRIBUTES,i.qo.SOURCE),(0,o.GF)(i.RO.ATTRIBUTES,i.qo.MODELS),(0,o.GF)(i.RO.ATTRIBUTES,i.qo.DATASET)],runsExpanded:{},runsPinned:[],runsHidden:[],runsHiddenMode:u.FIRST_10_RUNS,compareRunCharts:void 0,compareRunSections:void 0,viewMaximized:!1,runListHidden:!1,isAccordionReordered:!1,groupBy:null,groupsExpanded:{},autoRefreshEnabled:(0,r.Hn)()})},21616:function(e,t,n){n.d(t,{tZ:function(){return g},iy:function(){return p},Pl:function(){return v},tS:function(){return y},Ol:function(){return h},Fc:function(){return _},LL:function(){return R},Fz:function(){return x},D1:function(){return E},dz:function(){return S},$e:function(){return I},XU:function(){return T},tG:function(){return U},GF:function(){return A}});var r=n(44258),i=n(76010);const{formatTimestamp:o,getDuration:a,getRunNameFromTags:u,getSourceType:s,getSourceName:l,getUser:d}=i.A,c=e=>e.reduce(((e,t)=>({...e,[t.key]:t})),{}),m=e=>void 0===e?"":/[,"\r\n]/.test(e)?'"'+e.replace(/"/g,'""')+'"':e,f=(e,t)=>{let n,r="";for(n=0;n<e.length;n++)r+=m(e[n]),n<e.length-1&&(r+=",");for(r+="\n",n=0;n<t.length;n++){for(let e=0;e<t[n].length;e++)r+=m(t[n][e]),e<t[n].length-1&&(r+=",");r+="\n"}return r},p="$$$param$$$",g="$$$metric$$$",v="$$$tag$$$",h="mlflow.parentRunId",y="mlflow.log-model.history",_=32,E=(e,t,n,i)=>{const{runInfos:m,paramsList:p,metricsList:g,tagsList:v}=e,h=(e=>{const{runInfos:t,paramKeyList:n,metricKeyList:r,tagKeyList:i,paramsList:m,metricsList:p,tagsList:g}=e,v=["Start Time","Duration","Run ID","Name","Source Type","Source Name","User","Status",...n,...r,...i],h=t.map(((e,t)=>{const f=[o(e.startTime),a(e.startTime,e.endTime)||"",e.runUuid,e.runName||u(g[t]),s(g[t]),l(g[t]),d(e,g[t]),e.status],v=c(m[t]),h=c(p[t]),y=g[t];return n.forEach((e=>{v[e]?f.push(v[e].value):f.push("")})),r.forEach((e=>{h[e]?f.push(h[e].value):f.push("")})),i.forEach((e=>{y[e]?f.push(y[e].value):f.push("")})),f}));return f(v,h)})({runInfos:m,paramKeyList:n,metricKeyList:i,tagKeyList:t,paramsList:p,metricsList:g,tagsList:v}),y=new Blob([h],{type:"application/csv;charset=utf-8"});(0,r.saveAs)(y,"runs.csv")},x=(e,t,n)=>{const i=((e,t)=>{const n=[e.some((e=>e.groupParentInfo))?"Group":"Run","Run ID","metric","step","timestamp","value"],r=t.flatMap((t=>e.flatMap((e=>{var n,r;return(null===(n=e.metricsHistory)||void 0===n||null===(r=n[t])||void 0===r?void 0:r.map((t=>{var n;return[e.displayName,(null===(n=e.runInfo)||void 0===n?void 0:n.runUuid)||"",t.key,t.step.toString(),t.timestamp.toString(),t.value.toString()]})))||[]}))));return f(n,r)})(e,t),o=new Blob([i],{type:"application/csv;charset=utf-8"});(0,r.saveAs)(o,`${n}.csv`)},R=(e,t,n,i)=>{const o=((e,t,n)=>{const r=[e.some((e=>e.groupParentInfo))?"Group":"Run","Run ID",...t,...n],i=e.map((e=>{var r;const i=[e.displayName,(null===(r=e.runInfo)||void 0===r?void 0:r.runUuid)||""];return t.forEach((t=>{var n;const r=null===(n=e.metrics)||void 0===n?void 0:n[t];i.push((null===r||void 0===r?void 0:r.value.toString())||"")})),n.forEach((t=>{var n;const r=null===(n=e.params)||void 0===n?void 0:n[t];i.push((null===r||void 0===r?void 0:r.value.toString())||"")})),i}));return f(r,i)})(e,t,n),a=new Blob([o],{type:"application/csv;charset=utf-8"});(0,r.saveAs)(a,`${i}.csv`)},T=e=>({LAST_HOUR:e.formatMessage({id:"bjoGjg",defaultMessage:"Last hour"}),LAST_24_HOURS:e.formatMessage({id:"JChRnq",defaultMessage:"Last 24 hours"}),LAST_7_DAYS:e.formatMessage({id:"eQsXm7",defaultMessage:"Last 7 days"}),LAST_30_DAYS:e.formatMessage({id:"p1H1KR",defaultMessage:"Last 30 days"}),LAST_YEAR:e.formatMessage({id:"EI7moF",defaultMessage:"Last year"})}),I=(e,t)=>{let n="";return(t.includes('"')||t.includes(" ")||t.includes("."))&&(n="`"),t.includes("`")&&(n='"'),`${e}.${n}${t}${n}`},A=(e,t)=>e+".`"+t+"`",U=(e,t)=>e.startsWith(t),S=(e,t)=>e.substring(t.length+2).slice(0,-1)},62862:function(e,t,n){n.d(t,{QD:function(){return f},Zp:function(){return u},_p:function(){return o},mC:function(){return c},nN:function(){return v},sD:function(){return h},yu:function(){return g}});var r=n(9133),i=n(12772);const o=(e,t,n)=>e?[e,n,t].join("."):"",a=e=>{let{groupByData:t,mode:n,value:r}=e;return`${n}.${t}.${r||null}`},u=e=>{if(!e)return null;if((0,r.isObject)(e))return e;const[,t,n,o]=e.match(/([a-z]+)\.([a-z]+)\.(.+)/)||[];return(0,r.values)(i.u).includes(t)&&(0,r.values)(i.i).includes(n)?{aggregateFunction:n,groupByKeys:[{mode:t,groupByData:o}]}:null},s=(e,t,n,r,i,o)=>{const a=n.map((e=>e.metrics||[])),u=n.map((e=>e.params||[])),s=[{groupId:e,isGroup:!0,expanderOpen:t,aggregateFunction:r,runUuids:n.map((e=>e.runInfo.runUuid)),aggregatedMetricEntities:d(a,r),aggregatedParamEntities:d(u,r),groupingValues:o,isRemainingRunsGroup:i}];return t&&s.push(...n.map((t=>{const{runInfo:n,metrics:r=[],params:o=[],tags:a={},datasets:u=[]}=t;return{index:0,level:0,runInfo:n,belongsToGroup:!i,isPinnable:!0,metrics:r,params:o,tags:a,datasets:u,rowUuid:`${e}.${n.runUuid}`}}))),s},l=e=>{let{dataset:t}=e;return`${t.name}.${t.digest}`},d=(e,t)=>{if(t===i.i.Min||t===i.i.Max){const n=t===i.i.Min?Math.min:Math.max,o=e.reduce(((e,t)=>(t.forEach((t=>{const{key:r,value:i}=t;e[r]?e[r]={key:r,value:n(Number(e[r].value),Number(i)),maxStep:0}:e[r]={key:r,value:Number(i),maxStep:0},"step"in t&&(e[r].maxStep=Math.max(t.step,e[r].maxStep))})),e)),{});return(0,r.values)(o).filter((e=>{let{value:t}=e;return!isNaN(t)}))}if(t===i.i.Average){const t=e.reduce(((e,t)=>(t.forEach((t=>{const{key:n,value:r}=t;e[n]||(e[n]=[]),e[n].push({value:Number(r),step:"step"in t?t.step:0})})),e)),{});return(0,r.entries)(t).map((e=>{let[t,n]=e;return{key:t,value:n.reduce(((e,t)=>{let{value:n}=t;return e+Number(n)}),0)/n.length,maxStep:Math.max(...n.map((e=>{let{step:t}=e;return t})))}})).filter((e=>{let{value:t}=e;return!isNaN(t)}))}throw new Error(`Unsupported aggregate function: ${t}`)},c=e=>e.isRemainingRunsGroup,m=(e,t)=>{if(t.mode===i.u.Tag){var n,r;const i=t.groupByData;return null===(n=e.tags)||void 0===n||null===(r=n[i])||void 0===r?void 0:r.value}if(t.mode===i.u.Param){var o;const n=t.groupByData;return null===(o=e.params.find((e=>e.key===n)))||void 0===o?void 0:o.value}return null},f=e=>{if(!e||e.isRemainingRunsGroup)return"";if(1===e.groupingValues.length){const t=e.groupingValues[0];return(0,r.isObject)(t.value)?t.value.name:t.value||"(none)"}return e.groupingValues.map((e=>{let{groupByData:t,value:n}=e;return`${t}: ${(0,r.isObject)(n)?n.name:n||"(none)"}`})).join(", ")},p=e=>e.reduce(((e,t)=>e+t),0)/e.length,g=(e,t,n)=>{const o=n.reduce(((e,t)=>(e[t.step]||(e[t.step]=[]),e[t.step].push(t),e)),{}),a=e.map((e=>{var t;return Math.round(p((0,r.reject)(null===(t=o[e])||void 0===t?void 0:t.map((e=>{let{timestamp:t}=e;return Number(t)})),r.isNil)))})),u=e.map(((e,n)=>{var i;return{key:t,step:e,value:Math.max(...(0,r.reject)(null===(i=o[e])||void 0===i?void 0:i.map((e=>{let{value:t}=e;return Number(t)})),r.isNil)),timestamp:a[n]}})),s=e.map(((e,n)=>{var i;return{key:t,step:e,value:Math.min(...(0,r.reject)(null===(i=o[e])||void 0===i?void 0:i.map((e=>{let{value:t}=e;return Number(t)})),r.isNil)),timestamp:a[n]}})),l=e.map(((e,n)=>{var i;return{key:t,step:e,value:p((0,r.reject)(null===(i=o[e])||void 0===i?void 0:i.map((e=>{let{value:t}=e;return Number(t)})),r.isNil)),timestamp:a[n]}}));return{[i.i.Min]:s,[i.i.Max]:u,[i.i.Average]:l}},v=(e,t,n)=>{const o=(0,r.compact)(Object.keys(e).map((i=>{var o,a,u,s;const l=null===(o=e[i])||void 0===o||null===(a=o[n])||void 0===a?void 0:a.metricsHistory,d=null===(u=e[i])||void 0===u||null===(s=u[t])||void 0===s?void 0:s.metricsHistory;if(!l||!d)return null;const c=l.reduce(((e,t)=>(e[t.step]=Number(t.value),e)),{}),m={};return d.forEach((e=>{const t=c[e.step];(0,r.isNil)(t)||(m[t]||(m[t]=[]),m[t].push(Number(e.value)))})),m}))),a={};o.forEach((e=>{Object.keys(e).forEach((t=>{const n=Number(t),r=e[n];a[n]||(a[n]=[]),a[n]=a[n].concat(r)}))}));const u=Object.keys(a).map(Number).sort(),s=u.map(((e,n)=>{var i;return{key:t,value:Math.max(...(0,r.reject)(null!==(i=a[e])&&void 0!==i?i:[],r.isNil)),step:n,timestamp:0}})),l=u.map(((e,n)=>{var i;return{key:t,value:Math.min(...(0,r.reject)(null!==(i=a[e])&&void 0!==i?i:[],r.isNil)),step:n,timestamp:0}})),d=u.map(((e,n)=>{var i;return{key:t,value:p((0,r.reject)(null!==(i=a[e])&&void 0!==i?i:[],r.isNil)),step:n,timestamp:0}}));return{[i.i.Min]:l,[i.i.Max]:s,[i.i.Average]:d}},h=e=>{let{groupsExpanded:t,runData:n,groupBy:o}=e;const d=u(o);if(!d)return null;const c={},f=[],p=d.groupByKeys.some((e=>{let{mode:t}=e;return t===i.u.Dataset})),g=d.groupByKeys.filter((e=>{let{mode:t}=e;return t===i.u.Tag||t===i.u.Param}));for(const r of n){const e=g.map((e=>({mode:e.mode,groupByData:e.groupByData,value:m(r,e)||null}))),t=p?(r.datasets||[]).map((e=>({mode:i.u.Dataset,groupByData:"dataset",value:l(e)}))):[],n=t.length>0;if(e.filter((e=>{let{value:t}=e;return t})).length>0||p&&n)if(p){const o=n?t:[{mode:i.u.Dataset,groupByData:"dataset",value:null}];for(const t of o){const n=JSON.stringify([...e,t]);c[n]?c[n].runs.push(r):c[n]={groupingValues:[...e,t],runs:[r]}}}else{const t=JSON.stringify(e);c[t]?c[t].runs.push(r):c[t]={groupingValues:e,runs:[r]}}else f.push(r)}const v=[];if((0,r.values)(c).forEach((e=>{const n=e.groupingValues.map(a).join(",");const i=(0,r.isUndefined)(t[n])||!0===t[n];v.push(...s(n,i,e.runs,d.aggregateFunction,!1,e.groupingValues))})),f.length){const e=(e=>e.groupByKeys.map((e=>{let{mode:t,groupByData:n}=e;return[t,n].join(".")})).join(","))(d),n=!0===t[e];v.push(...s(e,n,f,d.aggregateFunction,!0,[]))}return v}},12772:function(e,t,n){n.d(t,{i:function(){return i},u:function(){return r}});let r=function(e){return e.Dataset="dataset",e.Tag="tag",e.Param="param",e}({}),i=function(e){return e.Min="min",e.Average="average",e.Max="max",e}({})},57368:function(e,t,n){n.d(t,{IR:function(){return _},Yv:function(){return y},ZU:function(){return p},mN:function(){return E}});var r=n(31014),i=n(9133),o=n(76010),a=n(21616),u=n(54346),s=n(91144),l=n(62862),d=n(58898);const c=e=>e.map(((e,t)=>{var n;let{runInfo:r,metrics:i=[],params:o=[],tags:u={},datasets:s=[]}=e;return{index:t,runInfo:r,level:0,isPinnable:!(null!==(n=u[a.Ol])&&void 0!==n&&n.value),metrics:i,params:o,tags:u,datasets:s,rowUuid:r.runUuid}})),m=(e,t,n)=>{if(!e)return{};const r={};for(const i of t)r[`${n}-${i}`]="-";for(const{key:o,value:a}of e)(a||(0,i.isNumber)(a))&&(r[`${n}-${o}`]=a);return r},f=e=>{let{experiments:t,modelVersionsByRunUuid:n,runsExpanded:r,nestChildren:s,referenceTime:f,paramKeyList:p,metricKeyList:g,tagKeyList:y,runsPinned:_,runsHidden:E,runsHiddenMode:R=d.oy.FIRST_10_RUNS,runData:T,runUuidsMatchingFilter:I,groupBy:A=null,groupsExpanded:U={}}=e;const S=o.A.getExperimentNameMap(o.A.sortExperimentsById(t)),L=Boolean(A),w=[],N=(()=>{if(L){const e=(0,l.sD)({runData:T,groupBy:A,groupsExpanded:U});if(e)return e}return s?(e=>{let{runsExpanded:t,runData:n}=e;const r={};n.forEach(((e,t)=>{let{runInfo:n}=e;r[n.runUuid]=t}));const i=n.map((e=>{let{runInfo:t}=e;return{value:t.runUuid}}));let o=!1;if(n.forEach(((e,t)=>{let{tags:n}=e;const u=null===n||void 0===n?void 0:n[a.Ol];if(u){const e=r[u.value];void 0!==e&&(o=!0,i[t].parent=i[e])}})),!o)return c(n);const u={},s=[];i.forEach(((e,t)=>{const{parent:n}=e;void 0!==n&&n.value!==e.value?u[n.value]?u[n.value].push(t):u[n.value]=[t]:s.push(t)}));const l=[],d=new Set,m=(e,r)=>{if(!d.has(e)){const i=n[e].runInfo,o=i.runUuid,a=Boolean(s.includes(e))||0===r,c={index:e,isParent:!1,hasExpander:!1,level:r,runInfo:i,params:n[e].params||[],metrics:n[e].metrics||[],tags:n[e].tags||{},datasets:n[e].datasets||[],isPinnable:a,rowUuid:o};u[o]&&(c.isParent=!0,c.hasExpander=!0,c.expanderOpen=Boolean(t[o]),c.childrenIds=u[o].map((e=>n[e].runInfo.runUuid))),l.push(c),d.add(e);const f=u[o];f&&t[o]&&f.forEach((e=>{m(e,r+1)}))}};return s.forEach((e=>{m(e,0)})),l})({runData:T,runsExpanded:r}):c(T)})().map((e=>{if(e.isGroup)return x(e,_,g,p);const{runInfo:t,isParent:r=!1,hasExpander:i=!1,level:s=0,expanderOpen:l=!1,isPinnable:d=!1,childrenIds:c=[],tags:v,params:h,metrics:E,datasets:R,belongsToGroup:T,rowUuid:I}=e,A=t.runUuid,{experimentId:U}=t,L=S[U],N=o.A.getUser(t,v),b=o.A.getDuration(t.startTime,t.endTime),O=o.A.getRunName(t)||t.runUuid,M=o.A.getVisibleTagValues(v).map((e=>{let[t,n]=e;return{key:t,value:n}})),k={startTime:t.startTime,referenceTime:f,experimentId:U,runUuid:A,runStatus:t.status,isParent:r,hasExpander:i,expanderOpen:l,childrenIds:c,level:s,belongsToGroup:Boolean(T)},P={registeredModels:n[t.runUuid]||[],loggedModels:o.A.getLoggedModelsFromTags(v),experimentId:t.experimentId,runUuid:t.runUuid},J={version:o.A.getSourceVersion(v),name:o.A.getSourceName(v),type:o.A.getSourceType(v)},C=d&&_.includes(A),B=w.includes(A);return(C||B)&&w.push(...c),{runUuid:A,rowUuid:I,runDateAndNestInfo:k,runInfo:t,experimentName:L,experimentId:U,duration:b,user:N,runName:O,tags:v,models:P,params:h,version:J,pinnable:d,defaultColor:(0,u.T6)(A),hidden:!1,pinned:C||B,...m(h,p,a.iy),...m(E,g,a.tZ),datasets:R,...m(M,y,a.Pl)}}));if(L&&N.some((e=>e.groupParentInfo))){const e=N.reduce(((e,t)=>{var n;return t.groupParentInfo&&e.push([]),null===(n=(0,i.last)(e))||void 0===n||n.push(t),e}),[]),t=(0,i.sortBy)(e,(e=>{var t,n,r;return(null===(t=e[0])||void 0===t?void 0:t.groupParentInfo)&&!_.includes(null===(n=e[0])||void 0===n||null===(r=n.groupParentInfo)||void 0===r?void 0:r.groupId)})).map((e=>{const[t,...n]=e;return[t,...h(n,I)]}));return v(t.flat(),E,R)}return v(h(N,I),E,R)},p=e=>{let{experiments:t,modelVersionsByRunUuid:n,runsExpanded:i,nestChildren:o,referenceTime:a,paramKeyList:u,metricKeyList:s,tagKeyList:l,runsPinned:d,runsHidden:c,runData:m,runUuidsMatchingFilter:p,groupBy:g,runsHiddenMode:v,groupsExpanded:h={}}=e;return(0,r.useMemo)((()=>f({experiments:t,modelVersionsByRunUuid:n,runsExpanded:i,nestChildren:o,referenceTime:a,paramKeyList:u,metricKeyList:s,tagKeyList:l,runsPinned:d,runsHidden:c,runData:m,runUuidsMatchingFilter:p,groupBy:g,groupsExpanded:h,runsHiddenMode:v})),[t,n,i,o,a,u,s,l,d,c,m,p,g,h,v])},g=(e,t,n,r)=>e===d.oy.CUSTOM?t.includes(n):e===d.oy.HIDEALL||(e===d.oy.FIRST_10_RUNS?r>=10:e===d.oy.FIRST_20_RUNS&&r>=20),v=(e,t,n)=>{if(!(0,s.M1)())return e.map((e=>({...e,hidden:t.includes(e.runUuid)})));let r=0;return e.map((e=>{var i;const o=e.groupParentInfo?e.rowUuid:e.runUuid,a={...e,hidden:g(n,t,o,r)},u=e.groupParentInfo&&!e.groupParentInfo.isRemainingRunsGroup,s=!(null!==(i=e.runDateAndNestInfo)&&void 0!==i&&i.belongsToGroup);return(u||s)&&r++,a}))},h=(e,t)=>[...e.filter((e=>{let{pinned:t}=e;return t})),...e.filter((e=>{let{pinned:n,runUuid:r}=e;return r&&!n&&t.includes(r)}))],y=function(e,t){let n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:void 0;const r=E(e,t);return r&&parseFloat(r)||n},_=function(e,t){let n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:void 0;const r=E(e,t);return r&&parseInt(r,10)||n},E=function(e,t){var n;let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:void 0;const i=null===(n=e.params)||void 0===n?void 0:n.find((e=>{let{key:n}=e;return t===n}));return(null===i||void 0===i?void 0:i.value)||r},x=(e,t,n,r)=>{const o={groupingValues:e.groupingValues,isRemainingRunsGroup:e.isRemainingRunsGroup,expanderOpen:e.expanderOpen,groupId:e.groupId,aggregatedMetricData:(0,i.keyBy)(e.aggregatedMetricEntities,"key"),aggregatedParamData:(0,i.keyBy)(e.aggregatedParamEntities,"key"),runUuids:e.runUuids,aggregateFunction:e.aggregateFunction};return{runUuid:"",datasets:[],pinnable:!0,duration:null,models:null,rowUuid:o.groupId,groupParentInfo:o,pinned:t.includes(o.groupId),defaultColor:(0,u.T6)(o.groupId),hidden:!1,...m(e.aggregatedMetricEntities,n,a.tZ),...m(e.aggregatedParamEntities,r,a.iy)}}},63480:function(e,t,n){var r=n(31014),i=n(82589),o=n(10811),a=n(9101),u=n(44240),s=n(64912),l=n(50111);class d extends r.Component{render(){return(0,l.Y)(i.aFV,{title:this.props.intl.formatMessage({id:"/2m1wK",defaultMessage:"Oops!"}),visible:this.props.isOpen,onCancel:this.props.onClose,okButtonProps:{style:{display:"none"}},cancelText:this.props.intl.formatMessage({id:"OfLABN",defaultMessage:"Close"}),centered:!0,children:(0,l.Y)("p",{style:{marginBottom:"10px"},children:this.props.text})})}}const c=(0,s.Ay)(d);t.Ay=(0,o.Ng)((e=>({isOpen:(0,a.Aw)(e),text:(0,a.N9)(e)})),(e=>({onClose:()=>{e((0,u.OY)())}})))(c)},65795:function(e,t,n){n.d(t,{Eb:function(){return m},Ef:function(){return s},KH:function(){return i},TG:function(){return f},a7:function(){return u},hR:function(){return a},jC:function(){return l},kU:function(){return o},rl:function(){return c},vC:function(){return g},xP:function(){return p}});n(25866);var r=n(57368);const i="I have an online store selling {{ stock_type }}. Write a one-sentence advertisement for use in social media.",o={stock_type:"books"},a="output",u="prompt",s="MLFLOW_latency",l="MLFLOW_total_tokens",d="prompt_template",c=e=>{const t=Array.from(e.matchAll(/\{\{\s*([\w-]+)\s*\}\}/g));if(!t.length)return[];const n=new Set(t.map((e=>{let[,t]=e;return t.toLowerCase()})));return Array.from(n)},m=e=>{const t=e.matchAll(/\{\{\s*([\w-]+(\s+[\w-]+)+)\s*\}\}/g);return{namesWithSpaces:Array.from(t).map((e=>{let[,t]=e;return t}))}},f=(e,t)=>Object.entries(t).reduce(((e,t)=>{let[n,r]=t;return e.replace(new RegExp(`{{\\s*${n}\\s*}}`,"gi"),r)}),e),p=e=>{const t=(0,r.mN)(e,d);if(!t)return[];return c(t)},g=e=>{const t=(0,r.mN)(e,"model_route"),n=(0,r.mN)(e,"route_type"),i=(0,r.mN)(e,d),o=(0,r.IR)(e,"max_tokens"),a=(0,r.Yv)(e,"temperature"),u=(0,r.mN)(e,"stop");return{routeName:t,routeType:n,promptTemplate:i,parameters:{max_tokens:o,temperature:a,stop:null===u||void 0===u?void 0:u.slice(1,-1).split(",").map((e=>e.trim())).filter(Boolean)}}}},7842:function(e,t,n){n.d(t,{AQ:function(){return l},Ct:function(){return g},Cx:function(){return f},FI:function(){return y},J2:function(){return h},am:function(){return s},eY:function(){return p},fH:function(){return v},fj:function(){return _},fw:function(){return x},gz:function(){return u},jn:function(){return c},rv:function(){return d},xN:function(){return a},y:function(){return m}});var r=n(9133),i=n(31014),o=n(69526);const a=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:100;const[t,n]=(0,i.useState)(void 0),[o,a]=(0,i.useState)(void 0),u=Boolean(window.ResizeObserver),s=(0,i.useCallback)(((e,t)=>{n(e),a(t)}),[]),l=(0,i.useMemo)((()=>(0,r.throttle)(s,e,{leading:!0})),[s,e]),[d,c]=(0,i.useState)(null);return(0,i.useEffect)((()=>{let e=!1;if(!d||!window.ResizeObserver)return;const t=new ResizeObserver((t=>{let[n]=t;e||l(Math.round(n.contentRect.width),Math.round(n.contentRect.height))}));return t.observe(d),()=>{e=!0,t.disconnect()}}),[d,l]),{containerDiv:d,setContainerDiv:c,layoutWidth:t,layoutHeight:o,isDynamicSizeSupported:u}},u={scatterChartHighlightStyles:{".trace.scatter path.point":{transition:"var(--trace-transition)"},".trace.scatter.is-highlight path.point":{opacity:"var(--trace-opacity-dimmed-low) !important"},".trace.scatter path.point.is-hover-highlight":{opacity:"var(--trace-opacity-highlighted) !important"},".trace.scatter path.point.is-selection-highlight":{opacity:"var(--trace-opacity-highlighted) !important",stroke:"var(--trace-stroke-color)",strokeWidth:"var(--trace-stroke-width) !important"}},chartWrapper:e=>({width:"100%",height:"100%",overflow:"hidden",position:"relative",fontSize:0,lineHeight:0,".js-plotly-plot .plotly .cursor-ew-resize, .js-plotly-plot .plotly .cursor-crosshair":{cursor:"pointer"},".js-plotly-plot g.infolayer > g.g-ytitle > text":{stroke:e.colors.backgroundPrimary,strokeWidth:16,paintOrder:"stroke"},"--trace-transition":"opacity .16s","--trace-opacity-highlighted":"1","--trace-opacity-dimmed":"0","--trace-opacity-dimmed-low":"0.45","--trace-opacity-dimmed-high":"0.55","--trace-stroke-color":"black","--trace-stroke-width":"1"}),chart:e=>({width:"100%",height:"100%",".modebar-container svg":{fill:e.colors.textPrimary}})},s={t:0,b:48,r:0,l:48,pad:0},l={t:0,b:48,r:0,l:80,pad:0},d={bgcolor:"white",bordercolor:"#ccc",font:{color:"black"}},c=e=>{const t="string"===typeof e?parseFloat(e):e;return t?Number.isFinite(t)&&!Number.isNaN(t)?Math.abs(t)===Number.MAX_VALUE?Number.POSITIVE_INFINITY*Math.sign(t):e:void 0:t},m=e=>({font:{color:e.colors.textPrimary},paper_bgcolor:"transparent",plot_bgcolor:"transparent",yaxis:{gridcolor:e.colors.borderDecorative},xaxis:{gridcolor:e.colors.borderDecorative}}),f=e=>e?e.join(","):"DEFAULT",p=e=>e.map((e=>{var t;return{label:e.displayName,color:null!==(t=e.color)&&void 0!==t?t:""}})),g=(e,t,n)=>e.flatMap((e=>{if(!e.metricsHistory)return[];return(null!==t&&void 0!==t?t:[n]).map(((t,n)=>{var r;return{label:`${e.displayName} (${t})`,color:null!==(r=e.color)&&void 0!==r?r:"",dashStyle:h[n%h.length],metricKey:t,uuid:e.uuid}}))})),v=e=>{for(let t=1;t<e.length;t++)if(e[t]===e[t-1])return!0;return!1},h=["solid","dash","dot","longdash","dashdot","longdashdot"],y=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:.1;if(!e)return e;return e+Math.round(255*Math.min(Math.max(t||1,0),1)).toString(16).toUpperCase()};let _=function(e){return e.STEP="step",e.TIME="time",e.TIME_RELATIVE="time-relative",e.TIME_RELATIVE_HOURS="time-relative-hours",e.METRIC="metric",e}({});const E=(0,o.YK)({[_.TIME]:{id:"SNvZyR",defaultMessage:"Time"},[_.TIME_RELATIVE]:{id:"Zb6BqS",defaultMessage:"Relative Time"},[_.TIME_RELATIVE_HOURS]:{id:"YnHiZ6",defaultMessage:"Relative Time (hours)"},[_.STEP]:{id:"cEj56l",defaultMessage:"Step"}}),x=e=>E[e]},25866:function(e,t,n){n.d(t,{$V:function(){return K},AS:function(){return T},B5:function(){return G},Cm:function(){return A},Cr:function(){return j},Eg:function(){return u},KE:function(){return c},KU:function(){return d},Lf:function(){return H},N3:function(){return N},NN:function(){return k},Oe:function(){return F},PE:function(){return o},PS:function(){return B},Q4:function(){return R},QB:function(){return M},RO:function(){return r},S0:function(){return x},T8:function(){return s},WM:function(){return I},XM:function(){return p},_g:function(){return $},a0:function(){return E},ae:function(){return h},eR:function(){return y},eh:function(){return i},ex:function(){return P},f7:function(){return S},fI:function(){return D},fp:function(){return C},gy:function(){return m},ks:function(){return _},m4:function(){return L},mh:function(){return l},o6:function(){return J},qo:function(){return a},qt:function(){return b},rx:function(){return O},uv:function(){return W},xd:function(){return w},xx:function(){return v},yU:function(){return U},z$:function(){return g},zD:function(){return V}});const r={ATTRIBUTES:"attributes",PARAMS:"params",METRICS:"metrics",TAGS:"tags"},i="MLmodel",o=1048576,a={DATE:"Created",EXPERIMENT_NAME:"Experiment Name",DURATION:"Duration",USER:"User",RUN_NAME:"Run Name",SOURCE:"Source",VERSION:"Version",MODELS:"Models",DATASET:"Dataset"},u={DATE:"Created",USER:"User",RUN_NAME:"Run Name",SOURCE:"Source",VERSION:"Version"},s={DATE:"attributes.start_time",USER:"tags.`mlflow.user`",RUN_NAME:"tags.`mlflow.runName`",SOURCE:"tags.`mlflow.source.name`",VERSION:"tags.`mlflow.source.git.commit`"},l="ASCENDING",d="DESCENDING",c="***";let m=function(e){return e.ACTIVE="Active",e.DELETED="Deleted",e}({}),f=function(e){return e.WITH_MODEL_VERSIONS="With Model Versions",e.WTIHOUT_MODEL_VERSIONS="Without Model Versions",e.ALL_RUNS="All Runs",e}({});const p=s.DATE,g=!1,v="ALL",h=(r.ATTRIBUTES,r.PARAMS,r.METRICS,r.TAGS,m.ACTIVE),y=f.ALL_RUNS,_=26,E=15e3,x="_databricks_automl.evaluation_metric",R="mlflow.experiment.primaryMetric.name",T="mlflow.data.context",I="mlflow.loggedArtifacts",A="https://github.com/mlflow/mlflow/issues/6348",U="mlflow.runType",S="mlflow.runColor",L="evaluation",w="mlflow.source.git.branch";let N=function(e){return e.OVERVIEW="overview",e.MODEL_METRIC_CHARTS="model-metrics",e.SYSTEM_METRIC_CHARTS="system-metrics",e.ARTIFACTS="artifacts",e}({});const b="system/",O="System metrics",M="",k="Model metrics",P="viewStateShareKey",J="mlflow.sharedViewState.",C="images",B="png",D="webp",V=3e4,$="Image grid",F="image",j="mlflow.loggedImages",H=10,K=288e5,G=864e5,W=36e5},85017:function(e,t,n){n.d(t,{IB:function(){return d},KQ:function(){return l},Pm:function(){return p},T:function(){return f},X9:function(){return m},d0:function(){return u},qP:function(){return s}});var r=n(9133),i=n(44240),o=n(58799),a=n(7204);const u=(e,t)=>t.entities.latestMetricsByRunUuid[e],s=(e,t)=>t.entities.minMetricsByRunUuid[e],l=(e,t)=>t.entities.maxMetricsByRunUuid[e],d=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;const n=e=>{const t={};return e.forEach((e=>t[e.key]=o.JW.fromJs(e))),t};switch(t.type){case(0,a.ec)(i.s2):{const r=t.payload.run.info.runUuid,i=t.payload.run.data.metrics||[];return{...e,[r]:n(i)}}case(0,a.ec)(i.hb):case(0,a.ec)(i.Nk):{const r={...e};return t.payload.runs&&t.payload.runs.forEach((e=>{const t=e.info.runUuid,i=e.data.metrics||[];r[t]=n(i)})),r}case(0,a.ec)(i.mq):{const n={...e},{runUuid:r,key:i}=t.meta,{metrics:a}=t.payload;if(a&&a.length>0){const e=o.JW.fromJs(a[a.length-1]);n[r]?n[r][i]=e:n[r]={[i]:e}}return n}case(0,a.ec)(i.X3):{const n={...e},{runUuids:r,key:i}=t.meta,{metrics:a}=t.payload;if(a&&a.length>0)for(const e of r){const t=a.filter((t=>t.run_id===e));if(t.length<1)continue;const r=o.JW.fromJs(t[t.length-1]);n[e]?n[e][i]=r:n[e]={[i]:r}}return n}default:return e}},c=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0,n=arguments.length>2?arguments[2]:void 0;switch(t.type){case(0,a.ec)(i.mq):{const r={...e},{runUuid:i,key:a}=t.meta,{metrics:u}=t.payload;if(u&&u.length>0){const e=o.JW.fromJs(n(u));r[i]?r[i][a]=e:r[i]={[a]:e}}return r}case(0,a.ec)(i.X3):{const r={...e},{runUuids:i,key:a}=t.meta,{metrics:u}=t.payload;if(u&&u.length>0)for(const e of i){const t=n(u.filter((t=>t.run_id===e)));if(!t)continue;const i=o.JW.fromJs(t);r[e]?r[e][a]=i:r[e]={[a]:i}}return r}default:return e}},m=function(){return c(arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},arguments.length>1?arguments[1]:void 0,(e=>(0,r.minBy)(e,"value")))},f=function(){return c(arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},arguments.length>1?arguments[1]:void 0,(e=>(0,r.maxBy)(e,"value")))},p=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;switch(t.type){case(0,a.ec)(i.mq):{const{runUuid:n}=t.meta,r=t.payload.metrics||[];return{...e,[n]:g(e[n],t,r)}}case(0,a.ec)(i.X3):{const{runUuids:n}=t.meta,r=t.payload.metrics||[],i={...e};for(const o of n)i[o]=g(e[o],t,r.filter((e=>e.run_id===o)));return i}default:return e}},g=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0,n=arguments.length>2?arguments[2]:void 0;const r={...e};switch(t.type){case(0,a.ec)(i.mq):case(0,a.ec)(i.X3):{const{key:e,pageToken:i}=t.meta,a=r[e]||[],u=n.map((e=>o.JW.fromJs(e)));return r[e]=i?[...a,...u]:u,r}default:return e}}},9101:function(e,t,n){n.d(t,{gz:function(){return B},XT:function(){return C},EW:function(){return D},vb:function(){return k},ej:function(){return M},N9:function(){return F},_m:function(){return I},xy:function(){return N},DZ:function(){return T},tI:function(){return L},jF:function(){return U},K4:function(){return A},X3:function(){return w},EV:function(){return J},Aw:function(){return $},d$:function(){return K}});var r=n(73874),i=n(44240),o=n(58799),a=n(38566),u=n(85017),s=n(65871),l=n(9133),d=n.n(l),c=n(7204),m=n(69708),f=n(24478),p=n(76010),g=n(65795);const v=(0,r.HY)({evaluationDraftInputValues:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1?arguments[1]:void 0;return"DISCARD_PENDING_EVALUATION_DATA"===t.type?[]:"EVALUATE_ADD_INPUT_VALUES"===t.type?[...e,t.payload]:t.type===(0,c.ec)("WRITE_BACK_EVALUATION_ARTIFACTS")?[]:e},evaluationArtifactsByRunUuid:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;if(t.type===(0,c.ec)("WRITE_BACK_EVALUATION_ARTIFACTS")&&t.meta){const{artifactPath:n}=t.meta,r=t.payload,i={...e};for(const{runUuid:e,newEvaluationTable:t}of r)i[e]={...i[e],[n]:t};return i}if(t.type===(0,c.ec)("GET_EVALUATION_TABLE_ARTIFACT")&&t.meta){const{runUuid:n,artifactPath:r}=t.meta;return{...e,[n]:{...e[n],[r]:t.payload}}}return e},evaluationArtifactsLoadingByRunUuid:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;if(t.type===(0,c.Ub)("GET_EVALUATION_TABLE_ARTIFACT")&&t.meta){const{runUuid:n,artifactPath:r}=t.meta;return{...e,[n]:{...e[n],[r]:!0}}}if(t.type===(0,c.nS)("GET_EVALUATION_TABLE_ARTIFACT")||t.type===(0,c.ec)("GET_EVALUATION_TABLE_ARTIFACT")){if(!t.meta)return e;const{runUuid:n,artifactPath:r}=t.meta;return{...e,[n]:{...e[n],[r]:!1}}}return e},evaluationArtifactsErrorByRunUuid:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;if(t.type===(0,c.nS)("GET_EVALUATION_TABLE_ARTIFACT")&&t.meta){const{runUuid:n,artifactPath:r}=t.meta,i=t.payload;return{...e,[n]:{...e[n],[r]:null===i||void 0===i?void 0:i.toString()}}}return e},evaluationPendingDataByRunUuid:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;if("DISCARD_PENDING_EVALUATION_DATA"===t.type)return{};if(t.type===(0,c.ec)("WRITE_BACK_EVALUATION_ARTIFACTS")){const r={...e};for(const e of(null===(n=t.meta)||void 0===n?void 0:n.runUuidsToUpdate)||[]){var n;delete r[e]}return r}if(t.type===(0,c.ec)("EVALUATE_PROMPT_TABLE_VALUE")&&t.meta){const{run:n,inputValues:r,startTime:i,compiledPrompt:o,gatewayRoute:a}=t.meta,u=i?performance.now()-i:0,{metadata:s,text:l}=t.payload,d={entryData:{...r,[g.hR]:l,[g.a7]:o},evaluationTime:u,totalTokens:s.total_tokens,isPending:!0},c=e[n.runUuid]||[],m=c.find((e=>{let{entryData:t}=e;return Object.entries(r).every((e=>{let[n,r]=e;return t[n]===r}))})),f=m?c.filter((e=>e!==m)):c;return f.push(d),{...e,[n.runUuid]:f}}return e},evaluationPendingDataLoadingByRunUuid:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;if(t.meta&&t.type===(0,c.Ub)("EVALUATE_PROMPT_TABLE_VALUE")){const{rowKey:n,run:r}=t.meta,i=e[r.runUuid]||{};return i[n]=!0,{...e,[r.runUuid]:i}}if(t.meta&&(t.type===(0,c.ec)("EVALUATE_PROMPT_TABLE_VALUE")||t.type===(0,c.nS)("EVALUATE_PROMPT_TABLE_VALUE"))){const{rowKey:n,run:r}=t.meta,i=e[r.runUuid]||{};return i[n]=!1,{...e,[r.runUuid]:i}}return e},evaluationArtifactsBeingUploaded:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;if(t.type===(0,c.Ub)("WRITE_BACK_EVALUATION_ARTIFACTS")&&t.meta){const{runUuidsToUpdate:e,artifactPath:n}=t.meta;return e.reduce(((e,t)=>({...e,[t]:{[n]:!0}})),{})}if((t.type===(0,c.ec)("UPLOAD_ARTIFACT_API")||t.type===(0,c.nS)("UPLOAD_ARTIFACT_API"))&&t.meta){const{filePath:n,runUuid:r}=t.meta;return{...e,[r]:{...e[r],[n]:!1}}}return e}});var h=n(50361);const y=(0,r.HY)({modelGatewayRoutesLoading:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{gatewayRoutesLoading:!1,endpointRoutesLoading:!1,deploymentRoutesLoading:!1,loading:!1};switch((arguments.length>1?arguments[1]:void 0).type){case(0,c.Ub)("SEARCH_MLFLOW_DEPLOYMENTS_MODEL_ROUTES"):return{...e,deploymentRoutesLoading:!0,loading:!0};case(0,c.ec)("SEARCH_MLFLOW_DEPLOYMENTS_MODEL_ROUTES"):case(0,c.nS)("SEARCH_MLFLOW_DEPLOYMENTS_MODEL_ROUTES"):return{...e,deploymentRoutesLoading:!1,loading:e.endpointRoutesLoading||e.gatewayRoutesLoading}}return e},modelGatewayRoutes:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},{payload:t,type:n}=arguments.length>1?arguments[1]:void 0;const r=[h.W8.LLM_V1_COMPLETIONS,h.W8.LLM_V1_CHAT];if(n===(0,c.ec)("SEARCH_MLFLOW_DEPLOYMENTS_MODEL_ROUTES")){if(!t.endpoints)return e;return t.endpoints.filter((e=>{let{endpoint_type:t}=e;return t&&r.includes(t)})).reduce(((e,t)=>({...e,[`mlflow_deployment_endpoint:${t.name}`]:{type:"mlflow_deployment_endpoint",key:`mlflow_deployment_endpoint:${t.name}`,name:t.name,mlflowDeployment:t,task:t.endpoint_type}})),e)}return e}});var _=n(16297);var E=n(25866);var x=n(85557);const R={data:[],loading:!1,error:null,proxyTarget:null,count:0,mlflowServer:{status:{isValid:!0,uri:null}},dispatcher:{status:{isValid:!0,uri:null}}},T=e=>Object.values(e.entities.experimentsById),I=(e,t)=>t.entities.experimentsById[e],A=(e,t)=>t.entities.runInfosByUuid[e],U=(e,t)=>t.entities.runDatasetsByUuid[e],S=(e,t)=>({...e,[t.runUuid]:t}),L=(e,t)=>{const n=t.entities.paramsByRunUuid[e];return n||{}},w=(e,t)=>t.entities.tagsByRunUuid[e]||{},N=(e,t)=>t.entities.experimentTagsByExperimentId[e]||{},b=(e,t,n)=>{let r={...e};return t&&t.forEach((e=>{const t=o.QA.fromJs(e),i=r[n]?r[n]:{};r={...r,[n]:{...i,[t.key]:t}}})),r},O=(e,t,n)=>{let r={...e};return t&&t.forEach((e=>{const t=o.cI.fromJs(e),i=r[n]?r[n]:{};r={...r,[n]:{...i,[t.key]:t}}})),r},M=(e,t)=>t.entities.artifactsByRunUuid[e],k=(e,t)=>t.entities.artifactRootUriByRunUuid[e],P=(0,r.HY)({experimentsById:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;switch(t.type){case(0,c.ec)(i.rP):{let n=Object.assign({},e);return t.payload&&t.payload.experiments&&(n={},t.payload.experiments.forEach((e=>{const t=e;n=Object.assign(n,{[t.experimentId]:t})}))),n}case(0,c.ec)(i.gT):{const{experiment:n}=t.payload,r=e[n.experimentId]||{};return{...e,[n.experimentId]:(0,l.merge)({},r,n)}}default:return e}},runInfosByUuid:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;switch(t.type){case(0,c.ec)(i.s2):{const n=t.payload.run.info;return S(e,n)}case(0,c.ec)(i.hb):{const e={};return t.payload&&t.payload.runs&&t.payload.runs.forEach((t=>{const n=t.info;e[n.runUuid]=n})),e}case(0,c.nS)(i.hb):return{};case(0,c.ec)(i.Nk):{const n={...e};return t.payload&&t.payload.runs&&t.payload.runs.forEach((e=>{const t=e.info;n[t.runUuid]=t})),n}default:return e}},runDatasetsByUuid:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;switch(t.type){case(0,c.ec)(i.s2):{const{run:n}=t.payload,r=n.info.runUuid,i=n.inputs||[],o={...e};return i&&r&&(o[r]=i.datasetInputs),o}case(0,c.ec)(i.hb):case(0,c.ec)(i.Nk):{const n={...e};return t.payload&&t.payload.runs&&t.payload.runs.forEach((e=>{if(!e)return;const t=e.inputs,r=e.info.runUuid;t&&r&&(n[r]=t.datasetInputs)})),n}default:return e}},runUuidsMatchingFilter:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1?arguments[1]:void 0;switch(t.type){case(0,c.ec)(i.hb):case(0,c.ec)(i.Nk):{var n;const r=t.type===(0,c.ec)(i.Nk)?[...e]:[];return(0,l.isArray)(null===(n=t.payload)||void 0===n?void 0:n.runsMatchingFilter)&&r.push(...t.payload.runsMatchingFilter.map((e=>{let{info:t}=e;return t.runUuid}))),r}default:return e}},metricsByRunUuid:u.Pm,imagesByRunUuid:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;if(t.type===(0,c.ec)(i.P0)){if(!t.meta)return e;const{runUuid:r}=t.meta,{files:i}=t.payload;try{if(!i)return{...e,[r]:{}};const t=i.reduce(((e,t)=>{if(!t.is_dir){if(!t.path)return e;const{imageKey:i,step:o,timestamp:a,fileKey:u,extension:s,isCompressed:l}=(e=>{const t=e.split(".").pop();let n=t?e.slice(0,-(t.length+1)):e;const[r,i,o,a,u,s,l]=n.split("%");if("step"!==i||"timestamp"!==a)throw new Error(`Failed to parse step and timestamp from image filename ${e}`);const d=parseInt(o,10),c=parseInt(u,10),m=r.replace(/#/g,"/"),f=void 0!==l;return f&&(n=n.slice(0,-11)),{imageKey:m,step:d,timestamp:c,fileKey:n,extension:t,isCompressed:f}})(t.path.slice((E.fp+"/").length));var n,r;if(s===E.PS||s===E.fI)if(l)e[i]={...e[i],[u]:{...null===(n=e[i])||void 0===n?void 0:n[u],compressed_filepath:t.path}};else e[i]={...e[i],[u]:{...null===(r=e[i])||void 0===r?void 0:r[u],filepath:t.path,step:o,timestamp:a}}}return e}),{});return{...e,[r]:t}}catch(n){return p.A.logErrorAndNotifyUser(n),e}}return e},latestMetricsByRunUuid:u.IB,minMetricsByRunUuid:u.X9,maxMetricsByRunUuid:u.T,paramsByRunUuid:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;const n=e=>{const t={};return e.forEach((e=>t[e.key]=o.Iw.fromJs(e))),t};switch(t.type){case(0,c.ec)(i.s2):{const{run:r}=t.payload,i=r.info.runUuid,o=r.data.params||[],a={...e};return a[i]=n(o),a}case(0,c.ec)(i.hb):case(0,c.ec)(i.Nk):{const{runs:r}=t.payload,i={...e};return r&&r.forEach((e=>{const t=e.info.runUuid,r=e.data.params||[];i[t]=n(r)})),i}default:return e}},tagsByRunUuid:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;const n=e=>{const t={};return e.forEach((e=>t[e.key]=o.QA.fromJs(e))),t};switch(t.type){case(0,c.ec)(i.s2):{const r=t.payload.run.info,i=t.payload.run.data.tags||[],o=r.runUuid,a={...e};return a[o]=n(i),a}case(0,c.ec)(i.hb):case(0,c.ec)(i.Nk):{const{runs:r}=t.payload,i={...e};return r&&r.forEach((e=>{const t=e.info.runUuid,r=e.data.tags||[];i[t]=n(r)})),i}case(0,c.ec)(i.db):{const n={key:t.meta.key,value:t.meta.value};return b(e,[n],t.meta.runUuid)}case(0,c.ec)(i.q1):{const{runUuid:n}=t.meta,r=e[n]?e[n]:{},i=d().omit(r,t.meta.key);return 0===Object.keys(i).length?d().omit({...e},n):{...e,[n]:i}}default:return e}},experimentTagsByExperimentId:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;switch(t.type){case(0,c.ec)(i.gT):{const{experiment:n}=t.payload,r={...e},i=n.tags||[];return r[n.experimentId]=(e=>{const t={};return e.forEach((e=>t[e.key]=o.cI.fromJs(e))),t})(i),r}case(0,c.ec)(i.pv):{const n={key:t.meta.key,value:t.meta.value};return O(e,[n],t.meta.experimentId)}default:return e}},artifactsByRunUuid:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;if(t.type===(0,c.ec)(i.M6)){const r=t.meta.path,{runUuid:i}=t.meta;let o=e[i]||new a.x(!0);o=o.deepCopy();const{files:u}=t.payload;if(void 0===u)return{...e,[i]:o};if(u.sort(((e,t)=>t.is_dir-e.is_dir)),void 0===r)o.setChildren(u);else{const e=r.split("/").filter((e=>e));let t=o;e.forEach((e=>{t=t.children[e]}));try{t.fileInfo.is_dir&&t.setChildren(u)}catch(n){p.A.logErrorAndNotifyUser("Unable to construct the artifact tree.")}}return{...e,[i]:o}}return e},artifactRootUriByRunUuid:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;switch(t.type){case(0,c.ec)(i.s2):{const n=t.payload.run.info,r=n.runUuid;return{...e,[r]:n.artifactUri}}case(0,c.ec)(i.hb):case(0,c.ec)(i.Nk):{const{runs:n}=t.payload,r={...e};return n&&n.forEach((e=>{const t=e.info.runUuid;e.data.tags;r[t]=e.info.artifactUri})),r}default:return e}},modelVersionsByRunUuid:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;if(t.type===(0,c.ec)(m.J2)){let n={...e};const r={};if(t.payload){const e=t.payload[(0,f.zL)("model_versions")];e&&e.forEach((e=>{e.run_id in r?r[e.run_id].push(e):r[e.run_id]=[e]}))}return n={...n,...r},d().isEqual(e,n)?e:n}return e},datasetsByExperimentId:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;if(t.type===(0,c.ec)(i.g1)){let n=Object.assign({},e);return t.payload&&t.payload.dataset_summaries&&(n={},t.payload.dataset_summaries.forEach((e=>{n[e.experiment_id]=[...n[e.experiment_id]||[],e]}))),n}return e},sampledMetricsByRunUuid:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;if(t.type===(0,c.nS)(_.c)&&t.meta){const{runUuids:i,key:o,rangeKey:a}=t.meta,u={...e};for(const e of i){var n,r;if(null!==(n=u[e])&&void 0!==n&&null!==(r=n[o])&&void 0!==r&&r[a]){const n=u[e][o][a];u[e][o][a]={...n,error:t.payload,refreshing:!1,loading:!1}}}return u}if(t.type===(0,c.Ub)(_.c)&&t.meta){const{runUuids:n,key:r,rangeKey:i,isRefreshing:o}=t.meta,a={...e};for(const t of n)if(a[t])if(a[t][r])if(a[t][r][i]){if(a[t][r][i]&&o)return{...e,[t]:{...e[t],[r]:{...e[t][r],[i]:{...e[t][r][i],refreshing:!0}}}}}else a[t][r][i]={metricsHistory:void 0,refreshing:!1,loading:!0};else a[t][r]={[i]:{metricsHistory:void 0,refreshing:!1,loading:!0}};else a[t]={[r]:{[i]:{metricsHistory:void 0,refreshing:!1,loading:!0}}};return a}if(t.type===(0,c.ec)(_.c)&&t.meta){const{runUuids:n,key:r,rangeKey:a}=t.meta,u={...e},{metrics:s}=t.payload,d=(0,l.groupBy)(s,"run_id");for(const e of n){var i,o;const t=d[e];null!==(i=u[e])&&void 0!==i&&null!==(o=i[r])&&void 0!==o&&o[a]&&(u[e][r][a]={metricsHistory:t||[],loading:!1,refreshing:!1,lastUpdatedTime:Date.now()})}return u}return e},colorByRunUuid:x.lw,...s.Ay}),J=(e,t)=>d().intersection(...e.map((e=>Object.keys(t.entities.latestMetricsByRunUuid[e])))),C=(e,t)=>d().union(...e.map((e=>Object.keys(t.entities.paramsByRunUuid[e])))),B=(e,t)=>d().union(...e.map((e=>Object.keys(t.entities.latestMetricsByRunUuid[e])))),D=(e,t)=>e.map((e=>t.apis[e]||{})),V={comparedExperimentIds:[],hasComparedExperimentsBefore:!1},$=e=>e.views.errorModal.isOpen,F=e=>e.views.errorModal.text,j={isOpen:!1,text:""},H=(0,r.HY)({errorModal:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:j,t=arguments.length>1?arguments[1]:void 0;switch(t.type){case i.wh:return{...e,isOpen:!1};case i.Ac:return{isOpen:!0,text:t.text};default:return e}}}),K=(0,r.HY)({entities:P,views:H,apis:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;var n,r,i;return(0,c.Ke)(t)?null!==t&&void 0!==t&&null!==(n=t.meta)&&void 0!==n&&n.id?{...e,[t.meta.id]:{id:t.meta.id,active:!0}}:e:(0,c.ye)(t)?null!==t&&void 0!==t&&null!==(r=t.meta)&&void 0!==r&&r.id?{...e,[t.meta.id]:{id:t.meta.id,active:!1,data:t.payload}}:e:(0,c.bz)(t)&&null!==t&&void 0!==t&&null!==(i=t.meta)&&void 0!==i&&i.id?{...e,[t.meta.id]:{id:t.meta.id,active:!1,error:t.payload}}:e},compareExperiments:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:V,t=arguments.length>1?arguments[1]:void 0;if(t.type===i.gX){const{comparedExperimentIds:n,hasComparedExperimentsBefore:r}=t.payload;return{...e,comparedExperimentIds:n,hasComparedExperimentsBefore:r}}return e},evaluationData:v,modelGateway:y,clusters:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:R,t=arguments.length>1?arguments[1]:void 0;switch(t.type){case i.fP:return{...e,loading:!0};case i.XG:return{...e,loading:!1,data:t.payload.data,count:t.payload.count,error:null};case i.Yk:return{...e,loading:!1,error:t.error};case i.AR:return{...e,proxyTarget:t.payload};case i.FY:return{...e,mlflowServer:{...e.mlflowServer,status:t.payload}};default:return e}}})},85557:function(e,t,n){n.d(t,{An:function(){return u},lw:function(){return s},n:function(){return a}});var r=n(7204),i=n(44240),o=n(25866);const a="INITIALIZE_RUN_COLORS",u="SET_RUN_COLOR",s=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;switch(t.type){case a:return{...e,...t.values};case u:{const{runOrGroupUuid:n,colorValue:r}=t;return{...e,[n]:r}}case(0,r.ec)(i.s2):{var n,s;const r=t.payload.run,i=r.info.runUuid,a=null===r||void 0===r||null===(n=r.data)||void 0===n||null===(s=n.tags)||void 0===s?void 0:s.find((e=>e.key===o.f7));return a?{...e,[i]:a.value}:e}case(0,r.ec)(i.hb):case(0,r.ec)(i.Nk):{const n={...e};if(t.payload&&t.payload.runs)for(const e of t.payload.runs){var l,d;const t=e.info.runUuid,r=null===e||void 0===e||null===(l=e.data)||void 0===l||null===(d=l.tags)||void 0===d?void 0:d.find((e=>e.key===o.f7));r&&(n[t]=r.value)}return n}default:return e}}},32815:function(e,t,n){n.d(t,{o:function(){return o}});var r=n(48624),i=n(58481);const o=()=>[{path:i.A.experimentPage,element:(0,r.eK)((()=>Promise.all([n.e(1928),n.e(7504),n.e(5826),n.e(618),n.e(9244),n.e(5042),n.e(2901),n.e(3608),n.e(6846),n.e(813),n.e(9682),n.e(3968),n.e(2103),n.e(21),n.e(7731),n.e(7266),n.e(6363),n.e(1860),n.e(8823),n.e(8365),n.e(8953),n.e(6756),n.e(8960),n.e(1648),n.e(2258),n.e(5486),n.e(8541),n.e(1357),n.e(4862),n.e(1142),n.e(7844),n.e(8486),n.e(3387),n.e(2956),n.e(491),n.e(6335),n.e(110),n.e(1303),n.e(4221),n.e(6933),n.e(9369),n.e(2346),n.e(6715),n.e(5794),n.e(1e3),n.e(7186),n.e(4297),n.e(8017),n.e(2972),n.e(1012),n.e(1262),n.e(3964),n.e(8300),n.e(2746),n.e(3448),n.e(4804),n.e(1167),n.e(6899),n.e(2289),n.e(944),n.e(847),n.e(1470),n.e(3775),n.e(6058),n.e(8497),n.e(6861),n.e(1273),n.e(1248),n.e(5919),n.e(7832),n.e(4250),n.e(3307),n.e(9427),n.e(9082),n.e(3999),n.e(7721),n.e(2386),n.e(9168),n.e(4180),n.e(243),n.e(6121),n.e(1500),n.e(5229),n.e(6478),n.e(2779),n.e(8867),n.e(7076)]).then(n.bind(n,5746)))),pageId:"mlflow.experiment.details"},{path:i.A.experimentPageSearch,element:(0,r.eK)((()=>Promise.all([n.e(1928),n.e(7504),n.e(5826),n.e(618),n.e(9244),n.e(5042),n.e(2901),n.e(3608),n.e(6846),n.e(813),n.e(9682),n.e(3968),n.e(2103),n.e(21),n.e(7731),n.e(7266),n.e(6363),n.e(1860),n.e(8823),n.e(8365),n.e(8953),n.e(6756),n.e(8960),n.e(1648),n.e(2258),n.e(5486),n.e(8541),n.e(1357),n.e(4862),n.e(1142),n.e(7844),n.e(8486),n.e(3387),n.e(2956),n.e(491),n.e(6335),n.e(110),n.e(1303),n.e(4221),n.e(6933),n.e(9369),n.e(2346),n.e(6715),n.e(5794),n.e(1e3),n.e(7186),n.e(4297),n.e(8017),n.e(2972),n.e(1012),n.e(1262),n.e(3964),n.e(8300),n.e(2746),n.e(3448),n.e(4804),n.e(1167),n.e(6899),n.e(2289),n.e(944),n.e(847),n.e(1470),n.e(3775),n.e(6058),n.e(8497),n.e(6861),n.e(1273),n.e(1248),n.e(5919),n.e(7832),n.e(4250),n.e(3307),n.e(9427),n.e(9082),n.e(3999),n.e(7721),n.e(2386),n.e(9168),n.e(4180),n.e(243),n.e(6121),n.e(1500),n.e(5229),n.e(6478),n.e(2779),n.e(8867),n.e(7076)]).then(n.bind(n,5746)))),pageId:"mlflow.experiment.details.search"},{path:i.A.compareExperimentsSearch,element:(0,r.eK)((()=>Promise.all([n.e(1928),n.e(7504),n.e(5826),n.e(618),n.e(9244),n.e(5042),n.e(2901),n.e(3608),n.e(6846),n.e(813),n.e(9682),n.e(3968),n.e(2103),n.e(21),n.e(7731),n.e(7266),n.e(6363),n.e(1860),n.e(8823),n.e(8365),n.e(8953),n.e(6756),n.e(8960),n.e(1648),n.e(2258),n.e(5486),n.e(8541),n.e(1357),n.e(4862),n.e(1142),n.e(7844),n.e(8486),n.e(3387),n.e(2956),n.e(491),n.e(6335),n.e(110),n.e(1303),n.e(4221),n.e(6933),n.e(9369),n.e(2346),n.e(6715),n.e(5794),n.e(1e3),n.e(7186),n.e(4297),n.e(8017),n.e(2972),n.e(1012),n.e(1262),n.e(3964),n.e(8300),n.e(2746),n.e(3448),n.e(4804),n.e(1167),n.e(6899),n.e(2289),n.e(944),n.e(847),n.e(1470),n.e(3775),n.e(6058),n.e(8497),n.e(6861),n.e(1273),n.e(1248),n.e(5919),n.e(7832),n.e(4250),n.e(3307),n.e(9427),n.e(9082),n.e(3999),n.e(7721),n.e(2386),n.e(9168),n.e(4180),n.e(243),n.e(6121),n.e(1500),n.e(5229),n.e(6478),n.e(2779),n.e(8867),n.e(7076)]).then(n.bind(n,5746)))),pageId:"mlflow.experiment.compare"},{path:i.A.runPageWithTab,element:(0,r.eK)((()=>Promise.all([n.e(1928),n.e(7504),n.e(5826),n.e(618),n.e(9244),n.e(5042),n.e(2901),n.e(3608),n.e(6846),n.e(813),n.e(9682),n.e(3968),n.e(2103),n.e(21),n.e(7731),n.e(7266),n.e(6363),n.e(1860),n.e(8823),n.e(8365),n.e(8953),n.e(6756),n.e(8960),n.e(1648),n.e(2258),n.e(5486),n.e(8541),n.e(1357),n.e(4862),n.e(1142),n.e(7844),n.e(8486),n.e(3387),n.e(2956),n.e(491),n.e(6335),n.e(110),n.e(1303),n.e(4221),n.e(6933),n.e(9369),n.e(2346),n.e(6715),n.e(5794),n.e(1e3),n.e(7186),n.e(4297),n.e(8017),n.e(2972),n.e(1012),n.e(1262),n.e(3964),n.e(8300),n.e(2746),n.e(3448),n.e(4804),n.e(1167),n.e(6899),n.e(2289),n.e(944),n.e(847),n.e(1470),n.e(3775),n.e(6058),n.e(8497),n.e(6861),n.e(1273),n.e(1248),n.e(5919),n.e(9),n.e(3563),n.e(5682),n.e(1351),n.e(1909),n.e(5526),n.e(2647),n.e(9645),n.e(725),n.e(5223),n.e(9886),n.e(9082),n.e(3999),n.e(7721),n.e(2386),n.e(9168),n.e(4180),n.e(243),n.e(5170)]).then(n.bind(n,64841)))),pageId:"mlflow.experiment.run.details"},{path:i.A.runPageDirect,element:(0,r.eK)((()=>n.e(3835).then(n.bind(n,33835)))),pageId:"mlflow.experiment.run.details.direct"},{path:i.A.compareRuns,element:(0,r.eK)((()=>Promise.all([n.e(9194),n.e(7367)]).then(n.bind(n,80993)))),pageId:"mlflow.experiment.run.compare"},{path:i.A.metricPage,element:(0,r.eK)((()=>Promise.all([n.e(9244),n.e(3999),n.e(9780)]).then(n.bind(n,85082)))),pageId:"mlflow.metric.details"}]},58481:function(e,t,n){n.d(t,{A:function(){return i}});var r=n(48624);class i{static get rootRoute(){return(0,r.Oz)("/")}static get experimentObservatory(){return(0,r.Oz)("/experiments/list")}static get experimentPage(){return(0,r.Oz)("/experiments/:experimentId")}static get experimentPageSearch(){return(0,r.Oz)("/experiments/:experimentId/:searchString")}static get runPage(){return(0,r.Oz)("/experiments/:experimentId/runs/:runUuid")}static get runPageWithTab(){return(0,r.Oz)("/experiments/:experimentId/runs/:runUuid/*")}static get runPageWithArtifact(){return(0,r.Oz)("/experiments/:experimentId/runs/:runUuid/artifactPath/*")}static get runPageDirect(){return(0,r.Oz)("/runs/:runUuid")}static get metricPage(){return(0,r.Oz)("/metric/*")}static get compareRuns(){return(0,r.Oz)("/compare-runs")}static get compareExperiments(){return(0,r.Oz)("/compare-experiments")}static get compareExperimentsSearch(){return(0,r.Oz)("/compare-experiments/:searchString")}static get defaultExperimentsPath(){return(0,r.Oz)("/experiments/0")}}t.h=class{static get rootRoute(){return i.rootRoute}static get experimentsObservatoryRoute(){return i.experimentObservatory}static get experimentPageRoute(){return i.experimentPage}static get experimentPageSearchRoute(){return i.experimentPageSearch}static get experimentPageDefaultRoute(){return i.defaultExperimentsPath}static getExperimentPageRoute(e){let t=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=arguments.length>2?arguments[2]:void 0;const o=(0,r.tW)(i.experimentPage,{experimentId:e});return n?`${o}?viewStateShareKey=${n}`:t?`${o}?isComparingRuns=true`:o}static searchRunsByUser(e,t){return`${(0,r.tW)(i.experimentPage,{experimentId:e})}?searchFilter=${encodeURIComponent(`user_id = '${t}'`)}`}static searchRunsByLifecycleStage(e,t){return`${(0,r.tW)(i.experimentPage,{experimentId:e})}?lifecycleFilter=${t}`}static getRunPageRoute(e,t){let n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;return n?this.getRunPageTabRoute(e,t,["artifacts",n].join("/")):(0,r.tW)(i.runPage,{experimentId:e,runUuid:t})}static getRunPageTabRoute(e,t,n){return(0,r.tW)(i.runPageWithTab,{experimentId:e,runUuid:t,"*":n})}static getMetricPageRoute(e,t,n){let o=arguments.length>4&&void 0!==arguments[4]?arguments[4]:{},a=arguments.length>5&&void 0!==arguments[5]?arguments[5]:"relative",u=arguments.length>7&&void 0!==arguments[7]?arguments[7]:1,s=arguments.length>8&&void 0!==arguments[8]&&arguments[8],l=arguments.length>9&&void 0!==arguments[9]?arguments[9]:[],d=arguments.length>10&&void 0!==arguments[10]?arguments[10]:[];const c=(arguments.length>3&&void 0!==arguments[3]?arguments[3]:null)||[t],m=arguments.length>6&&void 0!==arguments[6]&&arguments[6]?"log":"linear",f=`?runs=${JSON.stringify(e)}&metric=${JSON.stringify(t)}&experiments=${JSON.stringify(n)}&plot_metric_keys=${JSON.stringify(c)}&plot_layout=${JSON.stringify(o)}&x_axis=${a}&y_axis_scale=${m}&line_smoothness=${u}&show_point=${s}&deselected_curves=${JSON.stringify(l)}&last_linear_y_axis_range=${JSON.stringify(d)}`;return`${(0,r.tW)(i.metricPage)}${f}`}static getCompareRunPageRoute(e,t){const n=`?runs=${JSON.stringify(e)}&experiments=${JSON.stringify(t)}`;return`${(0,r.tW)(i.compareRuns)}${n}`}static get compareRunPageRoute(){return i.compareRuns}static get compareExperimentsPageRoute(){return i.compareExperiments}static getCompareExperimentsPageRoute(e){const t=`?experiments=${JSON.stringify(e.slice().sort())}`;return`${(0,r.tW)(i.compareExperimentsSearch,{searchString:"s"})}${t}`}}},17111:function(e,t,n){n(77484)},50361:function(e,t,n){n.d(t,{W8:function(){return o},Y1:function(){return r},qi:function(){return i}});let r=function(e){return e.NOTEBOOK="NOTEBOOK",e.JOB="JOB",e.PROJECT="PROJECT",e.LOCAL="LOCAL",e.UNKNOWN="UNKNOWN",e}({});const i={ACTIVE_ONLY:"ACTIVE_ONLY",DELETED_ONLY:"DELETED_ONLY",ALL:"ALL"};let o=function(e){return e.LLM_V1_COMPLETIONS="llm/v1/completions",e.LLM_V1_CHAT="llm/v1/chat",e.LLM_V1_EMBEDDINGS="llm/v1/embeddings",e}({})},58799:function(e,t,n){n.d(t,{Iw:function(){return l},JW:function(){return u},QA:function(){return W},cI:function(){return Y}});var r=n(99102),i=n.n(r),o=n(28379),a=n(73876);const u=i().Record({key:void 0,value:void 0,timestamp:void 0,step:void 0},"Metric");u.fromJsReviver=function(e,t){return i().fromJS(t)};const s=a.L.extend(u,{getKey(){return void 0!==this.key?this.key:""},getValue(){return void 0!==this.value?this.value:0},getTimestamp(){return void 0!==this.timestamp?this.timestamp:0},getStep(){return void 0!==this.step?this.step:0}});u.fromJs=function(e){const t=o.J.fromJs(e,u.fromJsReviver);return new s(t)};const l=i().Record({key:void 0,value:void 0},"Param");l.fromJsReviver=function(e,t){return i().fromJS(t)};const d=a.L.extend(l,{getKey(){return void 0!==this.key?this.key:""},getValue(){return void 0!==this.value?this.value:""}});l.fromJs=function(e){const t=o.J.fromJs(e,l.fromJsReviver);return new d(t)};const c=i().Record({run_uuid:void 0,experiment_id:void 0,user_id:void 0,run_name:void 0,status:void 0,start_time:void 0,end_time:void 0,artifact_uri:void 0,lifecycle_stage:void 0},"RunInfo");c.fromJsReviver=function(e,t){return i().fromJS(t)};const m=a.L.extend(c,{getRunUuid(){return void 0!==this.run_uuid?this.run_uuid:""},getExperimentId(){return void 0!==this.experiment_id?this.experiment_id:"0"},getStatus(){return void 0!==this.status?this.status:"RUNNING"},getStartTime(){return void 0!==this.start_time?this.start_time:0},getEndTime(){return void 0!==this.end_time?this.end_time:0},getArtifactUri(){return void 0!==this.artifact_uri?this.artifact_uri:""},getLifecycleStage(){return void 0!==this.lifecycle_stage?this.lifecycle_stage:""}});c.fromJs=function(e){const t=o.J.fromJs(e,c.fromJsReviver);return new m(t)};const f=i().Record({metrics:i().List(),params:i().List(),tags:i().List()},"RunData");f.fromJsReviver=function(e,t){switch(e){case"metrics":return i().List(t.map((e=>u.fromJs(e))));case"params":return i().List(t.map((e=>l.fromJs(e))));case"tags":return i().List(t.map((e=>W.fromJs(e))));default:return i().fromJS(t)}};const p=a.L.extend(f,{});f.fromJs=function(e){const t=o.J.fromJs(e,f.fromJsReviver);return new p(t)};const g=i().Record({info:void 0,data:void 0},"Run");g.fromJsReviver=function(e,t){switch(e){case"info":return c.fromJs(t);case"data":return f.fromJs(t);default:return i().fromJS(t)}};const v=a.L.extend(g,{getInfo(){return void 0!==this.info?this.info:c.fromJs({})},getData(){return void 0!==this.data?this.data:f.fromJs({})}});g.fromJs=function(e){const t=o.J.fromJs(e,g.fromJsReviver);return new v(t)};const h=i().Record({experiment_id:void 0,name:void 0,artifact_location:void 0,lifecycle_stage:void 0,last_update_time:void 0,creation_time:void 0,tags:i().List()},"Experiment");h.fromJsReviver=function(e,t){return"tags"===e?i().List(t.map((e=>Y.fromJs(e)))):i().fromJS(t)};const y=a.L.extend(h,{getExperimentId(){return void 0!==this.experiment_id?this.experiment_id:"0"},getName(){return void 0!==this.name?this.name:""},getArtifactLocation(){return void 0!==this.artifact_location?this.artifact_location:""},getLifecycleStage(){return void 0!==this.lifecycle_stage?this.lifecycle_stage:""},getLastUpdateTime(){return void 0!==this.last_update_time?this.last_update_time:0},getCreationTime(){return void 0!==this.creation_time?this.creation_time:0},getTags(){return void 0!==this.tags?this.tags:[]}});h.fromJs=function(e){const t=o.J.fromJs(e,h.fromJsReviver);return new y(t)};const _=i().Record({name:void 0,artifact_location:void 0},"CreateExperiment");_.fromJsReviver=function(e,t){return i().fromJS(t)};const E=a.L.extend(_,{getName(){return void 0!==this.name?this.name:""},getArtifactLocation(){return void 0!==this.artifact_location?this.artifact_location:""}});_.fromJs=function(e){const t=o.J.fromJs(e,_.fromJsReviver);return new E(t)};const x=i().Record({view_type:void 0},"SearchExperiments");x.fromJsReviver=function(e,t){return i().fromJS(t)};const R=a.L.extend(x,{getViewType(){return void 0!==this.view_type?this.view_type:"ACTIVE_ONLY"}});x.fromJs=function(e){const t=o.J.fromJs(e,x.fromJsReviver);return new R(t)};const T=i().Record({experiment_id:void 0},"GetExperiment");T.fromJsReviver=function(e,t){return i().fromJS(t)};const I=a.L.extend(T,{getExperimentId(){return void 0!==this.experiment_id?this.experiment_id:"0"}});T.fromJs=function(e){const t=o.J.fromJs(e,T.fromJsReviver);return new I(t)};const A=i().Record({run_uuid:void 0},"GetRun");A.fromJsReviver=function(e,t){return i().fromJS(t)};const U=a.L.extend(A,{getRunUuid(){return void 0!==this.run_uuid?this.run_uuid:""}});A.fromJs=function(e){const t=o.J.fromJs(e,A.fromJsReviver);return new U(t)};const S=i().Record({key:void 0,float:void 0},"MetricSearchExpression");S.fromJsReviver=function(e,t){return"float"===e?M.fromJs(t):i().fromJS(t)};const L=a.L.extend(S,{getKey(){return void 0!==this.key?this.key:""},getFloat(){return void 0!==this.float?this.float:M.fromJs({})}});S.fromJs=function(e){const t=o.J.fromJs(e,S.fromJsReviver);return new L(t)};const w=i().Record({key:void 0,string:void 0},"ParameterSearchExpression");w.fromJsReviver=function(e,t){return"string"===e?P.fromJs(t):i().fromJS(t)};const N=a.L.extend(w,{getKey(){return void 0!==this.key?this.key:""},getString(){return void 0!==this.string?this.string:P.fromJs({})}});w.fromJs=function(e){const t=o.J.fromJs(e,w.fromJsReviver);return new N(t)};const b=i().Record({metric:void 0,parameter:void 0},"SearchExpression");b.fromJsReviver=function(e,t){switch(e){case"metric":return S.fromJs(t);case"parameter":return w.fromJs(t);default:return i().fromJS(t)}};const O=a.L.extend(b,{getMetric(){return void 0!==this.metric?this.metric:S.fromJs({})},getParameter(){return void 0!==this.parameter?this.parameter:w.fromJs({})}});b.fromJs=function(e){const t=o.J.fromJs(e,b.fromJsReviver);return new O(t)};const M=i().Record({comparator:void 0,value:void 0},"FloatClause");M.fromJsReviver=function(e,t){return i().fromJS(t)};const k=a.L.extend(M,{getComparator(){return void 0!==this.comparator?this.comparator:""},getValue(){return void 0!==this.value?this.value:0}});M.fromJs=function(e){const t=o.J.fromJs(e,M.fromJsReviver);return new k(t)};const P=i().Record({comparator:void 0,value:void 0},"StringClause");P.fromJsReviver=function(e,t){return i().fromJS(t)};const J=a.L.extend(P,{getComparator(){return void 0!==this.comparator?this.comparator:""},getValue(){return void 0!==this.value?this.value:""}});P.fromJs=function(e){const t=o.J.fromJs(e,P.fromJsReviver);return new J(t)};const C=i().Record({experiment_ids:i().List(),run_view_type:"ACTIVE_ONLY"},"SearchRuns");C.fromJsReviver=function(e,t){return"experiment_ids"===e?i().List(t):i().fromJS(t)};const B=a.L.extend(C,{getRunViewType(){return void 0!==this.run_view_type?this.run_view_type:"ACTIVE_ONLY"}});C.fromJs=function(e){const t=o.J.fromJs(e,C.fromJsReviver);return new B(t)};const D=i().Record({path:void 0,is_dir:void 0,file_size:void 0},"FileInfo");D.fromJsReviver=function(e,t){return i().fromJS(t)};const V=a.L.extend(D,{getPath(){return void 0!==this.path?this.path:""},getIsDir(){return void 0!==this.is_dir&&this.is_dir},getFileSize(){return void 0!==this.file_size?this.file_size:0}});D.fromJs=function(e){const t=o.J.fromJs(e,D.fromJsReviver);return new V(t)};const $=i().Record({run_uuid:void 0,path:void 0},"ListArtifacts");$.fromJsReviver=function(e,t){return i().fromJS(t)};const F=a.L.extend($,{getRunUuid(){return void 0!==this.run_uuid?this.run_uuid:""},getPath(){return void 0!==this.path?this.path:""}});$.fromJs=function(e){const t=o.J.fromJs(e,$.fromJsReviver);return new F(t)};const j=i().Record({run_uuid:void 0,path:void 0},"GetArtifact");j.fromJsReviver=function(e,t){return i().fromJS(t)};const H=a.L.extend(j,{getRunUuid(){return void 0!==this.run_uuid?this.run_uuid:""},getPath(){return void 0!==this.path?this.path:""}});j.fromJs=function(e){const t=o.J.fromJs(e,j.fromJsReviver);return new H(t)};const K=i().Record({run_uuid:void 0,metric_key:void 0},"GetMetricHistory");K.fromJsReviver=function(e,t){return i().fromJS(t)};const G=a.L.extend(K,{getRunUuid(){return void 0!==this.run_uuid?this.run_uuid:""},getMetricKey(){return void 0!==this.metric_key?this.metric_key:""}});K.fromJs=function(e){const t=o.J.fromJs(e,K.fromJsReviver);return new G(t)};const W=i().Record({key:void 0,value:void 0},"RunTag");W.fromJsReviver=function(e,t){return i().fromJS(t)};const z=a.L.extend(W,{getKey(){return void 0!==this.key?this.key:""},getValue(){return void 0!==this.value?this.value:""}});W.fromJs=function(e){const t=o.J.fromJs(e,W.fromJsReviver);return new z(t)};const Y=i().Record({key:void 0,value:void 0},"ExperimentTag");Y.fromJsReviver=function(e,t){return i().fromJS(t)};const X=a.L.extend(Y,{getKey(){return void 0!==this.key?this.key:""},getValue(){return void 0!==this.value?this.value:""}});Y.fromJs=function(e){const t=o.J.fromJs(e,W.fromJsReviver);return new X(t)}},60669:function(e,t,n){n.d(t,{x:function(){return m}});var r=n(53962);const i=e=>({...e,artifactUri:e.artifact_uri,endTime:e.end_time,experimentId:e.experiment_id,lifecycleStage:e.lifecycle_stage,runUuid:e.run_uuid,runName:e.run_name,startTime:e.start_time}),o=e=>e&&e.dataset_inputs?{datasetInputs:e.dataset_inputs.map((e=>{return(t=e)&&t.dataset?{...t,dataset:{...t.dataset,sourceType:t.dataset.source_type}}:t;var t}))}:e,a=e=>({...e,artifactLocation:e.artifact_location,creationTime:e.creation_time,experimentId:e.experiment_id,lastUpdateTime:e.last_update_time,lifecycleStage:e.lifecycle_stage}),u=e=>e&&e.run&&e.run.info?{...e,run:{...e.run,info:i(e.run.info),inputs:o(e.run.inputs)}}:e,s=e=>e&&e.runs?{...e,runs:e.runs.map((e=>({...e,info:i(e.info),inputs:o(e.inputs)})))}:e,l=e=>e&&e.experiments?{...e,experiments:e.experiments.map((e=>a(e)))}:e,d=e=>e&&e.experiment?{...e,experiment:a(e.experiment)}:e,c="http://127.0.0.1:9047";class m{static getApiUrl(e){return`${c}/${e}`}}m.createExperiment=e=>(0,r.B2)({relativeUrl:"ajax-api/2.0/mlflow/experiments/create",data:e}),m.deleteExperiment=e=>(0,r.B2)({relativeUrl:"ajax-api/2.0/mlflow/experiments/delete",data:e}),m.updateExperiment=e=>(0,r.B2)({relativeUrl:"ajax-api/2.0/mlflow/experiments/update",data:e}),m.searchExperiments=e=>(0,r.I2)({url:"/ajax-api/2.0/mlflow/experiments/search",data:e}).then(l),m.getExperiment=e=>(0,r.I2)({url:"ajax-api/2.0/mlflow/experiments/get",data:e}).then(d),m.getExperimentByName=e=>(0,r.I2)({url:"ajax-api/2.0/mlflow/experiments/get-by-name",data:e}).then(d),m.createRun=e=>(0,r.B2)({relativeUrl:"ajax-api/2.0/mlflow/runs/create",data:e}),m.deleteRun=e=>(0,r.B2)({relativeUrl:"ajax-api/2.0/mlflow/runs/delete",data:e}),m.searchDatasets=e=>(0,r.B2)({relativeUrl:"ajax-api/2.0/mlflow/experiments/search-datasets",data:e}),m.restoreRun=e=>(0,r.B2)({relativeUrl:"ajax-api/2.0/mlflow/runs/restore",data:e}),m.updateRun=e=>(0,r.B2)({relativeUrl:"ajax-api/2.0/mlflow/runs/update",data:e}),m.logMetric=e=>(0,r.B2)({relativeUrl:"ajax-api/2.0/mlflow/runs/log-metric",data:e}),m.logParam=e=>(0,r.B2)({relativeUrl:"ajax-api/2.0/mlflow/runs/log-parameter",data:e}),m.getRun=e=>(0,r.I2)({url:"ajax-api/2.0/mlflow/runs/get",data:e}).then(u),m.searchRuns=e=>(0,r.B2)({relativeUrl:"ajax-api/2.0/mlflow/runs/search",data:e}).then(s),m.listArtifacts=e=>(0,r.I2)({url:"ajax-api/2.0/mlflow/artifacts/list",data:e}),m.getMetricHistory=e=>(0,r.I2)({url:"ajax-api/2.0/mlflow/metrics/get-history",data:e}),m.setTag=e=>(0,r.B2)({relativeUrl:"ajax-api/2.0/mlflow/runs/set-tag",data:e}),m.deleteTag=e=>(0,r.B2)({relativeUrl:"ajax-api/2.0/mlflow/runs/delete-tag",data:e}),m.setExperimentTag=e=>(0,r.B2)({relativeUrl:"ajax-api/2.0/mlflow/experiments/set-experiment-tag",data:e}),m.createPromptLabRun=e=>(0,r.B2)({relativeUrl:"ajax-api/2.0/mlflow/runs/create-promptlab-run",data:e}),m.gatewayProxyPost=(e,t)=>(0,r.B2)({relativeUrl:"ajax-api/2.0/mlflow/gateway-proxy",data:e,error:t}),m.gatewayProxyGet=e=>(0,r.Tt)({relativeUrl:"ajax-api/2.0/mlflow/gateway-proxy",data:e})},16297:function(e,t,n){n.d(t,{H:function(){return d},c:function(){return l}});var r=n(9133),i=n(7204),o=n(53962),a=n(7842),u=n(51079),s=n(32039);const l="GET_SAMPLED_METRIC_HISTORY_API_BULK",d=function(e,t,n,d){let c=arguments.length>4&&void 0!==arguments[4]?arguments[4]:void 0;return(m,f)=>{const p=(0,a.Cx)(d),g=e.filter((e=>{var n;if("all"===c)return[];const r=null===(n=(e=>{var n;return null===(n=f().entities.sampledMetricsByRunUuid[e])||void 0===n?void 0:n[t]})(e))||void 0===n?void 0:n[p];if("auto"===c){const e=Date.now()-((null===r||void 0===r?void 0:r.lastUpdatedTime)||0)<s.QB,t=Boolean(null===r||void 0===r?void 0:r.lastUpdatedTime),n=(null===r||void 0===r?void 0:r.loading)||(null===r||void 0===r?void 0:r.refreshing);return!t||e||n}return(null===r||void 0===r?void 0:r.error)||(null===r||void 0===r?void 0:r.loading)||(null===r||void 0===r?void 0:r.metricsHistory)})),v=(0,r.difference)(e,g);if(!v.length||!decodeURIComponent(t))return Promise.resolve();const h={run_ids:v,metric_key:decodeURIComponent(t),max_results:null===n||void 0===n?void 0:n.toString()};if(d){const[e,t]=d;h.start_step=e.toString(),h.end_step=t.toString()}const y=(0,u.stringify)(h,{arrayFormat:"repeat"}),_=(0,o.AC)({relativeUrl:`ajax-api/2.0/mlflow/metrics/get-history-bulk-interval?${y}`,success:o.sZ});return m({type:l,payload:_,meta:{id:(0,i.yk)(),runUuids:v,key:t,rangeKey:p,maxResults:n,isRefreshing:Boolean(c)}})}}},32378:function(e,t,n){n.d(t,{EL:function(){return i},Fv:function(){return o},gy:function(){return r},qd:function(){return a}});let r=function(e){return e.ACTIVE="Active",e.DELETED="Deleted",e}({}),i=function(e){return e.WITH_MODEL_VERSIONS="With Model Versions",e.WTIHOUT_MODEL_VERSIONS="Without Model Versions",e.ALL_RUNS="All Runs",e}({}),o=function(e){return e.DELTA="delta_table",e.EXTERNAL="external",e.CODE="code",e.LOCAL="local",e.HTTP="http",e.S3="s3",e.HUGGING_FACE="hugging_face",e.UC="uc_volume",e}({}),a=function(e){return e.TABLE="table",e}({})},38566:function(e,t,n){n.d(t,{x:function(){return r}});class r{constructor(e,t,n){this.children=void 0,this.fileInfo=void 0,this.isLoaded=void 0,this.isRoot=void 0,this.isRoot=e,this.isLoaded=!1,this.fileInfo=t,this.children=n}deepCopy(){const e=new r(this.isRoot,this.fileInfo,void 0);if(e.isLoaded=this.isLoaded,this.children){const t={};Object.keys(this.children).forEach((e=>{t[e]=this.children[e].deepCopy()})),e.children=t}return e}setChildren(e){e?(this.children={},this.isLoaded=!0,e.forEach((e=>{const t=e.path.split("/"),n=t[t.length-1];let i;e.is_dir&&(i=[]),this.children[n]=new r(!1,e,i)}))):this.isLoaded=!0}static findChild(e,t){const n=t.split("/").filter((e=>e));let r=e;return n.forEach((e=>{if(!r.children||void 0===r.children[e])throw new Error("Can't find child.");r=r.children[e]})),r}static isEmpty(e){return void 0===e.children||0===Object.keys(e.children).length}}},32039:function(e,t,n){n.d(t,{QB:function(){return E},RZ:function(){return y},bw:function(){return _},cX:function(){return g},rj:function(){return s},y4:function(){return v}});var r=n(69526),i=n(76010),o=n(25866);const a=(0,r.YK)({positiveInfinity:{id:"zWGmon",defaultMessage:"Positive infinity ({metricKey})"},positiveInfinitySymbol:{id:"hcDB9U",defaultMessage:"+\u221e"},negativeInfinity:{id:"YRFAGK",defaultMessage:"Negative infinity ({metricKey})"},negativeInfinitySymbol:{id:"C4y1fv",defaultMessage:"-\u221e"},nan:{id:"ES952j",defaultMessage:"Not a number ({metricKey})"},nanSymbol:{id:"yL9JKm",defaultMessage:"NaN"}}),u=e=>{const t="string"===typeof e?parseFloat(e):e;return t===Number.MAX_VALUE?Number.POSITIVE_INFINITY:t===-Number.MAX_VALUE?Number.NEGATIVE_INFINITY:t},s=e=>{let{key:t,timestamp:n,value:r,step:i}=e;return{key:t,value:u(r),step:i||0,timestamp:n}},l=(e,t)=>isNaN(e)?isNaN(t):e===t,d=function(e,t){let n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;if(e.length<1)return[];const r=e.findIndex((e=>l(t,e)));if(-1===r)return[];let i=r,o=r+1;for(;o<e.length&&l(t,e[o]);)i=o,o++;return[{startIndex:r+n,endIndex:i+n},...d(e.slice(i+1),t,i+1+n)]},c=(e,t)=>t<0?0:t>e.length-1?e.length-1:t,m={type:"line",ysizemode:"pixel",y0:0,line:{width:1,color:"red"}},f=(e,t)=>{const n=c(t,e.startIndex-1),r=c(t,e.endIndex+1);if("string"===typeof t[0]){const e=t[n],o=t[r],a=(new Date(e).getTime()+new Date(o).getTime())/2;return i.A.formatTimestamp(new Date(a).getTime(),"yyyy-mm-dd HH:MM:ss.l")}return(t[n]+t[r])/2},p=(e,t,n,r)=>({hoverlabel:{bgcolor:"red"},align:"center",yref:"paper",yanchor:0===r?"bottom":"top",showarrow:!1,font:{size:15,color:"red"},y:r,text:t,x:n,hovertext:e}),g=e=>{let{xValues:t,yValues:n,isLogScale:r=!1,stringFormatter:i=(e=>e.toString())}=e;const o=d(n,NaN),u=d(n,Number.POSITIVE_INFINITY),s=d(n,Number.NEGATIVE_INFINITY),l=o.map((e=>({hovertext:i(a.nan),text:i(a.nanSymbol),align:"center",yanchor:"bottom",showarrow:!1,font:{size:12,color:"blue"},x:f(e,t),y:0}))),g=u.map((e=>p(i(a.positiveInfinity),i(a.positiveInfinitySymbol),f(e,t),1))),v=s.map((e=>p(i(a.negativeInfinity),i(a.negativeInfinitySymbol),f(e,t),0))),h=o.map((e=>({fillcolor:"blue",opacity:.1,yref:"paper",y0:0,y1:1,line:{width:0},x0:t[c(t,e.startIndex-1)],x1:t[c(t,e.endIndex+1)]}))),y=u.reduce(((e,r)=>(e.push({...m,y1:1e3,x0:t[c(t,r.startIndex-1)],x1:t[c(t,r.startIndex-1)],yanchor:n[c(n,r.startIndex-1)]}),r.endIndex+1<t.length&&e.push({...m,y1:1e3,x0:t[c(t,r.endIndex+1)],x1:t[c(t,r.endIndex+1)],yanchor:n[c(n,r.endIndex+1)]}),e)),[]);return{shapes:[...h,...s.reduce(((e,i)=>(r?(e.push({...m,ysizemode:"scaled",y0:0,y1:n[c(n,i.startIndex-1)],yanchor:n[c(n,i.startIndex-1)],x0:t[c(t,i.startIndex-1)],x1:t[c(t,i.startIndex-1)]}),e.push({...m,ysizemode:"scaled",y0:0,y1:n[c(n,i.endIndex+1)],yanchor:n[c(n,i.endIndex+1)],x0:t[c(t,i.endIndex+1)],x1:t[c(t,i.endIndex+1)]})):(e.push({...m,y1:-1e3,x0:t[c(t,i.startIndex-1)],x1:t[c(t,i.startIndex-1)],yanchor:n[c(n,i.startIndex-1)]}),e.push({...m,y1:-1e3,x0:t[c(t,i.endIndex+1)],x1:t[c(t,i.endIndex+1)],yanchor:n[c(n,i.endIndex+1)]})),e)),[]),...y],annotations:[...l,...g,...v]}},v=(e,t)=>{if(e.length<=t)return e;const n=t-3,r=Math.ceil(n/2),i=Math.floor(n/2);return e.substr(0,r)+"..."+e.substr(e.length-i)},h=new RegExp(`^${o.qt}`),y=e=>e.replace(h,""),_=e=>e.match(h),E=3e4},54346:function(e,t,n){n.d(t,{Lr:function(){return u},T6:function(){return l},gK:function(){return s}});var r=n(79116);const i=["abundant","able","abrasive","adorable","adaptable","adventurous","aged","agreeable","ambitious","amazing","amusing","angry","auspicious","awesome","bald","beautiful","bemused","bedecked","big","bittersweet","blushing","bold","bouncy","brawny","bright","burly","bustling","calm","capable","carefree","capricious","caring","casual","charming","chill","classy","clean","clumsy","colorful","crawling","dapper","debonair","dashing","defiant","delicate","delightful","dazzling","efficient","enchanting","entertaining","enthused","exultant","fearless","flawless","fortunate","fun","funny","gaudy","gentle","gifted","glamorous","grandiose","gregarious","handsome","hilarious","honorable","illustrious","incongruous","indecisive","industrious","intelligent","inquisitive","intrigued","invincible","judicious","kindly","languid","learned","legendary","likeable","loud","luminous","luxuriant","lyrical","magnificent","marvelous","masked","melodic","merciful","mercurial","monumental","mysterious","nebulous","nervous","nimble","nosy","omniscient","orderly","overjoyed","peaceful","painted","persistent","placid","polite","popular","powerful","puzzled","rambunctious","rare","rebellious","respected","resilient","righteous","receptive","redolent","resilient","rogue","rumbling","salty","sassy","secretive","selective","sedate","serious","shivering","skillful","sincere","skittish","silent","smiling","sneaky","sophisticated","spiffy","stately","suave","stylish","tasteful","thoughtful","thundering","traveling","treasured","trusting","unequaled","upset","unique","unleashed","useful","upbeat","unruly","valuable","vaunted","victorious","welcoming","whimsical","wistful","wise","worried","youthful","zealous"],o=["ant","ape","asp","auk","bass","bat","bear","bee","bird","boar","bug","calf","carp","cat","chimp","cod","colt","conch","cow","crab","crane","croc","crow","cub","deer","doe","dog","dolphin","donkey","dove","duck","eel","elk","fawn","finch","fish","flea","fly","foal","fowl","fox","frog","gnat","gnu","goat","goose","grouse","grub","gull","hare","hawk","hen","hog","horse","hound","jay","kit","kite","koi","lamb","lark","loon","lynx","mare","midge","mink","mole","moose","moth","mouse","mule","newt","owl","ox","panda","penguin","perch","pig","pug","quail","ram","rat","ray","robin","roo","rook","seal","shad","shark","sheep","shoat","shrew","shrike","shrimp","skink","skunk","sloth","slug","smelt","snail","snake","snipe","sow","sponge","squid","squirrel","stag","steed","stoat","stork","swan","tern","toad","trout","turtle","vole","wasp","whale","wolf","worm","wren","yak","zebra"],a=(e,t)=>{const n=Math.floor(Math.random()*i.length),r=Math.floor(Math.random()*o.length);return[i[n],o[r],Math.floor(Math.random()*10**t)].join(e)},u=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"-",t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:3,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:20,r="";for(let i=0;i<10;i++)if(r=a(e,t),r.length<n)return r;return r.slice(0,n)},s=function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:"",t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[];const n=e.match(/\s\((\d+)\)$/),r=n?e.substring(0,e.length-n[0].length):e;let i=n?parseInt(n[1],10)+1:1;for(;t.includes(r+" ("+i+")");)i++;return r+" ("+i+")"},l=e=>{let t=0,n=0;for(let r=0;r<e.length;r++)t=(t+e.charCodeAt(r))%255,n=(n+t)%255;return r.T[(t|n<<8)%r.T.length]}}}]);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
(self.webpackChunk_mlflow_mlflow=self.webpackChunk_mlflow_mlflow||[]).push([[1353],{11436:function(e,t,r){"use strict";r(31014);t.A=r.p+"static/media/default-error.f246ddf367c6fbd67942e5a13382a7f1.svg"},57694:function(e,t,r){"use strict";r.d(t,{Y:function(){return K}});var n=r(31014),o=r(10635),s=(r(32162),r(82589)),i=(r(61447),r(10582),r(10811)),a=r(48330),c=r(53107),l=r(68254),u=r(21621),d=r(8602),m=r(98655),g=r(50111);const f=e=>e instanceof window.Node&&e.getRootNode()!==document,h=e=>{let{children:t,isDarkTheme:r}=e;return(0,g.Y)(l.N,{isDarkMode:r,children:t})},p=e=>{const t=(0,n.useRef)(),{isDarkTheme:r=!1,children:o}=e;(0,n.useEffect)((()=>{f(t.current)&&u.Ay.config({getContainer:()=>t.current})}),[]);const s=(0,n.useCallback)((()=>f(t.current)?t.current:document.body),[]);return(0,g.FD)(h,{isDarkTheme:r,children:[(0,g.Y)(l.O,{getPopupContainer:s,isCompact:!0,...e,children:(0,g.FD)(d.Ay,{prefixCls:"ant",children:[o,(0,g.Y)("div",{ref:t})]})}),(0,g.Y)(m.w,{})]})};var y=r(63480),b=r(11436),v=r(76010);class E extends n.Component{constructor(e){super(e),this.state={hasError:!1}}componentDidMount(){v.A.registerNotificationsApi(this.props.notificationAPI)}componentDidCatch(e,t){this.setState({hasError:!0}),console.error(e,t)}render(){const{isDarkTheme:e}=this.props,t=e?"white":"black";return(0,g.FD)(g.FK,{children:[this.state.hasError?(0,g.FD)("div",{children:[(0,g.Y)("img",{className:"error-image",alt:"Error",src:b.A}),(0,g.Y)("h1",{style:{color:t},className:"center",children:"Something went wrong. Please refresh the page."}),(0,g.Y)("h4",{style:{color:t},className:"center",children:"If this error persists, please report an issue to the RapidFire team. "})]}):this.props.children,this.props.notificationContextHolder]})}}var T=(0,s.vUj)(E),S=r(48624),R=r(89555),N=r(58481),w=r.p+"static/media/RapidFire_Square_Bug.27ceb48296314a4bc0d4.png";const _="#0b3574",x="#e7f1fb",k="#43C9ED",A={activeNavLink:{borderBottom:`4px solid ${k}`}},C=e=>!(e=>(0,S.B6)("/models/*",e.pathname))(e);var M={name:"eq7f8j",styles:"display:flex;align-items:flex-end"},P={name:"19iouxc",styles:"height:45px;margin-left:24px;margin-top:12px;margin-bottom:12px"},I={name:"82a6rk",styles:"flex:1"},$={name:"jgezey",styles:"display:flex;gap:24px;padding-top:12px;font-size:16px;margin-right:24px;align-items:center"};const D=e=>{let{isDarkTheme:t=!1,setIsDarkTheme:r=(e=>{})}=e;const n=(0,S.zy)();return(0,g.Y)(g.FK,{children:(0,g.FD)("header",{css:(0,R.AH)({backgroundColor:_,height:"70px",color:x,display:"flex",gap:24,a:{color:x}},""),children:[(0,g.Y)("div",{css:M,children:(0,g.Y)(S.N_,{to:N.h.experimentsObservatoryRoute,children:(0,g.Y)("img",{css:P,alt:"MLflow",src:w})})}),(0,g.Y)("div",{css:(0,R.AH)({display:"flex",paddingTop:25,fontSize:18,gap:24,"& a":{fontWeight:500,transition:"color 0.2s ease","&:hover":{color:k}}},""),children:(0,g.Y)(S.N_,{to:N.h.experimentPageDefaultRoute,style:C(n)?A.activeNavLink:void 0,children:"Experiments"})}),(0,g.Y)("div",{css:I}),(0,g.Y)("div",{css:$,children:(0,g.Y)("a",{href:"https://rapidfire-ai-oss-docs.readthedocs-hosted.com/en/latest/",target:"_blank",rel:"noopener noreferrer",css:(0,R.AH)({color:x,textDecoration:"none",fontSize:18,fontWeight:500,transition:"color 0.2s ease","&:hover":{color:k}},""),children:"Docs"})})]})})};var O=r(32815),U=r(22843),L=r(45395);var Y=r(70403);const F={path:"/",element:(0,S.eK)((()=>Promise.all([r.e(1928),r.e(7504),r.e(5826),r.e(618),r.e(9244),r.e(5042),r.e(2901),r.e(3608),r.e(6846),r.e(813),r.e(9682),r.e(3968),r.e(2103),r.e(21),r.e(7731),r.e(7266),r.e(6363),r.e(1860),r.e(8823),r.e(8365),r.e(8953),r.e(6756),r.e(8960),r.e(1648),r.e(2258),r.e(5486),r.e(8541),r.e(1357),r.e(4862),r.e(1142),r.e(7844),r.e(8486),r.e(3387),r.e(2956),r.e(491),r.e(6335),r.e(110),r.e(1303),r.e(4221),r.e(6933),r.e(9369),r.e(2346),r.e(6715),r.e(5794),r.e(1e3),r.e(7186),r.e(4297),r.e(8017),r.e(2972),r.e(1012),r.e(1262),r.e(3964),r.e(8300),r.e(2746),r.e(3448),r.e(4804),r.e(1167),r.e(6899),r.e(2289),r.e(944),r.e(847),r.e(1470),r.e(3775),r.e(6058),r.e(8497),r.e(6861),r.e(1273),r.e(1248),r.e(5919),r.e(7832),r.e(4250),r.e(3307),r.e(9427),r.e(9082),r.e(3999),r.e(7721),r.e(2386),r.e(9168),r.e(4180),r.e(243),r.e(6121),r.e(1500),r.e(5229),r.e(6478),r.e(2779),r.e(8867),r.e(7076)]).then(r.bind(r,5746)))),pageId:"mlflow.experiments.list"},J=e=>{let{isDarkTheme:t,setIsDarkTheme:r}=e;(0,Y.cw)();const o=(0,n.useMemo)((()=>[F,...(0,O.o)(),...(0,U.o)(),{path:(0,S.Oz)("/*"),element:(0,S.kO)(L.A),pageId:"mlflow.common.not-found"}]),[]);return(0,g.FD)(g.FK,{children:[(0,g.Y)(y.Ay,{}),(0,g.Y)(S.I9,{children:(0,g.Y)(T,{isDarkTheme:t,children:(0,g.Y)(n.Suspense,{fallback:(0,g.Y)(s.PLz,{}),children:(0,g.Y)(S.BV,{children:o.map((e=>{let{element:n,pageId:o,path:s}=e;return(0,g.Y)(S.qh,{path:s,element:(0,g.FD)(g.FK,{children:[(0,g.Y)(D,{isDarkTheme:t,setIsDarkTheme:r}),n]})},o)}))})})})})]})},G="dark-mode",j={body:{[`&.${G}`]:{colorScheme:"dark"}}},V=()=>(0,g.Y)(R.mL,{styles:j}),B=()=>{const[e,t]=(0,n.useState)(!0);return(0,n.useEffect)((()=>{document.body.classList.toggle(G,e),localStorage.setItem("_mlflow_dark_mode_toggle_enabled","true")}),[e]),[e,t,V]};var H=r(41825),z=r(43412);function K(){const e=(0,c.M)(),[t,r,n]=B();if(!e)return(0,g.Y)(p,{children:(0,g.Y)(s.PLz,{})});const{locale:l,messages:u}=e;return(0,g.Y)(o.A,{locale:l,messages:u,children:(0,g.Y)(i.Kq,{store:a.A,children:(0,g.Y)(H.Ht,{client:z.q,children:(0,g.FD)(p,{isDarkTheme:t,children:[(0,g.Y)(s.qzg,{}),(0,g.Y)(n,{}),(0,g.Y)(d.Ay,{prefixCls:"ant",children:(0,g.Y)(J,{isDarkTheme:t,setIsDarkTheme:r})})]})})})})}},79116:function(e,t,r){"use strict";r.d(t,{T:function(){return n}});const n=["#a6630c","#c83243","#b45091","#8a63bf","#434a93","#137dae","#04867d","#308613","#facb66","#1f272d","#445461","#5f7281","#8396a5","#93320b","#be501e","#de7921","#f2be88","#115026","#277c43","#3caa60","#8ddda8","#9e102c","#c82d4c","#e65b77","#f792a6","#0e538b","#2272b4","#4299e0","#8acaff"]},98655:function(e,t,r){"use strict";r.d(t,{U:function(){return s},w:function(){return i}});var n=r(79116),o=r(50111);const s="mlflow_run_colors_select",i=()=>(0,o.Y)("datalist",{id:s,children:n.T.map((e=>(0,o.Y)("option",{children:e},e)))})},82214:function(e,t,r){"use strict";r.d(t,{E:function(){return f}});var n=r(31014),o=r(11436);var s=r.p+"static/media/404-overflow.fad9a31861b0afba6f921ebb8e769688.svg",i=r(58481),a=r(48624),c=r(88443),l=r(68254),u=r(50111);const d={400:"400 Bad Request",401:"401 Unauthorized",404:"404 Not Found",409:"409 Conflict",500:"500 Internal Server Error",502:"502 Bad Gateway",503:"503 Service Unavailable"};function m(e){const{statusCode:t}=e,r=d[t]||t.toString();return 404===e.statusCode?(0,u.Y)("img",{className:"center",alt:r,style:{height:"300px",marginTop:"80px"},src:s}):(0,u.Y)("img",{className:"center",alt:r,src:o.A,style:{margin:"12% auto 60px",display:"block"}})}class g extends n.Component{renderErrorMessage(e,t){return e?(0,u.Y)(c.A,{id:"ss//L4",defaultMessage:"{subMessage}, go back to <link>the home page.</link>",values:{link:e=>(0,u.Y)(a.N_,{"data-test-id":"error-view-link",to:t||i.h.rootRoute,children:e}),subMessage:e}}):(0,u.Y)(c.A,{id:"656rRX",defaultMessage:"Go back to <link>the home page.</link>",values:{link:e=>(0,u.Y)(a.N_,{"data-test-id":"error-view-link",to:t||i.h.rootRoute,children:e})}})}render(){const{statusCode:e,subMessage:t,fallbackHomePageReactRoute:r,designSystemThemeApi:n}=this.props,{theme:o}=n,s=g.centerMessages[e]||"HTTP Request Error";return(0,u.FD)("div",{className:"center",children:[(0,u.Y)(m,{statusCode:e}),(0,u.Y)("h1",{style:{paddingTop:"10px"},children:s}),(0,u.Y)("h2",{style:{color:o.colors.textSecondary},children:this.renderErrorMessage(t,r)})]})}}g.centerMessages={400:"Bad Request",404:"Page Not Found",409:"Resource Conflict"};const f=(0,l.U)(g)},45395:function(e,t,r){"use strict";r.d(t,{o:function(){return s}});var n=r(82214),o=r(50111);const s=()=>(0,o.Y)(n.E,{statusCode:404,fallbackHomePageReactRoute:"/"});t.A=s},47664:function(e,t,r){"use strict";r.d(t,{$L:function(){return y},A6:function(){return g},Ge:function(){return h},HC:function(){return m},KK:function(){return p},N0:function(){return c},XO:function(){return f},d1:function(){return u},g2:function(){return d},gw:function(){return l},pG:function(){return v},qT:function(){return a},tG:function(){return s},zR:function(){return b}});var n=r(88443),o=(r(31014),r(50111));const s={INTERNAL_ERROR:"INTERNAL_ERROR",INVALID_PARAMETER_VALUE:"INVALID_PARAMETER_VALUE",RESOURCE_DOES_NOT_EXIST:"RESOURCE_DOES_NOT_EXIST",PERMISSION_DENIED:"PERMISSION_DENIED",RESOURCE_CONFLICT:"RESOURCE_CONFLICT"},i="https://www.mlflow.org/docs/latest",a=`${i}/model-registry.html`,c=(0,o.Y)(n.A,{id:"/g45Xz",defaultMessage:"Share and manage machine learning models."}),l=i+"/model-registry.html#adding-an-mlflow-model-to-the-model-registry",u=`${i}/cli.html#mlflow-experiments`,d=`${i}/search-runs.html`,m=`${i}/python_api/mlflow.pyfunc.html`,g=i+"/python_api/mlflow.pyfunc.html#creating-custom-pyfunc-models",f=`${i}/tracking.html#logging-data-to-runs`,h="onboarding",p="https://github.com/mlflow/mlflow/issues",y=`${i}/models.html#model-signature`,b=i+"/models.html#how-to-log-models-with-signatures",v=`${i}/model-registry.html#migrating-from-stages`},83342:function(e,t,r){"use strict";r.d(t,{g:function(){return n}});const n="2.7.1"},73876:function(e,t,r){"use strict";r.d(t,{L:function(){return n}});class n{static extend(e,t){const r=class extends e{};return Object.keys(t).forEach((e=>{if(r.prototype[e])throw new Error(`Duplicate prototype function: ${e} already exists on the model.`);r.prototype[e]=t[e]})),r}}},28379:function(e,t,r){"use strict";r.d(t,{J:function(){return n}});class n{static fromJs(e,t){const r={};for(const n in e)e.hasOwnProperty(n)&&void 0!==e[n]&&(null===e[n]&&window.recordEvent("clientsideEvent",{eventType:"nullValueForNestedProto",property:n},e),r[n]=t(n,e[n]));return r}}},7204:function(e,t,r){"use strict";r.d(t,{Ke:function(){return n},Ub:function(){return o},bz:function(){return a},ec:function(){return i},nS:function(){return c},ye:function(){return s},yk:function(){return l}});const n=e=>e.type.endsWith("_PENDING"),o=e=>`${e}_PENDING`,s=e=>e.type.endsWith("_FULFILLED"),i=e=>`${e}_FULFILLED`,a=e=>e.type.endsWith("_REJECTED"),c=e=>`${e}_REJECTED`,l=()=>{const e=Math.random().toString(36).substring(2,10);return(new Date).getTime()+e}},77484:function(e,t,r){"use strict";r.d(t,{To:function(){return a},Y0:function(){return s},xC:function(){return i}});var n=r(52350),o=r(53962);function s(e){let t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return new Promise((async(r,s)=>{try{const i=await async function(e){const t=new Request(e,{method:o.vr.GET,redirect:"follow",headers:new Headers((0,o.KZ)(document.cookie))}),r=await fetch(t);if(!r.ok){const e=await r.text()||r.statusText;throw new n.s(e,r.status)}return r.blob()}(e),a=new FileReader;a.onload=e=>{r(e.target.result)},a.onerror=e=>{s(e)},t?a.readAsArrayBuffer(i):a.readAsText(i)}catch(i){console.error(i),s(i)}}))}function i(e){return s(e,!0)}const a=(e,t)=>`get-artifact?path=${encodeURIComponent(e)}&run_uuid=${encodeURIComponent(t)}`},52350:function(e,t,r){"use strict";r.d(t,{s:function(){return o}});var n=r(47664);class o{constructor(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:500;if(this.status=void 0,this.text=void 0,this.textJson=void 0,this.status=t,this.text=e,"object"===typeof e)this.textJson=e;else try{this.textJson=JSON.parse(e)}catch{this.textJson=null}}getStatus(){return this.status}getUserVisibleError(){return this.textJson||"INTERNAL_SERVER_ERROR"}getErrorCode(){return this.textJson?this.textJson.error_code:n.tG.INTERNAL_ERROR}getMessageField(){return this.textJson?this.textJson.message:n.tG.INTERNAL_ERROR}renderHttpError(){if(this.textJson){if(this.textJson.error_code&&this.textJson.message){const e=this.textJson.error_code+": "+this.textJson.message;return this.textJson.stack_trace?`${e}\n\n${this.textJson.stack_trace}`:e}return this.textJson.message||"Request Failed"}{let e=this.text.replace(/<[^>]+>/gi,"");return e=e.replace(/\n\n+/gi,"\n"),e=e.trim(),e}}is4xxError(){const e=parseInt(this.getStatus(),10);return e>=400&&e<=499}}},91144:function(e,t,r){"use strict";r.d(t,{HW:function(){return m},Hn:function(){return i},Ii:function(){return c},Ir:function(){return p},M1:function(){return h},WX:function(){return f},Zt:function(){return d},b2:function(){return s},dD:function(){return o},g$:function(){return n},uP:function(){return u},v$:function(){return g},vC:function(){return a},xt:function(){return l}});const n=()=>!1,o=()=>!0,s=()=>!1,i=()=>!0,a=()=>!0,c=()=>!0,l=()=>!1,u=()=>!1,d=()=>!1,m=()=>!1,g=()=>!1,f=()=>!0,h=()=>o(),p=()=>o()},53962:function(e,t,r){"use strict";r.d(t,{AC:function(){return v},Ar:function(){return k},B2:function(){return R},I2:function(){return _},KZ:function(){return d},Tt:function(){return S},_t:function(){return x},ig:function(){return w},pb:function(){return N},sZ:function(){return f},vr:function(){return l}});var n=r(64449),o=r(81355),s=r.n(o),i=(r(77948),r(9133)),a=r.n(i),c=r(52350);const l={GET:"GET",POST:"POST",PUT:"PUT",PATCH:"PATCH",DELETE:"DELETE"},u=[429,556],d=e=>{const t=(e=>{const t="mlflow-request-header-",r=n.parse(e);return r&&0!==Object.keys(r).length?Object.keys(r).filter((e=>e.startsWith(t))).reduce(((e,t)=>({...e,[t.substring(22)]:r[t]})),{}):{}})(e);return{...t}},m=e=>{let{resolve:t,response:r,parser:n}=e;r.text().then((e=>{try{t(n(e))}catch{t(e)}}))},g=e=>{let{resolve:t,response:r}=e;return m({resolve:t,response:r,parser:JSON.parse})},f=e=>{let{resolve:t,response:r}=e;return m({resolve:t,response:r,parser:s()({strict:!0,storeAsString:!0}).parse})},h=e=>{let{reject:t,response:r,err:n}=e;console.error("Fetch failed: ",r||n),r?r.text().then((e=>t(new c.s(e,r.status)))):n&&t(new c.s(n,500))},p=async function(e){let{retries:t=2,interval:r=500,retryIntervalMultiplier:n=1,successCondition:o=(()=>!0),success:s=(e=>{let{res:t}=e;return t}),errorCondition:i=(()=>!1),error:a=(e=>{let{res:t,err:r}=e;throw new Error(t||r)})}=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};try{const c=await e();return o(c)?s({res:c}):0===t||i(c)?a({res:c}):(await new Promise((e=>setTimeout(e,r))),p(e,{retries:t-1,interval:r*n,retryIntervalMultiplier:n,success:s,error:a,successCondition:o,errorCondition:i}))}catch(c){return a({err:c})}},y=e=>!e||!e.ok&&!u.includes(e.status),b=()=>localStorage.getItem("userId")||"default",v=e=>{let{relativeUrl:t,method:r=l.GET,body:n,headerOptions:o={},options:s={},timeoutMs:i,retries:a=7,initialDelay:c=1e3,success:u=g,error:m=h,errorCondition:f=y}=e;return new Promise(((e,g)=>{p((()=>(e=>{let{relativeUrl:t,method:r=l.GET,body:n,headerOptions:o={},options:s={},timeoutMs:i}=e;const a=(e=>"true"!=={NODE_ENV:"production",PUBLIC_URL:"",WDS_SOCKET_HOST:void 0,WDS_SOCKET_PATH:void 0,WDS_SOCKET_PORT:void 0,FAST_REFRESH:!0,REACT_APP_RAPIDFIRE_API_URL:"http://localhost",REACT_APP_GA_MEASUREMENT_ID:""}.USE_REMOTE_AJAX_URLS||e.startsWith("/")?e:"/"+e)(t),c={"Content-Type":"application/json; charset=utf-8",...d(document.cookie),"x-user-id":b(),...o},u=new AbortController;i&&setTimeout((()=>u.abort()),i);const m={method:r,headers:c,...n&&{body:n},dataType:"json",credentials:"include",...s,...i&&{signal:u.signal}};return fetch(a,m)})({relativeUrl:t,method:r,body:n,headerOptions:o,options:{...s,credentials:"include"},timeoutMs:i})),{retries:a,interval:c,retryIntervalMultiplier:2,successCondition:e=>e&&e.ok,success:t=>{let{res:r}=t;return u({resolve:e,reject:g,response:r})},errorCondition:f,error:t=>{let{res:r,err:n}=t;m({resolve:e,reject:g,response:r,err:n})}})}))},E=e=>Array.isArray(e)?e.filter((e=>void 0!==e)):a().pickBy(e,(e=>void 0!==e)),T=e=>{if("string"===typeof e)return e;if("object"===typeof e)return JSON.stringify(E(e));throw new Error("Unexpected type of input. The REST api payload type must be either an object or a string, got "+typeof e)},S=e=>{const{relativeUrl:t,data:r}=e,n=new URLSearchParams(E(r)).toString(),o=n?`${t}?${n}`:t;return v({...e,relativeUrl:o,method:l.GET,success:g})},R=e=>{const{data:t}=e;return v({method:l.POST,body:T(t),success:g,...e})},N=e=>{const{data:t}=e;return v({...e,method:l.PATCH,body:T(t),success:g})},w=e=>{const{data:t}=e;return v({...e,method:l.DELETE,body:T(t),success:g})},_=e=>{const{url:t,data:r,...n}=e,o=new URL(t,window.location.origin);if(r){const e=new URLSearchParams(E(r));o.search=e.toString()}return v({...n,relativeUrl:o.toString(),method:l.GET,success:f})},x=e=>{const{data:t}=e;return v({...e,method:l.POST,body:T(t),success:f})},k=e=>{const{data:t}=e;return v({...e,method:l.PATCH,body:T(t),success:f})}},48624:function(e,t,r){"use strict";r.d(t,{B6:function(){return s.B6},BV:function(){return n.BV},C5:function(){return n.C5},I9:function(){return o.I9},N_:function(){return d},Oz:function(){return m},Zp:function(){return u},eK:function(){return g},g:function(){return l},jb:function(){return n.jb},kO:function(){return f},ok:function(){return c},qh:function(){return n.qh},tW:function(){return s.tW},zy:function(){return a}});var n=r(10837),o=r(45810),s=r(17778),i=r(31014);const a=n.zy,c=o.ok,l=n.g,u=n.Zp,d=o.N_,m=e=>e,g=e=>i.createElement(i.lazy(e)),f=e=>i.createElement(e)},98590:function(e,t,r){"use strict";r.d(t,{L9:function(){return l},nt:function(){return i},pt:function(){return c},x1:function(){return a}});var n=r(25866),o=r(76010),s=r(32378);const i="mlflow.",a=e=>{const t=o.A.getLoggedModelsFromTags(e);return t?t.map((e=>e.artifactPath)):[]},c=e=>{try{return JSON.parse(e)}catch(t){return}},l=e=>{const t=e[n.WM];if(t){const e=c(t.value);if(e)return e.filter((e=>e.type===s.qd.TABLE)).map((e=>e.path))}return[]}},76010:function(e,t,r){"use strict";var n=r(4473),o=r(68341),s=r(24289),i=r.n(s),a=(r(31014),r(51079)),c=r.n(a),l=r(98590),u=r(9133),d=r.n(u),m=r(47664),g=r(88443),f=r(52350),h=r(50111),p=(0,o.A)("notificationsApi");class y{static mergeRuns(e,t){const r={};return t.forEach(((t,n)=>{const o=e[n];Object.keys(t).forEach((e=>{const n=r[e]||{};r[e]={...n,[o]:t[e]}}))})),r}static registerNotificationsApi(e){(0,n.A)(y,p)[p]=e}static displayGlobalErrorNotification(e,t){(0,n.A)(y,p)[p]&&(0,n.A)(y,p)[p].error({message:e,duration:t})}static formatMetric(e){return 0===e?"0":Math.abs(e)<.001?e.toExponential(3).toString():Math.abs(e)<10?(Math.round(1e3*e)/1e3).toString():Math.abs(e)<100?(Math.round(100*e)/100).toString():(Math.round(10*e)/10).toString()}static truncateString(e,t){return e.length>t?e.slice(0,t-3)+"...":e}static convertTimestampToInt(e){return e.map((e=>({...e,timestamp:Number.parseFloat(e.timestamp)})))}static formatTimestamp(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"yyyy-mm-dd HH:MM:ss";if(void 0===e)return"(unknown)";const r=new Date(0);return r.setUTCMilliseconds(e),i()(r,t)}static timeSinceStr(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:new Date;const r=Math.max(0,Math.floor((t-e)/1e3));let n=Math.floor(r/31536e3);return n>=1?(0,h.Y)(g.A,{id:"16BvfJ",defaultMessage:"{timeSince, plural, =1 {1 year} other {# years}} ago",values:{timeSince:n}}):(n=Math.floor(r/2592e3),n>=1?(0,h.Y)(g.A,{id:"5ZAXeS",defaultMessage:"{timeSince, plural, =1 {1 month} other {# months}} ago",values:{timeSince:n}}):(n=Math.floor(r/86400),n>=1?(0,h.Y)(g.A,{id:"tLb7+M",defaultMessage:"{timeSince, plural, =1 {1 day} other {# days}} ago",values:{timeSince:n}}):(n=Math.floor(r/3600),n>=1?(0,h.Y)(g.A,{id:"aOW396",defaultMessage:"{timeSince, plural, =1 {1 hour} other {# hours}} ago",values:{timeSince:n}}):(n=Math.floor(r/60),n>=1?(0,h.Y)(g.A,{id:"7jsqqe",defaultMessage:"{timeSince, plural, =1 {1 minute} other {# minutes}} ago",values:{timeSince:n}}):(0,h.Y)(g.A,{id:"93iLUV",defaultMessage:"{timeSince, plural, =1 {1 second} other {# seconds}} ago",values:{timeSince:r}})))))}static formatDuration(e){return e<500?e+"ms":e<6e4?(e/1e3).toFixed(1)+"s":e<36e5?(e/1e3/60).toFixed(1)+"min":e<864e5?(e/1e3/60/60).toFixed(1)+"h":(e/1e3/60/60/24).toFixed(1)+"d"}static getDuration(e,t){return e&&t?y.formatDuration(t-e):null}static baseName(e){const t=e.split("/");return t[t.length-1]}static dropExtension(e){return e.replace(/(.*[^/])\.[^/.]+$/,"$1")}static normalize(e){return e.replace(/[:]\/\/\/+/,":/").replace(/(^\/|[^:]\/)\/+/g,"$1").replace(/\/$/,"")}static getGitHubRegex(){return/[@/]github.com[:/]([^/.]+)\/([^/#]+)#?(.*)/}static getGitLabRegex(){return/[@/]gitlab.com[:/]([^/.]+)\/([^/#]+)#?(.*)/}static getBitbucketRegex(){return/[@/]bitbucket.org[:/]([^/.]+)\/([^/#]+)#?(.*)/}static getGitRegex(){return/(.*?[@/][^?]*git.*?)[:/]([^#]+)(?:#(.*))?/}static getGitRepoUrl(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"master";const r=e.match(y.getGitHubRegex()),n=e.match(y.getGitLabRegex()),o=e.match(y.getBitbucketRegex()),s=e.match(y.getGitRegex());let i=null;if(r)i=`https://github.com/${r[1]}/${r[2].replace(/.git/,"")}`,r[3]&&(i+=`/tree/${t}/${r[3]}`);else if(n)i=`https://gitlab.com/${n[1]}/${n[2].replace(/.git/,"")}`,n[3]&&(i+=`/-/tree/${t}/${n[3]}`);else if(o)i=`https://bitbucket.org/${o[1]}/${o[2].replace(/.git/,"")}`,o[3]&&(i+=`/src/${t}/${o[3]}`);else if(s){const[,e,r,n]=s;i=e.replace(/git@/,"https://")+"/"+r.replace(/.git/,""),n&&(i+=`/tree/${t}/${n}`)}return i}static getGitCommitUrl(e,t){const r=e.match(y.getGitHubRegex()),n=e.match(y.getGitLabRegex()),o=e.match(y.getBitbucketRegex()),s=e.match(y.getGitRegex());let i=null;if(r)i=`https://github.com/${r[1]}/${r[2].replace(/.git/,"")}/tree/${t}/${r[3]}`;else if(n)i=`https://gitlab.com/${n[1]}/${n[2].replace(/.git/,"")}/-/tree/${t}/${n[3]}`;else if(o)i=`https://bitbucket.org/${o[1]}/${o[2].replace(/.git/,"")}/src/${t}/${o[3]}`;else if(s){const[,e,r,n]=s;i=`${e.replace(/git@/,"https://")}/${r.replace(/.git/,"")}/tree/${t}/${n}`}return i}static ensureUrlScheme(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"https";return e?e.match(/^:\/\//i)?`${t}${e}`:e.match(/^[a-z1-9+-.]+:\/\//i)?e:`${t}://${e}`:e}static setQueryParams(e,t){const r=new URL(y.ensureUrlScheme(e));return r.search=t||"",r.toString()}static addQueryParams(e,t){if(!t||0===Object.keys(t).length)return e;const r=new URLSearchParams(e);Object.entries(t).forEach((e=>{let[t,n]=e;return!!t&&!!n&&r.set(t,n)}));const n=r.toString();return""===n||n.includes("?")?n:`?${n}`}static getDefaultJobRunName(e,t){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;if(!e)return"-";let n=`job ${e}`;return t&&(n=`run ${t} of `+n),r&&(n=`workspace ${r}: `+n),n}static getDefaultNotebookRevisionName(e,t){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:null;if(!e)return"-";let n=`notebook ${e}`;return t&&(n=`revision ${t} of `+n),r&&(n=`workspace ${r}: `+n),n}static getNotebookId(e){const t="mlflow.databricks.notebookID";return e&&e[t]&&e[t].value}static getClusterSpecJson(e){const t="mlflow.databricks.cluster.info";return e&&e[t]&&e[t].value}static getClusterLibrariesJson(e){const t="mlflow.databricks.cluster.libraries";return e&&e[t]&&e[t].value}static getClusterId(e){const t="mlflow.databricks.cluster.id";return e&&e[t]&&e[t].value}static getNotebookRevisionId(e){const t="mlflow.databricks.notebookRevisionID";return e&&e[t]&&e[t].value}static renderSource(e,t,r){let n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:"master";const o=y.getSourceName(e);let s=y.formatSource(e);const i=y.getGitRepoUrl(o,n);return i&&(s=(0,h.Y)("a",{target:"_top",href:i,children:s})),s}static renderNotebookSource(e,t,r,n,o){let s=arguments.length>5&&void 0!==arguments[5]?arguments[5]:null,i=arguments.length>6&&void 0!==arguments[6]?arguments[6]:null;const a=o?y.baseName(o):y.getDefaultNotebookRevisionName(t,r),c=i||a;if(t){const i=y.getNotebookSourceUrl(e,t,r,n,s);return(0,h.Y)("a",{title:o||y.getDefaultNotebookRevisionName(t,r),href:i,target:"_top",children:c})}return c}static getNotebookSourceUrl(e,t,r,n){let o=arguments.length>4&&void 0!==arguments[4]?arguments[4]:null,s=y.setQueryParams(o||window.location.origin,e);return s+=`#notebook/${t}`,r&&(s+=`/revision/${r}`,n&&(s+=`/mlflow/run/${n}`)),s}static renderJobSource(e,t,r,n){let o=arguments.length>4&&void 0!==arguments[4]?arguments[4]:null,s=arguments.length>5&&void 0!==arguments[5]?arguments[5]:null;const i=n||y.getDefaultJobRunName(t,r),a=s||i;if(t){const n=y.getJobSourceUrl(e,t,r,o);return(0,h.Y)("a",{title:i,href:n,target:"_top",children:a})}return a}static getJobSourceUrl(e,t,r){let n=arguments.length>3&&void 0!==arguments[3]?arguments[3]:null,o=y.setQueryParams(n||window.location.origin,e);return o+=`#job/${t}`,r&&(o+=`/run/${r}`),o}static formatSource(e){const t=y.getSourceName(e),r=y.getSourceType(e),n=y.getEntryPointName(e);if("PROJECT"===r){let e=y.dropExtension(y.baseName(t));return n&&"main"!==n&&(e+=":"+n),e}if("JOB"===r){const r="mlflow.databricks.jobID",n="mlflow.databricks.jobRunID",o=e&&e[r]&&e[r].value,s=e&&e[n]&&e[n].value;return o&&s?y.getDefaultJobRunName(o,s):t}return y.baseName(t)}static getNotebookLink(e){return window.location.origin+"/#notebook/"+e}static getRunDisplayName(e,t){return y.getRunName(e)||"Run "+t}static getRunName(e){return e.runName||""}static getRunNameFromTags(e){const t=e[y.runNameTag];return t?t.value:""}static getSourceName(e){const t=e[y.sourceNameTag];return t?t.value:""}static getSourceType(e){const t=e[y.sourceTypeTag];return t?t.value:""}static getSourceVersion(e){const t=e[y.gitCommitTag];return t?t.value:""}static getPipelineProfileName(e){const t=e[y.pipelineProfileNameTag];return t?t.value:""}static getPipelineStepName(e){const t=e[y.pipeLineStepNameTag];return t?t.value:""}static getEntryPointName(e){const t=e[y.entryPointTag];return t?t.value:""}static getBackend(e){const t=e[y.backendTag];return t?t.value:""}static getUser(e,t){const r=t[y.userTag];return r?r.value:e.user_id}static renderVersion(e){let t=!(arguments.length>1&&void 0!==arguments[1])||arguments[1];const r=y.getSourceVersion(e),n=y.getSourceName(e),o=y.getSourceType(e);return y.renderSourceVersion(r,n,o,t)}static renderSourceVersion(e,t,r){if(e){const n=!(arguments.length>3&&void 0!==arguments[3])||arguments[3]?e.substring(0,6):e;if("PROJECT"===r){const r=y.getGitCommitUrl(t,e);return r?(0,h.Y)("a",{href:r,target:"_top",children:n}):n}return n}return null}static pluralize(e,t){return t>1?e+"s":e}static getRequestWithId(e,t){return e.find((e=>e.id===t))}static getCurveKey(e,t){return`${e}-${t}`}static getCurveInfoFromKey(e){const t=e.split("-");return{runId:t[0],metricName:t.slice(1,t.length).join("-")}}static getMetricPlotStateFromUrl(e){const t={selectedXAxis:"relative",selectedMetricKeys:[],showPoint:!1,yAxisLogScale:!1,lineSmoothness:1,layout:{}},r=c().parse(e.slice(1,e.length));if(!r)return t;return{selectedXAxis:r.x_axis||"relative",selectedMetricKeys:JSON.parse(r.plot_metric_keys)||t.selectedMetricKeys,showPoint:"true"===r.show_point,yAxisLogScale:"log"===r.y_axis_scale,lineSmoothness:r.line_smoothness?parseFloat(r.line_smoothness):0,layout:r.plot_layout?JSON.parse(r.plot_layout):{autosize:!0},deselectedCurves:r.deselected_curves?JSON.parse(r.deselected_curves):[],lastLinearYAxisRange:r.last_linear_y_axis_range?JSON.parse(r.last_linear_y_axis_range):[]}}static getPlotLayoutFromUrl(e){const t=c().parse(e).plot_layout;return t?JSON.parse(t):{}}static getSearchParamsFromUrl(e){return c().parse(e,{ignoreQueryPrefix:!0,comma:!0,arrayLimit:500,decoder(e,t,r,n){return"value"===n?"true"===e||"false"!==e&&(void 0===e?"":t(e)):t(e)}})}static getSearchUrlFromState(e){const t={};for(const r in e)void 0===e[r]?t[r]="":t[r]=e[r];return c().stringify(t,{arrayFormat:"comma",encodeValuesOnly:!0})}static compareByTimestamp(e,t){return e.timestamp-t.timestamp}static compareByStepAndTimestamp(e,t){const r=e.step-t.step;return 0===r?e.timestamp-t.timestamp:r}static getVisibleTagValues(e){return Object.values(e).map((e=>[e.key,e.value])).filter((e=>!e[0].startsWith(l.nt)))}static getVisibleTagKeyList(e){return d().uniq(d().flatMap(e,(e=>y.getVisibleTagValues(e).map((e=>{let[t]=e;return t})))))}static concatAndGroupArraysById(e,t,r){return d()(e).concat(t).groupBy(r).map(d().spread(((e,t)=>d().merge({},e,t)))).value()}static getLoggedModelsFromTags(e){const t=e[y.loggedModelsTag];if(t){let e=null;try{e=JSON.parse(t.value)}catch(r){}if(e){const t=e.map((e=>{const t=Object.keys(d().omit(e.flavors,"python_function")),r=t.length?t:["pyfunc"];return{artifactPath:e.artifact_path,flavors:r,utcTimeCreated:new Date(e.utc_time_created).getTime()/1e3}})).sort(((e,t)=>parseFloat(t.utcTimeCreated)-parseFloat(e.utcTimeCreated)));return d().uniqWith(t,((e,t)=>e.artifactPath===t.artifactPath))}}return[]}static mergeLoggedAndRegisteredModels(e,t){const r=t.map((e=>({registeredModelName:e.name,artifactPath:y.normalize(e.source).split("/artifacts/")[1],registeredModelVersion:e.version,registeredModelCreationTimestamp:e.creation_timestamp}))),n=e.flatMap((e=>e.artifactPath?[{...e,artifactPath:y.normalize(e.artifactPath)}]:[]));return y.concatAndGroupArraysById(n,r,"artifactPath").sort(((e,t)=>e.registeredModelVersion&&t.registeredModelVersion?e.flavors&&!t.flavors?-1:!e.flavors&&t.flavors?1:parseInt(t.registeredModelCreationTimestamp,10)-parseInt(e.registeredModelCreationTimestamp,10):e.registeredModelVersion&&!t.registeredModelVersion?-1:!e.registeredModelVersion&&t.registeredModelVersion?1:t.utcTimeCreated-e.utcTimeCreated))}static logErrorAndNotifyUser(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:3;"string"===typeof e?y.displayGlobalErrorNotification(e,t):e instanceof f.s&&y.displayGlobalErrorNotification(e.renderHttpError(),t)}static logGenericUserFriendlyError(e,t){const r={404:t.formatMessage({id:"IXPpwQ",defaultMessage:"404: Resource not found"}),500:t.formatMessage({id:"ddAFCW",defaultMessage:"500: Internal server error"})};return e instanceof f.s&&"object"===typeof t&&Object.keys(r).includes(e.getStatus().toString())?y.logErrorAndNotifyUser(r[e.getStatus()]):y.logErrorAndNotifyUser(e)}static isModelRegistryEnabled(){return!0}static updatePageTitle(e){}static isBrowserTabVisible(){return"hidden"!==document.visibilityState}static shouldRender404(e,t){return e.filter((e=>t.includes(e.id))).some((e=>{const{error:t}=e;return t&&t.getErrorCode()===m.tG.RESOURCE_DOES_NOT_EXIST}))}static getResourceConflictError(e,t){return e.filter((e=>{if(t.includes(e.id)){const{error:t}=e;return t&&t.getErrorCode()===m.tG.RESOURCE_CONFLICT}return!1}))[0]}static compareExperiments(e,t){const r=e.experimentId,n=t.experimentId,o=parseInt(r,10),s=parseInt(n,10);return Number.isNaN(o)?Number.isNaN(s)?r.localeCompare(n):1:Number.isNaN(s)?-1:o-s}static isUsingExternalRouter(){return!!window.isTestingIframe}static isValidHttpUrl(e){try{const t=new URL(e);return"http:"===t.protocol||"https:"===t.protocol}catch(t){return!1}}}Object.defineProperty(y,p,{writable:!0,value:null}),y.runNameTag="mlflow.runName",y.sourceNameTag="mlflow.source.name",y.sourceTypeTag="mlflow.source.type",y.gitCommitTag="mlflow.source.git.commit",y.entryPointTag="mlflow.project.entryPoint",y.backendTag="mlflow.project.backend",y.userTag="mlflow.user",y.loggedModelsTag="mlflow.log-model.history",y.pipelineProfileNameTag="mlflow.pipeline.profile.name",y.pipeLineStepNameTag="mlflow.pipeline.step.name",y.getQueryParams=()=>window.location&&window.location.search?window.location.search:"",y.sortExperimentsById=e=>d().sortBy(e,[e=>{let{experimentId:t}=e;return t}]),y.getExperimentNameMap=e=>{const t={};e.forEach((e=>{const{name:r}=e,n=r.split("/").pop();t[n]=[...t[n]||[],e]}));const r={};return Object.entries(t).forEach((e=>{let[t,n]=e;const o=1===n.length;n.forEach(((e,n)=>{let{experimentId:s,name:i}=e;r[s]={name:i,basename:o?t:`${t} (${n+1})`}}))})),r},y.getSupportPageUrl=()=>m.KK,t.A=y},42634:function(){}}]);
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
!function(){var e={32162:function(){},53107:function(e,t,r){"use strict";r.d(t,{M:function(){return p}});var o=r(54093),n=r(10635),a=JSON.parse('{"+1i81u":"Registered At","+Dnww0":"Rename Run","+LLlvi":"Source Run","+RYBrq":"Promote model","+dGAnC":"Preview","+fb25b":"Time created","+hQ+de":"Run name","+hkg/y":"Max","/2MZix":"Run ID:","/2m1wK":"Oops!","/K6wBr":"Input data or prompt template have changed since last evaluation of the output","/LfvdB":"Average","/Q7stq":"Learn more","/g45Xz":"Share and manage machine learning models.","/nPZbt":"{totalTokens} total tokens","08WP3h":"Staging","0ElvS9":"Y-axis:","0HbGko":"Model","0IQod2":"Add","0VIuU9":"Clusters","0XZ2zu":"No image logged at this step","0gGMZm":"Name","0gIYIc":"Make the line between points \\"smoother\\" based on Exponential Moving Average. Smoothing can be useful for displaying the overall trend when the logging frequency is high.","0ja5l/":"No tags found.","0pdAuV":"Active","0tU5gv":"Cancel","1/M8+x":"X-axis:","13vJft":"View Examples","16BvfJ":"{timeSince, plural, =1 {1 year} other {# years}} ago","16onEc":"Please add or remove one or more tags before saving","17k196":"Cancel","18/UVG":"Using controls above, select at least one artifact containing table.","1ECve7":"You can now switch to the chart view to compare runs","1Iq+NW":"Copy","1RxxTj":"(Version {sourceModelVersion})","1YGQOY":"Duplicate run","1f72BQ":"Version","1hI96w":"Showing only visible runs","1jPG5D":"Creator","25EUlg":"The code snippets below demonstrate how to load the logged model.","27oNFE":"Model schema","2DNVN4":"Aliases allow you to assign a mutable, named reference to a particular model version. <link>Learn more</link>","2Exf7S":"Supported formats: image, text, html, pdf, geojson files","2Hf+yU":"Time (wall)","2I27Yy":"(empty)","2K8tsp":"10","2NJ8E5":"Please select parameters and/or metrics to display the comparison.","2NfDVN":"Load the model","2Us2jl":"X axis","2YEXRM":"Edit","2a/rR8":"Cancel","2f2qeb":"Type","2fvQaF":"Unsaved","2gmOVq":"Process {evaluableRowCount} rows without evaluation output","2gxV/O":"Evaluation not available when grouping is enabled","2oFAO4":"Share","2sg/gd":"Create cluster","31EKoz":"No model metrics recorded","36g3aR":"Edit","3D2Znf":"Filter by {columnNames}","3Rb4sG":"Delete","3S3Ah4":"Download data","3VURvw":"No metrics or parameters available","3bagxW":"<link>Learn more</link>","3geT+I":"Use the log artifact APIs to store file outputs from MLflow runs.","3ojg7/":"Status of cluster","4+RPaz":"Delete","46xd2Z":"Compare","47QsAK":"{fieldName} are empty","4B8k46":"Value (optional)","4HbEVz":"You need to select a served model endpoint using dropdown first","4Jyn2b":"Add/Edit alias for model version {version}","4NEPlV":"Scatter Plot","4OcdLd":"This version","4idqpX":"Add","4tpkvx":"Show change from baseline","4yjF8O":"Show all runs","58xhem":"Click to pin the run","5GCYzy":"Experiment Runs - Databricks","5Mzn2b":"Creator","5RWIet":"Schema {sectionName}","5YOBk/":"Export as CSV","5ZAXeS":"{timeSince, plural, =1 {1 month} other {# months}} ago","5aZ7nE":"Artifact location copied","5cac8T":"Error fetching models","5m2VPy":"Image grid","5yWkFd":"Increase or decrease the confidence level of the language model.","656rRX":"Go back to <link>the home page.</link>","6Jan3t":"Images","6K04VZ":"Max. tokens: {max_tokens}","6KFQMl":"Get shareable link","6Nk5AH":"Filter registered models by name or tags","6UqPlE":"No parameters recorded","6XfILf":"Contour chart","6b6fTN":"Select a file to preview","6bmLqb":"Load model","6kSKRk":"Comparing {numVersions} Versions","6xPc4W":"Predict on a Spark DataFrame:","6y36Fr":"Add new chart","71dHIO":"Classical ML","71hvMu":"Add new variable","72uGpl":"Evaluate","757GVc":"Cancel","79dD5F":"There was an error submitting your note.","7F/CBv":"Stage","7KKvmS":"Created by","7NKkk1":"Save","7NOp4F":"Tags","7WkP1e":"Delete","7jsqqe":"{timeSince, plural, =1 {1 minute} other {# minutes}} ago","7kUi8J":"Duration:","7m2B5x":"There are no evaluable rows within this column","7nAMnb":"Please input a name for the new model.","7nPjTL":"Auto","7vizbm":"Number of workers","7zNDHj":"Parameters:","8/7V3S":"Artifact Location","801Xh4":"Save tags","81+fJx":"Couldn\'t load model information due to an error.","81DxPY":"Contour plots can only be rendered when comparing a group of runs with three or more unique metrics or params. Log more metrics or params to your runs to visualize them using the contour plot.","88l+j9":"Are you sure you want to delete model version {versionNum}? This cannot be undone.","8ALhnh":"Type a key","8Gz0OE":"Unhide group","8Uwpjw":"Create run","8WJEHc":"New model registry UI","8XbTnl":"Value","8XrJnT":"Delete section","8YmId5":"Y axis","8flziy":"Time (Wall)","8hpS0b":"Pin group","8qJt7/":"Experimental","8xji5J":"X-axis:","93iLUV":"{timeSince, plural, =1 {1 second} other {# seconds}} ago","97hGxL":"Cancel","98Ub01":"Delete Model Version","9CqEWy":"Load more","9HXup+":"Toggle visibility of runs","9KXBFn":"Tags","9M1NoX":"Create new cluster","9TOU1G":"No charts in this section","9W3kev":"Register","9dX4XQ":"Select parameter or metric","9fVZg8":"Delete","9g0sMx":"Show change from baseline","9mAGv0":"Model name","9vj5Ap":"No metrics recorded","9vwPnB":"Add chart","9wWapn":"Click \'Add chart\' or drag and drop to add charts here.","9y+yUQ":"File is too large to preview","A7R0ii":"Copy path","AEzy9w":"After creation, you can register logged models as new versions. ","AFI74W":"Group by: {value}","AM8DuO":"Failed","AW2rVK":"Max. no of runs shown","Aqq08o":"HTTP","At3XhS":"Created Time","AupQl+":"Killed","Ay+ZP/":"Failed to delete tag. Error: {userVisibleError}","AyceYA":"Served LLM model","B80MC6":"Contour Plot","BCpX6U":"Registered models","BFzsMn":"No runs selected","BOz0T2":"Select metric","BQt0TQ":"This model is also registered to the <link>model registry</link>.","BWpQZ7":"You have <strong>{unsyncedDataEntriesCount}</strong> unsaved evaluated {unsyncedDataEntriesCount, plural, =1 {value} other {values}}. Click \\"Save\\" button or press {keyCombination} keys to synchronize the artifact data.","Bbm59f":"100","Bei+xi":"AWS Access Key as CSV","Bnruyp":"500","Boj6Fm":"Version {version}","C4y1fv":"-\u221e","CTEh+b":"Cancel","CevPsF":"Add section above","CpLnGS":"Metrics","CruI7o":"Latest version","Csmj/2":"Select all runs","CtB/vS":"Create a cluster","CyTYL6":"Line chart","D+UN8o":"No metric charts","DCkSC3":"Promote","DLGEdG":"Thank you for exploring the new Model Registry UI. We are dedicated to providing the best experience, and your feedback is invaluable. Please share your thoughts with us <link>here</link>.","DUnrWL":"Run Name:","DaF+KK":"Y axis","Dhn7Mb":"Displaying Runs from {numExperiments} Experiments","Dxwvus":"Stage Transition","E5gbt5":"More options","E7mv3b":"Save","EBQwqu":"The \\"{alias}\\" alias is also being used on version {otherVersion}. Adding it to this version will remove it from version {otherVersion}.","EI7moF":"Last year","EK5JxG":"Parameters","EKyt+3":"Metrics:","EPcEi9":"You have added rows with new input values, but you still need to evaluate the new data in order to save it.","ER3oVW":"No metrics available","ES952j":"Not a number ({metricKey})","Eh/e0j":"Move up","EkUD0b":"No results","EwAZgg":"Edit tags","F/EzKI":"Transition existing {currentStage} model versions to {archivedStage}","F16DNA":"Version {versionNum}","F8MqzZ":"Path","FAfPOl":"Stop Sequences","FC9mcS":"Parallel coordinates","FZubuU":"Input an experiment name","FdDWTo":"Clear All","FpjDSq":"Compare","G0gYkS":"End Time:","G5mMJI":"Difference view","GAJL1v":"Input and output schema for your model. <link>Learn more</link>","GDenB3":"Metrics","GDzD7I":"Prompt Template","GJWVBA":"Inputs","GKiPV1":"Start Time:","GXayIF":"Predict on a Pandas DataFrame:","Gg/vLZ":"Delete Model","Gm77Ws":"Loading artifact failed","Gs+blV":"Last modified","H+4gFh":"Show diff only","HGBit9":"Temperature: {temperature}","HGG+BI":"Y-axis Log Scale:","HNLDYl":"Failed to set tag. Error: {userVisibleError}","HUf9qJ":"Are you sure you want to delete {modelName}? This cannot be undone.","Hk0RSH":"Y-axis:","HyBP+D":"Tags","HzGYm5":"Aliases","IAyAgH":"Move up","ICg2LX":"Disable the new model stages","ICtiKS":"Delete","IEORCP":"Comparing {numRuns} Runs from {numExperiments} Experiments","IHyeUr":"Stage","IJbauF":"Add tag \\"{tagKey}\\"","IKx3DN":"Predict on a Pandas DataFrame.","IWuVOI":"Failed to add tag. Error: {userVisibleError}","IXPpwQ":"404: Resource not found","IZ95jb":"Datasets","IdxSB8":"images","IfcpiM":"Step","Ik96R6":"Edit","Isaf66":"Details","Isig6r":"Error loading shared view state: share key is invalid","J2XCE/":"Specify sequences that signal the model to stop generating text.","JCboZ7":"Path copied","JChRnq":"Last 24 hours","JNS471":"No results. Try using a different keyword or adjusting your filters.","JYVQuV":"Run ID","JnIbS3":"Evaluate all","JnidmZ":"Add row","Jrri/Y":"Temperature","JtQQMn":"This is the output generated by the LLM using the prompt template and input values defined above.","JuHp/q":"Hugging Face","JvuEDT":"No results. Please create a new cluster.","K5rmCE":"S3","KADUUT":"Model parameters","KJbYrw":"Loaded {childRuns} child {childRuns, plural, =1 {run} other {runs}}","KOQzJx":"Chart","KzC+38":"Prompt template examples","L26D19":"X-axis:","LEiN8m":"Tags","LKAZ2n":"Disable grouped runs to compare","LLm5Bo":"Displaying Runs from {numExperiments} Experiments","Li72QU":"Add","LiW/yM":"Download as SVG","Ll6vbT":"Model versions in the `{currentStage}` stage will be moved to the `Archived` stage.","M/c4l0":"Metric","M1dwxx":"Version {version}","M5bYHa":"No metrics available","MatV9u":"Create","Mc6Dhy":"5","MhtxHm":"You cannot evaluate this cell, this run was not created using served LLM model route","Mm7PVx":"baseline","Mtj9Ay":"Edit description","NFUJyk":"Load model","NGsTf/":"Synchronizing artifacts for {runsBeingSynchronizedCount} runs...","NJ1bYP":"{fieldName} are identical","NN0ScV":"Comparing {numRuns} Runs from 1 Experiment","NiSPrL":"Model metrics","Nj6Ez5":"Name","Nm/Pjx":"Registered at","Nnsm0p":"All runs in this experiment have been filtered. Change or clear filters to view runs.","Np53PR":"Try this template","NqEELO":"View model","NtaCJN":"Off","NwNrl4":"Amount of time that has passed since the first metric value was logged","NzRvyj":"Table settings","O1rYVN":"Load model as a Spark UDF. Override result_type if the model does not return double values.","O9r1RR":"Start Time:","OEGyWZ":"Predict on a Spark DataFrame.","ONIiUE":"Show first 20","OfLABN":"Close","OimAJb":"Scatter Plot","Oj2ENw":"No models registered yet. <link>Learn more about registering models</link>.","Oj2cw5":"Cluster name","On3g1B":"Running","OzyPl3":"Please select parameters","PEYesH":"New run","PGbCZD":"Production","PKYh23":"Additional runs","PNfcez":"Add row","PP5HZf":"Created at","PRe/8y":"None","PZGZHV":"Experiment ID","Potju2":"Restore","PrpxQv":"Error fetching clusters","Q/evEc":"Parameters ({length})","Q0i5xG":"Scatter chart","Q73eXs":"No params","QC5Vjq":"Y-axis:","QD6iZA":"No parameters match the search filter","QPC4hV":"Use other parameters or disable run grouping to continue.","QUMV9L":"On","Qi6Etm":"Hide all runs","Qsgg+9":"Experiment Name:","QuU1sl":"Parallel Coordinates Plot","RUw2fH":"Create a model","RaGnOQ":"Compare","RlBbjb":"A tag key is required","RlRsah":"loading...","RtKhwd":"Dataset","RzZVxC":"An error occurred while rendering this component.","S7ESYH":"Visualizations","SAD2Mj":"OK","SCYMXw":"Cancel","SCqKp8":"Evaluation","SLHSXV":"Search parameters","SNvZyR":"Time","SZj964":"Copy S3 URI to clipboard","Shv28w":"Save","Sp+Iw0":"Move down","SrXYrV":"Previewing the first {numRows} rows","SzvvXl":"Failed to submit","T/UYwm":"Raw Schema JSON:","T1sd79":"Go to model","T4eipT":"Line Smoothness","T5NeQe":"AWS Region","TBX+Gs":"Add/Edit tags","TMJfZv":"Comparing first {count} groups","TPspzA":"Deleting the section will permanently remove it and the charts it contains. This cannot be undone.","TfuAgs":"Hide group","ThrXMh":"Inputs","Tl63jz":"All runs are filtered","TlFUsN":"Tags","TlVXcS":"Cancel","TrsI/A":"Worker instance types","U+Jzcv":"<link>Version {versionNumber}</link>","U3btBc":"Examples:","U7eJfk":"Error while fetching chart data","U82iv6":"Registered Models","UEDu0c":"MLflow UI automatically fetches metric histories for active runs and updates the metrics plot with a {interval} second interval.","UEESlL":"Hide all runs","UGAKJp":"X-axis:","UhdPmo":"Transition to","UmwZQv":"using Prompt Engineering","UzZf+2":"Add chart","V4CsL/":"Unable to list artifacts stored under {artifactUri} for the current run. Please contact your tracking server administrator to notify them of this error, which can happen when the tracking server lacks permission to list artifacts under the current run\'s root artifact directory.","V5cjvM":"Copy your MLflow models to another registered model for simple model promotion across environments. For more mature production-grade setups, we recommend setting up automated model training workflows to produce models in controlled environments. <link>Learn more</link>","VP+qFF":"Show diff only","VZRc73":"Using the list of logged table artifacts, select at least one to start comparing results.","VcNdOq":"No description","Vkr4Bs":"Add description","Vm9CvZ":"Description","Vvn8Cb":"Open dataset","W8bOkn":"250","WGN2f3":"Register model","WJF+wY":"Z-axis:","WP1pyQ":"Created by","WQwCH6":"Aliased versions","Wd8Tga":"No schema. See <link>MLflow docs</link> for how to include input and output schema with your model.","WeAgwI":"Digest: {digest}","WmDiY9":"Source","WvHAEg":"Input an artifact location (optional)","X+boXI":"Copied","X3F7x3":"No Artifacts Recorded","X8OaXU":"Scheduled","XX8+x1":"View prompt template","XaD7FM":"Select parameters/metrics to plot.","Xs1oJm":"Search metric charts","XzoBvA":"Cancel","Y47tVZ":"Time (relative)","Y9ZFyN":"Download artifact","YINJEO":"Metric","YOp3/x":"Unavailable when runs are grouped","YOz/Dk":"Table","YQ+Eon":"Register model","YRFAGK":"Negative infinity ({metricKey})","YZDyOo":"Path:","YamyaP":"Auto-refresh","YkcoeV":"Displaying Runs from {numExperiments} Experiments","YlavFP":"Add section","YnHiZ6":"Relative Time (hours)","Z5en2d":"Versions","Z6kodo":"Move down","ZGrkWk":"Perform inference via model.transform()","ZXUtU8":"Click to see more","ZYBoeF":"Transition to","Zb6BqS":"Relative Time","Zc48NC":"(unknown)","ZgAOhX":"Chart name","ZoIjun":"Duration","ZqGzZd":"Compare","Zqj4VA":"New run name","ZvJTXB":"No tables selected","ZwAzmu":"Create Model","a02Pn6":"Step","a0NgR8":"Type","a8rS4O":"Delete","aB6xFd":"Outputs","aFMLIO":"System metrics","aIP7Kb":"Cancel","aNnPar":"Time (Relative)","aOW396":"{timeSince, plural, =1 {1 hour} other {# hours}} ago","aQxQIF":"(empty)","aXw0NO":"Please select metric","aYsI8a":"<link>Learn more</link>","aaKoNq":"Add section below","aaVp/T":"No results","ag05Pe":"Refresh","au61Yy":"Maximum","ax3YJx":"Show points on line charts if there are fewer than 60 data points per trace","axF2gD":"Full Path:","bHuphj":"See the documents below to learn how to customize this model and deploy it for batch or real-time scoring using the pyfunc model flavor.","bQZDSv":"Enter aliases (champion, challenger, etc)","bSx/er":"Parameters","bi26D5":"Run ID:","bjoGjg":"Last hour","bqn2bk":"Outputs","c5AQYh":"Compare by","cAKSkQ":"Select a cell to display preview","cB0/61":"Z axis","cBDYla":"Actions","cEj56l":"Step","cEwSR8":"Maximum number of language tokens returned from evaluation.","cI+F/q":"Name","cJo1zH":"{value} more","cK6riy":"Schema","cSSMIs":"Copy artifact location","coo35p":"No runs have been logged yet. <link>Learn more</link> about how to create ML model training runs in this experiment.","crTWax":"Key","cruwL4":"Save aliases","csNr/8":"Disable grouped runs to compare parameters, tag, or attributes","cy9EfG":"Attributes","d1Ou4x":"Run","d78wwA":"Provide Feedback","d8I3cy":"Show only visible","dHAuWp":"You need to provide a prompt template","dQY7H0":"No system metrics recorded","dTLq6E":"expand {title}","dYbJha":"Please provide run name","db+oaM":"Unable to parse JSON file","ddAFCW":"500: Internal server error","dl3Yfr":"No results match this search.","dq8MJd":"Contour Plot","dwTTNK":"Are you sure you want to navigate away? Your pending text changes will be lost.","e7GTKi":"Show differences only","e7K2T3":"Show all runs","eBGO2d":"No metrics to display.","eE5VIF":"Click to hide the run","eNUbaN":"Y-axis:","eOxs/C":"Parameters","eQgPEi":"{value} (step={step})","eQqRYQ":"Select metrics","eQsXm7":"Last 7 days","eZOxx1":"Toggle the preview sidepane","ea5zBl":"Run page loading","eeLqSn":"Submit","erqoIC":"Run Name:","ew4gZq":"Type of worker instance","eyGoqW":"Experiment Name","f/An1W":"Ready.","fKx4kG":"Aggregation: {value}","fMf88R":"Columns","fWEvZL":", . : / - = and blank spaces are not allowed","fWm1UC":"Group by","fZPf0W":"Reverse color:","faLIN+":"Timestamp","ffema5":"Experiment ID","fjM/KK":"Group by","fjiojF":"Pin run","flJNTA":"You need to provide values for all defined inputs","frPtD/":"Metrics","fv7vQf":"Rename","fwp4JP":"Datasets used","g17Es2":"Name","g2tInh":"Source type: {typeLabel}","g7xNvF":"Display points","gC2Kxm":"Give instructions to the model. Use \'{{ }}\' or the \\"Add new variable\\" button to add variables to your prompt.","gDNspC":"Refresh","gIc8Lp":"Stages have been deprecated in the new Model Registry UI. Learn how to migrate models <link>here</link>.","gLj8lU":"<strong>{length}</strong> matching {length, plural, =0 {runs} =1 {run} other {runs}}","gUdmaJ":"Schema","gUhc5g":"You need to evaluate the resulting output first","gVxisd":"Tag \\"{value}\\" already exists.","gZSJbg":"All charts are filtered. Clear the search filter to see hidden metric charts.","gc+GrI":"Model, input data or prompt have changed since last evaluation of the output","gdK07H":"Bar chart","gdjniH":"Comparing first {count} runs","geizp1":"Cancel","giZdtW":"Model","glxGz2":"Parallel coordinates chart does not support aggregated string values.","hFlaPP":"System metrics","hcDB9U":"+\u221e","hnhCDT":"Error occurred","hxMEqi":"The model version will be copied to {selectedModel} as a new version.","i9OADf":"Params","iC2Owx":"Stop sequences: {stopSequences}","iF1UfU":"New run using notebook","iLFoPb":"State","iQzwqe":"Min","iT8ODo":"Minimum","iTjTQt":"No metrics match the search filter","iXb99e":"Box Plot","iZm6YQ":"<link>Learn more</link>","iaomsd":"collapse {title}","iwD/Dv":"Cancel","j/pJM6":"Last Modified","j25Ttg":"Model metrics","j7cj5r":"Please log at least one table artifact containing evaluation data. <link>Learn more</link>.","jH0+gA":"Metrics","jHWRLw":"No tags","jI22Qu":"Gateway returned the following error: \\"{errorMessage}\\"","jkeYf8":"Unpin group","jq95vC":"Group: {groupName}","js4/Y8":"You can also <link>register it to the model registry</link> to version control","jwALGI":"Cancel","kA+QJr":"Overview","kBXHTA":"Edit chart","kIlkgf":"Search runs using a simplified version of the SQL {whereBold} clause.","kNTkr+":"Discard","kTkJkb":"Parallel coordinates chart does not support aggregated string values. Use other parameters or disable run grouping to continue.","kV2Dw/":"Load model as a PyFuncModel.","kWUhea":"Params","kdTxC2":"Disable run grouping in order to access the evaluation view","khknxG":"Got it","kjltRf":"Click a cell to preview data","ktiuki":"Get Link","lDGQGa":"Toggle detailed view","lISqyJ":"Run details","lJQEW4":"Using controls above, select at least one \\"group by\\" column.","lM0z8k":"The following variable names contain spaces which is disallowed: {invalidNames}","lNO3kK":"No parameters to display.","lTngfr":"Select a cell to display preview","llVQ2r":"Outputs ({numOutputs})","llrWuc":"Sort","m4159e":"Metrics ({length})","m9e01X":"No tags to display.","mIk1MU":"Create Model","mRc7MY":"Expand rows","meoYKZ":"Artifact Location","mjNFJt":"Logged models","mpHsCg":"Size:","mqTFL+":"Cancel","mtxqm8":"Flexible, governed deployments with the new Model Registry UI","mv6CY3":"Yes, save and close","n/l2ft":"Reset filters","nC54Nf":"Tags","nEoTsR":"Completed Runs","nPWZsh":"Make sure that at least one experiment run is visible and available to compare","nQoUED":"Step","nVndit":"Registered on {registeredDate}","nWeQCU":"Show differences only","nYKZy4":"<link>Learn more</link>","nddV+2":"Show less","nfIS4i":"Parent run name loading","nhqO2Z":"Save","nlXn2G":"Absolute date and time","npHb2a":"Show more columns {count, select, 0 {} other {({count} total)}}","ny+fBZ":"Columns","nyHcAz":"MLflow deployment returned the following error: \\"{errorMessage}\\"","o7dzKo":"Last Modified","oBKd1E":"Value","oBjwod":"Promote {sourceModelName} version {sourceModelVersion}","oE0W65":"Create Cluster","oHW+ks":"Description","oWPgX7":"Rename","oY+vPi":"Showing all runs","oZReP2":"Copied from","obI80o":"Data details for","odkg7W":"Compact view","okQ1oB":"Please input a new name for the new experiment.","oqBCfB":"With the latest Model Registry UI, you can use <b>Model Aliases</b> for flexible references to specific model versions, streamlining deployment in a given environment. Use <b>Model Tags</b> to annotate model versions with metadata, like the status of pre-deployment checks.","owr9l2":"No group by columns selected","p1H1KR":"Last 30 days","pBUaAK":"Are you sure you want to delete this tag\uff1f","pEpexK":"Clear filters","pTDM+x":"Select LLM model endpoint","pU6cxH":"Add","paQ2Wc":"Stage (deprecated)","peyOdH":"Cancel","pjlcSc":"Metric","pl1bdY":"Registered Models","plw4Kp":"Stop evaluating","q/Z61H":"You are exceeding a limit of {limit} aliases assigned to the single model version","qAdWdK":"Error","qE/ZB7":"{registeredCount}/{loggedCount} logged models are registered","qH2cN+":"Experiment id copied","qIsNL0":"Value","qMwRy3":"Registered Models","qR3llD":"Max tokens","qSpgg/":"Register model","qTjYVU":"Hide run","r+KCRg":"Parameter","r3/K3V":"Make Predictions","r5JI+N":"Please select metrics","rCMgRJ":"Name","rJitqj":"Permission denied for {modelName}. Error: \\"{errorMsg}\\"","raa3Ij":"Registered Models","rs7Iic":"Tags","rytnce":"Copy experiment id","s0233x":"Set as baseline","s2L+xL":"Error loading shared view state: share key \\"{viewStateShareKey}\\" does not exist","s35HDG":"Used by {runNames} {hasMore, select, true {and other runs} other {}}","s5ygFF":"Download as PNG","sByLVU":"No runs logged","sDqD2S":"The dataset is an array. To see a preview of the dataset, view the dataset in the training notebook.","sKaamx":"Sort","sLhmy7":"New run","sTp/V3":"Parallel Coordinates Plot","sXqvoN":"Ignore column ordering","sguNEF":"No evaluation tables logged","ss//L4":"{subMessage}, go back to <link>the home page.</link>","sxlGRc":"Inputs ({numInputs})","syyEiR":"Table","t0Qkuc":"Value","tD0/e2":"Model {modelName} does not exist","tGJwPR":"Please input a name for the new cluster.","tHrp+A":"Value","tLb7+M":"{timeSince, plural, =1 {1 day} other {# days}} ago","tbAlJg":"Go to external location","tdmVWN":"While deleting an experiment run, an error occurred.","ttyLD4":"Okay","tx3aAM":"Add tag","uBTAtY":"Prompt Template","ubGTUL":"Name is required.","ufamzi":"Comparing {runs} MLflow Runs","ugm2f6":"Unpin run","ugwpKL":"Description","ujm55z":"Finished","umeTwG":"Latest","uq6CTI":"No profile available","uuSONF":"Number of workers","v+0HXI":"Artifact loading","v8UFxB":"No datasets were recorded for this experiment\'s runs.","vBKFgp":"X axis","vK1v9d":"datasets used","vNRmQa":"using Notebook","vPnoNk":"Save changes","vPqFJE":"Artifacts","vi2MM7":"All","vkPj0P":"After creation, you can check the status of clusters in the Clusters table. ","vlxeiA":"Confirm","vxY1CI":"Status","w2+rkp":"Search metrics","w39cZ4":"Show first 10","wBFfWW":"Register","wDwAdX":"Description","wMG8+P":"To search by tags or by names and tags, use a simplified version{newline}of the SQL {whereBold} clause.","wNHR0W":"Aliases","wbRVln":"Metrics","wcSVYI":"Are you sure you want to save and close without adding \\"{tag}\\"","x0K27S":"Nothing to compare!","xBVMQz":"LLM","xPkIEE":"Active","xRw7H2":"Created by","xUnYdk":"Save","xmPKKq":"Model Version:","xmpvlI":"Unhide run","xr/C5c":"Comparing first {count} groups and runs","yAuDRt":"Evaluation is not possible because values for the following inputs cannot be determined: {missingParamList}. Add input columns to the \\"group by\\" settings or use \\"Add row\\" button to define new parameter set.","yJpGwW":"Deleted","yK/6vg":"Cancel","yL9JKm":"NaN","ySno61":"The code snippets below demonstrate how to make predictions using the logged model.","ydoHrJ":"Output","yjerKR":"<link>Version {versionNumber}</link>","ynkoR7":"No models versions are registered yet. <link>Learn more</link> about how to register a model version.","yzxYIm":"Points:","z+0t/R":"You need to define at least one input variable","z2Gyuw":"MLflow Model","z9UqPZ":"Description","zAvilr":"Ready","zB8rjH":"Try it now","zC/uKl":"Auto-refresh","zMhOr3":"Cancel","zMmWhy":"Chart data is refreshing","zWGmon":"Positive infinity ({metricKey})","zdYXP8":"Parent run","ze1m7Z":"Run name cannot consist only of whitespace!","ziIhFQ":"Loaded {allRuns} {allRuns, plural, =1 {run} other {runs}}, including {childRuns} child {childRuns, plural, =1 {run} other {runs}}","zjXq2X":"The model will be registered as a new version of {selectedModel}.","zv4Ycc":"View as table","zwO8+l":"20"}');const i=r(51804),s=i.keys(),l="en";async function d(e){if(e===l)return a;if("dev"===e){const e={},{generateENXA:t}=await r.e(6336).then(r.bind(r,36336));return Object.entries(a).forEach((r=>{let[o,n]=r;return e[o]=t(n)})),e}const t=s.find((t=>t===`./${e}.json`));return t?i(t):{}}var u=r(31014);const c={es:"es-ES",fr:"fr-FR",pt:"pt-PT",ja:"ja-JP",kr:"kr-KR",it:"it-IT",de:"de-DE",zh:"zh-CN"},m={},g=(0,o.MT)(),f={async initI18n(){const e=f.getCurrentLocale();return await f.loadMessages(e),{locale:e,messages:m[e]}},getIntlProviderParams(){const e=f.getCurrentLocale();return{locale:e,messages:m[e]||{}}},createIntlWithLocale(){const e=f.getIntlProviderParams();return(0,n.E)({locale:e.locale,messages:e.messages},g)},getCurrentLocale(){const e=new URLSearchParams(window.location.search),t=(()=>{const t=e.get("l");return t&&window.localStorage.setItem("locale",t),window.localStorage.getItem("locale")||l})();return t.includes("_")?l:t},getFallbackLocale(e){const t=e.split("-")[0],r=c[t];return r===t?void 0:r},async loadMessages(e){const t=[e===l?void 0:l,f.getFallbackLocale(e),e].filter(Boolean),r=await Promise.all(t.map(d));return m[e]=Object.assign({},...r),m[e]}},p=()=>{const[e,t]=(0,u.useState)(null);return(0,u.useEffect)((()=>{f.initI18n().then((e=>{t(e)})).catch((e=>{t(f.getIntlProviderParams())}))}),[]),e}},75605:function(e,t,r){"use strict";r(31014);var o=r(21751),n=r(57694),a=r(50111);o.render((0,a.Y)(n.Y,{}),document.getElementById("root"));window.onerror=(e,t,r,o,n)=>(console.error(n,e),!1)},69708:function(e,t,r){"use strict";r.d(t,{DL:function(){return N},Ey:function(){return y},GP:function(){return S},Id:function(){return D},J2:function(){return M},J8:function(){return f},JH:function(){return R},JK:function(){return u},SY:function(){return A},TQ:function(){return P},Ue:function(){return h},_e:function(){return p},ax:function(){return b},bE:function(){return v},eF:function(){return l},fv:function(){return m},g1:function(){return O},gx:function(){return w},hU:function(){return I},hY:function(){return k},kM:function(){return j},mq:function(){return U},mt:function(){return T},nZ:function(){return V},qI:function(){return E},qX:function(){return C},r9:function(){return g},s5:function(){return L},tL:function(){return c},tM:function(){return d},tP:function(){return x}});var o=r(46795),n=r(7204),a=r(77484),i=r(77948),s=r.n(i);const l=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:(0,n.yk)();return{type:"CREATE_REGISTERED_MODEL",payload:o.x.createRegisteredModel({name:e}),meta:{id:t,name:e}}},d="SEARCH_REGISTERED_MODELS",u=function(e,t,r,a){let i=arguments.length>4&&void 0!==arguments[4]?arguments[4]:(0,n.yk)();return{type:d,payload:o.x.searchRegisteredModels({filter:e,max_results:t,order_by:r,...a?{page_token:a}:null}),meta:{id:i}}},c=function(e,t){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:(0,n.yk)();return{type:"UPDATE_REGISTERED_MODEL",payload:o.x.updateRegisteredModel({name:e,description:t}),meta:{id:r}}},m="DELETE_REGISTERED_MODEL",g=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:(0,n.yk)();return{type:m,payload:(arguments.length>2?arguments[2]:void 0)?Promise.resolve():o.x.deleteRegisteredModel({name:e}),meta:{id:t,model:e}}},f="SET_REGISTERED_MODEL_TAG",p=function(e,t,r){let a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:(0,n.yk)();return{type:f,payload:o.x.setRegisteredModelTag({name:e,key:t,value:r}),meta:{id:a,modelName:e,key:t,value:r}}},h="DELETE_REGISTERED_MODEL_TAG",v=function(e,t){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:(0,n.yk)();return{type:h,payload:o.x.deleteRegisteredModelTag({name:e,key:t}),meta:{id:r,modelName:e,key:t}}},y=function(e,t,r){let a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:[],i=arguments.length>4&&void 0!==arguments[4]?arguments[4]:(0,n.yk)();return{type:"CREATE_MODEL_VERSION",payload:o.x.createModelVersion({name:e,source:t,run_id:r,tags:a}),meta:{id:i,name:e,runId:r}}},b=function(e,t){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:(0,n.yk)();const o=`model-versions/get-artifact?path=MLmodel&${`name=${encodeURIComponent(e)}`}&${`version=${encodeURIComponent(t)}`}`;return{type:"GET_MODEL_VERSION_ARTIFACT",payload:(0,a.Y0)(o),meta:{id:r,modelName:e,version:t}}},w="PARSE_MLMODEL_FILE",E=function(e,t,r){let o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:(0,n.yk)();if(!r)return{type:w,payload:Promise.reject(),meta:{id:o,modelName:e,version:t}};try{const n=s().safeLoad(r);return{type:w,payload:Promise.resolve(n),meta:{id:o,modelName:e,version:t}}}catch(a){return console.error(a),{type:w,payload:Promise.reject(),meta:{id:o,modelName:e,version:t}}}},S=function(e){const t=arguments.length>1&&void 0!==arguments[1]&&arguments[1]?"%":"";return e.includes("'")?`"${t}${e}${t}"`:`'${t}${e}${t}'`},M="SEARCH_MODEL_VERSIONS",k=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:(0,n.yk)();const r=Object.keys(e).map((t=>Array.isArray(e[t])&&e[t].length>1?`${t} IN (${e[t].map((e=>S(e))).join()})`:Array.isArray(e[t])&&1===e[t].length?`${t}=${S(e[t][0])}`:`${t}=${S(e[t])}`)).join("&");return{type:M,payload:o.x.searchModelVersions({filter:r}),meta:{id:t}}},N=function(e,t,r){let a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:(0,n.yk)();return{type:"UPDATE_MODEL_VERSION",payload:o.x.updateModelVersion({name:e,version:t,description:r}),meta:{id:a}}},x=function(e,t,r,a){let i=arguments.length>4&&void 0!==arguments[4]?arguments[4]:(0,n.yk)();return{type:"TRANSITION_MODEL_VERSION_STAGE",payload:o.x.transitionModelVersionStage({name:e,version:t,stage:r,archive_existing_versions:a}),meta:{id:i}}},R="DELETE_MODEL_VERSION",P=function(e,t){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:(0,n.yk)();return{type:R,payload:(arguments.length>3?arguments[3]:void 0)?Promise.resolve():o.x.deleteModelVersion({name:e,version:t}),meta:{id:r,modelName:e,version:t}}},T="GET_REGISTERED_MODEL",A=function(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:(0,n.yk)();return{type:T,payload:o.x.getRegisteredModel({name:e}),meta:{id:t,modelName:e}}},C="GET_MODEL_VERSION",L=function(e,t){let r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:(0,n.yk)();return{type:C,payload:o.x.getModelVersion({name:e,version:t}),meta:{id:r,modelName:e,version:t}}},I="SET_MODEL_VERSION_TAG",D=function(e,t,r,a){let i=arguments.length>4&&void 0!==arguments[4]?arguments[4]:(0,n.yk)();return{type:I,payload:o.x.setModelVersionTag({name:e,version:t,key:r,value:a}),meta:{id:i,modelName:e,version:t,key:r,value:a}}},O="DELETE_MODEL_VERSION_TAG",V=function(e,t,r){let a=arguments.length>3&&void 0!==arguments[3]?arguments[3]:(0,n.yk)();return{type:O,payload:o.x.deleteModelVersionTag({name:e,version:t,key:r}),meta:{id:a,modelName:e,version:t,key:r}}},U=function(e,t,r,a){let i=arguments.length>4&&void 0!==arguments[4]?arguments[4]:(0,n.yk)();const s=a.filter((e=>!r.includes(e))),l=r.filter((e=>!a.includes(e)));return{type:"SET_MODEL_VERSION_ALIASES",payload:Promise.all([...s.map((r=>o.x.setModelVersionAlias({alias:r,name:e,version:t}))),...l.map((r=>o.x.deleteModelVersionAlias({alias:r,name:e,version:t})))]),meta:{id:i,modelName:e,version:t,existingAliases:r,draftAliases:a}}},j=function(e,t,r){let{name:a,version:i}=e,s=arguments.length>3&&void 0!==arguments[3]?arguments[3]:(0,n.yk)();const l=r.filter((e=>{let{key:r,value:o}=e;return!t.some((e=>{let{key:t,value:n}=e;return t===r&&o===n}))})),d=t.filter((e=>{let{key:t}=e;return!r.some((e=>{let{key:r}=e;return t===r}))})),u=Promise.all([...l.map((e=>{let{key:t,value:r}=e;return o.x.setModelVersionTag({name:a,version:i,key:t,value:r})})),...d.map((e=>{let{key:t}=e;return o.x.deleteModelVersionTag({name:a,version:i,key:t})}))]);return{type:I,payload:u,meta:{id:s,name:a,version:i,existingTags:t,newTags:r}}}},65871:function(e,t,r){"use strict";r.d(t,{Ay:function(){return M},U_:function(){return b},Af:function(){return v},SE:function(){return h},hs:function(){return E},Tr:function(){return y},ZG:function(){return w}});var o=r(69708),n=r(24478),a=r(9133),i=r.n(a),s=r(7204),l=r(99102),d=r.n(l),u=r(28379),c=r(73876);const m=d().Record({key:void 0,value:void 0},"RegisteredModelTag");m.fromJsReviver=function(e,t){return d().fromJS(t)};const g=c.L.extend(m,{getKey(){return void 0!==this.key?this.key:""},getValue(){return void 0!==this.value?this.value:""}});m.fromJs=function(e){const t=u.J.fromJs(e,m.fromJsReviver);return new g(t)};const f=d().Record({key:void 0,value:void 0},"ModelVersionTag");f.fromJsReviver=function(e,t){return d().fromJS(t)};const p=c.L.extend(f,{getKey(){return void 0!==this.key?this.key:""},getValue(){return void 0!==this.value?this.value:""}});f.fromJs=function(e){const t=u.J.fromJs(e,f.fromJsReviver);return new p(t)};const h=(e,t,r)=>{const o={inputs:[],outputs:[]};if(e.entities.mlModelArtifactByModelVersion[t]&&e.entities.mlModelArtifactByModelVersion[t][r]){const a=e.entities.mlModelArtifactByModelVersion[t][r];if(a.signature){if(a.signature.inputs)try{o.inputs=JSON.parse(a.signature.inputs.replace(/(\r\n|\n|\r)/gm,""))}catch(n){console.error(n)}if(a.signature.outputs)try{o.outputs=JSON.parse(a.signature.outputs.replace(/(\r\n|\n|\r)/gm,""))}catch(n){console.error(n)}}}return o},v=(e,t,r)=>{const o=e.entities.modelVersionsByModel[t];return o&&o[r]},y=(e,t)=>{const r=e.entities.modelVersionsByModel[t];return r&&Object.values(r)},b=e=>i().flatMap(Object.values(e.entities.modelVersionsByModel),(e=>Object.values(e))),w=(e,t)=>t.entities.tagsByRegisteredModel[e]||{},E=(e,t,r)=>r.entities.tagsByModelVersion[e]&&r.entities.tagsByModelVersion[e][t]||{},S={modelByName:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;switch(t.type){case(0,s.ec)(o.tM):{const e=t.payload[(0,n.zL)("registered_models")],r={};return e&&e.forEach((e=>r[e.name]=e)),{...r}}case(0,s.nS)(o.tM):return{};case(0,s.ec)(o.mt):{const r=t.payload[(0,n.zL)("registered_model")];r.aliases||=[];const{modelName:o}=t.meta,a={...e[o],...r};return i().isEqual(a,e[o])?e:{...e,[o]:a}}case(0,s.ec)(o.fv):{const{model:r}=t.meta;return i().omit(e,r.name)}default:return e}},modelVersionsByModel:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;switch(t.type){case(0,s.ec)(o.qX):{const r=t.payload[(0,n.zL)("model_version")],{modelName:o}=t.meta,a={...e[o],[r.version]:r};return i().isEqual(e[o],a)?e:{...e,[o]:a}}case(0,s.ec)(o.J2):{const r=t.payload[(0,n.zL)("model_versions")];if(!r)return e;const o=r.reduce(((e,t)=>{const{name:r,version:o}=t;return{...e,[r]:{...e[r],[o]:t}}}),{...e});return i().isEqual(e,o)?e:o}case(0,s.ec)(o.JH):{const{modelName:r,version:o}=t.meta,n=e[r];return{...e,[r]:i().omit(n,o)}}case(0,s.ec)(o.fv):{const{model:r}=t.meta;return i().omit(e,r.name)}default:return e}},tagsByRegisteredModel:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;switch(t.type){case(0,s.ec)(o.mt):{const r=t.payload[(0,n.zL)("registered_model")],{modelName:o}=t.meta;if(r.tags&&r.tags.length>0){const{tags:t}=r,n={...e};return n[o]=(e=>{const t={};return e.forEach((e=>t[e.key]=m.fromJs(e))),t})(t),i().isEqual(n,e)?e:n}return e}case(0,s.ec)(o.J8):{const{modelName:r,key:o,value:n}=t.meta,a=m.fromJs({key:o,value:n});let i={...e};const s=i[r]||{};return i={...i,[r]:{...s,[a.key]:a}},i}case(0,s.ec)(o.Ue):{const{modelName:r,key:o}=t.meta,n=e[r]||{},a=i().omit(n,o);return 0===Object.keys(a).length?i().omit({...e},r):{...e,[r]:a}}default:return e}},tagsByModelVersion:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;switch(t.type){case(0,s.ec)(o.qX):{const r=t.payload[(0,n.zL)("model_version")],{modelName:o,version:a}=t.meta;if(r.tags&&r.tags.length>0){const{tags:t}=r,n={...e};return n[o]=n[o]||{},n[o][a]=(e=>{const t={};return e.forEach((e=>t[e.key]=f.fromJs(e))),t})(t),n}return e}case(0,s.ec)(o.hU):{const{modelName:r,version:o,key:n,value:a}=t.meta,i=f.fromJs({key:n,value:a}),s={...e};s[r]=s[r]||{};const l=s[r][o]||{};return{...s,[r]:{[o]:{...l,[i.key]:i}}}}case(0,s.ec)(o.g1):{const{modelName:r,version:o,key:n}=t.meta,a=e[r]&&e[r][o]||{},s={...e},l=i().omit(a,n);return 0===Object.keys(l).length?(s[r]=i().omit({...e[r]},o),i().isEmpty(s[r])?i().omit({...e},r):s):{...s,[r]:{[o]:l}}}default:return e}},mlModelArtifactByModelVersion:function(){let e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=arguments.length>1?arguments[1]:void 0;if(t.type===(0,s.ec)(o.gx)){const r=t.payload,{modelName:o,version:n}=t.meta;return{...e,[o]:{...e[o],[n]:r}}}return e}};var M=S},22843:function(e,t,r){"use strict";r.d(t,{o:function(){return a}});var o=r(48624),n=r(69869);const a=()=>[{path:n.K1.modelListPage,element:(0,o.eK)((()=>Promise.all([r.e(618),r.e(9620),r.e(2730)]).then(r.bind(r,60349)))),pageId:"mlflow.model-registry.model-list"},{path:n.K1.modelPage,element:(0,o.eK)((()=>Promise.all([r.e(1928),r.e(7504),r.e(5826),r.e(618),r.e(9082),r.e(9620),r.e(4020),r.e(1482)]).then(r.bind(r,29243)))),pageId:"mlflow.model-registry.model-page"},{path:n.K1.modelSubpage,element:(0,o.eK)((()=>Promise.all([r.e(1928),r.e(7504),r.e(5826),r.e(618),r.e(9082),r.e(9620),r.e(4020),r.e(1482)]).then(r.bind(r,29243)))),pageId:"mlflow.model-registry.model-page.subpage"},{path:n.K1.modelSubpageRouteWithName,element:(0,o.eK)((()=>Promise.all([r.e(1928),r.e(7504),r.e(5826),r.e(618),r.e(9082),r.e(9620),r.e(4020),r.e(1482)]).then(r.bind(r,29243)))),pageId:"mlflow.model-registry.model-page.subpage.section"},{path:n.K1.modelVersionPage,element:(0,o.eK)((()=>Promise.all([r.e(1928),r.e(7504),r.e(5826),r.e(9082),r.e(9620),r.e(4020),r.e(6534)]).then(r.bind(r,847)))),pageId:"mlflow.model-registry.model-version-page"},{path:n.K1.compareModelVersionsPage,element:(0,o.eK)((()=>Promise.all([r.e(9194),r.e(6343)]).then(r.bind(r,71265)))),pageId:"mlflow.model-registry.compare-model-versions"}]},69869:function(e,t,r){"use strict";r.d(t,{K1:function(){return n},fM:function(){return a}});var o=r(48624);class n{static get modelListPage(){return(0,o.Oz)("/models")}static get modelPage(){return(0,o.Oz)("/models/:modelName")}static get modelSubpage(){return(0,o.Oz)("/models/:modelName/:subpage")}static get modelSubpageRouteWithName(){return(0,o.Oz)("/models/:modelName/:subpage/:name")}static get modelVersionPage(){return(0,o.Oz)("/models/:modelName/versions/:version")}static get compareModelVersionsPage(){return(0,o.Oz)("/compare-model-versions")}static get createModel(){return(0,o.Oz)("/createModel")}}class a{static get modelListPageRoute(){return n.modelListPage}static getModelPageRoute(e){return(0,o.tW)(n.modelPage,{modelName:encodeURIComponent(e)})}static getModelPageServingRoute(e){return(0,o.tW)(n.modelSubpage,{modelName:encodeURIComponent(e),subpage:i.SERVING})}static getModelVersionPageRoute(e,t){return(0,o.tW)(n.modelVersionPage,{modelName:encodeURIComponent(e),version:t})}static getCompareModelVersionsPageRoute(e,t){return[(0,o.tW)(n.compareModelVersionsPage),`?name=${JSON.stringify(encodeURIComponent(e))}&runs=${JSON.stringify(t,((e,t)=>void 0===t?null:t))}`].join("")}}const i=Object.freeze({DETAILS:"details",SERVING:"serving"})},46795:function(e,t,r){"use strict";r.d(t,{x:function(){return n}});var o=r(53962);class n{}n.createRegisteredModel=e=>(0,o._t)({relativeUrl:"ajax-api/2.0/mlflow/registered-models/create",data:e}),n.listRegisteredModels=e=>(0,o.I2)({url:"ajax-api/2.0/mlflow/registered-models/list",data:e}),n.searchRegisteredModels=e=>(0,o.I2)({url:"ajax-api/2.0/mlflow/registered-models/search",data:e}),n.updateRegisteredModel=e=>(0,o.Ar)({relativeUrl:"ajax-api/2.0/mlflow/registered-models/update",data:e}),n.deleteRegisteredModel=e=>(0,o.ig)({relativeUrl:"ajax-api/2.0/mlflow/registered-models/delete",data:e}),n.setRegisteredModelTag=e=>(0,o.B2)({relativeUrl:"ajax-api/2.0/mlflow/registered-models/set-tag",data:e}),n.deleteRegisteredModelTag=e=>(0,o.ig)({relativeUrl:"ajax-api/2.0/mlflow/registered-models/delete-tag",data:e}),n.createModelVersion=e=>(0,o._t)({relativeUrl:"ajax-api/2.0/mlflow/model-versions/create",data:e}),n.searchModelVersions=e=>(0,o.Tt)({relativeUrl:"ajax-api/2.0/mlflow/model-versions/search",data:e}),n.updateModelVersion=e=>(0,o.pb)({relativeUrl:"ajax-api/2.0/mlflow/model-versions/update",data:e}),n.transitionModelVersionStage=e=>(0,o.B2)({relativeUrl:"ajax-api/2.0/mlflow/model-versions/transition-stage",data:e}),n.deleteModelVersion=e=>(0,o.ig)({relativeUrl:"ajax-api/2.0/mlflow/model-versions/delete",data:e}),n.getRegisteredModel=e=>(0,o.Tt)({relativeUrl:"ajax-api/2.0/mlflow/registered-models/get",data:e}),n.getModelVersion=e=>(0,o.Tt)({relativeUrl:"ajax-api/2.0/mlflow/model-versions/get",data:e}),n.setModelVersionTag=e=>(0,o.B2)({relativeUrl:"ajax-api/2.0/mlflow/model-versions/set-tag",data:e}),n.deleteModelVersionTag=e=>(0,o.ig)({relativeUrl:"ajax-api/2.0/mlflow/model-versions/delete-tag",data:e}),n.setModelVersionAlias=e=>(0,o.B2)({relativeUrl:"ajax-api/2.0/mlflow/registered-models/alias",data:e}),n.deleteModelVersionAlias=e=>(0,o.ig)({relativeUrl:"ajax-api/2.0/mlflow/registered-models/alias",data:e})},24478:function(e,t,r){"use strict";r.d(t,{vV:function(){return l},zL:function(){return s}});var o=r(89555),n=(r(31014),r(68254)),a=r(82589),i=r(50111);const s=e=>`${e}`;function l(){const{theme:e}=(0,n.u)();return(0,i.Y)(a.C1y,{css:(0,o.AH)({color:e.colors.textValidationSuccess},"")})}},43412:function(e,t,r){"use strict";r.d(t,{q:function(){return o}});const o=new(r(2024).E)({defaultOptions:{queries:{retry:!1,refetchOnWindowFocus:!1,refetchOnMount:!1,staleTime:3e5}}})},48330:function(e,t,r){"use strict";var o=r(73874),n=r(31692),a=r(70355),i=r(9101);const s=window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__||o.Zz,l=(0,o.y$)(i.d$,{},s((0,o.Tw)(a.A,(0,n.Ay)())));t.A=l},51804:function(e){function t(e){return Promise.resolve().then((function(){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}))}t.keys=function(){return[]},t.resolve=t,t.id=51804,e.exports=t}},t={};function r(o){var n=t[o];if(void 0!==n)return n.exports;var a=t[o]={id:o,loaded:!1,exports:{}};return e[o].call(a.exports,a,a.exports,r),a.loaded=!0,a.exports}r.m=e,r.amdD=function(){throw new Error("define cannot be used indirect")},r.amdO={},function(){var e=[];r.O=function(t,o,n,a){if(!o){var i=1/0;for(u=0;u<e.length;u++){o=e[u][0],n=e[u][1],a=e[u][2];for(var s=!0,l=0;l<o.length;l++)(!1&a||i>=a)&&Object.keys(r.O).every((function(e){return r.O[e](o[l])}))?o.splice(l--,1):(s=!1,a<i&&(i=a));if(s){e.splice(u--,1);var d=n();void 0!==d&&(t=d)}}return t}a=a||0;for(var u=e.length;u>0&&e[u-1][2]>a;u--)e[u]=e[u-1];e[u]=[o,n,a]}}(),r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,{a:t}),t},function(){var e,t=Object.getPrototypeOf?function(e){return Object.getPrototypeOf(e)}:function(e){return e.__proto__};r.t=function(o,n){if(1&n&&(o=this(o)),8&n)return o;if("object"===typeof o&&o){if(4&n&&o.__esModule)return o;if(16&n&&"function"===typeof o.then)return o}var a=Object.create(null);r.r(a);var i={};e=e||[null,t({}),t([]),t(t)];for(var s=2&n&&o;"object"==typeof s&&!~e.indexOf(s);s=t(s))Object.getOwnPropertyNames(s).forEach((function(e){i[e]=function(){return o[e]}}));return i.default=function(){return o},r.d(a,i),a}}(),r.d=function(e,t){for(var o in t)r.o(t,o)&&!r.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:t[o]})},r.f={},r.e=function(e){return Promise.all(Object.keys(r.f).reduce((function(t,o){return r.f[o](e,t),t}),[]))},r.u=function(e){return"static/js/"+e+"."+{9:"f4492795",21:"aac92802",110:"9059f3b8",243:"5a83bbca",359:"08960b84",491:"5dc8ed40",492:"9262f038",618:"06051134",725:"6b15a14a",775:"660a5deb",813:"065a87e5",819:"2056f122",847:"33ceed50",944:"55948859",1e3:"e5ed264b",1012:"ac98ab59",1142:"872d0010",1167:"9a6da14c",1248:"60890b4f",1262:"83dc7673",1273:"56da3e13",1303:"7d19305c",1351:"45076ff3",1357:"02c46a02",1470:"c51d60c6",1482:"23b74f50",1500:"19799d8d",1648:"d3b9edc7",1860:"7d96e3f9",1909:"5b1d9ff4",1928:"44245110",1933:"deba26ca",2103:"0ca12071",2258:"b3b8fab4",2289:"9ad51e87",2346:"ed99ca72",2386:"0a660834",2402:"465048f9",2647:"65092bab",2730:"b38dd6f3",2746:"ef752da4",2779:"580d4491",2799:"fe5993b2",2844:"9708db79",2901:"ee0c606b",2932:"7cc0689b",2956:"a393c8cc",2972:"679bed05",2985:"7e51cdfa",3170:"a22f966a",3307:"f6fb258c",3334:"2d6704df",3387:"bb8edad3",3448:"438e6579",3460:"735eea87",3563:"cc828e19",3608:"403b4b79",3775:"5230b157",3835:"d9946ff9",3964:"874f0297",3968:"275cbc3d",3999:"765cbd82",4020:"4452c046",4180:"50cea095",4221:"b0bba3f5",4250:"5bb49278",4297:"15777d8f",4748:"566f435a",4762:"928e8a90",4804:"26b50dd4",4850:"62390a45",4862:"a0ccb221",4943:"6d345fd3",4950:"bc182e62",5042:"d4f0c65a",5170:"0065e96f",5223:"3224f019",5229:"7dd42316",5486:"21cff711",5526:"7b368956",5605:"1ee4d87b",5682:"40b42d8b",5794:"9433d867",5826:"38a56e8c",5895:"e26742f1",5919:"edd4a5cf",6058:"74162bf9",6121:"f1fd2567",6335:"9fca442d",6336:"e05e1154",6343:"2bcd28ff",6363:"a319b8f2",6478:"344abf25",6534:"ec7e149b",6715:"55a5c19c",6756:"e6cb993c",6762:"acfde9fd",6846:"67103d0e",6861:"34cf0198",6899:"0eaf36a8",6933:"8b564944",7076:"4182f63a",7186:"42ad86d5",7266:"3575539d",7270:"0a1e84fc",7367:"7120474f",7504:"ef223844",7603:"ee049fe3",7670:"2835b49a",7721:"7390b3cc",7731:"5796cced",7832:"7976a3e4",7844:"72cc2e81",7972:"085079d4",8017:"a9e7dc5a",8262:"04bc17d1",8300:"75adcc4f",8336:"b1d3e764",8365:"26cf64ea",8398:"8bca8e0e",8486:"8ec852a7",8497:"19378265",8541:"4c55c9f4",8690:"e305a804",8712:"a9445fe6",8823:"baf9bffd",8867:"767462b7",8953:"c0f88dea",8960:"357cb1eb",9082:"37c40520",9168:"027bf2fd",9194:"9c5cc548",9244:"026f4aee",9369:"7d1a0a1d",9427:"7c8442e7",9531:"3ce05781",9547:"92fac952",9620:"b6e973a7",9645:"6fddfa65",9682:"41b6b807",9720:"19d5ae76",9780:"02a27630",9808:"d0ca9674",9886:"2940b53a"}[e]+".chunk.js"},r.miniCssF=function(e){return"static/css/"+e+"."+{1482:"3b7bf531",2730:"3f8937ff",4762:"9b7b71f7",4950:"487ecc8b",5170:"2574ce9d",6121:"4d541986",6343:"dd6979f2",6534:"433c213f",7367:"dd6979f2",8690:"05d081e5",9531:"d0910d3c",9780:"363e4943"}[e]+".chunk.css"},r.g=function(){if("object"===typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"===typeof window)return window}}(),r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},function(){var e={},t="@mlflow/mlflow:";r.l=function(o,n,a,i){if(e[o])e[o].push(n);else{var s,l;if(void 0!==a)for(var d=document.getElementsByTagName("script"),u=0;u<d.length;u++){var c=d[u];if(c.getAttribute("src")==o||c.getAttribute("data-webpack")==t+a){s=c;break}}s||(l=!0,(s=document.createElement("script")).charset="utf-8",s.timeout=120,r.nc&&s.setAttribute("nonce",r.nc),s.setAttribute("data-webpack",t+a),s.src=o),e[o]=[n];var m=function(t,r){s.onerror=s.onload=null,clearTimeout(g);var n=e[o];if(delete e[o],s.parentNode&&s.parentNode.removeChild(s),n&&n.forEach((function(e){return e(r)})),t)return t(r)},g=setTimeout(m.bind(null,void 0,{type:"timeout",target:s}),12e4);s.onerror=m.bind(null,s.onerror),s.onload=m.bind(null,s.onload),l&&document.head.appendChild(s)}}}(),r.r=function(e){"undefined"!==typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.nmd=function(e){return e.paths=[],e.children||(e.children=[]),e},r.p="/",function(){if("undefined"!==typeof document){var e=function(e){return new Promise((function(t,o){var n=r.miniCssF(e),a=r.p+n;if(function(e,t){for(var r=document.getElementsByTagName("link"),o=0;o<r.length;o++){var n=(i=r[o]).getAttribute("data-href")||i.getAttribute("href");if("stylesheet"===i.rel&&(n===e||n===t))return i}var a=document.getElementsByTagName("style");for(o=0;o<a.length;o++){var i;if((n=(i=a[o]).getAttribute("data-href"))===e||n===t)return i}}(n,a))return t();!function(e,t,o,n,a){var i=document.createElement("link");i.rel="stylesheet",i.type="text/css",r.nc&&(i.nonce=r.nc),i.onerror=i.onload=function(r){if(i.onerror=i.onload=null,"load"===r.type)n();else{var o=r&&r.type,s=r&&r.target&&r.target.href||t,l=new Error("Loading CSS chunk "+e+" failed.\n("+o+": "+s+")");l.name="ChunkLoadError",l.code="CSS_CHUNK_LOAD_FAILED",l.type=o,l.request=s,i.parentNode&&i.parentNode.removeChild(i),a(l)}},i.href=t,o?o.parentNode.insertBefore(i,o.nextSibling):document.head.appendChild(i)}(e,a,null,t,o)}))},t={7282:0};r.f.miniCss=function(r,o){t[r]?o.push(t[r]):0!==t[r]&&{1482:1,2730:1,4762:1,4950:1,5170:1,6121:1,6343:1,6534:1,7367:1,8690:1,9531:1,9780:1}[r]&&o.push(t[r]=e(r).then((function(){t[r]=0}),(function(e){throw delete t[r],e})))}}}(),function(){var e={7282:0,7246:0,6920:0,318:0,2491:0};r.f.j=function(t,o){var n=r.o(e,t)?e[t]:void 0;if(0!==n)if(n)o.push(n[2]);else if(/^(2491|318|6121|6920|7246)$/.test(t))e[t]=0;else{var a=new Promise((function(r,o){n=e[t]=[r,o]}));o.push(n[2]=a);var i=r.p+r.u(t),s=new Error;r.l(i,(function(o){if(r.o(e,t)&&(0!==(n=e[t])&&(e[t]=void 0),n)){var a=o&&("load"===o.type?"missing":o.type),i=o&&o.target&&o.target.src;s.message="Loading chunk "+t+" failed.\n("+a+": "+i+")",s.name="ChunkLoadError",s.type=a,s.request=i,n[1](s)}}),"chunk-"+t,t)}},r.O.j=function(t){return 0===e[t]};var t=function(t,o){var n,a,i=o[0],s=o[1],l=o[2],d=0;if(i.some((function(t){return 0!==e[t]}))){for(n in s)r.o(s,n)&&(r.m[n]=s[n]);if(l)var u=l(r)}for(t&&t(o);d<i.length;d++)a=i[d],r.o(e,a)&&e[a]&&e[a][0](),e[a]=0;return r.O(u)},o=self.webpackChunk_mlflow_mlflow=self.webpackChunk_mlflow_mlflow||[];o.forEach(t.bind(null,0)),o.push=t.bind(null,o.push.bind(o))}(),r.nc=void 0;var o=r.O(void 0,[3093,7246,8763,3652,9669,4578,4484,9499,936,6920,318,2589,3145,4349,6504,598,9151,4768,7948,1355,5862,9133,2323,9815,1079,9723,7248,4160,2691,8123,699,4138,5286,3817,7436,3505,3510,4596,8023,9079,5222,3325,1353,2491,1243],(function(){return r(75605)}));o=r.O(o)}();
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="346px" height="197px" viewBox="0 0 346 197" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<!-- Generator: Sketch 52 (66869) - http://www.bohemiancoding.com/sketch -->
|
|
4
|
+
<title>404_overflow</title>
|
|
5
|
+
<desc>Created with Sketch.</desc>
|
|
6
|
+
<defs>
|
|
7
|
+
<circle id="path-1" cx="57.5" cy="57.5" r="57.5"></circle>
|
|
8
|
+
<filter x="-6.1%" y="-4.3%" width="112.2%" height="112.2%" filterUnits="objectBoundingBox" id="filter-2">
|
|
9
|
+
<feOffset dx="0" dy="2" in="SourceAlpha" result="shadowOffsetOuter1"></feOffset>
|
|
10
|
+
<feMorphology radius="8" operator="erode" in="SourceAlpha" result="shadowInner"></feMorphology>
|
|
11
|
+
<feOffset dx="0" dy="2" in="shadowInner" result="shadowInner"></feOffset>
|
|
12
|
+
<feComposite in="shadowOffsetOuter1" in2="shadowInner" operator="out" result="shadowOffsetOuter1"></feComposite>
|
|
13
|
+
<feGaussianBlur stdDeviation="2" in="shadowOffsetOuter1" result="shadowBlurOuter1"></feGaussianBlur>
|
|
14
|
+
<feColorMatrix values="0 0 0 0 0.031372549 0 0 0 0 0.129411765 0 0 0 0 0.258823529 0 0 0 0.24 0" type="matrix" in="shadowBlurOuter1"></feColorMatrix>
|
|
15
|
+
</filter>
|
|
16
|
+
</defs>
|
|
17
|
+
<g id="404" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
18
|
+
<g transform="translate(-547.000000, -251.000000)" id="404_overflow">
|
|
19
|
+
<g transform="translate(547.000000, 253.000000)">
|
|
20
|
+
<path d="M50.24,76.44 L50.24,20.92 L49.92,20.92 L12.16,76.44 L50.24,76.44 Z M63.04,76.44 L78.4,76.44 L78.4,88.44 L63.04,88.44 L63.04,115 L50.24,115 L50.24,88.44 L0.48,88.44 L0.48,75.32 L52.16,1.56 L63.04,1.56 L63.04,76.44 Z M317.12,76.44 L317.12,20.92 L316.8,20.92 L279.04,76.44 L317.12,76.44 Z M329.92,76.44 L345.28,76.44 L345.28,88.44 L329.92,88.44 L329.92,115 L317.12,115 L317.12,88.44 L267.36,88.44 L267.36,75.32 L319.04,1.56 L329.92,1.56 L329.92,76.44 Z" id="4-4" fill="#082142"></path>
|
|
21
|
+
<g id="Group" transform="translate(117.000000, 0.000000)">
|
|
22
|
+
<path d="M0.0801745244,57 C4.84697407,61.6666667 9.61377361,64 14.3805732,64 C19.1473727,64 23.9141722,61.6666667 28.6809718,57 C33.4477713,61.6666667 38.2145709,64 42.9813704,64 C47.74817,64 52.5149695,61.6666667 57.281769,57 C62.0485686,61.6666667 66.8153681,64 71.5821677,64 C76.3489672,64 81.1157668,61.6666667 85.8825663,57 C90.6493658,61.6666667 95.4161654,64 100.182965,64 C104.949764,64 109.716564,61.6666667 114.483364,57 L114.483364,168.52833 C114.483364,172.127473 111.565682,175.045154 107.96654,175.045154 L107.96654,175.045154 C104.367397,175.045154 101.449716,172.127473 101.449716,168.52833 L101.449716,133.219241 C101.449716,129.796312 98.6748836,127.02148 95.2519544,127.02148 L95.2519544,127.02148 C91.8290251,127.02148 89.0541927,129.796312 89.0541927,133.219241 L89.0541927,188.76149 C89.0541927,191.673526 86.6935218,194.034196 83.7814867,194.034196 L83.7814867,194.034196 C80.8694516,194.034196 78.5087807,191.673526 78.5087807,188.76149 L78.5087807,122.676113 C78.5087807,119.337992 75.8026994,116.631911 72.464579,116.631911 L72.464579,116.631911 C69.1264586,116.631911 66.4203773,119.337992 66.4203773,122.676113 L66.4203773,136.693606 C66.4203773,140.432611 63.3893149,143.463674 59.6503099,143.463674 L59.6503099,143.463674 C55.9113048,143.463674 52.8802424,140.432611 52.8802424,136.693606 L52.8802424,120.764573 C52.8802424,117.295796 50.0682437,114.483798 46.5994674,114.483798 L46.5994674,114.483798 C43.1306912,114.483798 40.3186925,117.295796 40.3186925,120.764573 L40.3186925,144.581254 C40.3186925,147.672796 37.8125029,150.178985 34.7209615,150.178985 L34.7209615,150.178985 C31.62942,150.178985 29.1232304,147.672796 29.1232304,144.581254 L29.1232304,117.793016 C29.1232304,114.135428 26.15817,111.170368 22.5005825,111.170368 L19.7347109,111.170368 C17.6046722,111.170368 15.8779346,112.897105 15.8779346,115.027144 L15.8779346,115.027144 C15.8779346,117.157183 14.151197,118.88392 12.0211583,118.88392 L11.3556643,118.88392 C8.78242431,118.88392 6.62195706,116.946393 6.34280382,114.388339 L0.0801745244,57 Z" id="Path-3" fill="#43C8EC"></path>
|
|
23
|
+
<rect id="Rectangle" fill="#43C8EC" x="7" y="123" width="10" height="20" rx="4.5"></rect>
|
|
24
|
+
<g id="Oval">
|
|
25
|
+
<use fill="black" fill-opacity="1" filter="url(#filter-2)" xlink:href="#path-1"></use>
|
|
26
|
+
<circle stroke="#082142" stroke-width="8" stroke-linejoin="square" cx="57.5" cy="57.5" r="53.5"></circle>
|
|
27
|
+
</g>
|
|
28
|
+
</g>
|
|
29
|
+
</g>
|
|
30
|
+
</g>
|
|
31
|
+
</g>
|
|
32
|
+
</svg>
|
|
Binary file
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg width="18" height="16" viewBox="0 0 18 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M1 0.813599V15.1865H17" stroke="#A3AEB8" stroke-linecap="round"/>
|
|
3
|
+
<rect x="3.16943" y="10.5763" width="2.16949" height="3.25424" fill="#338ECC"/>
|
|
4
|
+
<rect x="6.42371" y="5.15259" width="2.16949" height="8.67797" fill="#338ECC"/>
|
|
5
|
+
<rect x="9.67798" y="8.40686" width="2.16949" height="5.42373" fill="#338ECC"/>
|
|
6
|
+
<rect x="12.9323" y="1.89832" width="2.16949" height="11.9322" fill="#338ECC"/>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M1 1V17H17" stroke="#A3AEB8" stroke-linecap="round"/>
|
|
3
|
+
<path d="M12.9749 4.94148C12.9188 4.71702 12.221 4.73284 12.0618 4.71515C11.1779 4.61693 10.2817 4.66052 9.39271 4.66052C8.11919 4.66052 7.15648 4.97961 6.24753 5.90922C5.86197 6.30355 5.5235 6.77684 5.23295 7.24378C4.99434 7.62726 4.65544 7.93479 4.40569 8.31299C3.93777 9.02154 3.56281 9.80723 3.56281 10.6699C3.56281 11.1806 3.37479 11.598 3.76962 12.0669C4.19449 12.5714 4.6863 12.9507 5.27978 13.2649C5.88594 13.5858 6.42202 13.8619 7.13723 13.8619C7.74338 13.8619 8.34952 13.8619 8.95567 13.8619C9.45735 13.8619 9.96042 13.8731 10.4619 13.8619C11.1412 13.8468 11.9484 13.1895 12.413 12.7381C13.581 11.6035 14.2393 9.88016 14.2393 8.24665C14.2393 7.69923 14.3797 7.17063 14.3797 6.62723C14.3797 6.40084 14.4779 5.87696 14.2744 5.71411C13.9268 5.43606 13.5785 5.13789 13.1857 4.94148" stroke="#338ECC" stroke-linecap="round"/>
|
|
4
|
+
<path d="M11.9213 6.83789C11.2761 6.83789 10.6309 6.83789 9.98577 6.83789C9.19776 6.83789 8.80182 7.44144 8.2844 7.97734C7.58163 8.70521 7.28544 9.67306 7.28544 10.666C7.28544 10.9641 7.22004 11.177 7.46104 11.3645C7.6831 11.5372 8.10719 11.6142 8.37806 11.6142C9.07316 11.6142 9.91042 11.5583 10.4462 11.0523C10.9277 10.5975 11.473 10.3701 11.8159 9.75284C12.045 9.34042 12.2022 8.86324 12.2022 8.38317C12.2022 8.14903 12.2022 7.9149 12.2022 7.68077C12.2022 7.4241 12.0208 7.38817 11.9213 7.18909" stroke="#338ECC" stroke-linecap="round"/>
|
|
5
|
+
</svg>
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect y="2" width="4" height="1" fill="#338ECC"/>
|
|
3
|
+
<rect x="5" y="2" width="4" height="1" fill="#338ECC"/>
|
|
4
|
+
<rect x="10" y="2" width="4" height="1" fill="#338ECC"/>
|
|
5
|
+
<rect y="4" width="4" height="1" fill="#338ECC"/>
|
|
6
|
+
<rect x="5" y="4" width="4" height="1" fill="#338ECC"/>
|
|
7
|
+
<rect x="10" y="4" width="4" height="1" fill="#338ECC"/>
|
|
8
|
+
<rect y="6" width="4" height="1" fill="#D9D9D9"/>
|
|
9
|
+
<rect x="5" y="6" width="4" height="1" fill="#D9D9D9"/>
|
|
10
|
+
<rect x="10" y="6" width="4" height="1" fill="#D9D9D9"/>
|
|
11
|
+
<rect y="8" width="4" height="1" fill="#D9D9D9"/>
|
|
12
|
+
<rect x="5" y="8" width="4" height="1" fill="#D9D9D9"/>
|
|
13
|
+
<rect x="10" y="8" width="4" height="1" fill="#D9D9D9"/>
|
|
14
|
+
<rect y="10" width="4" height="1" fill="#D9D9D9"/>
|
|
15
|
+
<rect x="5" y="10" width="4" height="1" fill="#D9D9D9"/>
|
|
16
|
+
<rect x="10" y="10" width="4" height="1" fill="#D9D9D9"/>
|
|
17
|
+
<rect y="12" width="4" height="1" fill="#D9D9D9"/>
|
|
18
|
+
<rect x="5" y="12" width="4" height="1" fill="#D9D9D9"/>
|
|
19
|
+
<rect x="10" y="12" width="4" height="1" fill="#D9D9D9"/>
|
|
20
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<rect x="0.5" y="0.5" width="15" height="15" stroke="#C4C4C4"/>
|
|
3
|
+
<line x1="8.5" y1="0.800049" x2="8.5" y2="16" stroke="#C4C4C4"/>
|
|
4
|
+
<line x1="16" y1="5.69995" x2="-2.63656e-08" y2="5.69995" stroke="#C4C4C4"/>
|
|
5
|
+
<line x1="16" y1="10.9" x2="-2.63656e-08" y2="10.9" stroke="#C4C4C4"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
<svg width="22" height="22" viewBox="0 0 22 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M4.38977 15.717L8.79655 10.8113L12.5254 14.9622L19.644 7.03772" stroke="#338ECC" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
3
|
+
<path d="M1 1V21H21" stroke="#A3AEB8" stroke-linecap="round"/>
|
|
4
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg width="18" height="18" viewBox="0 0 18 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M1 1V17H17" stroke="#A3AEB8" stroke-linecap="round"/>
|
|
3
|
+
<path d="M4.21875 3.58289C4.55663 3.58289 4.88067 3.68935 5.21469 3.73008C5.6474 3.78285 6.02137 3.96513 6.37191 4.21552C6.76902 4.49917 7.0271 4.74589 7.24101 5.18954C7.44337 5.60925 7.59378 6.06989 7.72958 6.51432C7.86002 6.94121 8.09708 7.33726 8.19153 7.77803C8.25347 8.0671 8.34514 8.32427 8.44678 8.60015C8.58028 8.96252 8.80086 9.27915 8.96667 9.62583C9.15145 10.0122 9.216 10.4461 9.34876 10.8551C9.57831 11.5623 9.91132 12.4763 10.7205 12.6731C11.4284 12.8453 12.1459 12.8845 12.8705 12.8845C13.0981 12.8845 13.3979 12.898 13.5831 12.7499C13.6402 12.7042 13.7451 12.6907 13.8164 12.6591C13.8752 12.6329 14.0919 12.5871 14.1123 12.5463" stroke="#CCE3F2" stroke-linecap="round"/>
|
|
4
|
+
<path d="M4.16162 12.9805C4.32512 12.9805 4.4895 12.9859 4.65284 12.9805C4.84076 12.9742 5.0468 12.7952 5.2099 12.707C5.62236 12.4841 5.99426 12.0648 6.24299 11.6739C6.49491 11.2781 6.8776 10.9871 7.0887 10.5649C7.27767 10.187 7.50992 9.80749 7.73691 9.45078C7.93911 9.13304 8.10211 8.77722 8.28637 8.44554C8.43088 8.18544 8.45 7.88672 8.60542 7.62768C8.94898 7.05509 9.16215 6.418 9.45873 5.82484C9.72614 5.29001 9.96898 4.82426 10.4159 4.42207C10.5753 4.27853 10.8984 4.21824 11.0995 4.14861C11.3303 4.06873 11.579 4.02714 11.8136 3.93592C12.0394 3.84807 12.2521 3.84383 12.4795 3.77386C12.6993 3.70623 12.9319 3.63713 13.1632 3.63713C13.5192 3.63713 13.9089 3.59155 14.2798 3.59155" stroke="#CCE3F2" stroke-linecap="round"/>
|
|
5
|
+
<path d="M3.79248 2.74207V13.8225" stroke="#338ECC" stroke-linecap="round"/>
|
|
6
|
+
<path d="M14.873 3.04419V13.7217" stroke="#338ECC" stroke-linecap="round"/>
|
|
7
|
+
</svg>
|