-
Notifications
You must be signed in to change notification settings - Fork 0
Feature/make the sowlv2 more efficient #21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
bladeszasza
wants to merge
42
commits into
main
Choose a base branch
from
feature/make-the-sowlv2-more-efficient
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 29 commits
Commits
Show all changes
42 commits
Select commit
Hold shift + click to select a range
aa3dd5c
feat: Add comprehensive optimizations for faster inference (addresses…
bladeszasza 8192c0c
Update README.md
bladeszasza 24f2351
Update README.md
bladeszasza 433d4f5
Update sowlv2/optimizations/parallel_processor.py
bladeszasza 7f6ce18
Update pyproject.toml
bladeszasza 9964803
Update setup.py
bladeszasza 540f06e
fused the optimised pipeline to the original
bladeszasza 395649b
per object and merged video extension
bladeszasza 182f04e
Finalized All Pipelines
bladeszasza f77723d
v jepa 2 temporar tracking
bladeszasza 43260c9
pylint fixes
bladeszasza 7ec6bb8
pylint fixes and tests
bladeszasza 11ec382
pylint fixes and tests
bladeszasza 9222aa8
final fixes
bladeszasza 33176b1
final fixes
bladeszasza 26a16e8
Potential fix for code scanning alert no. 7: Workflow does not contai…
bladeszasza af319c2
added permission blocks
bladeszasza c76ad8a
Update sowlv2/optimizations/vjepa2_optimization.py
bladeszasza 3de5734
added logging
bladeszasza 37b0857
Merge branch 'main' into feature/make-the-sowlv2-more-efficient
bladeszasza a4ab672
fixed pyre and pisa
bladeszasza cb215f1
modernized pyre and pysa
bladeszasza a4e2255
pylint
bladeszasza d365e23
pysa pyre
bladeszasza eb3d822
pylint, pysa pyre combined
bladeszasza ac734f4
pylint
bladeszasza c07a62d
Fix pylint issues and enhance notebooks - Fixed W0621 redefined-outer…
bladeszasza d8687ac
Fix Pyre/Pysa workflow and clean up duplicate steps
bladeszasza 67f0a80
pysa pyre alignment to pysa-action, pyre-action
bladeszasza cfbfa07
use forker pyre pysa
bladeszasza 604efa5
final fixes
bladeszasza 2b4a8a7
pushed prompt to the optimised pipelines
bladeszasza e68a60a
pylint
bladeszasza e27e532
set up edgetam
bladeszasza 20c0aee
fixed sam2 import issue
bladeszasza 50b478e
enhanced v jepa 2
bladeszasza 81fe9ec
performance monitorning
bladeszasza a1536f1
enhance CLI
bladeszasza 2321eac
performance monitoring system enhancements
bladeszasza 2c4e095
final Kiro touches
bladeszasza 1bd4a32
bug fixes aroun d tests
bladeszasza ce88685
test fixes
bladeszasza File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,46 +1,32 @@ | ||
| # This workflow uses actions that are not certified by GitHub. | ||
| # They are provided by a third-party and are governed by | ||
| # separate terms of service, privacy policy, and support | ||
| # documentation. | ||
|
|
||
| # This workflow integrates Pyre with GitHub's | ||
| # Code Scanning feature. | ||
| # | ||
| # Pyre is a performant type checker for Python compliant with | ||
| # PEP 484. Pyre can analyze codebases with millions of lines | ||
| # of code incrementally – providing instantaneous feedback | ||
| # to developers as they write code. | ||
| # | ||
| # See https://pyre-check.org | ||
|
|
||
| name: Pyre | ||
| name: Pyre & Pysa Analysis | ||
|
|
||
| on: | ||
| workflow_dispatch: | ||
| push: | ||
| branches: [ "main" ] | ||
| branches: [main] | ||
| pull_request: | ||
| branches: [ "main" ] | ||
|
|
||
| permissions: | ||
| contents: read | ||
| branches: [main] | ||
|
|
||
| jobs: | ||
| pyre: | ||
| permissions: | ||
| actions: read | ||
| contents: read | ||
| security-events: write | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
|
|
||
| - name: Run Pyre Action | ||
| uses: facebook/pyre-action@v0.0.2 | ||
| with: | ||
| submodules: true | ||
| repo-directory: './' | ||
| requirements-path: 'requirements.txt' | ||
|
|
||
| pysa: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
|
|
||
| - name: Run Pyre | ||
| uses: facebook/pyre-action@60697a7858f7cc8470d8cc494a3cf2ad6b06560d | ||
| - name: Run Pysa Action | ||
| uses: facebook/pysa-action@v0.0.1 | ||
| with: | ||
| # To customize these inputs: | ||
| # See https://github.com/facebook/pyre-action#inputs | ||
| repo-directory: './' | ||
| requirements-path: 'requirements.txt' | ||
| infer-types: true | ||
| include-default-sapp-filters: true | ||
|
|
||
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.