forked from microsoft/CNTK
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/Microsoft/CNTK
- Loading branch information
Showing
108 changed files
with
1,467 additions
and
1,607 deletions.
There are no files selected for viewing
This file contains 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 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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<!-- Note: SolutionDir / RepoRootPath are the same in current setup --> | ||
<RepoRootPath>$(MSBuildThisFileDirectory)</RepoRootPath> | ||
<RelativeProjectPath>$(MSBuildProjectDirectory.Substring($(MSBuildThisFileDirectory.Length)))</RelativeProjectPath> | ||
|
||
<OutDir>$(RepoRootPath)$(Platform)\$(Configuration)\</OutDir> | ||
<IntDir>$(RepoRootPath)$(Platform)\.build\$(Configuration)\$(RelativeProjectPath)\</IntDir> | ||
|
||
<DebugBuild>false</DebugBuild> | ||
<DebugBuild Condition="$(Configuration.StartsWith('Debug'))">true</DebugBuild> | ||
|
||
<ReleaseBuild>false</ReleaseBuild> | ||
<ReleaseBuild Condition="!$(DebugBuild)">true</ReleaseBuild> | ||
|
||
<GpuBuild>true</GpuBuild> | ||
<GpuBuild Condition="$(Configuration.EndsWith('_CpuOnly'))">false</GpuBuild> | ||
|
||
<CpuOnlyBuild>true</CpuOnlyBuild> | ||
<CpuOnlyBuild Condition="$(GpuBuild)">false</CpuOnlyBuild> | ||
</PropertyGroup> | ||
</Project> |
This file contains 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 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 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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
m=LoadModel($CurModel$, format=cntk) | ||
SetDefaultModel(m) | ||
|
||
SetPropertyForSubTree(CE, batchNormEvalMode, true) | ||
|
||
SaveModel(m, $NewModel$, format=cntk) |
This file contains 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 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 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 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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# CNTK example: ImageNet ResNet | ||
|
||
**Disclaimer: network configurations and experiment settings in this this folder try to follow those published in the [ResNet paper](http://arxiv.org/abs/1512.03385) as close as possible. However, these samples are NOT endorsed or verified by the researchers who published the original work. It is NOT guaranteed that you get the same (or even close) results as those in the paper.** | ||
|
||
## Overview | ||
|
||
|Data: |The ILSVRC2012 dataset (http://www.image-net.org/challenges/LSVRC/2012/) of images. | ||
|:---------|:--- | ||
|Purpose |This example demonstrates usage of the NDL (Network Description Language) to define networks similar to ResNet. | ||
|Network |NDLNetworkBuilder, deep convolutional networks resembling ResNet networks. | ||
|Training |Stochastic gradient descent with momentum. | ||
|
This file contains 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.