├── .gitignore ├── LICENSE ├── README.md ├── VLML.HDE.vl ├── VLML.vl ├── appveyor.yml ├── src ├── CNTK.VL.Helpers.sln ├── CNTK.VL.Helpers │ ├── Activations.cs │ ├── CNTK.VL.Helpers.csproj │ ├── GenricVariable.cs │ ├── Initializer.cs │ └── Properties │ │ └── AssemblyInfo.cs └── _Dependencies │ └── netstandard2.0 │ └── Cntk.Core.Managed-2.7.dll └── vl ├── CNTK_Core.vl ├── CNTK_DataIO.vl ├── CNTK_Evaluation.vl ├── CNTK_HighLevelOps.vl ├── CNTK_Layers.vl ├── CNTK_Losses.vl ├── CNTK_Metrics.vl ├── CNTK_Operations.vl ├── CNTK_Sequence.vl ├── CNTK_Trainers.vl ├── CNTK_Utils.vl ├── CNTK_Variables.vl ├── ImageHelper.vl ├── Utils.vl ├── VLDL.vl ├── VLDL_Tasks_Images.vl └── VVVV.Value.MNISTImporter.vl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkingForms/VLML/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkingForms/VLML/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkingForms/VLML/HEAD/README.md -------------------------------------------------------------------------------- /VLML.HDE.vl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkingForms/VLML/HEAD/VLML.HDE.vl -------------------------------------------------------------------------------- /VLML.vl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkingForms/VLML/HEAD/VLML.vl -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkingForms/VLML/HEAD/appveyor.yml -------------------------------------------------------------------------------- /src/CNTK.VL.Helpers.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkingForms/VLML/HEAD/src/CNTK.VL.Helpers.sln -------------------------------------------------------------------------------- /src/CNTK.VL.Helpers/Activations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkingForms/VLML/HEAD/src/CNTK.VL.Helpers/Activations.cs -------------------------------------------------------------------------------- /src/CNTK.VL.Helpers/CNTK.VL.Helpers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkingForms/VLML/HEAD/src/CNTK.VL.Helpers/CNTK.VL.Helpers.csproj -------------------------------------------------------------------------------- /src/CNTK.VL.Helpers/GenricVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkingForms/VLML/HEAD/src/CNTK.VL.Helpers/GenricVariable.cs -------------------------------------------------------------------------------- /src/CNTK.VL.Helpers/Initializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkingForms/VLML/HEAD/src/CNTK.VL.Helpers/Initializer.cs -------------------------------------------------------------------------------- /src/CNTK.VL.Helpers/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkingForms/VLML/HEAD/src/CNTK.VL.Helpers/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/_Dependencies/netstandard2.0/Cntk.Core.Managed-2.7.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkingForms/VLML/HEAD/src/_Dependencies/netstandard2.0/Cntk.Core.Managed-2.7.dll -------------------------------------------------------------------------------- /vl/CNTK_Core.vl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkingForms/VLML/HEAD/vl/CNTK_Core.vl -------------------------------------------------------------------------------- /vl/CNTK_DataIO.vl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkingForms/VLML/HEAD/vl/CNTK_DataIO.vl -------------------------------------------------------------------------------- /vl/CNTK_Evaluation.vl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkingForms/VLML/HEAD/vl/CNTK_Evaluation.vl -------------------------------------------------------------------------------- /vl/CNTK_HighLevelOps.vl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkingForms/VLML/HEAD/vl/CNTK_HighLevelOps.vl -------------------------------------------------------------------------------- /vl/CNTK_Layers.vl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkingForms/VLML/HEAD/vl/CNTK_Layers.vl -------------------------------------------------------------------------------- /vl/CNTK_Losses.vl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkingForms/VLML/HEAD/vl/CNTK_Losses.vl -------------------------------------------------------------------------------- /vl/CNTK_Metrics.vl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkingForms/VLML/HEAD/vl/CNTK_Metrics.vl -------------------------------------------------------------------------------- /vl/CNTK_Operations.vl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkingForms/VLML/HEAD/vl/CNTK_Operations.vl -------------------------------------------------------------------------------- /vl/CNTK_Sequence.vl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkingForms/VLML/HEAD/vl/CNTK_Sequence.vl -------------------------------------------------------------------------------- /vl/CNTK_Trainers.vl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkingForms/VLML/HEAD/vl/CNTK_Trainers.vl -------------------------------------------------------------------------------- /vl/CNTK_Utils.vl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkingForms/VLML/HEAD/vl/CNTK_Utils.vl -------------------------------------------------------------------------------- /vl/CNTK_Variables.vl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkingForms/VLML/HEAD/vl/CNTK_Variables.vl -------------------------------------------------------------------------------- /vl/ImageHelper.vl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkingForms/VLML/HEAD/vl/ImageHelper.vl -------------------------------------------------------------------------------- /vl/Utils.vl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkingForms/VLML/HEAD/vl/Utils.vl -------------------------------------------------------------------------------- /vl/VLDL.vl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkingForms/VLML/HEAD/vl/VLDL.vl -------------------------------------------------------------------------------- /vl/VLDL_Tasks_Images.vl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkingForms/VLML/HEAD/vl/VLDL_Tasks_Images.vl -------------------------------------------------------------------------------- /vl/VVVV.Value.MNISTImporter.vl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThinkingForms/VLML/HEAD/vl/VVVV.Value.MNISTImporter.vl --------------------------------------------------------------------------------