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.
- Loading branch information
1 parent
ec2878e
commit f8574a4
Showing
3 changed files
with
7 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Eval Example | ||
This folder contains the VC++ project file to build CPPEvalExample. The source files used by the project is under ..\CPPEvalClient. | ||
This project creates CPPEvalExample.exe in the directory $(SolutionDir)..\..\cntk\EvalExample.$(Configuration)\. | ||
Before start the example, please make sure the directory containing CNTK dependent dlls, usually $(SolutionDir)..\..\cntk\, is specified as a part of the PATH environment variable. | ||
This project creates CPPEvalExample.exe in the directory $(SolutionDir)..\..\x64\CPPEvalExample.Release. The CPPEvalExample only supports 64-bit target and release configuration. | ||
Before start the example, please make sure that the directory containing CNTK dependent dlls, usually $(SolutionDir)..\..\cntk\, is specified as a part of the PATH environment variable. |
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
This folder contains the C# project file to build CSEvalExample. The source files used by the project is under ..\CSEvalClient. | ||
This project creates CSEvalExample.exe in the directory $(SolutionDir)..\..\cntk\EvalExample.$(Configuration)\. | ||
This project creates CSEvalExample.exe in the directory $(SolutionDir)..\..\x64\CSEvalExample.$(Configuration)\. Please note that only 64-bit target is supported. |
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 |
---|---|---|
@@ -1,11 +1,11 @@ | ||
#Eval Examples | ||
|
||
The folder contains examples using the CNTK evaluation library. | ||
The folder contains examples using the CNTK evaluation library. Please note that only 64-bit target is supported by CNTK evaluation library. | ||
-CPPEvalClient: it is C++ example code and VS C++ project file used by cntk.sln | ||
-CPPEvalExample: It contains only VS C++ project file used in the CNTK binary download package. It shares the same C++ code in CPPEvalClient. | ||
-CSEvalClient: it is C# example code and VS C# project file used by cntk.sln. | ||
-CSEvalExample: it contains only VS C# project file used in the CNTK binary download package. The project uses Eval Nuget package. It shares the same C# code in CSEvalClient. | ||
-EvalExample.sln: the VS solution file to build examples in the CNTK binary download package. It creates 2 binaries in the directory $(SolutionDir)..\..\cntk\EvalExample.$(Configuration)\: | ||
*CPPEvalExample.exe: the C++ example executable. To start the example, please first include the directory containing CNTK dependent dlls, usually $(SolutionDir)..\..\cntk, in the PATH environment variable. | ||
*CSEvalExample.exe: the C# example executable | ||
-EvalExample.sln: the VS solution file to build examples in the CNTK binary download package. It creates 2 binaries in the directory $(SolutionDir)..\..\x64\: | ||
*CPPEvalExample.$(Configuration)\CPPEvalExample.exe: the C++ example executable. Only the release configuraiton is supported by the CNTK binary download. To start the example, please first include the directory containing CNTK dependent dlls, usually $(SolutionDir)..\..\cntk, in the PATH environment variable. | ||
*CSEvalExample.$(Configuration)\CSEvalExample.exe: the C# example executable. | ||
|