Skip to content

Fixed documentation for ImageClassificationMetricsCallback to resolve the confusion in issue #4259 #4298

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 21 commits into from
Oct 5, 2019
Merged
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
798fee9
commit b468adbd7d3b625154bc991cb6f0931198303e25
harshithapv Oct 2, 2019
62036b7
fixed merge conflicts
harshithapv Oct 2, 2019
18e6922
Fixed some unit tests that were failing after the merge. Addressed a …
harshithapv Oct 2, 2019
49dc4a0
Fixed TensorFlow unit tests
harshithapv Oct 2, 2019
75eaa81
Changed the buffer re-use logic for ReadToEnd
harshithapv Oct 2, 2019
3c82762
Changed ReadToEnd function to read using span instead of unsafe blocks
harshithapv Oct 2, 2019
20d6660
removed unnecessary commits
harshithapv Oct 3, 2019
9e68a93
Added version check with backward compatability. Addressed Zeeshan's …
harshithapv Oct 3, 2019
c3f8d9d
Kept my changes. Need those tests.
harshithapv Oct 3, 2019
1c0e81c
Fixed tab and synced to master
harshithapv Oct 3, 2019
9ebd4f5
Addressed comments. Checkpoint commit
harshithapv Oct 3, 2019
1b893b3
Merged Mustafa's changes. Synced with master
harshithapv Oct 3, 2019
b30daf5
changed the solution files and version check in ImageLoader.cs
harshithapv Oct 3, 2019
f7d68dd
Added changes for StableApi.csproj
harshithapv Oct 3, 2019
dcb2583
Merge branch 'master' of https://github.com/dotnet/machinelearning in…
harshithapv Oct 3, 2019
a94d56e
Added ArrayPool for buffer re-use
harshithapv Oct 3, 2019
c1dbd41
Handled the case when MakeGetter src is empty we need to send an empt…
harshithapv Oct 3, 2019
56e1e25
Merge branch 'master' of https://github.com/dotnet/machinelearning in…
harshithapv Oct 3, 2019
fe0de45
Addressed comments
harshithapv Oct 4, 2019
54074aa
Merge branch 'master' of https://github.com/dotnet/machinelearning in…
harshithapv Oct 4, 2019
8a2d08d
Added comments to address issue #4259
harshithapv Oct 4, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/Microsoft.ML.Dnn/ImageClassificationTransform.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1028,7 +1028,8 @@ public enum EarlyStoppingMetric
}

/// <summary>
/// Callback that returns DNN statistics during training phase.
/// Callback that returns DNN statistics during bottlenack phase and training phase.
/// Train metrics may be null when bottleneck phase is running, so have check!
/// </summary>
public delegate void ImageClassificationMetricsCallback(ImageClassificationMetrics metrics);

Expand Down Expand Up @@ -1210,7 +1211,8 @@ public bool ShouldStop(TrainMetrics currentMetrics)
}

/// <summary>
/// Metrics for image classification training.
/// Metrics for image classification bottlenect phase and training.
/// Train metrics may be null when bottleneck phase is running, so have check!
/// </summary>
public sealed class ImageClassificationMetrics
{
Expand Down