Skip to content

Image classification using DNNs and Transfer Learning. #4057

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 38 commits into from
Aug 6, 2019
Merged
Changes from 1 commit
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
1a219d1
Image classification using DNNs and Transfer Learning.
codemzs Aug 2, 2019
eb6fef9
Undo sample changes.
codemzs Aug 2, 2019
dce734a
Disable ONNX conversion test because of protobuf version conflict.
codemzs Aug 2, 2019
a6168fe
Disable ONNX conversion test because of protobuf version conflict.
codemzs Aug 2, 2019
13f3f58
Upgrade to latest TF.NEt and enable ONNX test.
codemzs Aug 2, 2019
71d0968
stop buffer resue. comment out buggy tests.
codemzs Aug 3, 2019
825fbdf
enable buggy tests.
codemzs Aug 3, 2019
735e354
enable buggy tests.
codemzs Aug 3, 2019
30e0713
pass string directly as tensor instead of converting to utf8.
codemzs Aug 3, 2019
0b84992
pass string directly as tensor instead of converting to utf8.
codemzs Aug 3, 2019
42f97da
fix session dispose call in DNNTransfomer.
codemzs Aug 3, 2019
1231587
fix session dispose call in DNNTransfomer.
codemzs Aug 3, 2019
8fe76a0
fix crash issue when tesing tf.net.
Oceania2018 Aug 3, 2019
3c3613b
Merge pull request #4 from Oceania2018/imageclassificationapi
codemzs Aug 3, 2019
a48da72
fix for premature deallocation by TF.NET.
codemzs Aug 3, 2019
9669cbc
fix for destructor.
codemzs Aug 3, 2019
28f5c72
fix for destructor.
codemzs Aug 3, 2019
6cf21f4
Upgrade to latest TF.NEt that contains fix for default graph.
codemzs Aug 3, 2019
67170a1
TDV-TF mapping.
codemzs Aug 4, 2019
0bcc228
Add test for transfer learning.
codemzs Aug 4, 2019
e28cd18
Add Inception V3 model.
codemzs Aug 4, 2019
0723aa4
Add Inception V3 model and unit-test
codemzs Aug 4, 2019
a1a6972
Add Inception V3 model and unit-test
codemzs Aug 4, 2019
d38ee21
Add Inception V3 model and unit-test
codemzs Aug 4, 2019
e0e326f
Add Inception V3 model and unit-test
codemzs Aug 4, 2019
e618eff
Add Inception V3 model and unit-test
codemzs Aug 4, 2019
981ef13
Update transfer learning test.
codemzs Aug 4, 2019
eb354a0
Remove hard coded paths from test.
codemzs Aug 4, 2019
72260cf
tsts
codemzs Aug 4, 2019
b614621
Add more samples and minor refactoring.
codemzs Aug 5, 2019
d7296ba
Take dependency of scisharp tensorflow redist.
codemzs Aug 5, 2019
bd6e2cb
Merge branch 'master' of https://github.com/dotnet/machinelearning in…
codemzs Aug 5, 2019
84c08e7
Merge branch 'master' of https://github.com/dotnet/machinelearning in…
codemzs Aug 5, 2019
11cc810
Merge branch 'master' of https://github.com/dotnet/machinelearning in…
codemzs Aug 6, 2019
95f8453
PR feedback.
codemzs Aug 6, 2019
6cb29c4
PR feedback.
codemzs Aug 6, 2019
d36e3db
Cleanup.
codemzs Aug 6, 2019
5e2eed7
Merge branch 'master' of https://github.com/dotnet/machinelearning in…
codemzs Aug 6, 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
Prev Previous commit
Next Next commit
Add Inception V3 model and unit-test
  • Loading branch information
codemzs committed Aug 4, 2019
commit e618eff69eef4e4452734453465a953a4d90d972
1 change: 0 additions & 1 deletion src/Microsoft.ML.Dnn/DnnTransform.cs
Original file line number Diff line number Diff line change
Expand Up @@ -697,7 +697,6 @@ private void UpdateTransferLearningModelOnDisk(DnnEstimator.Options options, int
string frozenModelPath = CheckpointPath + ".pb";
File.WriteAllBytes(CheckpointPath + ".pb", outputGraphDef.ToByteArray());
Session = LoadTFSessionByModelFilePath(Env, frozenModelPath, false);

}

private void VariableSummaries(RefVariable var)
Expand Down