| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Sorry, something went wrong.
|
MLCommons CLA bot All contributors have signed the MLCommons CLA ✍️ ✅ |
Sorry, something went wrong.
|
@fsschneider, sorry, there are some merge conflicts after I merged in the dropout refactoring. Could you help resolve the merge conflicts please? I think we just want to accept incoming changes from the dev branch and then reformat them with ruff. |
Sorry, something went wrong.
I believe I resolved them now. |
Sorry, something went wrong.
|
LGTM! |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
This PR updates our codebase to use ruff for linting and formatting, replacing yapf, pylint, and isort. ruff offers the combined functionality of all three tools while being significantly faster.
Previously, running yapf, pylint, and isort locally took ~1m 16s on my workstation.
In contrast, running ruff took ~0.14s on my workstation.
ruff check && ruff format --checkIn GitHub Actions, the improvement is less dramatic due to tool installation times, but I observed roughly a 50% reduction in runtime.
Steps