rapidfireai 0.0.1__tar.gz → 0.9.10__tar.gz
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-0.9.10/MANIFEST.in +52 -0
- rapidfireai-0.9.10/PKG-INFO +247 -0
- rapidfireai-0.9.10/README.md +190 -0
- rapidfireai-0.9.10/pyproject.toml +135 -0
- rapidfireai-0.9.10/rapidfireai/__init__.py +17 -0
- rapidfireai-0.9.10/rapidfireai/automl/__init__.py +20 -0
- rapidfireai-0.9.10/rapidfireai/automl/base.py +48 -0
- rapidfireai-0.9.10/rapidfireai/automl/datatypes.py +42 -0
- rapidfireai-0.9.10/rapidfireai/automl/grid_search.py +125 -0
- rapidfireai-0.9.10/rapidfireai/automl/model_config.py +102 -0
- rapidfireai-0.9.10/rapidfireai/automl/random_search.py +145 -0
- rapidfireai-0.9.10/rapidfireai/backend/__init__.py +0 -0
- rapidfireai-0.9.10/rapidfireai/backend/chunks.py +63 -0
- rapidfireai-0.9.10/rapidfireai/backend/controller.py +637 -0
- rapidfireai-0.9.10/rapidfireai/backend/scheduler.py +137 -0
- rapidfireai-0.9.10/rapidfireai/backend/worker.py +272 -0
- rapidfireai-0.9.10/rapidfireai/cli.py +380 -0
- rapidfireai-0.9.10/rapidfireai/db/__init__.py +0 -0
- rapidfireai-0.9.10/rapidfireai/db/db_interface.py +135 -0
- rapidfireai-0.9.10/rapidfireai/db/rf_db.py +694 -0
- rapidfireai-0.9.10/rapidfireai/db/tables.sql +64 -0
- rapidfireai-0.9.10/rapidfireai/dispatcher/dispatcher.py +391 -0
- rapidfireai-0.9.10/rapidfireai/dispatcher/gunicorn.conf.py +25 -0
- rapidfireai-0.9.10/rapidfireai/experiment.py +168 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/asset-manifest.json +276 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/favicon.ico +0 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/index.html +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/manifest.json +15 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/pdf.worker.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/report.html +39 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/css/1482.3b7bf531.chunk.css +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/css/2730.3f8937ff.chunk.css +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/css/318.0def90a7.css +7 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/css/4762.9b7b71f7.chunk.css +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/css/4950.487ecc8b.chunk.css +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/css/5170.2574ce9d.chunk.css +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/css/6121.4d541986.chunk.css +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/css/6343.dd6979f2.chunk.css +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/css/6534.433c213f.chunk.css +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/css/6920.ffac4b2a.css +2 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/css/7246.bf2f0c87.css +9 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/css/7367.dd6979f2.chunk.css +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/css/8690.05d081e5.chunk.css +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/css/9531.d0910d3c.chunk.css +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/css/9780.363e4943.chunk.css +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/css/main~d91a9049.c0be472c.css +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/1000.e5ed264b.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/1012.ac98ab59.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/1079.6c13ac0d.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/110.9059f3b8.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/1142.872d0010.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/1167.9a6da14c.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/1248.60890b4f.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/1262.83dc7673.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/1273.56da3e13.chunk.js +2 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/1273.56da3e13.chunk.js.LICENSE.txt +9 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/1303.7d19305c.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/1351.45076ff3.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/1355.b896a592.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/1357.02c46a02.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/1470.c51d60c6.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/1482.23b74f50.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/1500.19799d8d.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/1648.d3b9edc7.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/1860.7d96e3f9.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/1909.5b1d9ff4.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/1928.44245110.chunk.js +2 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/1928.44245110.chunk.js.LICENSE.txt +11 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/1933.deba26ca.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/21.aac92802.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/2103.0ca12071.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/2258.b3b8fab4.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/2289.9ad51e87.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/2323.7dd927d7.js +2 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/2323.7dd927d7.js.LICENSE.txt +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/2346.ed99ca72.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/2386.0a660834.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/2402.465048f9.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/243.5a83bbca.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/2589.68571e16.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/2647.65092bab.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/2691.65d4a4e7.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/2730.b38dd6f3.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/2746.ef752da4.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/2779.580d4491.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/2799.fe5993b2.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/2844.9708db79.chunk.js +2 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/2844.9708db79.chunk.js.LICENSE.txt +21 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/2901.ee0c606b.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/2932.7cc0689b.chunk.js +2 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/2932.7cc0689b.chunk.js.LICENSE.txt +6 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/2956.a393c8cc.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/2972.679bed05.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/2985.7e51cdfa.chunk.js +2 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/2985.7e51cdfa.chunk.js.LICENSE.txt +51 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/3093.488df653.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/3145.66ee61b9.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/3170.a22f966a.chunk.js +2 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/3170.a22f966a.chunk.js.LICENSE.txt +21 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/3307.f6fb258c.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/3325.d5b03d65.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/3334.2d6704df.chunk.js +2 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/3334.2d6704df.chunk.js.LICENSE.txt +6 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/3387.bb8edad3.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/3448.438e6579.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/3460.735eea87.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/3505.7fd3921a.js +2 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/3505.7fd3921a.js.LICENSE.txt +9 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/3510.cd167a00.js +2 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/3510.cd167a00.js.LICENSE.txt +18 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/3563.cc828e19.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/359.08960b84.chunk.js +2 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/359.08960b84.chunk.js.LICENSE.txt +4 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/3608.403b4b79.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/3652.cb8add7f.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/3775.5230b157.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/3817.53555d18.js +2 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/3817.53555d18.js.LICENSE.txt +18 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/3835.d9946ff9.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/3964.874f0297.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/3968.275cbc3d.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/3999.765cbd82.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/4020.4452c046.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/4138.2f6f6d9f.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/4160.f424554c.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/4180.50cea095.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/4221.b0bba3f5.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/4250.5bb49278.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/4297.15777d8f.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/4349.c965f2de.js +2 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/4349.c965f2de.js.LICENSE.txt +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/4484.4cbe5e7f.js +2 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/4484.4cbe5e7f.js.LICENSE.txt +10 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/4578.a8124588.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/4596.89a97480.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/4748.566f435a.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/4762.928e8a90.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/4768.7945be63.js +2 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/4768.7945be63.js.LICENSE.txt +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/4804.26b50dd4.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/4850.62390a45.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/4862.a0ccb221.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/491.5dc8ed40.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/492.9262f038.chunk.js +2 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/492.9262f038.chunk.js.LICENSE.txt +6 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/4943.6d345fd3.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/4950.bc182e62.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/5042.d4f0c65a.chunk.js +2 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/5042.d4f0c65a.chunk.js.LICENSE.txt +6 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/5170.0065e96f.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/5222.35c74a52.js +2 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/5222.35c74a52.js.LICENSE.txt +10 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/5223.3224f019.chunk.js +2 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/5223.3224f019.chunk.js.LICENSE.txt +3 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/5229.7dd42316.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/5286.4c1ad26b.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/5486.21cff711.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/5526.7b368956.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/5605.1ee4d87b.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/5682.40b42d8b.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/5794.9433d867.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/5826.38a56e8c.chunk.js +2 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/5826.38a56e8c.chunk.js.LICENSE.txt +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/5862.50f42a0b.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/5895.e26742f1.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/5919.edd4a5cf.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/598.a0e792ae.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/6058.74162bf9.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/618.06051134.chunk.js +2 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/618.06051134.chunk.js.LICENSE.txt +21 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/6335.9fca442d.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/6336.e05e1154.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/6343.2bcd28ff.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/6363.a319b8f2.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/6478.344abf25.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/6504.1c004564.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/6534.ec7e149b.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/6715.55a5c19c.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/6756.e6cb993c.chunk.js +2 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/6756.e6cb993c.chunk.js.LICENSE.txt +10 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/6762.acfde9fd.chunk.js +2 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/6762.acfde9fd.chunk.js.LICENSE.txt +19 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/6846.67103d0e.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/6861.34cf0198.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/6899.0eaf36a8.chunk.js +2 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/6899.0eaf36a8.chunk.js.LICENSE.txt +5 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/6933.8b564944.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/699.d0437920.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/7076.4182f63a.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/7186.42ad86d5.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/7248.a46635fd.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/725.6b15a14a.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/7266.3575539d.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/7270.0a1e84fc.chunk.js +2 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/7270.0a1e84fc.chunk.js.LICENSE.txt +6 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/7367.7120474f.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/7436.8e226055.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/7504.ef223844.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/7603.ee049fe3.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/7670.2835b49a.chunk.js +2 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/7670.2835b49a.chunk.js.LICENSE.txt +6 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/7721.7390b3cc.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/7731.5796cced.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/775.660a5deb.chunk.js +2 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/775.660a5deb.chunk.js.LICENSE.txt +6 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/7832.7976a3e4.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/7844.72cc2e81.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/7948.48eab032.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/7972.085079d4.chunk.js +2 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/7972.085079d4.chunk.js.LICENSE.txt +6 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/8017.a9e7dc5a.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/8023.75f1f3df.js +2 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/8023.75f1f3df.js.LICENSE.txt +41 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/8123.b69db974.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/813.065a87e5.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/819.2056f122.chunk.js +2 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/819.2056f122.chunk.js.LICENSE.txt +6 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/8262.04bc17d1.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/8300.75adcc4f.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/8336.b1d3e764.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/8365.26cf64ea.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/8398.8bca8e0e.chunk.js +2 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/8398.8bca8e0e.chunk.js.LICENSE.txt +6 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/847.33ceed50.chunk.js +2 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/847.33ceed50.chunk.js.LICENSE.txt +6 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/8486.8ec852a7.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/8497.19378265.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/8541.4c55c9f4.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/8690.e305a804.chunk.js +2 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/8690.e305a804.chunk.js.LICENSE.txt +6 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/8712.a9445fe6.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/8763.61761e08.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/8823.baf9bffd.chunk.js +2 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/8823.baf9bffd.chunk.js.LICENSE.txt +6 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/8867.767462b7.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/8953.c0f88dea.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/8960.357cb1eb.chunk.js +2 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/8960.357cb1eb.chunk.js.LICENSE.txt +6 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/9.f4492795.chunk.js +2 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/9.f4492795.chunk.js.LICENSE.txt +12 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/9079.88a8d2a3.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/9082.37c40520.chunk.js +10 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/9133.90ae330d.js +2 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/9133.90ae330d.js.LICENSE.txt +8 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/9151.1ac359d5.js +2 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/9151.1ac359d5.js.LICENSE.txt +8 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/9168.027bf2fd.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/9194.9c5cc548.chunk.js +10 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/9244.026f4aee.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/936.2e02d037.js +2 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/936.2e02d037.js.LICENSE.txt +6 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/9369.7d1a0a1d.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/9427.7c8442e7.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/944.55948859.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/9499.c53a82da.js +2 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/9499.c53a82da.js.LICENSE.txt +62 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/9531.3ce05781.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/9547.92fac952.chunk.js +2 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/9547.92fac952.chunk.js.LICENSE.txt +6 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/9620.b6e973a7.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/9645.6fddfa65.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/9669.d38dda6d.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/9682.41b6b807.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/9720.19d5ae76.chunk.js +2 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/9720.19d5ae76.chunk.js.LICENSE.txt +23 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/9723.d3c7fe9e.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/9780.02a27630.chunk.js +10 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/9808.d0ca9674.chunk.js +2 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/9808.d0ca9674.chunk.js.LICENSE.txt +6 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/9815.b8db3c5d.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/9886.2940b53a.chunk.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/main~1f912138.fa9d03b1.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/main~43dd7041.2e00860d.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/js/main~84781932.68deffff.js +1 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/media/404-overflow.fad9a31861b0afba6f921ebb8e769688.svg +32 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/media/RapidFire_Square_Bug.27ceb48296314a4bc0d4.png +0 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/media/chart-bar.0fd4a63680fba840a7b69fbf07969f79.svg +7 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/media/chart-contour.0d4b306f2669f3ad25375568935e3ce3.svg +5 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/media/chart-difference.16174216d6f3b7c24f40e3541fe0ca2c.svg +20 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/media/chart-image.cc434c4dc50780966344e2385a15f8fe.svg +6 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/media/chart-line.0adaa2036bb4eb5956db6d0c7e925a3d.svg +4 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/media/chart-parallel.da7dedf539b2af4b654d377c679173e4.svg +7 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/media/chart-scatter.69118d0023a6ff3973f7fa913834ac47.svg +9 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/media/default-error.f246ddf367c6fbd67942e5a13382a7f1.svg +26 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/media/fontawesome-webfont.1e59d2330b4c6deb84b3.ttf +0 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/media/fontawesome-webfont.20fd1704ea223900efa9.woff2 +0 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/media/fontawesome-webfont.8b43027f47b20503057d.eot +0 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/media/fontawesome-webfont.c1e38fd9e0e74ba58f7a.svg +2671 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/media/fontawesome-webfont.f691f37e57f04c152e23.woff +0 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/media/icon-visible-fill.8d34cd35303828fdfc15154f5536e63b.svg +7 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/media/no-experiments.0e4f4a114ef73e7d81c09474aba64b6c.svg +22 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/media/parallel-chart-placeholder.234ef0c5b220ef2a5a6fa5bafff173f7.svg +16 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/media/permission-denied-lock.16036747d57cd663d7df223781a447b2.svg +14 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/media/promo-modal-content.e3b2c6c568ac192b9bec54b838b54850.svg +30 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/media/registered-model-grey-ok.8274b58d39504c8d1b8c358aa1c9aa35.svg +23 -0
- rapidfireai-0.9.10/rapidfireai/frontend/build/static/media/warning.290a3b14118933547965e91ea61c5a61.svg +3 -0
- rapidfireai-0.9.10/rapidfireai/frontend/proxy_middleware.py +233 -0
- rapidfireai-0.9.10/rapidfireai/frontend/server.py +25 -0
- rapidfireai-0.9.10/rapidfireai/ml/__init__.py +0 -0
- rapidfireai-0.9.10/rapidfireai/ml/callbacks.py +176 -0
- rapidfireai-0.9.10/rapidfireai/ml/checkpoint_utils.py +540 -0
- rapidfireai-0.9.10/rapidfireai/ml/trainer.py +309 -0
- rapidfireai-0.9.10/rapidfireai/start.sh +634 -0
- rapidfireai-0.9.10/rapidfireai/utils/__init__.py +0 -0
- rapidfireai-0.9.10/rapidfireai/utils/automl_utils.py +51 -0
- rapidfireai-0.9.10/rapidfireai/utils/constants.py +141 -0
- rapidfireai-0.9.10/rapidfireai/utils/datapaths.py +69 -0
- rapidfireai-0.9.10/rapidfireai/utils/exceptions.py +82 -0
- rapidfireai-0.9.10/rapidfireai/utils/experiment_utils.py +370 -0
- rapidfireai-0.9.10/rapidfireai/utils/logging.py +87 -0
- rapidfireai-0.9.10/rapidfireai/utils/mlflow_manager.py +121 -0
- rapidfireai-0.9.10/rapidfireai/utils/serialize.py +15 -0
- rapidfireai-0.9.10/rapidfireai/utils/shm_manager.py +469 -0
- rapidfireai-0.9.10/rapidfireai/utils/trainer_config.py +23 -0
- rapidfireai-0.9.10/rapidfireai/utils/worker_manager.py +219 -0
- rapidfireai-0.9.10/rapidfireai/version.py +6 -0
- rapidfireai-0.9.10/rapidfireai.egg-info/PKG-INFO +247 -0
- rapidfireai-0.9.10/rapidfireai.egg-info/SOURCES.txt +322 -0
- rapidfireai-0.9.10/rapidfireai.egg-info/entry_points.txt +2 -0
- rapidfireai-0.9.10/rapidfireai.egg-info/requires.txt +36 -0
- rapidfireai-0.0.1/PKG-INFO +0 -37
- rapidfireai-0.0.1/README.md +0 -14
- rapidfireai-0.0.1/pyproject.toml +0 -31
- rapidfireai-0.0.1/rapidfireai/__init__.py +0 -11
- rapidfireai-0.0.1/rapidfireai.egg-info/PKG-INFO +0 -37
- rapidfireai-0.0.1/rapidfireai.egg-info/SOURCES.txt +0 -8
- {rapidfireai-0.0.1 → rapidfireai-0.9.10}/LICENSE +0 -0
- {rapidfireai-0.0.1 → rapidfireai-0.9.10}/rapidfireai.egg-info/dependency_links.txt +0 -0
- {rapidfireai-0.0.1 → rapidfireai-0.9.10}/rapidfireai.egg-info/top_level.txt +0 -0
- {rapidfireai-0.0.1 → rapidfireai-0.9.10}/setup.cfg +0 -0
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# Include README and license files
|
|
2
|
+
include README.md
|
|
3
|
+
include LICENSE
|
|
4
|
+
include rapidfireai/start.sh
|
|
5
|
+
include rapidfireai/frontend/server.py
|
|
6
|
+
include rapidfireai/frontend/proxy_middleware.py
|
|
7
|
+
include rapidfireai/frontend/build/**/*
|
|
8
|
+
include rapidfireai/frontend/package.json
|
|
9
|
+
recursive-include rapidfireai/dispatcher *.py
|
|
10
|
+
recursive-include rapidfireai/ml *.py
|
|
11
|
+
recursive-include rapidfireai/automl *.py
|
|
12
|
+
recursive-include rapidfireai/backend *.py
|
|
13
|
+
recursive-include rapidfireai/db *.py *.sql
|
|
14
|
+
recursive-include rapidfireai/utils *.py
|
|
15
|
+
|
|
16
|
+
# Explicitly exclude unwanted files and directories - be very specific
|
|
17
|
+
exclude rapidfireai/frontend/node_modules
|
|
18
|
+
exclude rapidfireai/frontend/node_modules/*
|
|
19
|
+
exclude rapidfireai/frontend/.yarn
|
|
20
|
+
exclude rapidfireai/frontend/.yarn/*
|
|
21
|
+
exclude rapidfireai/frontend/dist
|
|
22
|
+
exclude rapidfireai/frontend/dist/*
|
|
23
|
+
exclude rapidfireai/frontend/coverage
|
|
24
|
+
exclude rapidfireai/frontend/coverage/*
|
|
25
|
+
exclude rapidfireai/frontend/.nyc_output
|
|
26
|
+
exclude rapidfireai/frontend/.nyc_output/*
|
|
27
|
+
exclude rapidfireai/frontend/.cache
|
|
28
|
+
exclude rapidfireai/frontend/.cache/*
|
|
29
|
+
exclude rapidfireai/frontend/.next
|
|
30
|
+
exclude rapidfireai/frontend/.next/*
|
|
31
|
+
exclude rapidfireai/frontend/out
|
|
32
|
+
exclude rapidfireai/frontend/out/*
|
|
33
|
+
exclude rapidfireai/frontend/.env*
|
|
34
|
+
exclude rapidfireai/frontend/*.log
|
|
35
|
+
|
|
36
|
+
# Exclude common unwanted files
|
|
37
|
+
global-exclude *.pyc
|
|
38
|
+
global-exclude *.pyo
|
|
39
|
+
global-exclude *.pyd
|
|
40
|
+
global-exclude __pycache__
|
|
41
|
+
global-exclude *.so
|
|
42
|
+
global-exclude .DS_Store
|
|
43
|
+
global-exclude .git*
|
|
44
|
+
global-exclude .svn*
|
|
45
|
+
global-exclude *.egg-info
|
|
46
|
+
global-exclude .pytest_cache
|
|
47
|
+
global-exclude .coverage
|
|
48
|
+
global-exclude htmlcov
|
|
49
|
+
global-exclude .tox
|
|
50
|
+
global-exclude .venv
|
|
51
|
+
global-exclude venv
|
|
52
|
+
global-exclude venv311
|
|
@@ -0,0 +1,247 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: rapidfireai
|
|
3
|
+
Version: 0.9.10
|
|
4
|
+
Summary: RapidFire AI: Rapid Experimentation Engine for Customizing LLMs
|
|
5
|
+
Author-email: "RapidFire AI Inc." <support@rapidfire.ai>
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://rapidfire.ai
|
|
8
|
+
Keywords: ai,rapidfire,rapidfireai,deep-learning,artificial-intelligence,machine-learning,mlflow,experiment-tracking
|
|
9
|
+
Classifier: Development Status :: 4 - Beta
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Intended Audience :: Science/Research
|
|
12
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
13
|
+
Classifier: Operating System :: OS Independent
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
16
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
17
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
18
|
+
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
|
|
19
|
+
Requires-Python: >=3.12
|
|
20
|
+
Description-Content-Type: text/markdown
|
|
21
|
+
License-File: LICENSE
|
|
22
|
+
Requires-Dist: pandas>=2.3.1
|
|
23
|
+
Requires-Dist: torch>=2.8.0
|
|
24
|
+
Requires-Dist: transformers>=4.55.2
|
|
25
|
+
Requires-Dist: peft>=0.17.0
|
|
26
|
+
Requires-Dist: trl==0.21.0
|
|
27
|
+
Requires-Dist: bitsandbytes>=0.47.0
|
|
28
|
+
Requires-Dist: nltk>=3.9.1
|
|
29
|
+
Requires-Dist: evaluate>=0.4.5
|
|
30
|
+
Requires-Dist: rouge-score>=0.1.2
|
|
31
|
+
Requires-Dist: sentencepiece>=0.2.1
|
|
32
|
+
Requires-Dist: dill>=0.3.8
|
|
33
|
+
Requires-Dist: mlflow>=3.2.0
|
|
34
|
+
Requires-Dist: pytest>=8.4.1
|
|
35
|
+
Requires-Dist: flask>=3.1.1
|
|
36
|
+
Requires-Dist: flask-cors>=6.0.1
|
|
37
|
+
Requires-Dist: requests>=2.32.5
|
|
38
|
+
Requires-Dist: loguru>=0.7.3
|
|
39
|
+
Requires-Dist: ipython>=8.37.0
|
|
40
|
+
Requires-Dist: jupyter>=1.1.1
|
|
41
|
+
Requires-Dist: ipywidgets>=8.1.7
|
|
42
|
+
Requires-Dist: uv>=0.8.14
|
|
43
|
+
Provides-Extra: dev
|
|
44
|
+
Requires-Dist: pytest>=6.0; extra == "dev"
|
|
45
|
+
Requires-Dist: pytest-cov>=2.0; extra == "dev"
|
|
46
|
+
Requires-Dist: black>=21.0; extra == "dev"
|
|
47
|
+
Requires-Dist: flake8>=3.8; extra == "dev"
|
|
48
|
+
Requires-Dist: mypy>=0.800; extra == "dev"
|
|
49
|
+
Requires-Dist: pre-commit>=2.0; extra == "dev"
|
|
50
|
+
Provides-Extra: full
|
|
51
|
+
Requires-Dist: torch>=1.9.0; extra == "full"
|
|
52
|
+
Requires-Dist: transformers>=4.20.0; extra == "full"
|
|
53
|
+
Requires-Dist: peft>=0.3.0; extra == "full"
|
|
54
|
+
Requires-Dist: trl==0.21.0; extra == "full"
|
|
55
|
+
Requires-Dist: bitsandbytes>=0.39.0; extra == "full"
|
|
56
|
+
Dynamic: license-file
|
|
57
|
+
|
|
58
|
+
# RapidFire AI
|
|
59
|
+
|
|
60
|
+
Rapid experimentation for easier, faster, and more impactful fine-tuning and post-training for LLMs and other DL models.
|
|
61
|
+
|
|
62
|
+
## Overview
|
|
63
|
+
|
|
64
|
+
RapidFire AI is a new experiment execution framework that transforms your LLM customization experimentation from slow, sequential processes into rapid, intelligent workflows with hyperparallelized training, dynamic real-time experiment control, and automatic multi-GPU system orchestration.
|
|
65
|
+
|
|
66
|
+

|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
## Getting Started
|
|
70
|
+
### Prerequisites
|
|
71
|
+
- [NVIDIA GPU using the 7.x or 8.x Compute Capability](https://developer.nvidia.com/cuda-gpus)
|
|
72
|
+
- [NVIDIA CUDA Toolkit 11.8+](https://developer.nvidia.com/cuda-toolkit-archive)
|
|
73
|
+
- [Python 3.12.x](https://www.python.org/downloads/)
|
|
74
|
+
- [PyTorch 2.7.1+](https://pytorch.org/get-started/previous-versions/) with corresponding forward compatible prebuilt CUDA binaries
|
|
75
|
+
|
|
76
|
+
### Installation/Starting
|
|
77
|
+
```bash
|
|
78
|
+
virtualenv -p python3 oss_venv
|
|
79
|
+
source oss_venv/bin/activate
|
|
80
|
+
|
|
81
|
+
# from pypi
|
|
82
|
+
pip install rapidfireai
|
|
83
|
+
|
|
84
|
+
# install specific dependencies and initialize rapidfire
|
|
85
|
+
rapidfireai init
|
|
86
|
+
|
|
87
|
+
# start the rapidfire server
|
|
88
|
+
rapidfireai start
|
|
89
|
+
|
|
90
|
+
# open up example notebook and start experiment
|
|
91
|
+
```
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
### Troubleshooting
|
|
96
|
+
|
|
97
|
+
For a quick system diagnostics report (Python env, relevant packages, GPU/CUDA, and key environment variables), run:
|
|
98
|
+
```bash
|
|
99
|
+
rapidfireai doctor
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
If you encounter port conflicts, you can kill existing processes:
|
|
103
|
+
```bash
|
|
104
|
+
lsof -t -i:5002 | xargs kill -9 # mlflow
|
|
105
|
+
lsof -t -i:8080 | xargs kill -9 # dispatcher
|
|
106
|
+
lsof -t -i:3000 | xargs kill -9 # frontend server
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
## Documentation
|
|
110
|
+
|
|
111
|
+
Browse or reference the full documentation, example use case tutorials, all API details, dashboard details, and more [here](https://rapidfire-ai-oss-docs.readthedocs-hosted.com/).
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
## Key Features
|
|
115
|
+
|
|
116
|
+
### MLflow Integration
|
|
117
|
+
Full MLflow support for experiment tracking and metrics visualization. A named RapidFire AI experiment corresponds to an MLflow experiment for comprehensive governance
|
|
118
|
+
|
|
119
|
+
### Interactive Control Operations (IC Ops)
|
|
120
|
+
First-of-its-kind dynamic real-time control over runs in flight. Can be invoked through the dashboard:
|
|
121
|
+
- Stop active runs; puts them in a dormant state
|
|
122
|
+
- Resume stopped runs; makes them active again
|
|
123
|
+
- Clone and modify existing runs, with or without warm starting from parent’s weights
|
|
124
|
+
- Delete unwanted or failed runs
|
|
125
|
+
|
|
126
|
+
### Multi-GPU Support
|
|
127
|
+
The Scheduler automatically handles multiple GPUs on the machine and divides resources across all running configs for optimal resource utilization.
|
|
128
|
+
|
|
129
|
+
### Search and AutoML Support
|
|
130
|
+
Built-in procedures for searching over configuration knob combinations, including Grid Search and Random Search. Easy to integrate with AutoML procedures. Native support for some popular AutoML procedures and customized automation of IC Ops coming soon.
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
## Directory Structure
|
|
134
|
+
|
|
135
|
+
```
|
|
136
|
+
rapidfireai/
|
|
137
|
+
├── automl/ # Search and AutoML algorithms for knob tuning
|
|
138
|
+
├── backend/ # Core backend components (controller, scheduler, worker)
|
|
139
|
+
├── db/ # Database interface and SQLite operations
|
|
140
|
+
├── dispatcher/ # Flask-based web API for UI communication
|
|
141
|
+
├── frontend/ # Frontend components (dashboard, IC Ops implementation)
|
|
142
|
+
├── ml/ # ML training utilities and trainer classes
|
|
143
|
+
├── utils/ # Utility functions and helper modules
|
|
144
|
+
└── experiment.py # Main experiment lifecycle management
|
|
145
|
+
```
|
|
146
|
+
|
|
147
|
+
## Architecture
|
|
148
|
+
|
|
149
|
+
RapidFire AI adopts a microservices-inspired loosely coupled distributed architecture with:
|
|
150
|
+
- **Dispatcher**: Web API layer for UI communication
|
|
151
|
+
- **Database**: SQLite for state persistence
|
|
152
|
+
- **Controller**: Central orchestrator running in user process
|
|
153
|
+
- **Workers**: GPU-based training processes
|
|
154
|
+
- **Dashboard**: Experiment tracking and visualization dashboard
|
|
155
|
+
|
|
156
|
+
This design enables efficient resource utilization while providing a seamless user experience for AI experimentation.
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
## Components
|
|
160
|
+
|
|
161
|
+
### Dispatcher
|
|
162
|
+
The dispatcher provides a REST API interface for the web UI. It can be run via Flask as a single app or via Gunicorn to have it load balanced. Handles interactive control features and displays the current state of the runs in the experiment.
|
|
163
|
+
|
|
164
|
+
### Database
|
|
165
|
+
Uses SQLite for persistent storage of metadata of experiments, runs, and artifacts. The Controller also uses it to talk with Workers on scheduling state. A clean asynchronous interface for all DB operations, including experiment lifecycle management and run tracking.
|
|
166
|
+
|
|
167
|
+
### Controller
|
|
168
|
+
Runs as part of the user’s console or Notebook process. Orchestrates the entire training lifecycle including model creation, worker management, and scheduling. The `run_fit` logic handles sample preprocessing, model creation for given knob configurations, worker initialization, and continuous monitoring of training progress across distributed workers.
|
|
169
|
+
|
|
170
|
+
### Worker
|
|
171
|
+
Handles the actual model training and inference on the GPUs. Workers poll the Database for tasks, load dataset chunks, and execute training runs with checkpointing and progress reporting. Currently expects any given model for given batch size to fit on a single GPU.
|
|
172
|
+
|
|
173
|
+
### Experiment
|
|
174
|
+
Manages the complete experiment lifecycle, including creation, naming conventions, and cleanup. Experiments are automatically named with unique suffixes if conflicts exist, and all experiment metadata is tracked in the Database. An experiment's running tasks are automatically cancelled when the process ends abruptly.
|
|
175
|
+
|
|
176
|
+
### Dashboard
|
|
177
|
+
A fork of MLflow that enables full tracking and visualization of all experiments and runs. It features a new panel for Interactive Control Ops that can be performed on any active runs.
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
## Developing with RapidFire AI
|
|
181
|
+
### Prerequisites
|
|
182
|
+
- Python 3.x
|
|
183
|
+
- Git
|
|
184
|
+
- Ubuntu/Debian system (for apt package manager)
|
|
185
|
+
|
|
186
|
+
```bash
|
|
187
|
+
# Run these commands one after the other on a fresh Ubuntu machine
|
|
188
|
+
|
|
189
|
+
# install dependencies
|
|
190
|
+
sudo apt update -y
|
|
191
|
+
|
|
192
|
+
# clone the repository
|
|
193
|
+
git clone https://github.com/RapidFireAI/rapidfireai.git
|
|
194
|
+
|
|
195
|
+
# navigate to the repository
|
|
196
|
+
cd ./rapidfireai
|
|
197
|
+
|
|
198
|
+
# install basic dependencies
|
|
199
|
+
sudo apt install -y python3-virtualenv
|
|
200
|
+
virtualenv -p python3 oss_venv
|
|
201
|
+
source oss_venv/bin/activate
|
|
202
|
+
pip3 install ipykernel
|
|
203
|
+
pip3 install jupyter
|
|
204
|
+
pip3 install "huggingface-hub[cli]"
|
|
205
|
+
export PATH="$HOME/.local/bin:$PATH"
|
|
206
|
+
hf auth login --token <your_token>
|
|
207
|
+
|
|
208
|
+
# checkout the develop branch
|
|
209
|
+
git checkout develop
|
|
210
|
+
|
|
211
|
+
# install the repository as a python package
|
|
212
|
+
pip3 install -r requirements.txt
|
|
213
|
+
|
|
214
|
+
# Install correct version of vllm and flash-attn
|
|
215
|
+
# uv pip install vllm=0.10.1.1 --torch-backend=cu126 or cu118
|
|
216
|
+
# uv pip install flash-attn==1.0.9 --no-build-isoloation or 2.8.3
|
|
217
|
+
|
|
218
|
+
# install frontend packages
|
|
219
|
+
curl -fsSL https://deb.nodesource.com/setup_22.x | sudo -E bash - && sudo apt-get install -y nodejs
|
|
220
|
+
npm install npm@10.5.1
|
|
221
|
+
sudo apt install -y yarn
|
|
222
|
+
|
|
223
|
+
# if running into node versioning errors, remove the previous version of node then run the lines above again
|
|
224
|
+
sudo apt-get remove --purge nodejs libnode-dev libnode72 npm
|
|
225
|
+
sudo apt autoremove --purge
|
|
226
|
+
|
|
227
|
+
# check installations
|
|
228
|
+
node -v # 22.x
|
|
229
|
+
npm -v # 10.5.1
|
|
230
|
+
|
|
231
|
+
# still inside venv, run the start script to begin all 3 servers
|
|
232
|
+
chmod +x ./rapidfireai/start_dev.sh
|
|
233
|
+
./rapidfireai/start_dev.sh start
|
|
234
|
+
|
|
235
|
+
# run the notebook from within your IDE
|
|
236
|
+
# make sure the notebook is running in the oss_venv virtual environment
|
|
237
|
+
# head to settings in Cursor/VSCode and search for venv and add the path - $HOME/rapidfireai/oss_venv
|
|
238
|
+
# we cannot run a Jupyter notebook directly since there are restrictions on Jupyter being able to create child processes
|
|
239
|
+
|
|
240
|
+
# VSCode can port-forward localhost:3000 where the rf-frontend server will be running
|
|
241
|
+
|
|
242
|
+
# for port clash issues -
|
|
243
|
+
lsof -t -i:8080 | xargs kill -9 # dispatcher
|
|
244
|
+
lsof -t -i:5002 | xargs kill -9 # mlflow
|
|
245
|
+
lsof -t -i:3000 | xargs kill -9 # frontend
|
|
246
|
+
```
|
|
247
|
+
|
|
@@ -0,0 +1,190 @@
|
|
|
1
|
+
# RapidFire AI
|
|
2
|
+
|
|
3
|
+
Rapid experimentation for easier, faster, and more impactful fine-tuning and post-training for LLMs and other DL models.
|
|
4
|
+
|
|
5
|
+
## Overview
|
|
6
|
+
|
|
7
|
+
RapidFire AI is a new experiment execution framework that transforms your LLM customization experimentation from slow, sequential processes into rapid, intelligent workflows with hyperparallelized training, dynamic real-time experiment control, and automatic multi-GPU system orchestration.
|
|
8
|
+
|
|
9
|
+

|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
## Getting Started
|
|
13
|
+
### Prerequisites
|
|
14
|
+
- [NVIDIA GPU using the 7.x or 8.x Compute Capability](https://developer.nvidia.com/cuda-gpus)
|
|
15
|
+
- [NVIDIA CUDA Toolkit 11.8+](https://developer.nvidia.com/cuda-toolkit-archive)
|
|
16
|
+
- [Python 3.12.x](https://www.python.org/downloads/)
|
|
17
|
+
- [PyTorch 2.7.1+](https://pytorch.org/get-started/previous-versions/) with corresponding forward compatible prebuilt CUDA binaries
|
|
18
|
+
|
|
19
|
+
### Installation/Starting
|
|
20
|
+
```bash
|
|
21
|
+
virtualenv -p python3 oss_venv
|
|
22
|
+
source oss_venv/bin/activate
|
|
23
|
+
|
|
24
|
+
# from pypi
|
|
25
|
+
pip install rapidfireai
|
|
26
|
+
|
|
27
|
+
# install specific dependencies and initialize rapidfire
|
|
28
|
+
rapidfireai init
|
|
29
|
+
|
|
30
|
+
# start the rapidfire server
|
|
31
|
+
rapidfireai start
|
|
32
|
+
|
|
33
|
+
# open up example notebook and start experiment
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
### Troubleshooting
|
|
39
|
+
|
|
40
|
+
For a quick system diagnostics report (Python env, relevant packages, GPU/CUDA, and key environment variables), run:
|
|
41
|
+
```bash
|
|
42
|
+
rapidfireai doctor
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
If you encounter port conflicts, you can kill existing processes:
|
|
46
|
+
```bash
|
|
47
|
+
lsof -t -i:5002 | xargs kill -9 # mlflow
|
|
48
|
+
lsof -t -i:8080 | xargs kill -9 # dispatcher
|
|
49
|
+
lsof -t -i:3000 | xargs kill -9 # frontend server
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
## Documentation
|
|
53
|
+
|
|
54
|
+
Browse or reference the full documentation, example use case tutorials, all API details, dashboard details, and more [here](https://rapidfire-ai-oss-docs.readthedocs-hosted.com/).
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
## Key Features
|
|
58
|
+
|
|
59
|
+
### MLflow Integration
|
|
60
|
+
Full MLflow support for experiment tracking and metrics visualization. A named RapidFire AI experiment corresponds to an MLflow experiment for comprehensive governance
|
|
61
|
+
|
|
62
|
+
### Interactive Control Operations (IC Ops)
|
|
63
|
+
First-of-its-kind dynamic real-time control over runs in flight. Can be invoked through the dashboard:
|
|
64
|
+
- Stop active runs; puts them in a dormant state
|
|
65
|
+
- Resume stopped runs; makes them active again
|
|
66
|
+
- Clone and modify existing runs, with or without warm starting from parent’s weights
|
|
67
|
+
- Delete unwanted or failed runs
|
|
68
|
+
|
|
69
|
+
### Multi-GPU Support
|
|
70
|
+
The Scheduler automatically handles multiple GPUs on the machine and divides resources across all running configs for optimal resource utilization.
|
|
71
|
+
|
|
72
|
+
### Search and AutoML Support
|
|
73
|
+
Built-in procedures for searching over configuration knob combinations, including Grid Search and Random Search. Easy to integrate with AutoML procedures. Native support for some popular AutoML procedures and customized automation of IC Ops coming soon.
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
## Directory Structure
|
|
77
|
+
|
|
78
|
+
```
|
|
79
|
+
rapidfireai/
|
|
80
|
+
├── automl/ # Search and AutoML algorithms for knob tuning
|
|
81
|
+
├── backend/ # Core backend components (controller, scheduler, worker)
|
|
82
|
+
├── db/ # Database interface and SQLite operations
|
|
83
|
+
├── dispatcher/ # Flask-based web API for UI communication
|
|
84
|
+
├── frontend/ # Frontend components (dashboard, IC Ops implementation)
|
|
85
|
+
├── ml/ # ML training utilities and trainer classes
|
|
86
|
+
├── utils/ # Utility functions and helper modules
|
|
87
|
+
└── experiment.py # Main experiment lifecycle management
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
## Architecture
|
|
91
|
+
|
|
92
|
+
RapidFire AI adopts a microservices-inspired loosely coupled distributed architecture with:
|
|
93
|
+
- **Dispatcher**: Web API layer for UI communication
|
|
94
|
+
- **Database**: SQLite for state persistence
|
|
95
|
+
- **Controller**: Central orchestrator running in user process
|
|
96
|
+
- **Workers**: GPU-based training processes
|
|
97
|
+
- **Dashboard**: Experiment tracking and visualization dashboard
|
|
98
|
+
|
|
99
|
+
This design enables efficient resource utilization while providing a seamless user experience for AI experimentation.
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
## Components
|
|
103
|
+
|
|
104
|
+
### Dispatcher
|
|
105
|
+
The dispatcher provides a REST API interface for the web UI. It can be run via Flask as a single app or via Gunicorn to have it load balanced. Handles interactive control features and displays the current state of the runs in the experiment.
|
|
106
|
+
|
|
107
|
+
### Database
|
|
108
|
+
Uses SQLite for persistent storage of metadata of experiments, runs, and artifacts. The Controller also uses it to talk with Workers on scheduling state. A clean asynchronous interface for all DB operations, including experiment lifecycle management and run tracking.
|
|
109
|
+
|
|
110
|
+
### Controller
|
|
111
|
+
Runs as part of the user’s console or Notebook process. Orchestrates the entire training lifecycle including model creation, worker management, and scheduling. The `run_fit` logic handles sample preprocessing, model creation for given knob configurations, worker initialization, and continuous monitoring of training progress across distributed workers.
|
|
112
|
+
|
|
113
|
+
### Worker
|
|
114
|
+
Handles the actual model training and inference on the GPUs. Workers poll the Database for tasks, load dataset chunks, and execute training runs with checkpointing and progress reporting. Currently expects any given model for given batch size to fit on a single GPU.
|
|
115
|
+
|
|
116
|
+
### Experiment
|
|
117
|
+
Manages the complete experiment lifecycle, including creation, naming conventions, and cleanup. Experiments are automatically named with unique suffixes if conflicts exist, and all experiment metadata is tracked in the Database. An experiment's running tasks are automatically cancelled when the process ends abruptly.
|
|
118
|
+
|
|
119
|
+
### Dashboard
|
|
120
|
+
A fork of MLflow that enables full tracking and visualization of all experiments and runs. It features a new panel for Interactive Control Ops that can be performed on any active runs.
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
## Developing with RapidFire AI
|
|
124
|
+
### Prerequisites
|
|
125
|
+
- Python 3.x
|
|
126
|
+
- Git
|
|
127
|
+
- Ubuntu/Debian system (for apt package manager)
|
|
128
|
+
|
|
129
|
+
```bash
|
|
130
|
+
# Run these commands one after the other on a fresh Ubuntu machine
|
|
131
|
+
|
|
132
|
+
# install dependencies
|
|
133
|
+
sudo apt update -y
|
|
134
|
+
|
|
135
|
+
# clone the repository
|
|
136
|
+
git clone https://github.com/RapidFireAI/rapidfireai.git
|
|
137
|
+
|
|
138
|
+
# navigate to the repository
|
|
139
|
+
cd ./rapidfireai
|
|
140
|
+
|
|
141
|
+
# install basic dependencies
|
|
142
|
+
sudo apt install -y python3-virtualenv
|
|
143
|
+
virtualenv -p python3 oss_venv
|
|
144
|
+
source oss_venv/bin/activate
|
|
145
|
+
pip3 install ipykernel
|
|
146
|
+
pip3 install jupyter
|
|
147
|
+
pip3 install "huggingface-hub[cli]"
|
|
148
|
+
export PATH="$HOME/.local/bin:$PATH"
|
|
149
|
+
hf auth login --token <your_token>
|
|
150
|
+
|
|
151
|
+
# checkout the develop branch
|
|
152
|
+
git checkout develop
|
|
153
|
+
|
|
154
|
+
# install the repository as a python package
|
|
155
|
+
pip3 install -r requirements.txt
|
|
156
|
+
|
|
157
|
+
# Install correct version of vllm and flash-attn
|
|
158
|
+
# uv pip install vllm=0.10.1.1 --torch-backend=cu126 or cu118
|
|
159
|
+
# uv pip install flash-attn==1.0.9 --no-build-isoloation or 2.8.3
|
|
160
|
+
|
|
161
|
+
# install frontend packages
|
|
162
|
+
curl -fsSL https://deb.nodesource.com/setup_22.x | sudo -E bash - && sudo apt-get install -y nodejs
|
|
163
|
+
npm install npm@10.5.1
|
|
164
|
+
sudo apt install -y yarn
|
|
165
|
+
|
|
166
|
+
# if running into node versioning errors, remove the previous version of node then run the lines above again
|
|
167
|
+
sudo apt-get remove --purge nodejs libnode-dev libnode72 npm
|
|
168
|
+
sudo apt autoremove --purge
|
|
169
|
+
|
|
170
|
+
# check installations
|
|
171
|
+
node -v # 22.x
|
|
172
|
+
npm -v # 10.5.1
|
|
173
|
+
|
|
174
|
+
# still inside venv, run the start script to begin all 3 servers
|
|
175
|
+
chmod +x ./rapidfireai/start_dev.sh
|
|
176
|
+
./rapidfireai/start_dev.sh start
|
|
177
|
+
|
|
178
|
+
# run the notebook from within your IDE
|
|
179
|
+
# make sure the notebook is running in the oss_venv virtual environment
|
|
180
|
+
# head to settings in Cursor/VSCode and search for venv and add the path - $HOME/rapidfireai/oss_venv
|
|
181
|
+
# we cannot run a Jupyter notebook directly since there are restrictions on Jupyter being able to create child processes
|
|
182
|
+
|
|
183
|
+
# VSCode can port-forward localhost:3000 where the rf-frontend server will be running
|
|
184
|
+
|
|
185
|
+
# for port clash issues -
|
|
186
|
+
lsof -t -i:8080 | xargs kill -9 # dispatcher
|
|
187
|
+
lsof -t -i:5002 | xargs kill -9 # mlflow
|
|
188
|
+
lsof -t -i:3000 | xargs kill -9 # frontend
|
|
189
|
+
```
|
|
190
|
+
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=78", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "rapidfireai"
|
|
7
|
+
version = "0.9.10"
|
|
8
|
+
authors = [
|
|
9
|
+
{name = "RapidFire AI Inc.", email = "support@rapidfire.ai"},
|
|
10
|
+
]
|
|
11
|
+
description = "RapidFire AI: Rapid Experimentation Engine for Customizing LLMs"
|
|
12
|
+
readme = "README.md"
|
|
13
|
+
requires-python = ">=3.12"
|
|
14
|
+
license = {text = "Apache-2.0"}
|
|
15
|
+
keywords = ["ai", "rapidfire", "rapidfireai", "deep-learning", "artificial-intelligence", "machine-learning", "mlflow", "experiment-tracking"]
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Development Status :: 4 - Beta",
|
|
18
|
+
"Intended Audience :: Developers",
|
|
19
|
+
"Intended Audience :: Science/Research",
|
|
20
|
+
"License :: OSI Approved :: Apache Software License",
|
|
21
|
+
"Operating System :: OS Independent",
|
|
22
|
+
"Programming Language :: Python :: 3",
|
|
23
|
+
"Programming Language :: Python :: 3.12",
|
|
24
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
25
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
26
|
+
"Topic :: Software Development :: Libraries :: Application Frameworks",
|
|
27
|
+
]
|
|
28
|
+
dependencies = [
|
|
29
|
+
"pandas>=2.3.1",
|
|
30
|
+
"torch>=2.8.0",
|
|
31
|
+
"transformers>=4.55.2",
|
|
32
|
+
"peft>=0.17.0",
|
|
33
|
+
"trl==0.21.0",
|
|
34
|
+
"bitsandbytes>=0.47.0",
|
|
35
|
+
"nltk>=3.9.1",
|
|
36
|
+
"evaluate>=0.4.5",
|
|
37
|
+
"rouge-score>=0.1.2",
|
|
38
|
+
"sentencepiece>=0.2.1",
|
|
39
|
+
"dill>=0.3.8",
|
|
40
|
+
"mlflow>=3.2.0",
|
|
41
|
+
"pytest>=8.4.1",
|
|
42
|
+
"flask>=3.1.1",
|
|
43
|
+
"flask-cors>=6.0.1",
|
|
44
|
+
"requests>=2.32.5",
|
|
45
|
+
"loguru>=0.7.3",
|
|
46
|
+
"ipython>=8.37.0",
|
|
47
|
+
"jupyter>=1.1.1",
|
|
48
|
+
"ipywidgets>=8.1.7",
|
|
49
|
+
"uv>=0.8.14",
|
|
50
|
+
]
|
|
51
|
+
|
|
52
|
+
[project.optional-dependencies]
|
|
53
|
+
dev = [
|
|
54
|
+
"pytest>=6.0",
|
|
55
|
+
"pytest-cov>=2.0",
|
|
56
|
+
"black>=21.0",
|
|
57
|
+
"flake8>=3.8",
|
|
58
|
+
"mypy>=0.800",
|
|
59
|
+
"pre-commit>=2.0",
|
|
60
|
+
]
|
|
61
|
+
full = [
|
|
62
|
+
"torch>=1.9.0",
|
|
63
|
+
"transformers>=4.20.0",
|
|
64
|
+
"peft>=0.3.0",
|
|
65
|
+
"trl==0.21.0",
|
|
66
|
+
"bitsandbytes>=0.39.0",
|
|
67
|
+
]
|
|
68
|
+
|
|
69
|
+
[project.urls]
|
|
70
|
+
Homepage = "https://rapidfire.ai"
|
|
71
|
+
|
|
72
|
+
[project.scripts]
|
|
73
|
+
rapidfireai = "rapidfireai.cli:main"
|
|
74
|
+
|
|
75
|
+
[tool.setuptools]
|
|
76
|
+
packages = ["rapidfireai"]
|
|
77
|
+
include-package-data = true
|
|
78
|
+
|
|
79
|
+
[tool.setuptools.package-data]
|
|
80
|
+
rapidfireai = [
|
|
81
|
+
"start.sh",
|
|
82
|
+
"dispatcher/*.py",
|
|
83
|
+
"frontend/build/**/*",
|
|
84
|
+
"frontend/server.py",
|
|
85
|
+
"frontend/proxy_middleware.py",
|
|
86
|
+
"ml/*.py",
|
|
87
|
+
"automl/*.py",
|
|
88
|
+
"backend/*.py",
|
|
89
|
+
"db/*.py",
|
|
90
|
+
"db/*.sql",
|
|
91
|
+
"utils/*.py",
|
|
92
|
+
]
|
|
93
|
+
|
|
94
|
+
[tool.setuptools.exclude-package-data]
|
|
95
|
+
"*" = [
|
|
96
|
+
"**/node_modules/**/*",
|
|
97
|
+
"**/.yarn/**/*",
|
|
98
|
+
"**/dist/**/*",
|
|
99
|
+
"**/coverage/**/*",
|
|
100
|
+
"**/.nyc_output/**/*",
|
|
101
|
+
"**/.cache/**/*",
|
|
102
|
+
"**/.next/**/*",
|
|
103
|
+
"**/out/**/*",
|
|
104
|
+
"**/.env*",
|
|
105
|
+
"**/*.log",
|
|
106
|
+
"**/__pycache__/**/*",
|
|
107
|
+
"**/*.pyc",
|
|
108
|
+
"**/*.pyo",
|
|
109
|
+
"**/*.pyd",
|
|
110
|
+
"**/.DS_Store",
|
|
111
|
+
"**/.git*",
|
|
112
|
+
"**/.svn*",
|
|
113
|
+
"**/*.egg-info/**/*",
|
|
114
|
+
"**/.pytest_cache/**/*",
|
|
115
|
+
"**/.coverage",
|
|
116
|
+
"**/htmlcov/**/*",
|
|
117
|
+
"**/.tox/**/*",
|
|
118
|
+
"**/.venv/**/*",
|
|
119
|
+
"**/venv/**/*",
|
|
120
|
+
"**/venv311/**/*",
|
|
121
|
+
]
|
|
122
|
+
|
|
123
|
+
[tool.setuptools.package-dir]
|
|
124
|
+
rapidfireai = "rapidfireai"
|
|
125
|
+
|
|
126
|
+
[tool.black]
|
|
127
|
+
line-length = 88
|
|
128
|
+
target-version = ['py312']
|
|
129
|
+
|
|
130
|
+
[tool.pytest.ini_options]
|
|
131
|
+
testpaths = ["tests"]
|
|
132
|
+
python_files = ["test_*.py", "*_test.py"]
|
|
133
|
+
python_classes = ["Test*"]
|
|
134
|
+
python_functions = ["test_*"]
|
|
135
|
+
addopts = "-v --tb=short"
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"""
|
|
2
|
+
RapidFire AI
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
from .version import __version__, __version_info__
|
|
6
|
+
|
|
7
|
+
__author__ = "RapidFire AI Inc."
|
|
8
|
+
__email__ = "support@rapidfire.ai"
|
|
9
|
+
|
|
10
|
+
from rapidfireai.experiment import Experiment
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
def coming_soon():
|
|
14
|
+
"""Placeholder function - full functionality coming soon."""
|
|
15
|
+
return "RapidFire AI package is under development. Stay tuned!"
|
|
16
|
+
|
|
17
|
+
__all__ = ["Experiment"]
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"""AutoML module for hyperparameter optimization."""
|
|
2
|
+
|
|
3
|
+
from .base import AutoMLAlgorithm
|
|
4
|
+
from .datatypes import List, Range
|
|
5
|
+
from .grid_search import RFGridSearch
|
|
6
|
+
from .model_config import RFDPOConfig, RFGRPOConfig, RFLoraConfig, RFModelConfig, RFSFTConfig
|
|
7
|
+
from .random_search import RFRandomSearch
|
|
8
|
+
|
|
9
|
+
__all__ = [
|
|
10
|
+
"List",
|
|
11
|
+
"Range",
|
|
12
|
+
"RFGridSearch",
|
|
13
|
+
"RFRandomSearch",
|
|
14
|
+
"AutoMLAlgorithm",
|
|
15
|
+
"RFModelConfig",
|
|
16
|
+
"RFLoraConfig",
|
|
17
|
+
"RFSFTConfig",
|
|
18
|
+
"RFDPOConfig",
|
|
19
|
+
"RFGRPOConfig",
|
|
20
|
+
]
|