-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Updated codegen to support object detection scenario. #5216
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
Merged
Merged
Changes from all commits
Commits
Show all changes
40 commits
Select commit
Hold shift + click to select a range
34d970f
Buffer re-use using ArrayPool and a few more checks (#4293)
harshithapv 9bc3d7b
Image Classification API: Fix processing incomplete batch(<batchSize)…
ashbhandare c073e6b
upgrade to 3.1
LittleLittleCloud 8f0fc1a
write inline data using invariantCulture
LittleLittleCloud e96d716
Merge branch 'master' of https://github.com/dotnet/machinelearning
LittleLittleCloud 8c17bbe
Merge branch 'master' of https://github.com/dotnet/machinelearning
LittleLittleCloud b2947f5
Merge branch 'master' of https://github.com/dotnet/machinelearning
LittleLittleCloud ff1c909
Merge branch 'master' of https://github.com/dotnet/machinelearning
LittleLittleCloud c8f154b
Update: ModelBuilder codegen for Object Detection
ttstanley 7da13e8
Merge branch 'u/tevin/ObjectDetectionCodeGen'
ttstanley 8cedee5
updated testing files to give better test results
ttstanley 44f18ef
Refactored test code
ttstanley eed5d85
trying to test performance
ttstanley 045f93a
fix commit
c164c97
Adding changes from prior commit
ttstanley 8d47c48
small changes to finilize codegen
ttstanley 9226395
Made changes based on csproj
ttstanley b399a27
minor changes to make final build
ttstanley ce35740
updated onnxruntime to 1.3
ttstanley 7ec0c2b
targetting older automl
ttstanley 0fe683e
taking out dependency on automl taskkind for OD
ttstanley b7556da
final build got predictions working for OD
ttstanley 737d5a7
Merge upstream into remote origin
ttstanley aa89ddf
Merge branch 'real/origin/master' into u/tevin/CodeGen
ttstanley f1aa8ac
took out old test paths to generalize tests
ttstanley 93eaf54
cleaning up outdated comments
ttstanley 2c03cf8
for the build packaging
ttstanley 9f784f4
rebuild
ttstanley dad9055
Merge branch 'master' of https://github.com/dotnet/machinelearning
LittleLittleCloud 741d77a
Merge branch 'master' of https://github.com/dotnet/machinelearning
LittleLittleCloud 7f42788
Merge branch 'master' into u/tevin/CodeGen
LittleLittleCloud dad6672
fix tests
LittleLittleCloud 45c462a
fix build error
LittleLittleCloud 445f982
fix e2e bug
LittleLittleCloud 594c828
Merge branch 'master' of https://github.com/dotnet/machinelearning
LittleLittleCloud a7d20ac
Merge branch 'master' into u/tevin/CodeGen
LittleLittleCloud 82c672f
fix e2e bug
LittleLittleCloud 9116501
Update Microsoft.ML.CodeGenerator.nupkgproj
LittleLittleCloud 9473c48
Update Microsoft.ML.CodeGenerator.csproj
LittleLittleCloud ccc5d6c
remove .approved.txt that not used
LittleLittleCloud 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,6 +10,7 @@ internal enum TaskKind | |
| MulticlassClassification, | ||
| Regression, | ||
| Recommendation, | ||
| ObjectDetection, | ||
| Ranking | ||
| } | ||
| } | ||
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
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
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
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.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
IsImageClassification?