CNTK/Examples/Evaluation
Zhou Wang 927c1e49cf add CreateSequence from sparse input
expose CreateSequence using sparse in C#

adapt API and C# binding

update baseline

aligning argument names

adapt test case to make sure at 1 non-zero values is created

adapt random generation of sparse sequence
2017-03-16 07:30:57 +01:00
..
CNTKAzureTutorial01
CNTKLibraryCPPEvalCPUOnlyExamples Bump NuGet package versions 2017-03-15 17:17:07 +01:00
CNTKLibraryCPPEvalGPUExamples Bump NuGet package versions 2017-03-15 17:17:07 +01:00
CNTKLibraryCSEvalCPUOnlyExamples add CreateSequence from sparse input 2017-03-16 07:30:57 +01:00
CNTKLibraryCSEvalGPUExamples Bump NuGet package versions 2017-03-15 17:17:07 +01:00
CPPEvalClient Bump NuGet package versions 2017-03-15 17:17:07 +01:00
CPPEvalExtendedClient Bump NuGet package versions 2017-03-15 17:17:07 +01:00
CSEvalClient Bump NuGet package versions 2017-03-15 17:17:07 +01:00
CNTKLibraryEvalExamples.sln
EvalClients.sln
README.md

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 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.