https://github.com/Microsoft/CNTK
Raw File
Tip revision: 4e877075b19038814a493da0b87471eb69d072e5 authored by Eldar Akchurin on 20 March 2017, 12:37:13 UTC
Adding retry logic to open file
Tip revision: 4e87707
README.md
#EvalClients

The folder contains some examples using the CNTK evaluation library. Please note that only the 64-bit target is supported by CNTK evaluation library.
The [CNTK Eval Examples](https://github.com/Microsoft/CNTK/wiki/CNTK-Eval-Examples) page provides more details of these examples.

-CPPEvalClient: demonstrate the use of the C++ CNTK EvalDll evaluation API. Only the release configuration is supported.  

-CPPEvalExtendedClient: demonstrate the use of the C++ EvalDll EvalExtended API to evaluate a LSTM model. Only the release configuration is supported.

-CSEvalClient: demonstrate the use of the C# CNTK EvalDll Nuget Package.

-EvalClients.sln: the VS2015 solution file to build examples. It creates two binaries in the directory $(SolutionDir)..\..\x64\:

    - CPPEvalClient.$(Configuration)\CPPEvalClient.exe: To run the example, please first include the directory containing CNTK dependent dlls, usually $(SolutionDir)..\..\cntk, in the PATH environment variable. 

    - CPPEvalExtendedClient.$(Configuration)\CPPEvalExtendedClient.exe: To run the example, please first include the directory containing CNTK dependent dlls, usually $(SolutionDir)..\..\cntk, in the PATH environment variable. 
    
    - CSEvalClient.$(Configuration)\CSEvalClient.exe: the C# example executable.
back to top